sit-onyx 1.6.0-dev-20260112084701 → 1.6.0-dev-20260112121557

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sit-onyx",
3
3
  "description": "A design system and Vue.js component library created by Schwarz IT",
4
- "version": "1.6.0-dev-20260112084701",
4
+ "version": "1.6.0-dev-20260112121557",
5
5
  "type": "module",
6
6
  "author": "Schwarz IT KG",
7
7
  "license": "Apache-2.0",
@@ -40,7 +40,7 @@
40
40
  "peerDependencies": {
41
41
  "typescript": ">= 5.2.2",
42
42
  "vue": ">= 3.5.0",
43
- "@sit-onyx/icons": "^1.4.0-dev-20260112084701"
43
+ "@sit-onyx/icons": "^1.4.0-dev-20260112121557"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@axe-core/playwright": "^4.11.0",
@@ -59,8 +59,8 @@
59
59
  "vue-i18n": "^11.2.8",
60
60
  "vue-router": "^4.6.4",
61
61
  "@sit-onyx/flags": "^1.0.0",
62
- "@sit-onyx/headless": "^0.5.0-dev-20260112084701",
63
- "@sit-onyx/playwright-utils": "^1.1.0-dev-20260112084701",
62
+ "@sit-onyx/headless": "^0.5.0-dev-20260112121557",
63
+ "@sit-onyx/playwright-utils": "^1.1.0-dev-20260112121557",
64
64
  "@sit-onyx/shared": "^0.1.0",
65
65
  "@sit-onyx/storybook-utils": "^1.1.0"
66
66
  },
@@ -1,28 +0,0 @@
1
- /**
2
- * @experimental
3
- * @deprecated This component is still under active development and its API might change in patch releases.
4
- */
5
- declare const _default: import('vue', { with: { "resolution-mode": "import" } }).DefineComponent<(import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlValueProps & {
6
- modelValue: number;
7
- disabled?: boolean;
8
- }) | (import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlIconProps & {
9
- modelValue: number;
10
- disabled?: boolean;
11
- }) | (import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlInputProps & {
12
- modelValue: number;
13
- disabled?: boolean;
14
- }), {}, {}, {}, {}, import('vue', { with: { "resolution-mode": "import" } }).ComponentOptionsMixin, import('vue', { with: { "resolution-mode": "import" } }).ComponentOptionsMixin, {
15
- "update:modelValue": (value: number) => any;
16
- }, string, import('vue', { with: { "resolution-mode": "import" } }).PublicProps, Readonly<(import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlValueProps & {
17
- modelValue: number;
18
- disabled?: boolean;
19
- }) | (import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlIconProps & {
20
- modelValue: number;
21
- disabled?: boolean;
22
- }) | (import('../../composables/density.js', { with: { "resolution-mode": "import" } }).DensityProp & import('./types.js', { with: { "resolution-mode": "import" } }).OnyxSliderControlInputProps & {
23
- modelValue: number;
24
- disabled?: boolean;
25
- })> & Readonly<{
26
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
27
- }>, {}, {}, {}, {}, string, import('vue', { with: { "resolution-mode": "import" } }).ComponentProvideOptions, false, {}, HTMLDivElement>;
28
- export default _default;
@@ -1,40 +0,0 @@
1
- import { DensityProp } from '../../composables/density.js';
2
- export declare const SLIDER_CONTROLS: readonly ["icon", "value", "input"];
3
- export type SliderControl = (typeof SLIDER_CONTROLS)[number];
4
- export type OnyxSliderControlValueProps = {
5
- control: "value";
6
- step?: never;
7
- min?: never;
8
- max?: never;
9
- };
10
- export type OnyxSliderControlIconProps = {
11
- control: "icon";
12
- direction: SliderControlDirection;
13
- /**
14
- * Step size to change value when clicking the icon button.
15
- */
16
- step: number;
17
- min?: never;
18
- max?: never;
19
- };
20
- export type OnyxSliderControlInputProps = {
21
- control: "input";
22
- direction?: SliderControlDirection;
23
- /**
24
- * Step size to use for the stepper.
25
- */
26
- step: number;
27
- min: number;
28
- max: number;
29
- };
30
- export type SliderControlDirection = "increase" | "decrease";
31
- export type OnyxSliderControlProps = DensityProp & (OnyxSliderControlValueProps | OnyxSliderControlIconProps | OnyxSliderControlInputProps) & {
32
- /**
33
- * Current control value.
34
- */
35
- modelValue: number;
36
- /**
37
- * Whether the control is disabled.
38
- */
39
- disabled?: boolean;
40
- };