@knime/kds-components 0.28.5 → 0.28.8
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/dist/auto-configure-BU7AIhL7.js +23 -0
- package/dist/auto-configure-BU7AIhL7.js.map +1 -0
- package/dist/index.css +207 -71
- package/dist/index.js +926 -566
- package/dist/index.js.map +1 -1
- package/dist/src/accessories/Icon/useIcon.d.ts.map +1 -1
- package/dist/src/buttons/KdsMenuButton/types.d.ts +1 -1
- package/dist/src/buttons/KdsMenuButton/types.d.ts.map +1 -1
- package/dist/src/containers/ListItem/KdsListItem/enums.d.ts +2 -1
- package/dist/src/containers/ListItem/KdsListItem/enums.d.ts.map +1 -1
- package/dist/src/containers/ListItem/KdsListItem/types.d.ts +8 -1
- package/dist/src/containers/ListItem/KdsListItem/types.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/KdsMenuContainer.vue.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts +6 -2
- package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/types.d.ts +70 -12
- package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
- package/dist/src/containers/index.d.ts +1 -1
- package/dist/src/containers/index.d.ts.map +1 -1
- package/dist/src/forms/inputs/BaseInput.vue.d.ts +1 -1
- package/dist/src/forms/inputs/BaseInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +2 -2
- package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/Textarea/KdsTextarea.vue.d.ts +1 -1
- package/dist/src/forms/inputs/Textarea/KdsTextarea.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts +15 -15
- package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts +12 -12
- package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts +2 -2
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +2 -2
- package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +2 -2
- package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts +2 -2
- package/dist/src/forms/types.d.ts +1 -1
- package/dist/src/forms/types.d.ts.map +1 -1
- package/dist/src/layouts/Breadcrumb/BreadcrumbItem.vue.d.ts +8 -0
- package/dist/src/layouts/Breadcrumb/BreadcrumbItem.vue.d.ts.map +1 -0
- package/dist/src/layouts/Breadcrumb/KdsBreadcrumb.vue.d.ts +6 -0
- package/dist/src/layouts/Breadcrumb/KdsBreadcrumb.vue.d.ts.map +1 -0
- package/dist/src/layouts/Breadcrumb/index.d.ts +3 -0
- package/dist/src/layouts/Breadcrumb/index.d.ts.map +1 -0
- package/dist/src/layouts/Breadcrumb/types.d.ts +61 -0
- package/dist/src/layouts/Breadcrumb/types.d.ts.map +1 -0
- package/dist/src/layouts/Breadcrumb/useBreadcrumbAdaptiveLayout.d.ts +30 -0
- package/dist/src/layouts/Breadcrumb/useBreadcrumbAdaptiveLayout.d.ts.map +1 -0
- package/dist/src/layouts/index.d.ts +2 -0
- package/dist/src/layouts/index.d.ts.map +1 -1
- package/dist/src/overlays/Modal/KdsModal.vue.d.ts +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ type __VLS_PublicProps = {
|
|
|
7
7
|
"granularity"?: KdsTimeInputGranularity;
|
|
8
8
|
} & __VLS_Props;
|
|
9
9
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
10
|
-
focus: () => void;
|
|
10
|
+
focus: (options?: FocusOptions) => void;
|
|
11
11
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
12
|
"update:modelValue": (value: Temporal.PlainTime | null) => any;
|
|
13
13
|
"update:granularity": (value: KdsTimeInputGranularity) => any;
|
|
@@ -114,7 +114,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
114
114
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
115
115
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
116
116
|
}>, {
|
|
117
|
-
focus: () => void;
|
|
117
|
+
focus: (options?: FocusOptions) => void;
|
|
118
118
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
119
119
|
input: (event: Event) => any;
|
|
120
120
|
click: (event: MouseEvent) => any;
|
|
@@ -185,7 +185,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
185
185
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
186
186
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
187
187
|
}>, "focus"> & {
|
|
188
|
-
focus: () => void;
|
|
188
|
+
focus: (options?: FocusOptions) => void;
|
|
189
189
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
190
190
|
$slots: {
|
|
191
191
|
leading?(_: {}): any;
|
|
@@ -383,7 +383,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
383
383
|
})> & Readonly<{
|
|
384
384
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
385
385
|
}>, {
|
|
386
|
-
focus: () => void;
|
|
386
|
+
focus: (options?: FocusOptions) => void;
|
|
387
387
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
388
388
|
"update:modelValue": (value: number) => any;
|
|
389
389
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -486,7 +486,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
486
486
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
487
487
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
488
488
|
}>, {
|
|
489
|
-
focus: () => void;
|
|
489
|
+
focus: (options?: FocusOptions) => void;
|
|
490
490
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
491
491
|
input: (event: Event) => any;
|
|
492
492
|
click: (event: MouseEvent) => any;
|
|
@@ -557,7 +557,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
557
557
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
558
558
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
559
559
|
}>, "focus"> & {
|
|
560
|
-
focus: () => void;
|
|
560
|
+
focus: (options?: FocusOptions) => void;
|
|
561
561
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
562
562
|
$slots: {
|
|
563
563
|
leading?(_: {}): any;
|
|
@@ -620,7 +620,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
620
620
|
})> & Readonly<{
|
|
621
621
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
622
622
|
}>), {
|
|
623
|
-
focus: () => void;
|
|
623
|
+
focus: (options?: FocusOptions) => void;
|
|
624
624
|
}, {}, {}, {}, {}> | null;
|
|
625
625
|
secondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
626
626
|
modelValue?: number;
|
|
@@ -671,7 +671,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
671
671
|
})> & Readonly<{
|
|
672
672
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
673
673
|
}>, {
|
|
674
|
-
focus: () => void;
|
|
674
|
+
focus: (options?: FocusOptions) => void;
|
|
675
675
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
676
676
|
"update:modelValue": (value: number) => any;
|
|
677
677
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -774,7 +774,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
774
774
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
775
775
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
776
776
|
}>, {
|
|
777
|
-
focus: () => void;
|
|
777
|
+
focus: (options?: FocusOptions) => void;
|
|
778
778
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
779
779
|
input: (event: Event) => any;
|
|
780
780
|
click: (event: MouseEvent) => any;
|
|
@@ -845,7 +845,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
845
845
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
846
846
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
847
847
|
}>, "focus"> & {
|
|
848
|
-
focus: () => void;
|
|
848
|
+
focus: (options?: FocusOptions) => void;
|
|
849
849
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
850
850
|
$slots: {
|
|
851
851
|
leading?(_: {}): any;
|
|
@@ -908,7 +908,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
908
908
|
})> & Readonly<{
|
|
909
909
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
910
910
|
}>), {
|
|
911
|
-
focus: () => void;
|
|
911
|
+
focus: (options?: FocusOptions) => void;
|
|
912
912
|
}, {}, {}, {}, {}> | null;
|
|
913
913
|
millisecondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
914
914
|
modelValue?: number;
|
|
@@ -959,7 +959,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
959
959
|
})> & Readonly<{
|
|
960
960
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
961
961
|
}>, {
|
|
962
|
-
focus: () => void;
|
|
962
|
+
focus: (options?: FocusOptions) => void;
|
|
963
963
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
964
964
|
"update:modelValue": (value: number) => any;
|
|
965
965
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -1062,7 +1062,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
1062
1062
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
1063
1063
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1064
1064
|
}>, {
|
|
1065
|
-
focus: () => void;
|
|
1065
|
+
focus: (options?: FocusOptions) => void;
|
|
1066
1066
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1067
1067
|
input: (event: Event) => any;
|
|
1068
1068
|
click: (event: MouseEvent) => any;
|
|
@@ -1133,7 +1133,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
1133
1133
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
1134
1134
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1135
1135
|
}>, "focus"> & {
|
|
1136
|
-
focus: () => void;
|
|
1136
|
+
focus: (options?: FocusOptions) => void;
|
|
1137
1137
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1138
1138
|
$slots: {
|
|
1139
1139
|
leading?(_: {}): any;
|
|
@@ -1196,7 +1196,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
1196
1196
|
})> & Readonly<{
|
|
1197
1197
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1198
1198
|
}>), {
|
|
1199
|
-
focus: () => void;
|
|
1199
|
+
focus: (options?: FocusOptions) => void;
|
|
1200
1200
|
}, {}, {}, {}, {}> | null;
|
|
1201
1201
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1202
1202
|
P: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"AAyLA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AASlD,OAAO,KAAK,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAG7E,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA+GrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"AAyLA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AASlD,OAAO,KAAK,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAG7E,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA+GrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;mBAtIhB,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFR,CAnFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAscupR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAnXrxR,CAnFQ;;;;;;;;;;;;;;;;;;;;;AAobR,wBAUG"}
|
|
@@ -66,7 +66,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
66
66
|
})> & Readonly<{
|
|
67
67
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
68
68
|
}>, {
|
|
69
|
-
focus: () => void;
|
|
69
|
+
focus: (options?: FocusOptions) => void;
|
|
70
70
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
71
71
|
"update:modelValue": (value: number) => any;
|
|
72
72
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -169,7 +169,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
169
169
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
170
170
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
171
171
|
}>, {
|
|
172
|
-
focus: () => void;
|
|
172
|
+
focus: (options?: FocusOptions) => void;
|
|
173
173
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
174
174
|
input: (event: Event) => any;
|
|
175
175
|
click: (event: MouseEvent) => any;
|
|
@@ -240,7 +240,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
240
240
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
241
241
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
242
242
|
}>, "focus"> & {
|
|
243
|
-
focus: () => void;
|
|
243
|
+
focus: (options?: FocusOptions) => void;
|
|
244
244
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
245
245
|
$slots: {
|
|
246
246
|
leading?(_: {}): any;
|
|
@@ -303,7 +303,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
303
303
|
})> & Readonly<{
|
|
304
304
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
305
305
|
}>), {
|
|
306
|
-
focus: () => void;
|
|
306
|
+
focus: (options?: FocusOptions) => void;
|
|
307
307
|
}, {}, {}, {}, {}> | null;
|
|
308
308
|
secondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
309
309
|
modelValue?: number;
|
|
@@ -354,7 +354,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
354
354
|
})> & Readonly<{
|
|
355
355
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
356
356
|
}>, {
|
|
357
|
-
focus: () => void;
|
|
357
|
+
focus: (options?: FocusOptions) => void;
|
|
358
358
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
359
359
|
"update:modelValue": (value: number) => any;
|
|
360
360
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -457,7 +457,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
457
457
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
458
458
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
459
459
|
}>, {
|
|
460
|
-
focus: () => void;
|
|
460
|
+
focus: (options?: FocusOptions) => void;
|
|
461
461
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
462
462
|
input: (event: Event) => any;
|
|
463
463
|
click: (event: MouseEvent) => any;
|
|
@@ -528,7 +528,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
528
528
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
529
529
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
530
530
|
}>, "focus"> & {
|
|
531
|
-
focus: () => void;
|
|
531
|
+
focus: (options?: FocusOptions) => void;
|
|
532
532
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
533
533
|
$slots: {
|
|
534
534
|
leading?(_: {}): any;
|
|
@@ -591,7 +591,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
591
591
|
})> & Readonly<{
|
|
592
592
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
593
593
|
}>), {
|
|
594
|
-
focus: () => void;
|
|
594
|
+
focus: (options?: FocusOptions) => void;
|
|
595
595
|
}, {}, {}, {}, {}> | null;
|
|
596
596
|
millisecondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
597
597
|
modelValue?: number;
|
|
@@ -642,7 +642,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
642
642
|
})> & Readonly<{
|
|
643
643
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
644
644
|
}>, {
|
|
645
|
-
focus: () => void;
|
|
645
|
+
focus: (options?: FocusOptions) => void;
|
|
646
646
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
647
647
|
"update:modelValue": (value: number) => any;
|
|
648
648
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -745,7 +745,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
745
745
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
746
746
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
747
747
|
}>, {
|
|
748
|
-
focus: () => void;
|
|
748
|
+
focus: (options?: FocusOptions) => void;
|
|
749
749
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
750
750
|
input: (event: Event) => any;
|
|
751
751
|
click: (event: MouseEvent) => any;
|
|
@@ -816,7 +816,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
816
816
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
817
817
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
818
818
|
}>, "focus"> & {
|
|
819
|
-
focus: () => void;
|
|
819
|
+
focus: (options?: FocusOptions) => void;
|
|
820
820
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
821
821
|
$slots: {
|
|
822
822
|
leading?(_: {}): any;
|
|
@@ -879,7 +879,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
879
879
|
})> & Readonly<{
|
|
880
880
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
881
881
|
}>), {
|
|
882
|
-
focus: () => void;
|
|
882
|
+
focus: (options?: FocusOptions) => void;
|
|
883
883
|
}, {}, {}, {}, {}> | null;
|
|
884
884
|
}, HTMLDivElement>;
|
|
885
885
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/TimePicker.vue"],"names":[],"mappings":"AA4PA,OAAO,EAAY,QAAQ,EAAkB,MAAM,KAAK,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAM7C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAYvD,KAAK,WAAW,GAAG;IACjB,cAAc,EAAE,uBAAuB,CAAC;CACzC,CAAC;AAoGF,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACtC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"TimePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/TimePicker.vue"],"names":[],"mappings":"AA4PA,OAAO,EAAY,QAAQ,EAAkB,MAAM,KAAK,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAM7C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAYvD,KAAK,WAAW,GAAG;IACjB,cAAc,EAAE,uBAAuB,CAAC;CACzC,CAAC;AAoGF,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACtC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA5HhB,CAtKe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAgmBq9J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA1b1lK,CAtKe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAsKf,CAtKe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAgmBq9J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA1b1lK,CAtKe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAsKf,CAtKe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAgmBq9J,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA1b1lK,CAtKe;;;AA8kBf,wBAUG"}
|
|
@@ -4,7 +4,7 @@ type __VLS_PublicProps = {
|
|
|
4
4
|
modelValue?: string;
|
|
5
5
|
} & __VLS_Props;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
7
|
-
focus: () => void;
|
|
7
|
+
focus: (options?: FocusOptions) => void;
|
|
8
8
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -109,7 +109,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
109
109
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
110
110
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
111
111
|
}>, {
|
|
112
|
-
focus: () => void;
|
|
112
|
+
focus: (options?: FocusOptions) => void;
|
|
113
113
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
114
114
|
input: (event: Event) => any;
|
|
115
115
|
click: (event: MouseEvent) => any;
|
|
@@ -180,7 +180,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
180
180
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
181
181
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
182
182
|
}>, "focus"> & {
|
|
183
|
-
focus: () => void;
|
|
183
|
+
focus: (options?: FocusOptions) => void;
|
|
184
184
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
185
185
|
$slots: {
|
|
186
186
|
leading?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsUsernameInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/UsernameInput/KdsUsernameInput.vue"],"names":[],"mappings":"AAwDA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAuBzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"KdsUsernameInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/UsernameInput/KdsUsernameInput.vue"],"names":[],"mappings":"AAwDA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAuBzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;mBAOgG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwGy3oB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhmpB,wBAUG"}
|
|
@@ -111,7 +111,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
111
111
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
112
112
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
|
-
focus: () => void;
|
|
114
|
+
focus: (options?: FocusOptions) => void;
|
|
115
115
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
116
116
|
input: (event: Event) => any;
|
|
117
117
|
click: (event: MouseEvent) => any;
|
|
@@ -182,7 +182,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
182
182
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
183
183
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
184
184
|
}>, "focus"> & {
|
|
185
|
-
focus: () => void;
|
|
185
|
+
focus: (options?: FocusOptions) => void;
|
|
186
186
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
187
187
|
$slots: {
|
|
188
188
|
leading?(_: {}): any;
|
|
@@ -318,7 +318,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
318
318
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
319
319
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
320
320
|
}>, {
|
|
321
|
-
focus: () => void;
|
|
321
|
+
focus: (options?: FocusOptions) => void;
|
|
322
322
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
323
323
|
input: (event: Event) => any;
|
|
324
324
|
click: (event: MouseEvent) => any;
|
|
@@ -389,7 +389,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
389
389
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
390
390
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
391
391
|
}>, "focus"> & {
|
|
392
|
-
focus: () => void;
|
|
392
|
+
focus: (options?: FocusOptions) => void;
|
|
393
393
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
394
394
|
$slots: {
|
|
395
395
|
leading?(_: {}): any;
|
|
@@ -332,7 +332,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
332
332
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
333
333
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
334
334
|
}>, {
|
|
335
|
-
focus: () => void;
|
|
335
|
+
focus: (options?: FocusOptions) => void;
|
|
336
336
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
337
337
|
input: (event: Event) => any;
|
|
338
338
|
click: (event: MouseEvent) => any;
|
|
@@ -403,7 +403,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
403
403
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
404
404
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
405
405
|
}>, "focus"> & {
|
|
406
|
-
focus: () => void;
|
|
406
|
+
focus: (options?: FocusOptions) => void;
|
|
407
407
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
408
408
|
$slots: {
|
|
409
409
|
leading?(_: {}): any;
|
|
@@ -114,7 +114,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
114
114
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
115
115
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
116
116
|
}>, {
|
|
117
|
-
focus: () => void;
|
|
117
|
+
focus: (options?: FocusOptions) => void;
|
|
118
118
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
119
119
|
input: (event: Event) => any;
|
|
120
120
|
click: (event: MouseEvent) => any;
|
|
@@ -185,7 +185,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
185
185
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
186
186
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
187
187
|
}>, "focus"> & {
|
|
188
|
-
focus: () => void;
|
|
188
|
+
focus: (options?: FocusOptions) => void;
|
|
189
189
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
190
190
|
$slots: {
|
|
191
191
|
leading?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/forms/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;AAEhC,KAAK,wBAAwB,GAAG;IAC9B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,KAAK,kBAAkB,GAAG,wBAAwB,GAChD,CACI;IACE;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB,GACD;IACE,KAAK,CAAC,EAAE,KAAK,CAAC;IACd;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CACJ,CAAC;AAEJ,KAAK,oBAAoB,GAAG,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;AAExD,KAAK,oBAAoB,GAAG;IAC1B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,kBAAkB,GAChD,oBAAoB,GACpB,oBAAoB,CAAC;AAEvB,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;OAEG;IACH,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/forms/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;AAEhC,KAAK,wBAAwB,GAAG;IAC9B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,KAAK,kBAAkB,GAAG,wBAAwB,GAChD,CACI;IACE;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB,GACD;IACE,KAAK,CAAC,EAAE,KAAK,CAAC;IACd;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CACJ,CAAC;AAEJ,KAAK,oBAAoB,GAAG,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;AAExD,KAAK,oBAAoB,GAAG;IAC1B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,kBAAkB,GAChD,oBAAoB,GACpB,oBAAoB,CAAC;AAEvB,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;OAEG;IACH,KAAK,EAAE,CAAC,OAAO,CAAC,EAAE,YAAY,KAAK,IAAI,CAAC;CACzC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BreadcrumbItemProps, KdsBreadcrumbButtonItem } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
itemClick: (item: KdsBreadcrumbButtonItem) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{
|
|
5
|
+
onItemClick?: ((item: KdsBreadcrumbButtonItem) => any) | undefined;
|
|
6
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=BreadcrumbItem.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BreadcrumbItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Breadcrumb/BreadcrumbItem.vue"],"names":[],"mappings":"AAiJA,OAAO,KAAK,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;;;;;;AAwK5E,wBAOG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { KdsBreadcrumbProps } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<KdsBreadcrumbProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<KdsBreadcrumbProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
3
|
+
listRef: HTMLOListElement;
|
|
4
|
+
}, any>;
|
|
5
|
+
export default _default;
|
|
6
|
+
//# sourceMappingURL=KdsBreadcrumb.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KdsBreadcrumb.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Breadcrumb/KdsBreadcrumb.vue"],"names":[],"mappings":"AA4HA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;;;;AAmHlD,wBAOG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Breadcrumb/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,YAAY,EACV,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,uBAAuB,EACvB,kBAAkB,GACnB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { KdsIconName } from '../../accessories/Icon/types';
|
|
2
|
+
type KdsBreadcrumbLabelledItem = {
|
|
3
|
+
/**
|
|
4
|
+
* The text shown for the breadcrumb item.
|
|
5
|
+
*/
|
|
6
|
+
text: string;
|
|
7
|
+
ariaLabel?: never;
|
|
8
|
+
} | {
|
|
9
|
+
text?: never;
|
|
10
|
+
/**
|
|
11
|
+
* Accessible label used when no visible text is rendered.
|
|
12
|
+
*/
|
|
13
|
+
ariaLabel: string;
|
|
14
|
+
};
|
|
15
|
+
type BaseBreadcrumbItem = {
|
|
16
|
+
/**
|
|
17
|
+
* Optional KDS icon rendered before the item label.
|
|
18
|
+
*/
|
|
19
|
+
leadingIcon?: KdsIconName;
|
|
20
|
+
/**
|
|
21
|
+
* Optional title attribute shown on hover.
|
|
22
|
+
*/
|
|
23
|
+
title?: string;
|
|
24
|
+
} & KdsBreadcrumbLabelledItem;
|
|
25
|
+
export type KdsBreadcrumbLinkItem = BaseBreadcrumbItem & {
|
|
26
|
+
/**
|
|
27
|
+
* Link target. Required for link items.
|
|
28
|
+
*/
|
|
29
|
+
to: string;
|
|
30
|
+
handler?: never;
|
|
31
|
+
};
|
|
32
|
+
export type KdsBreadcrumbButtonItem = BaseBreadcrumbItem & {
|
|
33
|
+
/**
|
|
34
|
+
* Click handler for the breadcrumb item.
|
|
35
|
+
*/
|
|
36
|
+
handler: (item: KdsBreadcrumbButtonItem) => void;
|
|
37
|
+
to?: never;
|
|
38
|
+
};
|
|
39
|
+
export type KdsBreadcrumbStaticItem = BaseBreadcrumbItem & {
|
|
40
|
+
handler?: never;
|
|
41
|
+
to?: never;
|
|
42
|
+
};
|
|
43
|
+
export type KdsBreadcrumbItem = KdsBreadcrumbLinkItem | KdsBreadcrumbButtonItem | KdsBreadcrumbStaticItem;
|
|
44
|
+
export type BreadcrumbItemProps = {
|
|
45
|
+
item: KdsBreadcrumbItem;
|
|
46
|
+
isCurrentItem: boolean;
|
|
47
|
+
};
|
|
48
|
+
export type KdsBreadcrumbProps = {
|
|
49
|
+
/**
|
|
50
|
+
* Breadcrumb path items from root to current. Items can include links,
|
|
51
|
+
* click handlers, leading icons, and titles. If an item has
|
|
52
|
+
* no visible text, it must provide ariaLabel so it remains accessible.
|
|
53
|
+
*/
|
|
54
|
+
items: KdsBreadcrumbItem[];
|
|
55
|
+
/**
|
|
56
|
+
* Accessible label for the breadcrumb landmark. Fallbacks to "Breadcrumb".
|
|
57
|
+
*/
|
|
58
|
+
ariaLabel?: string;
|
|
59
|
+
};
|
|
60
|
+
export {};
|
|
61
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Breadcrumb/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAEhE,KAAK,yBAAyB,GAC1B;IACE;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB,GACD;IACE,IAAI,CAAC,EAAE,KAAK,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEN,KAAK,kBAAkB,GAAG;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,GAAG,yBAAyB,CAAC;AAE9B,MAAM,MAAM,qBAAqB,GAAG,kBAAkB,GAAG;IACvD;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,KAAK,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,GAAG;IACzD;;OAEG;IACH,OAAO,EAAE,CAAC,IAAI,EAAE,uBAAuB,KAAK,IAAI,CAAC;IACjD,EAAE,CAAC,EAAE,KAAK,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,GAAG;IACzD,OAAO,CAAC,EAAE,KAAK,CAAC;IAChB,EAAE,CAAC,EAAE,KAAK,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,iBAAiB,GACzB,qBAAqB,GACrB,uBAAuB,GACvB,uBAAuB,CAAC;AAE5B,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,iBAAiB,CAAC;IACxB,aAAa,EAAE,OAAO,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;;OAIG;IACH,KAAK,EAAE,iBAAiB,EAAE,CAAC;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Ref, ShallowRef } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* Finder-style phased collapsing for a breadcrumb-like horizontal list.
|
|
4
|
+
*
|
|
5
|
+
* CSS `flex-shrink` cannot express a strict ordering ("don't touch the
|
|
6
|
+
* first/last items until every middle item is at its floor"), so we read each
|
|
7
|
+
* item's natural width and apply per-item caps to absorb the excess in three
|
|
8
|
+
* crisp phases:
|
|
9
|
+
* 1. Middle items shrink (proportionally to their natural width) until they
|
|
10
|
+
* all reach their floor.
|
|
11
|
+
* 2. Then the first (root) item shrinks down to its floor.
|
|
12
|
+
* 3. Then the last (current) item shrinks down to its floor.
|
|
13
|
+
*
|
|
14
|
+
* The per-item floor is defined statically via the CSS `min-width` of each
|
|
15
|
+
* `<li>` (leading icon + chevron + spacing, with a smaller value for the
|
|
16
|
+
* chevron-less last item). The composable simply reads that computed value.
|
|
17
|
+
*
|
|
18
|
+
* Results are exposed through two CSS custom properties on each `<li>`:
|
|
19
|
+
* - `--kds-bc-max-width`: resting cap (omitted when the item fits naturally)
|
|
20
|
+
* - `--kds-bc-natural-width`: full intrinsic width (used by a `:hover` /
|
|
21
|
+
* `:focus-within` rule to expand the item back to its natural width and
|
|
22
|
+
* push the following items past the clipped right edge of the list).
|
|
23
|
+
*
|
|
24
|
+
* @param listRef Template ref for the flex container (`<ol>`).
|
|
25
|
+
* @param itemRefs Collected refs for each list item (`<li>`).
|
|
26
|
+
* @param itemsSource Reactive accessor whose change should trigger a relayout
|
|
27
|
+
* (typically `() => props.items`).
|
|
28
|
+
*/
|
|
29
|
+
export declare const useBreadcrumbAdaptiveLayout: (listRef: Readonly<ShallowRef<HTMLElement | null>>, itemRefs: Readonly<Ref<HTMLLIElement[]>>, itemsSource: () => unknown) => void;
|
|
30
|
+
//# sourceMappingURL=useBreadcrumbAdaptiveLayout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useBreadcrumbAdaptiveLayout.d.ts","sourceRoot":"","sources":["../../../../src/layouts/Breadcrumb/useBreadcrumbAdaptiveLayout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAE,KAAK,UAAU,EAAmB,MAAM,KAAK,CAAC;AAGjE;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,2BAA2B,GACtC,SAAS,QAAQ,CAAC,UAAU,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC,EACjD,UAAU,QAAQ,CAAC,GAAG,CAAC,aAAa,EAAE,CAAC,CAAC,EACxC,aAAa,MAAM,OAAO,SA8H3B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/layouts/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,QAAQ,CAAC;AACvB,mBAAmB,QAAQ,CAAC;AAE5B,cAAc,SAAS,CAAC;AACxB,mBAAmB,SAAS,CAAC;AAE7B,cAAc,UAAU,CAAC;AACzB,mBAAmB,UAAU,CAAC;AAE9B,cAAc,mBAAmB,CAAC;AAClC,mBAAmB,mBAAmB,CAAC;AAEvC,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/layouts/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,QAAQ,CAAC;AACvB,mBAAmB,QAAQ,CAAC;AAE5B,cAAc,SAAS,CAAC;AACxB,mBAAmB,SAAS,CAAC;AAE7B,cAAc,UAAU,CAAC;AACzB,mBAAmB,UAAU,CAAC;AAE9B,cAAc,mBAAmB,CAAC;AAClC,mBAAmB,mBAAmB,CAAC;AAEvC,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC"}
|
|
@@ -4,7 +4,7 @@ declare function __VLS_template(): {
|
|
|
4
4
|
slots: {
|
|
5
5
|
default?(_: {
|
|
6
6
|
headline: string;
|
|
7
|
-
leadingIcon: "filter" | "link" | "menu" | "time" | "stop" | "text" | "key" | "add-user" | "ai-general" | "annotation-mode" | "arrow-down" | "arrow-up" | "arrows-expand" | "arrows-move" | "arrows-order" | "back" | "bold" | "calendar" | "case-sensitive" | "cell-renderer" | "center-aligned" | "checkmark" | "chevron-down" | "chevron-left-double" | "chevron-left" | "chevron-right-double" | "chevron-right" | "chevron-up" | "circle-error" | "circle-info" | "circle-question" | "circle-success" | "circle-unchecked" | "cloud-download" | "cloud-knime" | "cloud-pending-changes" | "cloud-synced" | "cloud-upload" | "cloud-workflow" | "code-block" | "collection" | "color-picker" | "column-width" | "comment" | "component" | "connection" | "copy" | "cursor" | "data-app" | "data-value-view" | "date-time" | "db-browse" | "db-database" | "db-fetch" | "db-schema" | "db-table-view" | "db-table" | "deploy" | "detect" | "divider" | "duration" | "edit" | "education" | "error-panel" | "execute-all" | "execute" | "expand-panel" | "extension-community" | "extension" | "external-link" | "eye" | "file-export" | "file-text" | "file" | "flow-variable-default" | "flow-variable-in-out" | "flow-variable-in" | "flow-variable-out" | "folder-plus" | "folder-search" | "folder-workflow" | "folder" | "forum" | "function-catalog" | "hide-eye" | "home" | "import" | "info" | "interval" | "italic" | "layout-editor" | "left-aligned" | "like" | "limit" | "linked-metanode" | "list-bulletpoint" | "list-number" | "list-thumbs" | "list" | "local-filesystem" | "lock" | "metanode" | "mini-map" | "minimize-dialog" | "minimize-side-panel" | "minus" | "more-actions" | "node-stack" | "nodes-align-horiz" | "nodes-align-vert" | "open-in-new-window" | "pan-mode" | "parameter" | "path-separator" | "pending-changes" | "pin" | "placeholder" | "plus" | "python" | "quote" | "re-execution" | "redo" | "regex" | "reload" | "rename" | "replace" | "reset-all" | "resume-execution" | "right-aligned" | "rocket" | "save-as" | "save" | "schedule" | "search" | "secret-store" | "selected-cancel" | "selected-execution" | "selected-reset" | "send" | "server-rack-workflow" | "service" | "settings" | "share" | "shortcuts" | "sort-ascending" | "sort-descending" | "space-local" | "space-private" | "space" | "stepwise-execution" | "strikethrough" | "table-statistics" | "tag" | "team" | "template-gallery" | "textstyles" | "thumbs-down" | "thumbs-up" | "to-bottom" | "to-top" | "trash" | "trigger" | "underline" | "undo" | "unlink" | "usage" | "user" | "version" | "view-cards" | "warning" | "workflow" | "x-close" | undefined;
|
|
7
|
+
leadingIcon: "filter" | "link" | "menu" | "time" | "stop" | "text" | "key" | "add-user" | "ai-general" | "annotation-mode" | "arrow-down" | "arrow-up" | "arrows-expand" | "arrows-move" | "arrows-order" | "auto-configure" | "back" | "bold" | "calendar" | "case-sensitive" | "cell-renderer" | "center-aligned" | "checkmark" | "chevron-down" | "chevron-left-double" | "chevron-left" | "chevron-right-double" | "chevron-right" | "chevron-up" | "circle-error" | "circle-info" | "circle-question" | "circle-success" | "circle-unchecked" | "cloud-download" | "cloud-knime" | "cloud-pending-changes" | "cloud-synced" | "cloud-upload" | "cloud-workflow" | "code-block" | "collection" | "color-picker" | "column-width" | "comment" | "component" | "connection" | "copy" | "cursor" | "data-app" | "data-value-view" | "date-time" | "db-browse" | "db-database" | "db-fetch" | "db-schema" | "db-table-view" | "db-table" | "deploy" | "detect" | "divider" | "duration" | "edit" | "education" | "error-panel" | "execute-all" | "execute" | "expand-panel" | "extension-community" | "extension" | "external-link" | "eye" | "file-export" | "file-text" | "file" | "flow-variable-default" | "flow-variable-in-out" | "flow-variable-in" | "flow-variable-out" | "folder-plus" | "folder-search" | "folder-workflow" | "folder" | "forum" | "function-catalog" | "hide-eye" | "home" | "import" | "info" | "interval" | "italic" | "layout-editor" | "left-aligned" | "like" | "limit" | "linked-metanode" | "list-bulletpoint" | "list-number" | "list-thumbs" | "list" | "local-filesystem" | "lock" | "metanode" | "mini-map" | "minimize-dialog" | "minimize-side-panel" | "minus" | "more-actions" | "node-stack" | "nodes-align-horiz" | "nodes-align-vert" | "open-in-new-window" | "pan-mode" | "parameter" | "path-separator" | "pending-changes" | "pin" | "placeholder" | "plus" | "python" | "quote" | "re-execution" | "redo" | "regex" | "reload" | "rename" | "replace" | "reset-all" | "resume-execution" | "right-aligned" | "rocket" | "save-as" | "save" | "schedule" | "search" | "secret-store" | "selected-cancel" | "selected-execution" | "selected-reset" | "send" | "server-rack-workflow" | "service" | "settings" | "share" | "shortcuts" | "sort-ascending" | "sort-descending" | "space-local" | "space-private" | "space" | "stepwise-execution" | "strikethrough" | "table-statistics" | "tag" | "team" | "template-gallery" | "textstyles" | "thumbs-down" | "thumbs-up" | "to-bottom" | "to-top" | "trash" | "trigger" | "underline" | "undo" | "unlink" | "usage" | "user" | "version" | "view-cards" | "warning" | "workflow" | "x-close" | undefined;
|
|
8
8
|
variant: import('./types').KdsModalVariant;
|
|
9
9
|
overflow: "auto" | "hidden" | "visible";
|
|
10
10
|
onClose: (event?: Event) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/kds-components",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.8",
|
|
4
4
|
"description": "Package containing basic Vue components of the KNIME Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"consola": "^3.4.2",
|
|
39
39
|
"pretty-bytes": "^7.1.0",
|
|
40
40
|
"temporal-polyfill": "^0.3.2",
|
|
41
|
-
"@knime/kds-styles": "^0.28.
|
|
41
|
+
"@knime/kds-styles": "^0.28.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@storybook/vue3-vite": "^10.3.6",
|