From 4044488f48895b20d63d242616e4cbb4b437e502 Mon Sep 17 00:00:00 2001 From: Martin Oppitz <6279703+deleonio@users.noreply.github.com> Date: Thu, 19 Sep 2024 22:39:02 +0200 Subject: [PATCH] chore: update deps Refs: #6808 --- package.json | 2 +- packages/components/package.json | 4 +- .../components/src/components/badge/readme.md | 12 +- .../src/components/input-color/readme.md | 44 +- .../src/components/input-date/readme.md | 56 +- .../src/components/input-email/readme.md | 58 +- .../src/components/input-file/readme.md | 46 +- .../src/components/input-number/readme.md | 56 +- .../src/components/input-password/readme.md | 56 +- .../src/components/input-text/readme.md | 58 +- packages/designer/package.json | 2 +- packages/themes/bmf/package.json | 4 +- packages/themes/default/package.json | 4 +- packages/themes/ecl/package.json | 4 +- packages/themes/itzbund/package.json | 4 +- packages/themes/package.json | 4 +- packages/tools/kolibri-cli/package.json | 2 +- pnpm-lock.yaml | 508 +++++++----------- 18 files changed, 398 insertions(+), 526 deletions(-) diff --git a/package.json b/package.json index 835217116b2..db0875d7850 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "ts-prune": "git clean -f -d -X packages/adapters/**/src && pnpm -r exec npx ts-prune src -e", "ncu:major": "ncu && pnpm -r exec ncu", "ncu:minor": "ncu -t minor -u && pnpm -r exec ncu -t minor -u -x @stencil/core,@types/react,@unocss/*", - "ncu:patch": "ncu -t patch -u && pnpm -r exec ncu -t patch -u", + "ncu:patch": "ncu -t patch -u && pnpm -r exec ncu -t patch -u -x @types/react", "pack": "pnpm -r exec pnpm pack", "prepare": "husky && echo \"Don't forget to build all packages once: pnpm -r build\"", "reinstall": "pnpm clean:pnpm && pnpm i", diff --git a/packages/components/package.json b/packages/components/package.json index 1038ef0a1a3..f1228ab286e 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -72,7 +72,7 @@ }, "dependencies": { "@floating-ui/dom": "1.6.11", - "adopted-style-sheets": "1.1.5-rc.1", + "adopted-style-sheets": "1.1.5-rc.3", "clsx": "2.1.1", "color-convert": "2.0.1", "color-rgba": "2.4.0", @@ -122,7 +122,7 @@ "stencil-awesome-test": "1.0.6", "terser": "5.33.0", "twig": "1.17.1", - "typescript": "~5.5.0" + "typescript": "~5.6.2" }, "files": [ "assets", diff --git a/packages/components/src/components/badge/readme.md b/packages/components/src/components/badge/readme.md index 0e45ba0803d..23f8485c885 100644 --- a/packages/components/src/components/badge/readme.md +++ b/packages/components/src/components/badge/readme.md @@ -99,11 +99,11 @@ Die zusätzliche Ausgabe eines **Icon** gewährleistet, dass der Nutzer auch hie ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | --------------- | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_color` | `_color` | Defines the backgroundColor and foregroundColor. | `string \| undefined \| { backgroundColor: string; foregroundColor: Stringified; }` | `'#000'` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `KoliBriHorizontalIcons & KoliBriVerticalIcons \| string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). | `string` | `undefined` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | --------------- | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_color` | `_color` | Defines the backgroundColor and foregroundColor. | `string \| undefined \| { backgroundColor: string; foregroundColor: Stringified; }` | `'#000'` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `KoliBriHorizontalIcons & KoliBriVerticalIcons \| string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). | `string` | `undefined` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | --- diff --git a/packages/components/src/components/input-color/readme.md b/packages/components/src/components/input-color/readme.md index 354a11479f3..7add93438a8 100644 --- a/packages/components/src/components/input-color/readme.md +++ b/packages/components/src/components/input-color/readme.md @@ -47,28 +47,28 @@ Für eine vollständige Barrierefreiheit prüfen Sie die Verwendung einer vorgef ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | ## Methods diff --git a/packages/components/src/components/input-date/readme.md b/packages/components/src/components/input-date/readme.md index 71ba0b665eb..b2589a8823b 100644 --- a/packages/components/src/components/input-date/readme.md +++ b/packages/components/src/components/input-date/readme.md @@ -102,34 +102,34 @@ Das Eingabefeld für Zeitangaben gibt es in unterschiedlichen Ausprägungen (Dat ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_max` | `_max` | Defines the largest possible input value. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| undefined` | `undefined` | -| `_min` | `_min` | Defines the smallest possible input value. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| undefined` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_step` | `_step` | Defines the step size for value changes. | `number \| undefined` | `undefined` | -| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_type` | `_type` | Defines either the type of the component or of the components interactive element. | `"date" \| "datetime-local" \| "month" \| "time" \| "week"` | `'date'` | -| `_value` | `_value` | Defines the value of the input. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| null \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_max` | `_max` | Defines the largest possible input value. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| undefined` | `undefined` | +| `_min` | `_min` | Defines the smallest possible input value. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| undefined` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_step` | `_step` | Defines the step size for value changes. | `number \| undefined` | `undefined` | +| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_type` | `_type` | Defines either the type of the component or of the components interactive element. | `"date" \| "datetime-local" \| "month" \| "time" \| "week"` | `'date'` | +| `_value` | `_value` | Defines the value of the input. | `Date \| `${number}-${number}-${number}T${number}:${number}:${number}`\|`${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}`\|`${number}-${number}`\|`${number}-W${number}`\|`${number}:${number}:${number}` \| `${number}:${number}` \| null \| undefined` | `undefined` | ## Methods diff --git a/packages/components/src/components/input-email/readme.md b/packages/components/src/components/input-email/readme.md index 5a913900afa..4ccde9da6e5 100644 --- a/packages/components/src/components/input-email/readme.md +++ b/packages/components/src/components/input-email/readme.md @@ -68,35 +68,35 @@ Um eine fehlgeschlagene Validierung anzuzeigen, setzen Sie das Attrbut **`_error ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | Defines the error message text. | `string \| undefined` | `undefined` | -| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_multiple` | `_multiple` | Makes the input accept multiple inputs. | `boolean \| undefined` | `false` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | -| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | -| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | Defines the error message text. | `string \| undefined` | `undefined` | +| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_multiple` | `_multiple` | Makes the input accept multiple inputs. | `boolean \| undefined` | `false` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | +| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | +| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | ## Methods diff --git a/packages/components/src/components/input-file/readme.md b/packages/components/src/components/input-file/readme.md index ff78e3dd62d..fa44e90b79e 100644 --- a/packages/components/src/components/input-file/readme.md +++ b/packages/components/src/components/input-file/readme.md @@ -67,29 +67,29 @@ Mögliche Werte und weitere Informationen erhalten Sie im **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_multiple` | `_multiple` | Makes the input accept multiple inputs. | `boolean \| undefined` | `false` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accept` | `_accept` | Defines which file formats are accepted. | `string \| undefined` | `undefined` | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_multiple` | `_multiple` | Makes the input accept multiple inputs. | `boolean \| undefined` | `false` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | ## Methods diff --git a/packages/components/src/components/input-number/readme.md b/packages/components/src/components/input-number/readme.md index 7949a24b2f4..aebb0327099 100644 --- a/packages/components/src/components/input-number/readme.md +++ b/packages/components/src/components/input-number/readme.md @@ -59,34 +59,34 @@ kolibriElement._on = { ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_max` | `_max` | Defines the largest possible input value. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| number \| undefined` | `undefined` | -| `_min` | `_min` | Defines the smallest possible input value. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| number \| undefined` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | -| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_step` | `_step` | Defines the step size for value changes. | `number \| undefined` | `undefined` | -| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_value` | `_value` | Defines the value of the input. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| null \| number \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_max` | `_max` | Defines the largest possible input value. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| number \| undefined` | `undefined` | +| `_min` | `_min` | Defines the smallest possible input value. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| number \| undefined` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | +| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_step` | `_step` | Defines the step size for value changes. | `number \| undefined` | `undefined` | +| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_value` | `_value` | Defines the value of the input. | ``${number}-${number}-${number}T${number}:${number}:${number}` \| `${number}-${number}-${number}T${number}:${number}` \| `${number}-${number}-${number}` \| `${number}-${number}` \| `${number}-W${number}` \| `${number}:${number}:${number}` \| `${number}:${number}` \| null \| number \| undefined` | `undefined` | ## Methods diff --git a/packages/components/src/components/input-password/readme.md b/packages/components/src/components/input-password/readme.md index a4c51232224..8b350230504 100644 --- a/packages/components/src/components/input-password/readme.md +++ b/packages/components/src/components/input-password/readme.md @@ -60,34 +60,34 @@ kolibriElement._on = { ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | -| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | -| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | -| `_variant` | `_variant` | Defines which variant should be used for presentation. | `"default" \| "visibility-toggle" \| undefined` | `'default'` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | +| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | +| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | +| `_variant` | `_variant` | Defines which variant should be used for presentation. | `"default" \| "visibility-toggle" \| undefined` | `'default'` | ## Methods diff --git a/packages/components/src/components/input-text/readme.md b/packages/components/src/components/input-text/readme.md index 88b7ef22015..2c1dd15bfe1 100644 --- a/packages/components/src/components/input-text/readme.md +++ b/packages/components/src/components/input-text/readme.md @@ -83,35 +83,35 @@ kolibriElement._on = { ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | -| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | -| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | -| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | -| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | -| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | -| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | -| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | -| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | -| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | -| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | -| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | -| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | -| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | -| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | -| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | -| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: AlternativeButtonLinkRolePropType \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | -| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | -| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | -| `_type` | `_type` | Defines either the type of the component or of the components interactive element. | `"search" \| "tel" \| "text" \| "url" \| undefined` | `'text'` | -| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_accessKey` | `_access-key` | Defines which key combination can be used to trigger or focus the interactive element of the component. | `string \| undefined` | `undefined` | +| `_alert` | `_alert` | Defines whether the screen-readers should read out the notification. | `boolean \| undefined` | `true` | +| `_autoComplete` | `_auto-complete` | Defines whether the input can be auto-completed. | `"off" \| "on" \| undefined` | `undefined` | +| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` | +| `_error` | `_error` | **[DEPRECATED]** Will be removed in v3. Use `msg` instead.

