chore(): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-08-12 12:04:27 +02:00
parent 149039bd12
commit d856ecfbbf
101 changed files with 1098 additions and 8675 deletions

View File

@ -8,99 +8,14 @@
## Properties
#### mediaQuery
string
If the current media query matches this value, the element will hide.
#### mode
string
If the current platform matches the given value, the element will hide.
Accepts a comma separated list of modes to match against.
#### or
boolean
If false, and two or more conditions are set, the element will hide when all are true.
If true, and two or more conditions are set, the element will hide when at least one is true.
#### orientation
string
If the current orientation matches this value, the element will hide.
#### platform
string
If the current platform matches the given value, the element will hide.
Accepts a comma separated list of platform to match against.
#### size
string
If the current screen width matches the given size, the element will hide.
Uses the build in sizes of xs, sm, md, lg, xl.
## Attributes
#### media-query
string
If the current media query matches this value, the element will hide.
#### mode
string
If the current platform matches the given value, the element will hide.
Accepts a comma separated list of modes to match against.
#### or
boolean
If false, and two or more conditions are set, the element will hide when all are true.
If true, and two or more conditions are set, the element will hide when at least one is true.
#### orientation
string
If the current orientation matches this value, the element will hide.
#### platform
string
If the current platform matches the given value, the element will hide.
Accepts a comma separated list of platform to match against.
#### size
string
If the current screen width matches the given size, the element will hide.
Uses the build in sizes of xs, sm, md, lg, xl.
| Property | Attribute | Description | Type |
| ------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------- |
| `mediaQuery` | `media-query` | If the current media query matches this value, the element will hide. | `string` |
| `mode` | `mode` | If the current platform matches the given value, the element will hide. Accepts a comma separated list of modes to match against. | `Mode` |
| `or` | `or` | If false, and two or more conditions are set, the element will hide when all are true. If true, and two or more conditions are set, the element will hide when at least one is true. | `boolean` |
| `orientation` | `orientation` | If the current orientation matches this value, the element will hide. | `string` |
| `platform` | `platform` | If the current platform matches the given value, the element will hide. Accepts a comma separated list of platform to match against. | `string` |
| `size` | `size` | If the current screen width matches the given size, the element will hide. Uses the build in sizes of xs, sm, md, lg, xl. | `string` |
----------------------------------------------