Skip to content

Commit 9956d85

Browse files
fix(deps): update dependency @stencil/core to v4.43.5 (#530)
* fix(deps): update dependency @stencil/core to v4.43.5 * fix(deps): update build output for components.d.ts in @stencil/core v4.43.5 * fix(docs): update docs after stencil core changed --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Schwarz, Colin <19342760+colinscz@users.noreply.github.com>
1 parent 6ab32a7 commit 9956d85

15 files changed

Lines changed: 161 additions & 161 deletions

File tree

docs/components/six-datepicker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ When using the `error-text` slot, it is recommended to use the `six-error` compo
635635
| `closeOnSelect` | `close-on-select` | Closes the datepicker dropdown after selection | `boolean` | `this.type === 'date'` |
636636
| `containingElement` | -- | The dropdown will close when the user interacts outside of this element (e.g. clicking). | `HTMLElement \| undefined` | `undefined` |
637637
| `dateFormat` | `date-format` | Define the dateFormat. Valid formats are: 'dd.mm.yyyy' 'yyyy-mm-dd' 'dd-mm-yyyy' 'dd/mm/yyyy' 'yyyy/mm/dd' 'dd.mm.yy' 'yy-mm-dd' 'dd-mm-yy' 'dd/mm/yy' 'yy/mm/dd' | `SixDateFormats.DDMMYYYY_DASH \| SixDateFormats.DDMMYYYY_DASH_TIME \| SixDateFormats.DDMMYYYY_SLASH \| SixDateFormats.DDMMYYYY_SLASH_TIME \| SixDateFormats.DDMMYYY_DOT \| SixDateFormats.DDMMYYY_DOT_TIME \| SixDateFormats.DDMMYY_DASH \| SixDateFormats.DDMMYY_DASH_TIME \| SixDateFormats.DDMMYY_DOT \| SixDateFormats.DDMMYY_DOT_TIME \| SixDateFormats.DDMMYY_SLASH \| SixDateFormats.DDMMYY_SLASH_TIME \| SixDateFormats.YYMMDD_DASH \| SixDateFormats.YYMMDD_DASH_TIME \| SixDateFormats.YYMMDD_SLASH \| SixDateFormats.YYMMDD_SLASH_TIME \| SixDateFormats.YYYYMMDD_DASH \| SixDateFormats.YYYYMMDD_DASH_TIME \| SixDateFormats.YYYYMMDD_SLASH \| SixDateFormats.YYYYMMDD_SLASH_TIME` | `SixDateFormats.DDMMYYY_DOT` |
638-
| `debounce` | `debounce` | Set the amount of time, in milliseconds, to wait to trigger the `dateChange` event after each keystroke. | `number` | `DEFAULT_DEBOUNCE_FAST` |
638+
| `debounce` | `debounce` | Set the amount of time, in milliseconds, to wait to trigger the `dateChange` event after each keystroke. | `number` | `300` |
639639
| `defaultDate` | `default-date` | The date to defines where the datepicker popup starts. The prop accepts ISO 8601 date strings (YYYY-MM-DD). | `string \| undefined` | `undefined` |
640640
| `disabled` | `disabled` | If `true` the component is disabled. | `boolean` | `false` |
641641
| `errorText` | `error-text` | The error message shown, if `invalid` is set to true. | `string \| string[]` | `''` |

docs/components/six-item-picker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ However you can configure the padding according to your wishes by using `padding
343343

344344
| Property | Attribute | Description | Type | Default |
345345
| ------------------ | ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------- |
346-
| `debounce` | `debounce` | Set the amount of time, in milliseconds, to wait to trigger the `six-item-picker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release | `number` | `DEFAULT_DEBOUNCE_FAST` |
347-
| `interval` | `interval` | Set the amount of time, in milliseconds, to wait between switching to next item when mouse button is held pressed. | `number` | `DEFAULT_DEBOUNCE_INSANELY_FAST` |
346+
| `debounce` | `debounce` | Set the amount of time, in milliseconds, to wait to trigger the `six-item-picker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release | `number` | `300` |
347+
| `interval` | `interval` | Set the amount of time, in milliseconds, to wait between switching to next item when mouse button is held pressed. | `number` | `35` |
348348
| `items` | -- | Defines a custom list of items you can iterate through | `string[] \| undefined` | `undefined` |
349349
| `max` | `max` | The maximum value allowed to pick. | `number \| string \| undefined` | `undefined` |
350350
| `min` | `min` | The minimum value allowed to pick. | `number \| string \| undefined` | `undefined` |
@@ -354,7 +354,7 @@ However you can configure the padding according to your wishes by using `padding
354354
| `paddingLength` | `padding-length` | Defines the length of the padded area | `number` | `2` |
355355
| `roundtrip` | `roundtrip` | Define whether the picker should to a roundtrip i.e. start at max when reaching min and vice versa. | `boolean` | `true` |
356356
| `step` | `step` | Defines how many steps should be taken when navigating | `number` | `1` |
357-
| `timeout` | `timeout` | Set the amount of time, in milliseconds, to wait to trigger faster switching between items. | `number` | `DEFAULT_DEBOUNCE_FAST` |
357+
| `timeout` | `timeout` | Set the amount of time, in milliseconds, to wait to trigger faster switching between items. | `number` | `300` |
358358
| `type` | `type` | The type of items you want to rotate through. | `ItemPickerType.CAPITAL_LETTER \| ItemPickerType.CUSTOM \| ItemPickerType.LETTER \| ItemPickerType.LOWER_LETTER \| ItemPickerType.NUMBER` | `ItemPickerType.NUMBER` |
359359
| `value` | `value` | The item picker's value attribute. | `number \| string` | `''` |
360360

docs/components/six-language-switcher.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ However, as you can see in this example, the `six-language-switcher` supports se
9595

9696
## Properties
9797

98-
| Property | Attribute | Description | Type | Default |
99-
| ----------- | ---------- | ------------------------------------------------- | ---------------------------------------- | ------------------- |
100-
| `languages` | -- | The languages which should be selectable options. | `SixLanguageSwitcherInput[] \| string[]` | `DEFAULT_LANGUAGES` |
101-
| `selected` | `selected` | The language which should be shown as selected | `string \| undefined` | `undefined` |
98+
| Property | Attribute | Description | Type | Default |
99+
| ----------- | ---------- | ------------------------------------------------- | ---------------------------------------- | -------------------- |
100+
| `languages` | -- | The languages which should be selectable options. | `SixLanguageSwitcherInput[] \| string[]` | `['EN', 'DE', 'ES']` |
101+
| `selected` | `selected` | The language which should be shown as selected | `string \| undefined` | `undefined` |
102102

103103

104104
## Events

0 commit comments

Comments
 (0)