Defines the error message text. | `string \| undefined` | `undefined` | +| `_hasCounter` | `_has-counter` | Shows the character count on the lower border of the input. | `boolean \| undefined` | `false` | +| `_hideError` | `_hide-error` | Hides the error message but leaves it in the DOM for the input's aria-describedby. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_hint` | `_hint` | Defines the hint text. | `string \| undefined` | `''` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string \| undefined \| { right?: IconOrIconClass \| undefined; left?: IconOrIconClass \| undefined; }` | `undefined` | +| `_id` | `_id` | Defines the internal ID of the primary component element. | `string \| undefined` | `undefined` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` | +| `_maxLength` | `_max-length` | Defines the maximum number of input characters. | `number \| undefined` | `undefined` | +| `_msg` | -- | Defines the properties for a message rendered as Alert component. | `undefined \| {} & { _level?: 0 \| 2 \| 1 \| 4 \| 3 \| 5 \| 6 \| undefined; _on?: KoliBriAlertEventCallbacks \| undefined; _type?: "default" \| "info" \| "success" \| "warning" \| "error" \| undefined; _variant?: "card" \| "msg" \| undefined; _label?: string \| undefined; _alert?: boolean \| undefined; _hasCloser?: boolean \| undefined; } & { _description: string; }` | `undefined` | +| `_name` | `_name` | Defines the technical name of an input field. | `string \| undefined` | `undefined` | +| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput \| undefined` | `undefined` | +| `_pattern` | `_pattern` | Defines a validation pattern for the input field. | `string \| undefined` | `undefined` | +| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string \| undefined` | `undefined` | +| `_readOnly` | `_read-only` | Makes the input element read only. | `boolean \| undefined` | `false` | +| `_required` | `_required` | Makes the input element required. | `boolean \| undefined` | `false` | +| `_smartButton` | `_smart-button` | Allows to add a button with an arbitrary action within the element (\_hide-label only). | `string \| undefined \| { _label: string; } & { _tabIndex?: number \| undefined; _value?: Stringified; _ariaExpanded?: boolean \| undefined; _role?: "button" \| "link" \| "tab" \| "treeitem" \| undefined; _ariaControls?: string \| undefined; _ariaDescription?: string \| undefined; _ariaSelected?: boolean \| undefined; _on?: ButtonCallbacksPropType \| undefined; _type?: "button" \| "reset" \| "submit" \| undefined; _variant?: "primary" \| "secondary" \| "normal" \| "tertiary" \| "danger" \| "ghost" \| "custom" \| undefined; _customClass?: string \| undefined; _disabled?: boolean \| undefined; _hideLabel?: boolean \| undefined; _icons?: IconsPropType \| undefined; _id?: string \| undefined; _name?: string \| undefined; _syncValueBySelector?: string \| undefined; _tooltipAlign?: AlignPropType \| undefined; _accessKey?: string \| undefined; }` | `undefined` | +| `_suggestions` | `_suggestions` | Suggestions to provide for the input. | `W3CInputValue[] \| string \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'top'` | +| `_touched` | `_touched` | Shows if the input was touched by a user. | `boolean \| undefined` | `false` | +| `_type` | `_type` | Defines either the type of the component or of the components interactive element. | `"search" \| "tel" \| "text" \| "url" \| undefined` | `'text'` | +| `_value` | `_value` | Defines the value of the input. | `string \| undefined` | `undefined` | ## Methods diff --git a/packages/designer/package.json b/packages/designer/package.json index 6b482e0234e..475f81d3604 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -36,7 +36,7 @@ "@public-ui/components": "workspace:*", "@public-ui/solid": "workspace:*", "@public-ui/themes": "workspace:*", - "adopted-style-sheets": "1.1.5-rc.2", + "adopted-style-sheets": "1.1.5-rc.3", "monaco-editor": "0.51.0", "monaco-editor-webpack-plugin": "7.1.0", "prettier": "2.8.8", diff --git a/packages/themes/bmf/package.json b/packages/themes/bmf/package.json index 09358b9241b..897f11da68e 100644 --- a/packages/themes/bmf/package.json +++ b/packages/themes/bmf/package.json @@ -26,9 +26,9 @@ "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "eslint": "8.57.1", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "postcss": "8.4.47", - "rollup": "4.21.3", + "rollup": "4.22.0", "rollup-plugin-postcss": "4.0.2", "sass": "1.79.1", "typescript": "5.6.2", diff --git a/packages/themes/default/package.json b/packages/themes/default/package.json index 3a47eab7843..1902c8f84ea 100644 --- a/packages/themes/default/package.json +++ b/packages/themes/default/package.json @@ -64,9 +64,9 @@ "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "eslint": "8.57.1", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "postcss": "8.4.47", - "rollup": "4.21.3", + "rollup": "4.22.0", "rollup-plugin-postcss": "4.0.2", "sass": "1.79.1", "typescript": "5.6.2", diff --git a/packages/themes/ecl/package.json b/packages/themes/ecl/package.json index eb201bd4bbd..f9a494421e8 100644 --- a/packages/themes/ecl/package.json +++ b/packages/themes/ecl/package.json @@ -32,9 +32,9 @@ "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "eslint": "8.57.1", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "postcss": "8.4.47", - "rollup": "4.21.3", + "rollup": "4.22.0", "rollup-plugin-postcss": "4.0.2", "sass": "1.79.1", "typescript": "5.6.2", diff --git a/packages/themes/itzbund/package.json b/packages/themes/itzbund/package.json index d3a4b13073d..1fe3b2215ea 100644 --- a/packages/themes/itzbund/package.json +++ b/packages/themes/itzbund/package.json @@ -26,9 +26,9 @@ "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "eslint": "8.57.1", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "postcss": "8.4.47", - "rollup": "4.21.3", + "rollup": "4.22.0", "rollup-plugin-postcss": "4.0.2", "sass": "1.79.1", "typescript": "5.6.2", diff --git a/packages/themes/package.json b/packages/themes/package.json index f77f7cf4996..a2ad19973fe 100644 --- a/packages/themes/package.json +++ b/packages/themes/package.json @@ -60,9 +60,9 @@ "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "eslint": "8.57.1", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "postcss": "8.4.47", - "rollup": "4.21.3", + "rollup": "4.22.0", "rollup-plugin-postcss": "4.0.2", "sass": "1.79.1", "typescript": "5.6.2" diff --git a/packages/tools/kolibri-cli/package.json b/packages/tools/kolibri-cli/package.json index ed07d43dd10..4bdf2a2424c 100644 --- a/packages/tools/kolibri-cli/package.json +++ b/packages/tools/kolibri-cli/package.json @@ -54,7 +54,7 @@ "eslint-plugin-react": "7.36.1", "knip": "5.30.2", "mocha": "10.7.3", - "nodemon": "3.1.5", + "nodemon": "3.1.6", "rimraf": "5.0.10", "ts-node": "10.9.2", "typescript": "5.6.2" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0a3bf1300cc..1b3484f79d6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -374,8 +374,8 @@ importers: specifier: 1.6.11 version: 1.6.11 adopted-style-sheets: - specifier: 1.1.5-rc.1 - version: 1.1.5-rc.1 + specifier: 1.1.5-rc.3 + version: 1.1.5-rc.3 clsx: specifier: 2.1.1 version: 2.1.1 @@ -451,10 +451,10 @@ importers: version: 3.0.3 '@typescript-eslint/eslint-plugin': specifier: 7.18.0 - version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) + version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) '@typescript-eslint/parser': specifier: 7.18.0 - version: 7.18.0(eslint@8.57.1)(typescript@5.5.4) + version: 7.18.0(eslint@8.57.1)(typescript@5.6.2) autoprefixer: specifier: 10.4.20 version: 10.4.20(postcss@8.4.47) @@ -484,10 +484,10 @@ importers: version: 7.36.1(eslint@8.57.1) jest: specifier: 26.6.3 - version: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) knip: specifier: 5.30.2 - version: 5.30.2(@types/node@22.5.5)(typescript@5.5.4) + version: 5.30.2(@types/node@22.5.5)(typescript@5.6.2) lighthouse: specifier: 12.2.1 version: 12.2.1 @@ -519,8 +519,8 @@ importers: specifier: 1.17.1 version: 1.17.1 typescript: - specifier: ~5.5.0 - version: 5.5.4 + specifier: ~5.6.2 + version: 5.6.2 packages/designer: dependencies: @@ -534,8 +534,8 @@ importers: specifier: workspace:* version: link:../themes adopted-style-sheets: - specifier: 1.1.5-rc.2 - version: 1.1.5-rc.2 + specifier: 1.1.5-rc.3 + version: 1.1.5-rc.3 monaco-editor: specifier: 0.51.0 version: 0.51.0 @@ -572,7 +572,7 @@ importers: version: 0.58.9 '@unocss/webpack': specifier: 0.58.9 - version: 0.58.9(rollup@4.21.3)(webpack@5.94.0(@swc/core@1.5.28)(esbuild@0.23.0)) + version: 0.58.9(rollup@4.22.0)(webpack@5.94.0(@swc/core@1.5.28)(esbuild@0.23.0)) ajv: specifier: 8.17.1 version: 8.17.1 @@ -720,7 +720,7 @@ importers: version: 0.58.9 '@unocss/webpack': specifier: 0.58.9 - version: 0.58.9(rollup@4.21.3)(webpack@5.91.0(@swc/core@1.5.28)(esbuild@0.23.0)(webpack-cli@4.10.0)) + version: 0.58.9(rollup@4.22.0)(webpack@5.91.0(@swc/core@1.5.28)(esbuild@0.23.0)(webpack-cli@4.10.0)) ajv: specifier: 8.17.1 version: 8.17.1 @@ -789,13 +789,13 @@ importers: version: link:../components '@rollup/plugin-commonjs': specifier: 25.0.8 - version: 25.0.8(rollup@4.21.3) + version: 25.0.8(rollup@4.22.0) '@rollup/plugin-node-resolve': specifier: 15.2.3 - version: 15.2.3(rollup@4.21.3) + version: 15.2.3(rollup@4.22.0) '@rollup/plugin-typescript': specifier: 11.1.6 - version: 11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2) '@typescript-eslint/eslint-plugin': specifier: 7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -806,14 +806,14 @@ importers: specifier: 8.57.1 version: 8.57.1 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 postcss: specifier: 8.4.47 version: 8.4.47 rollup: - specifier: 4.21.3 - version: 4.21.3 + specifier: 4.22.0 + version: 4.22.0 rollup-plugin-postcss: specifier: 4.0.2 version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) @@ -834,13 +834,13 @@ importers: version: link:../../tools/visual-tests '@rollup/plugin-commonjs': specifier: 25.0.8 - version: 25.0.8(rollup@4.21.3) + version: 25.0.8(rollup@4.22.0) '@rollup/plugin-node-resolve': specifier: 15.2.3 - version: 15.2.3(rollup@4.21.3) + version: 15.2.3(rollup@4.22.0) '@rollup/plugin-typescript': specifier: 11.1.6 - version: 11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2) '@typescript-eslint/eslint-plugin': specifier: 7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -851,14 +851,14 @@ importers: specifier: 8.57.1 version: 8.57.1 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 postcss: specifier: 8.4.47 version: 8.4.47 rollup: - specifier: 4.21.3 - version: 4.21.3 + specifier: 4.22.0 + version: 4.22.0 rollup-plugin-postcss: specifier: 4.0.2 version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) @@ -882,13 +882,13 @@ importers: version: link:../../tools/visual-tests '@rollup/plugin-commonjs': specifier: 25.0.8 - version: 25.0.8(rollup@4.21.3) + version: 25.0.8(rollup@4.22.0) '@rollup/plugin-node-resolve': specifier: 15.2.3 - version: 15.2.3(rollup@4.21.3) + version: 15.2.3(rollup@4.22.0) '@rollup/plugin-typescript': specifier: 11.1.6 - version: 11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2) '@typescript-eslint/eslint-plugin': specifier: 7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -899,14 +899,14 @@ importers: specifier: 8.57.1 version: 8.57.1 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 postcss: specifier: 8.4.47 version: 8.4.47 rollup: - specifier: 4.21.3 - version: 4.21.3 + specifier: 4.22.0 + version: 4.22.0 rollup-plugin-postcss: specifier: 4.0.2 version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) @@ -930,13 +930,13 @@ importers: version: link:../../tools/visual-tests '@rollup/plugin-commonjs': specifier: 25.0.8 - version: 25.0.8(rollup@4.21.3) + version: 25.0.8(rollup@4.22.0) '@rollup/plugin-node-resolve': specifier: 15.2.3 - version: 15.2.3(rollup@4.21.3) + version: 15.2.3(rollup@4.22.0) '@rollup/plugin-typescript': specifier: 11.1.6 - version: 11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2) '@typescript-eslint/eslint-plugin': specifier: 7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -947,14 +947,14 @@ importers: specifier: 8.57.1 version: 8.57.1 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 postcss: specifier: 8.4.47 version: 8.4.47 rollup: - specifier: 4.21.3 - version: 4.21.3 + specifier: 4.22.0 + version: 4.22.0 rollup-plugin-postcss: specifier: 4.0.2 version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) @@ -978,13 +978,13 @@ importers: version: link:../../tools/visual-tests '@rollup/plugin-commonjs': specifier: 25.0.8 - version: 25.0.8(rollup@4.21.3) + version: 25.0.8(rollup@4.22.0) '@rollup/plugin-node-resolve': specifier: 15.2.3 - version: 15.2.3(rollup@4.21.3) + version: 15.2.3(rollup@4.22.0) '@rollup/plugin-typescript': specifier: 11.1.6 - version: 11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2) '@typescript-eslint/eslint-plugin': specifier: 7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -995,14 +995,14 @@ importers: specifier: 8.57.1 version: 8.57.1 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 postcss: specifier: 8.4.47 version: 8.4.47 rollup: - specifier: 4.21.3 - version: 4.21.3 + specifier: 4.22.0 + version: 4.22.0 rollup-plugin-postcss: specifier: 4.0.2 version: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) @@ -1083,8 +1083,8 @@ importers: specifier: 10.7.3 version: 10.7.3 nodemon: - specifier: 3.1.5 - version: 3.1.5 + specifier: 3.1.6 + version: 3.1.6 rimraf: specifier: 5.0.10 version: 5.0.10 @@ -3560,8 +3560,8 @@ packages: cpu: [arm] os: [android] - '@rollup/rollup-android-arm-eabi@4.21.3': - resolution: {integrity: sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==} + '@rollup/rollup-android-arm-eabi@4.22.0': + resolution: {integrity: sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==} cpu: [arm] os: [android] @@ -3570,8 +3570,8 @@ packages: cpu: [arm64] os: [android] - '@rollup/rollup-android-arm64@4.21.3': - resolution: {integrity: sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==} + '@rollup/rollup-android-arm64@4.22.0': + resolution: {integrity: sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==} cpu: [arm64] os: [android] @@ -3580,8 +3580,8 @@ packages: cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-arm64@4.21.3': - resolution: {integrity: sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==} + '@rollup/rollup-darwin-arm64@4.22.0': + resolution: {integrity: sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==} cpu: [arm64] os: [darwin] @@ -3590,8 +3590,8 @@ packages: cpu: [x64] os: [darwin] - '@rollup/rollup-darwin-x64@4.21.3': - resolution: {integrity: sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==} + '@rollup/rollup-darwin-x64@4.22.0': + resolution: {integrity: sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==} cpu: [x64] os: [darwin] @@ -3600,8 +3600,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.21.3': - resolution: {integrity: sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==} + '@rollup/rollup-linux-arm-gnueabihf@4.22.0': + resolution: {integrity: sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==} cpu: [arm] os: [linux] @@ -3610,8 +3610,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.3': - resolution: {integrity: sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==} + '@rollup/rollup-linux-arm-musleabihf@4.22.0': + resolution: {integrity: sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==} cpu: [arm] os: [linux] @@ -3620,8 +3620,8 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.21.3': - resolution: {integrity: sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==} + '@rollup/rollup-linux-arm64-gnu@4.22.0': + resolution: {integrity: sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==} cpu: [arm64] os: [linux] @@ -3630,8 +3630,8 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.3': - resolution: {integrity: sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==} + '@rollup/rollup-linux-arm64-musl@4.22.0': + resolution: {integrity: sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==} cpu: [arm64] os: [linux] @@ -3640,8 +3640,8 @@ packages: cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': - resolution: {integrity: sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.22.0': + resolution: {integrity: sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==} cpu: [ppc64] os: [linux] @@ -3650,8 +3650,8 @@ packages: cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.21.3': - resolution: {integrity: sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==} + '@rollup/rollup-linux-riscv64-gnu@4.22.0': + resolution: {integrity: sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==} cpu: [riscv64] os: [linux] @@ -3660,8 +3660,8 @@ packages: cpu: [s390x] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.3': - resolution: {integrity: sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==} + '@rollup/rollup-linux-s390x-gnu@4.22.0': + resolution: {integrity: sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==} cpu: [s390x] os: [linux] @@ -3670,8 +3670,8 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.21.3': - resolution: {integrity: sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==} + '@rollup/rollup-linux-x64-gnu@4.22.0': + resolution: {integrity: sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==} cpu: [x64] os: [linux] @@ -3680,8 +3680,8 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.3': - resolution: {integrity: sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==} + '@rollup/rollup-linux-x64-musl@4.22.0': + resolution: {integrity: sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==} cpu: [x64] os: [linux] @@ -3690,8 +3690,8 @@ packages: cpu: [arm64] os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.21.3': - resolution: {integrity: sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==} + '@rollup/rollup-win32-arm64-msvc@4.22.0': + resolution: {integrity: sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==} cpu: [arm64] os: [win32] @@ -3700,8 +3700,8 @@ packages: cpu: [ia32] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.3': - resolution: {integrity: sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==} + '@rollup/rollup-win32-ia32-msvc@4.22.0': + resolution: {integrity: sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==} cpu: [ia32] os: [win32] @@ -3710,8 +3710,8 @@ packages: cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.21.3': - resolution: {integrity: sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==} + '@rollup/rollup-win32-x64-msvc@4.22.0': + resolution: {integrity: sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==} cpu: [x64] os: [win32] @@ -4567,11 +4567,8 @@ packages: resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} engines: {node: '>=8.9'} - adopted-style-sheets@1.1.5-rc.1: - resolution: {integrity: sha512-IonhDyX0bmIG/xSS6KeX5PXgYBT7F4F4gg+LHacdYmcBnXH3c1fPadGWL8HcfiqcFJMEfMancS93rDnV6qbtXA==} - - adopted-style-sheets@1.1.5-rc.2: - resolution: {integrity: sha512-S6sStq2vbgpaZayBQ2+aM7ktDfzx5x6zwo4kjGy3cwOVH/TLj3n3+MaK63S+Pj+efPJr7JV+GvZUZBmhCSXb5g==} + adopted-style-sheets@1.1.5-rc.3: + resolution: {integrity: sha512-XjGIxDR9e9rR0XRhwhmkmqVYklKjKQI1vY2AtF6tMBCZcGxMo/YGyyjxoR2OITaARMkcm0J0NKzL6M7Ypycw7g==} agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} @@ -8472,10 +8469,6 @@ packages: resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} engines: {node: '>=8.0'} - loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} - loglevel@1.9.2: resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} engines: {node: '>= 0.6.0'} @@ -9030,8 +9023,8 @@ packages: node-releases@2.0.18: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - nodemon@3.1.5: - resolution: {integrity: sha512-V5UtfYc7hjFD4SI3EzD5TR8ChAHEZ+Ns7Z5fBk8fAbTVAj+q3G+w7sHJrHxXBkVn6ApLVTljau8wfHwqmGUjMw==} + nodemon@3.1.6: + resolution: {integrity: sha512-C8ymJbXpTTinxjWuMfMxw0rZhTn/r7ypSGldQyqPEgDEaVwAthqC0aodsMwontnAInN9TuPwRLeBoyhmfv+iSA==} engines: {node: '>=10'} hasBin: true @@ -10642,8 +10635,8 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - rollup@4.21.3: - resolution: {integrity: sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==} + rollup@4.22.0: + resolution: {integrity: sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -12913,7 +12906,7 @@ snapshots: '@babel/traverse': 7.24.7 '@babel/types': 7.25.6 convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -14596,7 +14589,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.25.6 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -14608,7 +14601,7 @@ snapshots: '@babel/parser': 7.25.3 '@babel/template': 7.25.0 '@babel/types': 7.25.6 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -15107,7 +15100,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -15258,7 +15251,7 @@ snapshots: jest-util: 26.6.2 slash: 3.0.0 - '@jest/core@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4))': + '@jest/core@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2))': dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -15271,14 +15264,14 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) - jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -15365,13 +15358,13 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4))': + '@jest/test-sequencer@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2))': dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) - jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) transitivePeerDependencies: - bufferutil - canvas @@ -15562,7 +15555,7 @@ snapshots: '@leichtgewicht/ip-codec@2.0.5': {} - '@lerna/create@8.1.8(@swc/core@1.5.28)(encoding@0.1.13)(typescript@5.5.4)': + '@lerna/create@8.1.8(@swc/core@1.5.28)(encoding@0.1.13)(typescript@5.6.2)': dependencies: '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 @@ -15580,7 +15573,7 @@ snapshots: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 8.3.6(typescript@5.6.2) dedent: 1.5.3 execa: 5.0.0 fs-extra: 11.2.0 @@ -16098,16 +16091,16 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-commonjs@25.0.8(rollup@4.21.3)': + '@rollup/plugin-commonjs@25.0.8(rollup@4.22.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.21.3) + '@rollup/pluginutils': 5.1.0(rollup@4.22.0) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.10 optionalDependencies: - rollup: 4.21.3 + rollup: 4.22.0 '@rollup/plugin-json@6.1.0(rollup@3.29.4)': dependencies: @@ -16126,16 +16119,16 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.21.3)': + '@rollup/plugin-node-resolve@15.2.3(rollup@4.22.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.21.3) + '@rollup/pluginutils': 5.1.0(rollup@4.22.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 4.21.3 + rollup: 4.22.0 '@rollup/plugin-replace@5.0.7(rollup@3.29.4)': dependencies: @@ -16144,13 +16137,13 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-typescript@11.1.6(rollup@4.21.3)(tslib@2.6.3)(typescript@5.6.2)': + '@rollup/plugin-typescript@11.1.6(rollup@4.22.0)(tslib@2.6.3)(typescript@5.6.2)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.21.3) + '@rollup/pluginutils': 5.1.0(rollup@4.22.0) resolve: 1.22.8 typescript: 5.6.2 optionalDependencies: - rollup: 4.21.3 + rollup: 4.22.0 tslib: 2.6.3 '@rollup/pluginutils@5.1.0(rollup@3.29.4)': @@ -16161,108 +16154,108 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/pluginutils@5.1.0(rollup@4.21.3)': + '@rollup/pluginutils@5.1.0(rollup@4.22.0)': dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 4.21.3 + rollup: 4.22.0 '@rollup/rollup-android-arm-eabi@4.20.0': optional: true - '@rollup/rollup-android-arm-eabi@4.21.3': + '@rollup/rollup-android-arm-eabi@4.22.0': optional: true '@rollup/rollup-android-arm64@4.20.0': optional: true - '@rollup/rollup-android-arm64@4.21.3': + '@rollup/rollup-android-arm64@4.22.0': optional: true '@rollup/rollup-darwin-arm64@4.20.0': optional: true - '@rollup/rollup-darwin-arm64@4.21.3': + '@rollup/rollup-darwin-arm64@4.22.0': optional: true '@rollup/rollup-darwin-x64@4.20.0': optional: true - '@rollup/rollup-darwin-x64@4.21.3': + '@rollup/rollup-darwin-x64@4.22.0': optional: true '@rollup/rollup-linux-arm-gnueabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.21.3': + '@rollup/rollup-linux-arm-gnueabihf@4.22.0': optional: true '@rollup/rollup-linux-arm-musleabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.21.3': + '@rollup/rollup-linux-arm-musleabihf@4.22.0': optional: true '@rollup/rollup-linux-arm64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.21.3': + '@rollup/rollup-linux-arm64-gnu@4.22.0': optional: true '@rollup/rollup-linux-arm64-musl@4.20.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.21.3': + '@rollup/rollup-linux-arm64-musl@4.22.0': optional: true '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': + '@rollup/rollup-linux-powerpc64le-gnu@4.22.0': optional: true '@rollup/rollup-linux-riscv64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.3': + '@rollup/rollup-linux-riscv64-gnu@4.22.0': optional: true '@rollup/rollup-linux-s390x-gnu@4.20.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.3': + '@rollup/rollup-linux-s390x-gnu@4.22.0': optional: true '@rollup/rollup-linux-x64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.21.3': + '@rollup/rollup-linux-x64-gnu@4.22.0': optional: true '@rollup/rollup-linux-x64-musl@4.20.0': optional: true - '@rollup/rollup-linux-x64-musl@4.21.3': + '@rollup/rollup-linux-x64-musl@4.22.0': optional: true '@rollup/rollup-win32-arm64-msvc@4.20.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.3': + '@rollup/rollup-win32-arm64-msvc@4.22.0': optional: true '@rollup/rollup-win32-ia32-msvc@4.20.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.3': + '@rollup/rollup-win32-ia32-msvc@4.22.0': optional: true '@rollup/rollup-win32-x64-msvc@4.20.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.21.3': + '@rollup/rollup-win32-x64-msvc@4.22.0': optional: true '@schematics/angular@18.2.5(chokidar@3.6.0)': @@ -16795,24 +16788,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)': - dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 7.18.0 - eslint: 8.57.1 - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)': dependencies: '@eslint-community/regexpp': 4.11.0 @@ -16844,19 +16819,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.5.4)': - dependencies: - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.5(supports-color@8.1.1) - eslint: 8.57.1 - optionalDependencies: - typescript: 5.5.4 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 @@ -16892,18 +16854,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.5.4)': - dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.5.4) - debug: 4.3.5(supports-color@8.1.1) - eslint: 8.57.1 - ts-api-utils: 1.3.0(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.6.2)': dependencies: '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.2) @@ -16935,21 +16885,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)': - dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.5(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.2)': dependencies: '@typescript-eslint/types': 7.18.0 @@ -16979,17 +16914,6 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.5.4)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - eslint: 8.57.1 - transitivePeerDependencies: - - supports-color - - typescript - '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.6.2)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) @@ -17050,10 +16974,10 @@ snapshots: '@unocss/core': 0.58.9 magic-string: 0.30.10 - '@unocss/webpack@0.58.9(rollup@4.21.3)(webpack@5.91.0(@swc/core@1.5.28)(esbuild@0.23.0)(webpack-cli@4.10.0))': + '@unocss/webpack@0.58.9(rollup@4.22.0)(webpack@5.91.0(@swc/core@1.5.28)(esbuild@0.23.0)(webpack-cli@4.10.0))': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.21.3) + '@rollup/pluginutils': 5.1.0(rollup@4.22.0) '@unocss/config': 0.58.9 '@unocss/core': 0.58.9 chokidar: 3.6.0 @@ -17065,10 +16989,10 @@ snapshots: transitivePeerDependencies: - rollup - '@unocss/webpack@0.58.9(rollup@4.21.3)(webpack@5.94.0(@swc/core@1.5.28)(esbuild@0.23.0))': + '@unocss/webpack@0.58.9(rollup@4.22.0)(webpack@5.94.0(@swc/core@1.5.28)(esbuild@0.23.0))': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.21.3) + '@rollup/pluginutils': 5.1.0(rollup@4.22.0) '@unocss/config': 0.58.9 '@unocss/core': 0.58.9 chokidar: 3.6.0 @@ -17313,23 +17237,19 @@ snapshots: loader-utils: 2.0.4 regex-parser: 2.3.0 - adopted-style-sheets@1.1.5-rc.1: - dependencies: - loglevel: 1.9.1 - - adopted-style-sheets@1.1.5-rc.2: + adopted-style-sheets@1.1.5-rc.3: dependencies: - loglevel: 1.9.1 + loglevel: 1.9.2 agent-base@6.0.2: dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color agent-base@7.1.1: dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -18590,14 +18510,14 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.5.4): + cosmiconfig@8.3.6(typescript@5.6.2): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 cosmiconfig@9.0.0(typescript@5.5.4): dependencies: @@ -19242,7 +19162,7 @@ snapshots: base64id: 2.0.0 cookie: 0.4.2 cors: 2.8.5 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) engine.io-parser: 5.2.2 ws: 8.17.1 transitivePeerDependencies: @@ -20343,7 +20263,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) fs-extra: 11.2.0 transitivePeerDependencies: - supports-color @@ -20717,14 +20637,14 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21301,9 +21221,9 @@ snapshots: execa: 4.1.0 throat: 5.0.0 - jest-cli@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest-cli@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -21311,7 +21231,7 @@ snapshots: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -21323,10 +21243,10 @@ snapshots: - ts-node - utf-8-validate - jest-config@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest-config@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: '@babel/core': 7.25.2 - '@jest/test-sequencer': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + '@jest/test-sequencer': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.25.2) chalk: 4.1.2 @@ -21336,7 +21256,7 @@ snapshots: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-jasmine2: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 @@ -21344,7 +21264,7 @@ snapshots: micromatch: 4.0.7 pretty-format: 26.6.2 optionalDependencies: - ts-node: 10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4) + ts-node: 10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2) transitivePeerDependencies: - bufferutil - canvas @@ -21425,7 +21345,7 @@ snapshots: transitivePeerDependencies: - supports-color - jest-jasmine2@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest-jasmine2@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -21440,7 +21360,7 @@ snapshots: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -21506,7 +21426,7 @@ snapshots: resolve: 1.22.8 slash: 3.0.0 - jest-runner@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest-runner@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -21517,13 +21437,13 @@ snapshots: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -21535,7 +21455,7 @@ snapshots: - ts-node - utf-8-validate - jest-runtime@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest-runtime@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -21552,7 +21472,7 @@ snapshots: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -21637,11 +21557,11 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)): + jest@26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)): dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) import-local: 3.1.0 - jest-cli: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4)) + jest-cli: 26.6.3(ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2)) transitivePeerDependencies: - bufferutil - canvas @@ -21940,27 +21860,6 @@ snapshots: klona@2.0.6: {} - knip@5.30.2(@types/node@22.5.5)(typescript@5.5.4): - dependencies: - '@nodelib/fs.walk': 1.2.8 - '@snyk/github-codeowners': 1.1.0 - '@types/node': 22.5.5 - easy-table: 1.2.0 - enhanced-resolve: 5.17.1 - fast-glob: 3.3.2 - jiti: 1.21.6 - js-yaml: 4.1.0 - minimist: 1.2.8 - picocolors: 1.0.1 - picomatch: 4.0.2 - pretty-ms: 9.0.0 - smol-toml: 1.2.2 - strip-json-comments: 5.0.1 - summary: 2.1.0 - typescript: 5.5.4 - zod: 3.23.8 - zod-validation-error: 3.3.0(zod@3.23.8) - knip@5.30.2(@types/node@22.5.5)(typescript@5.6.2): dependencies: '@nodelib/fs.walk': 1.2.8 @@ -21999,7 +21898,7 @@ snapshots: lerna@8.1.8(@swc/core@1.5.28)(encoding@0.1.13): dependencies: - '@lerna/create': 8.1.8(@swc/core@1.5.28)(encoding@0.1.13)(typescript@5.5.4) + '@lerna/create': 8.1.8(@swc/core@1.5.28)(encoding@0.1.13)(typescript@5.6.2) '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 @@ -22017,7 +21916,7 @@ snapshots: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 8.3.6(typescript@5.6.2) dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 @@ -22070,7 +21969,7 @@ snapshots: strong-log-transformer: 2.1.0 tar: 6.2.1 temp-dir: 1.0.0 - typescript: 5.5.4 + typescript: 5.6.2 upath: 2.0.1 uuid: 10.0.0 validate-npm-package-license: 3.0.4 @@ -22414,8 +22313,6 @@ snapshots: transitivePeerDependencies: - supports-color - loglevel@1.9.1: {} - loglevel@1.9.2: {} lookup-closest-locale@6.2.0: {} @@ -23116,7 +23013,7 @@ snapshots: node-releases@2.0.18: {} - nodemon@3.1.5: + nodemon@3.1.6: dependencies: chokidar: 3.6.0 debug: 4.3.7(supports-color@5.5.0) @@ -23660,7 +23557,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) get-uri: 6.0.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.5 @@ -24950,26 +24847,26 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.20.0 fsevents: 2.3.3 - rollup@4.21.3: + rollup@4.22.0: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.21.3 - '@rollup/rollup-android-arm64': 4.21.3 - '@rollup/rollup-darwin-arm64': 4.21.3 - '@rollup/rollup-darwin-x64': 4.21.3 - '@rollup/rollup-linux-arm-gnueabihf': 4.21.3 - '@rollup/rollup-linux-arm-musleabihf': 4.21.3 - '@rollup/rollup-linux-arm64-gnu': 4.21.3 - '@rollup/rollup-linux-arm64-musl': 4.21.3 - '@rollup/rollup-linux-powerpc64le-gnu': 4.21.3 - '@rollup/rollup-linux-riscv64-gnu': 4.21.3 - '@rollup/rollup-linux-s390x-gnu': 4.21.3 - '@rollup/rollup-linux-x64-gnu': 4.21.3 - '@rollup/rollup-linux-x64-musl': 4.21.3 - '@rollup/rollup-win32-arm64-msvc': 4.21.3 - '@rollup/rollup-win32-ia32-msvc': 4.21.3 - '@rollup/rollup-win32-x64-msvc': 4.21.3 + '@rollup/rollup-android-arm-eabi': 4.22.0 + '@rollup/rollup-android-arm64': 4.22.0 + '@rollup/rollup-darwin-arm64': 4.22.0 + '@rollup/rollup-darwin-x64': 4.22.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.22.0 + '@rollup/rollup-linux-arm-musleabihf': 4.22.0 + '@rollup/rollup-linux-arm64-gnu': 4.22.0 + '@rollup/rollup-linux-arm64-musl': 4.22.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.22.0 + '@rollup/rollup-linux-riscv64-gnu': 4.22.0 + '@rollup/rollup-linux-s390x-gnu': 4.22.0 + '@rollup/rollup-linux-x64-gnu': 4.22.0 + '@rollup/rollup-linux-x64-musl': 4.22.0 + '@rollup/rollup-win32-arm64-msvc': 4.22.0 + '@rollup/rollup-win32-ia32-msvc': 4.22.0 + '@rollup/rollup-win32-x64-msvc': 4.22.0 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} @@ -25362,7 +25259,7 @@ snapshots: socket.io-adapter@2.5.5: dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) ws: 8.17.1 transitivePeerDependencies: - bufferutil @@ -25372,7 +25269,7 @@ snapshots: socket.io-parser@4.2.4: dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -25399,7 +25296,7 @@ snapshots: socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -25407,7 +25304,7 @@ snapshots: socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -25503,7 +25400,7 @@ snapshots: spdy-transport@3.0.0: dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -25514,7 +25411,7 @@ snapshots: spdy@4.0.2: dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -25589,7 +25486,7 @@ snapshots: streamroller@3.1.5: dependencies: date-format: 4.0.14 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -26024,10 +25921,6 @@ snapshots: true-myth@4.1.1: {} - ts-api-utils@1.3.0(typescript@5.5.4): - dependencies: - typescript: 5.5.4 - ts-api-utils@1.3.0(typescript@5.6.2): dependencies: typescript: 5.6.2 @@ -26037,27 +25930,6 @@ snapshots: '@ts-morph/common': 0.12.3 code-block-writer: 11.0.3 - ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.5.4): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 22.5.5 - acorn: 8.12.1 - acorn-walk: 8.3.3 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.5.4 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.5.28 - optional: true - ts-node@10.9.2(@swc/core@1.5.28)(@types/node@22.5.5)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 @@ -26100,7 +25972,7 @@ snapshots: tuf-js@1.1.7: dependencies: '@tufjs/models': 1.0.4 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.7(supports-color@5.5.0) make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color @@ -26447,7 +26319,7 @@ snapshots: dependencies: esbuild: 0.21.5 postcss: 8.4.47 - rollup: 4.21.3 + rollup: 4.22.0 optionalDependencies: '@types/node': 22.5.5 fsevents: 2.3.3 @@ -26459,7 +26331,7 @@ snapshots: dependencies: esbuild: 0.21.5 postcss: 8.4.47 - rollup: 4.21.3 + rollup: 4.22.0 optionalDependencies: '@types/node': 22.5.5 fsevents: 2.3.3