@knime/kds-components 0.28.7 → 0.28.9
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/index.css +53 -48
- package/dist/index.js +113 -48
- package/dist/index.js.map +1 -1
- package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts +7 -0
- package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts.map +1 -0
- package/dist/src/accessories/MissingValueIcon/index.d.ts +2 -0
- package/dist/src/accessories/MissingValueIcon/index.d.ts.map +1 -0
- package/dist/src/accessories/index.d.ts +1 -0
- package/dist/src/accessories/index.d.ts.map +1 -1
- package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts +29 -19
- package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts.map +1 -1
- package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts +15 -15
- package/dist/src/containers/Menu/KdsMenu.vue.d.ts +30 -30
- package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/types.d.ts +5 -0
- package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
- package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +30 -30
- package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +30 -30
- 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/ColorInput/KdsColorInput.vue.d.ts +15 -15
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +18 -18
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts +15 -15
- package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +17 -17
- 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 +18 -18
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +18 -18
- 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 +30 -30
- 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/BaseDropdown.vue.d.ts +3 -1
- package/dist/src/forms/selects/Dropdown/BaseDropdown.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 +48 -18
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +48 -18
- package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts.map +1 -1
- 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/overlays/index.d.ts +2 -0
- package/dist/src/overlays/index.d.ts.map +1 -1
- package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts +30 -19
- package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { KdsIconSize } from '../Icon/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
size: KdsIconSize;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=KdsMissingValueIcon.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KdsMissingValueIcon.vue.d.ts","sourceRoot":"","sources":["../../../../src/accessories/MissingValueIcon/KdsMissingValueIcon.vue"],"names":[],"mappings":"AAsBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;;AAwDF,wBAOG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/accessories/MissingValueIcon/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,2BAA2B,CAAC"}
|
|
@@ -12,6 +12,7 @@ export * from './LoadingSpinner';
|
|
|
12
12
|
export type * from './LoadingSpinner';
|
|
13
13
|
export * from './InlineMessage';
|
|
14
14
|
export type * from './InlineMessage';
|
|
15
|
+
export * from './MissingValueIcon';
|
|
15
16
|
export * from './DonutChart';
|
|
16
17
|
export type * from './DonutChart';
|
|
17
18
|
export * from './Divider';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/accessories/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,mBAAmB,UAAU,CAAC;AAE9B,cAAc,SAAS,CAAC;AACxB,mBAAmB,SAAS,CAAC;AAE7B,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,QAAQ,CAAC;AACvB,mBAAmB,QAAQ,CAAC;AAE5B,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,kBAAkB,CAAC;AACjC,mBAAmB,kBAAkB,CAAC;AAEtC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/accessories/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,mBAAmB,UAAU,CAAC;AAE9B,cAAc,SAAS,CAAC;AACxB,mBAAmB,SAAS,CAAC;AAE7B,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,QAAQ,CAAC;AACvB,mBAAmB,QAAQ,CAAC;AAE5B,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,kBAAkB,CAAC;AACjC,mBAAmB,kBAAkB,CAAC;AAEtC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,WAAW,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { nextTick } from 'vue';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<(
|
|
2
|
+
declare const _default: import('vue').DefineComponent<({
|
|
3
|
+
modelValue?: boolean;
|
|
4
|
+
} & import('../../types/testId').WithTestId & {
|
|
3
5
|
size?: import('..').KdsButtonSize;
|
|
4
6
|
disabled?: boolean;
|
|
5
7
|
title?: string;
|
|
@@ -12,7 +14,9 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
12
14
|
} & {
|
|
13
15
|
items: import('./types').KdsMenuItem[];
|
|
14
16
|
menuMaxHeight?: string;
|
|
15
|
-
}) | (
|
|
17
|
+
}) | ({
|
|
18
|
+
modelValue?: boolean;
|
|
19
|
+
} & import('../../types/testId').WithTestId & {
|
|
16
20
|
size?: import('..').KdsButtonSize;
|
|
17
21
|
disabled?: boolean;
|
|
18
22
|
title?: string;
|
|
@@ -89,8 +93,11 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
89
93
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
90
94
|
}>), {}, {}, {}, {}, {}> | null>>;
|
|
91
95
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
96
|
+
"update:modelValue": (value: boolean) => any;
|
|
92
97
|
itemClick: (id: string) => any;
|
|
93
|
-
}, string, import('vue').PublicProps, Readonly<(
|
|
98
|
+
}, string, import('vue').PublicProps, Readonly<({
|
|
99
|
+
modelValue?: boolean;
|
|
100
|
+
} & import('../../types/testId').WithTestId & {
|
|
94
101
|
size?: import('..').KdsButtonSize;
|
|
95
102
|
disabled?: boolean;
|
|
96
103
|
title?: string;
|
|
@@ -103,7 +110,9 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
103
110
|
} & {
|
|
104
111
|
items: import('./types').KdsMenuItem[];
|
|
105
112
|
menuMaxHeight?: string;
|
|
106
|
-
}) | (
|
|
113
|
+
}) | ({
|
|
114
|
+
modelValue?: boolean;
|
|
115
|
+
} & import('../../types/testId').WithTestId & {
|
|
107
116
|
size?: import('..').KdsButtonSize;
|
|
108
117
|
disabled?: boolean;
|
|
109
118
|
title?: string;
|
|
@@ -117,6 +126,7 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
117
126
|
items: import('./types').KdsMenuItem[];
|
|
118
127
|
menuMaxHeight?: string;
|
|
119
128
|
})> & Readonly<{
|
|
129
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
120
130
|
onItemClick?: ((id: string) => any) | undefined;
|
|
121
131
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
122
132
|
menuButton: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
|
|
@@ -186,18 +196,18 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
186
196
|
$data: {};
|
|
187
197
|
$props: ({
|
|
188
198
|
readonly modelValue?: boolean | undefined;
|
|
189
|
-
readonly role?: import('
|
|
190
|
-
readonly popoverType?: import('
|
|
199
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
200
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
191
201
|
readonly fullWidth?: boolean | undefined;
|
|
192
202
|
readonly maxInlineSize?: string | undefined;
|
|
193
203
|
readonly content?: string | undefined;
|
|
194
|
-
readonly placement?: Exclude<import('
|
|
204
|
+
readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
195
205
|
readonly customPlacementPosition?: never | undefined;
|
|
196
206
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
197
207
|
} | {
|
|
198
208
|
readonly modelValue?: boolean | undefined;
|
|
199
|
-
readonly role?: import('
|
|
200
|
-
readonly popoverType?: import('
|
|
209
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
210
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
201
211
|
readonly fullWidth?: boolean | undefined;
|
|
202
212
|
readonly maxInlineSize?: string | undefined;
|
|
203
213
|
readonly content?: string | undefined;
|
|
@@ -225,19 +235,19 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
225
235
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
226
236
|
modelValue?: boolean;
|
|
227
237
|
} & {
|
|
228
|
-
role?: import('
|
|
229
|
-
popoverType?: import('
|
|
238
|
+
role?: import('../..').KdsPopoverRole;
|
|
239
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
230
240
|
fullWidth?: boolean;
|
|
231
241
|
maxInlineSize?: string;
|
|
232
242
|
content?: string;
|
|
233
243
|
} & {
|
|
234
|
-
placement?: Exclude<import('
|
|
244
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
235
245
|
customPlacementPosition?: never;
|
|
236
246
|
}) | ({
|
|
237
247
|
modelValue?: boolean;
|
|
238
248
|
} & {
|
|
239
|
-
role?: import('
|
|
240
|
-
popoverType?: import('
|
|
249
|
+
role?: import('../..').KdsPopoverRole;
|
|
250
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
241
251
|
fullWidth?: boolean;
|
|
242
252
|
maxInlineSize?: string;
|
|
243
253
|
content?: string;
|
|
@@ -277,19 +287,19 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
277
287
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
278
288
|
modelValue?: boolean;
|
|
279
289
|
} & {
|
|
280
|
-
role?: import('
|
|
281
|
-
popoverType?: import('
|
|
290
|
+
role?: import('../..').KdsPopoverRole;
|
|
291
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
282
292
|
fullWidth?: boolean;
|
|
283
293
|
maxInlineSize?: string;
|
|
284
294
|
content?: string;
|
|
285
295
|
} & {
|
|
286
|
-
placement?: Exclude<import('
|
|
296
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
287
297
|
customPlacementPosition?: never;
|
|
288
298
|
}) | ({
|
|
289
299
|
modelValue?: boolean;
|
|
290
300
|
} & {
|
|
291
|
-
role?: import('
|
|
292
|
-
popoverType?: import('
|
|
301
|
+
role?: import('../..').KdsPopoverRole;
|
|
302
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
293
303
|
fullWidth?: boolean;
|
|
294
304
|
maxInlineSize?: string;
|
|
295
305
|
content?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsMenuButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/buttons/KdsMenuButton/KdsMenuButton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsMenuButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/buttons/KdsMenuButton/KdsMenuButton.vue"],"names":[],"mappings":"AAkGA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;;iBAsEA,OAAO;;;;;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAyIu5iB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBjijB,wBASG"}
|
|
@@ -63,18 +63,18 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
63
63
|
$data: {};
|
|
64
64
|
$props: ({
|
|
65
65
|
readonly modelValue?: boolean | undefined;
|
|
66
|
-
readonly role?: import('
|
|
67
|
-
readonly popoverType?: import('
|
|
66
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
67
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
68
68
|
readonly fullWidth?: boolean | undefined;
|
|
69
69
|
readonly maxInlineSize?: string | undefined;
|
|
70
70
|
readonly content?: string | undefined;
|
|
71
|
-
readonly placement?: Exclude<import('
|
|
71
|
+
readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
72
72
|
readonly customPlacementPosition?: never | undefined;
|
|
73
73
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
74
74
|
} | {
|
|
75
75
|
readonly modelValue?: boolean | undefined;
|
|
76
|
-
readonly role?: import('
|
|
77
|
-
readonly popoverType?: import('
|
|
76
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
77
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
78
78
|
readonly fullWidth?: boolean | undefined;
|
|
79
79
|
readonly maxInlineSize?: string | undefined;
|
|
80
80
|
readonly content?: string | undefined;
|
|
@@ -102,19 +102,19 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
102
102
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
103
103
|
modelValue?: boolean;
|
|
104
104
|
} & {
|
|
105
|
-
role?: import('
|
|
106
|
-
popoverType?: import('
|
|
105
|
+
role?: import('../..').KdsPopoverRole;
|
|
106
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
107
107
|
fullWidth?: boolean;
|
|
108
108
|
maxInlineSize?: string;
|
|
109
109
|
content?: string;
|
|
110
110
|
} & {
|
|
111
|
-
placement?: Exclude<import('
|
|
111
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
112
112
|
customPlacementPosition?: never;
|
|
113
113
|
}) | ({
|
|
114
114
|
modelValue?: boolean;
|
|
115
115
|
} & {
|
|
116
|
-
role?: import('
|
|
117
|
-
popoverType?: import('
|
|
116
|
+
role?: import('../..').KdsPopoverRole;
|
|
117
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
118
118
|
fullWidth?: boolean;
|
|
119
119
|
maxInlineSize?: string;
|
|
120
120
|
content?: string;
|
|
@@ -154,19 +154,19 @@ declare const _default: import('vue').DefineComponent<(import('../../types/testI
|
|
|
154
154
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
155
155
|
modelValue?: boolean;
|
|
156
156
|
} & {
|
|
157
|
-
role?: import('
|
|
158
|
-
popoverType?: import('
|
|
157
|
+
role?: import('../..').KdsPopoverRole;
|
|
158
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
159
159
|
fullWidth?: boolean;
|
|
160
160
|
maxInlineSize?: string;
|
|
161
161
|
content?: string;
|
|
162
162
|
} & {
|
|
163
|
-
placement?: Exclude<import('
|
|
163
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
164
164
|
customPlacementPosition?: never;
|
|
165
165
|
}) | ({
|
|
166
166
|
modelValue?: boolean;
|
|
167
167
|
} & {
|
|
168
|
-
role?: import('
|
|
169
|
-
popoverType?: import('
|
|
168
|
+
role?: import('../..').KdsPopoverRole;
|
|
169
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
170
170
|
fullWidth?: boolean;
|
|
171
171
|
maxInlineSize?: string;
|
|
172
172
|
content?: string;
|
|
@@ -52,18 +52,18 @@ declare function __VLS_template(): {
|
|
|
52
52
|
$data: {};
|
|
53
53
|
$props: ({
|
|
54
54
|
readonly modelValue?: boolean | undefined;
|
|
55
|
-
readonly role?: import('
|
|
56
|
-
readonly popoverType?: import('
|
|
55
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
56
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
57
57
|
readonly fullWidth?: boolean | undefined;
|
|
58
58
|
readonly maxInlineSize?: string | undefined;
|
|
59
59
|
readonly content?: string | undefined;
|
|
60
|
-
readonly placement?: Exclude<import('
|
|
60
|
+
readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
61
61
|
readonly customPlacementPosition?: never | undefined;
|
|
62
62
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
63
63
|
} | {
|
|
64
64
|
readonly modelValue?: boolean | undefined;
|
|
65
|
-
readonly role?: import('
|
|
66
|
-
readonly popoverType?: import('
|
|
65
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
66
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
67
67
|
readonly fullWidth?: boolean | undefined;
|
|
68
68
|
readonly maxInlineSize?: string | undefined;
|
|
69
69
|
readonly content?: string | undefined;
|
|
@@ -91,19 +91,19 @@ declare function __VLS_template(): {
|
|
|
91
91
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
92
92
|
modelValue?: boolean;
|
|
93
93
|
} & {
|
|
94
|
-
role?: import('
|
|
95
|
-
popoverType?: import('
|
|
94
|
+
role?: import('../..').KdsPopoverRole;
|
|
95
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
96
96
|
fullWidth?: boolean;
|
|
97
97
|
maxInlineSize?: string;
|
|
98
98
|
content?: string;
|
|
99
99
|
} & {
|
|
100
|
-
placement?: Exclude<import('
|
|
100
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
101
101
|
customPlacementPosition?: never;
|
|
102
102
|
}) | ({
|
|
103
103
|
modelValue?: boolean;
|
|
104
104
|
} & {
|
|
105
|
-
role?: import('
|
|
106
|
-
popoverType?: import('
|
|
105
|
+
role?: import('../..').KdsPopoverRole;
|
|
106
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
107
107
|
fullWidth?: boolean;
|
|
108
108
|
maxInlineSize?: string;
|
|
109
109
|
content?: string;
|
|
@@ -143,19 +143,19 @@ declare function __VLS_template(): {
|
|
|
143
143
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
144
144
|
modelValue?: boolean;
|
|
145
145
|
} & {
|
|
146
|
-
role?: import('
|
|
147
|
-
popoverType?: import('
|
|
146
|
+
role?: import('../..').KdsPopoverRole;
|
|
147
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
148
148
|
fullWidth?: boolean;
|
|
149
149
|
maxInlineSize?: string;
|
|
150
150
|
content?: string;
|
|
151
151
|
} & {
|
|
152
|
-
placement?: Exclude<import('
|
|
152
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
153
153
|
customPlacementPosition?: never;
|
|
154
154
|
}) | ({
|
|
155
155
|
modelValue?: boolean;
|
|
156
156
|
} & {
|
|
157
|
-
role?: import('
|
|
158
|
-
popoverType?: import('
|
|
157
|
+
role?: import('../..').KdsPopoverRole;
|
|
158
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
159
159
|
fullWidth?: boolean;
|
|
160
160
|
maxInlineSize?: string;
|
|
161
161
|
content?: string;
|
|
@@ -209,18 +209,18 @@ declare const __VLS_component: import('vue').DefineComponent<KdsMenuProps, {}, {
|
|
|
209
209
|
$data: {};
|
|
210
210
|
$props: ({
|
|
211
211
|
readonly modelValue?: boolean | undefined;
|
|
212
|
-
readonly role?: import('
|
|
213
|
-
readonly popoverType?: import('
|
|
212
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
213
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
214
214
|
readonly fullWidth?: boolean | undefined;
|
|
215
215
|
readonly maxInlineSize?: string | undefined;
|
|
216
216
|
readonly content?: string | undefined;
|
|
217
|
-
readonly placement?: Exclude<import('
|
|
217
|
+
readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
218
218
|
readonly customPlacementPosition?: never | undefined;
|
|
219
219
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
220
220
|
} | {
|
|
221
221
|
readonly modelValue?: boolean | undefined;
|
|
222
|
-
readonly role?: import('
|
|
223
|
-
readonly popoverType?: import('
|
|
222
|
+
readonly role?: import('../..').KdsPopoverRole | undefined;
|
|
223
|
+
readonly popoverType?: import('../..').KdsPopoverType | undefined;
|
|
224
224
|
readonly fullWidth?: boolean | undefined;
|
|
225
225
|
readonly maxInlineSize?: string | undefined;
|
|
226
226
|
readonly content?: string | undefined;
|
|
@@ -248,19 +248,19 @@ declare const __VLS_component: import('vue').DefineComponent<KdsMenuProps, {}, {
|
|
|
248
248
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
249
249
|
modelValue?: boolean;
|
|
250
250
|
} & {
|
|
251
|
-
role?: import('
|
|
252
|
-
popoverType?: import('
|
|
251
|
+
role?: import('../..').KdsPopoverRole;
|
|
252
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
253
253
|
fullWidth?: boolean;
|
|
254
254
|
maxInlineSize?: string;
|
|
255
255
|
content?: string;
|
|
256
256
|
} & {
|
|
257
|
-
placement?: Exclude<import('
|
|
257
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
258
258
|
customPlacementPosition?: never;
|
|
259
259
|
}) | ({
|
|
260
260
|
modelValue?: boolean;
|
|
261
261
|
} & {
|
|
262
|
-
role?: import('
|
|
263
|
-
popoverType?: import('
|
|
262
|
+
role?: import('../..').KdsPopoverRole;
|
|
263
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
264
264
|
fullWidth?: boolean;
|
|
265
265
|
maxInlineSize?: string;
|
|
266
266
|
content?: string;
|
|
@@ -300,19 +300,19 @@ declare const __VLS_component: import('vue').DefineComponent<KdsMenuProps, {}, {
|
|
|
300
300
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
301
301
|
modelValue?: boolean;
|
|
302
302
|
} & {
|
|
303
|
-
role?: import('
|
|
304
|
-
popoverType?: import('
|
|
303
|
+
role?: import('../..').KdsPopoverRole;
|
|
304
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
305
305
|
fullWidth?: boolean;
|
|
306
306
|
maxInlineSize?: string;
|
|
307
307
|
content?: string;
|
|
308
308
|
} & {
|
|
309
|
-
placement?: Exclude<import('
|
|
309
|
+
placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
|
|
310
310
|
customPlacementPosition?: never;
|
|
311
311
|
}) | ({
|
|
312
312
|
modelValue?: boolean;
|
|
313
313
|
} & {
|
|
314
|
-
role?: import('
|
|
315
|
-
popoverType?: import('
|
|
314
|
+
role?: import('../..').KdsPopoverRole;
|
|
315
|
+
popoverType?: import('../..').KdsPopoverType;
|
|
316
316
|
fullWidth?: boolean;
|
|
317
317
|
maxInlineSize?: string;
|
|
318
318
|
content?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsMenuItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/KdsMenuItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsMenuItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/KdsMenuItem.vue"],"names":[],"mappings":"AAoMA,OAAO,KAAK,EACV,qBAAqB,EACrB,WAAW,EAEZ,MAAM,SAAS,CAAC;AAEjB,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAC;CAC5C,CAAC;;;;;;;;;;AA8RF,wBASG"}
|
|
@@ -19,6 +19,11 @@ type KdsMenuItemBase = {
|
|
|
19
19
|
separator?: boolean;
|
|
20
20
|
/** Optional shortcut text shown at the end of the row (e.g. "Ctrl + 1"). Only shown for regular items (not headlines) */
|
|
21
21
|
shortcut?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional trailing icon displayed at the end of the row (e.g. "checkmark" for selected, "trash" for missing).
|
|
24
|
+
* Can stand alone or be combined with either `shortcut` or `badge`.
|
|
25
|
+
*/
|
|
26
|
+
trailingIcon?: KdsIconName;
|
|
22
27
|
/**
|
|
23
28
|
* `KdsBadge` to show on the item. Only rendered for regular items (not headlines) and when a shortcut is not passed in to this item
|
|
24
29
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,18 +17,18 @@ declare function __VLS_template(): {
|
|
|
17
17
|
$data: {};
|
|
18
18
|
$props: ({
|
|
19
19
|
readonly modelValue?: boolean | undefined;
|
|
20
|
-
readonly role?: import('
|
|
21
|
-
readonly popoverType?: import('
|
|
20
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
21
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
22
22
|
readonly fullWidth?: boolean | undefined;
|
|
23
23
|
readonly maxInlineSize?: string | undefined;
|
|
24
24
|
readonly content?: string | undefined;
|
|
25
|
-
readonly placement?: Exclude<import('
|
|
25
|
+
readonly placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
26
26
|
readonly customPlacementPosition?: never | undefined;
|
|
27
27
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
28
28
|
} | {
|
|
29
29
|
readonly modelValue?: boolean | undefined;
|
|
30
|
-
readonly role?: import('
|
|
31
|
-
readonly popoverType?: import('
|
|
30
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
31
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
32
32
|
readonly fullWidth?: boolean | undefined;
|
|
33
33
|
readonly maxInlineSize?: string | undefined;
|
|
34
34
|
readonly content?: string | undefined;
|
|
@@ -56,19 +56,19 @@ declare function __VLS_template(): {
|
|
|
56
56
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
57
57
|
modelValue?: boolean;
|
|
58
58
|
} & {
|
|
59
|
-
role?: import('
|
|
60
|
-
popoverType?: import('
|
|
59
|
+
role?: import('../../..').KdsPopoverRole;
|
|
60
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
61
61
|
fullWidth?: boolean;
|
|
62
62
|
maxInlineSize?: string;
|
|
63
63
|
content?: string;
|
|
64
64
|
} & {
|
|
65
|
-
placement?: Exclude<import('
|
|
65
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
66
66
|
customPlacementPosition?: never;
|
|
67
67
|
}) | ({
|
|
68
68
|
modelValue?: boolean;
|
|
69
69
|
} & {
|
|
70
|
-
role?: import('
|
|
71
|
-
popoverType?: import('
|
|
70
|
+
role?: import('../../..').KdsPopoverRole;
|
|
71
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
72
72
|
fullWidth?: boolean;
|
|
73
73
|
maxInlineSize?: string;
|
|
74
74
|
content?: string;
|
|
@@ -108,19 +108,19 @@ declare function __VLS_template(): {
|
|
|
108
108
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
109
109
|
modelValue?: boolean;
|
|
110
110
|
} & {
|
|
111
|
-
role?: import('
|
|
112
|
-
popoverType?: import('
|
|
111
|
+
role?: import('../../..').KdsPopoverRole;
|
|
112
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
113
113
|
fullWidth?: boolean;
|
|
114
114
|
maxInlineSize?: string;
|
|
115
115
|
content?: string;
|
|
116
116
|
} & {
|
|
117
|
-
placement?: Exclude<import('
|
|
117
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
118
118
|
customPlacementPosition?: never;
|
|
119
119
|
}) | ({
|
|
120
120
|
modelValue?: boolean;
|
|
121
121
|
} & {
|
|
122
|
-
role?: import('
|
|
123
|
-
popoverType?: import('
|
|
122
|
+
role?: import('../../..').KdsPopoverRole;
|
|
123
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
124
124
|
fullWidth?: boolean;
|
|
125
125
|
maxInlineSize?: string;
|
|
126
126
|
content?: string;
|
|
@@ -154,18 +154,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
154
154
|
$data: {};
|
|
155
155
|
$props: ({
|
|
156
156
|
readonly modelValue?: boolean | undefined;
|
|
157
|
-
readonly role?: import('
|
|
158
|
-
readonly popoverType?: import('
|
|
157
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
158
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
159
159
|
readonly fullWidth?: boolean | undefined;
|
|
160
160
|
readonly maxInlineSize?: string | undefined;
|
|
161
161
|
readonly content?: string | undefined;
|
|
162
|
-
readonly placement?: Exclude<import('
|
|
162
|
+
readonly placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
163
163
|
readonly customPlacementPosition?: never | undefined;
|
|
164
164
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
165
165
|
} | {
|
|
166
166
|
readonly modelValue?: boolean | undefined;
|
|
167
|
-
readonly role?: import('
|
|
168
|
-
readonly popoverType?: import('
|
|
167
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
168
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
169
169
|
readonly fullWidth?: boolean | undefined;
|
|
170
170
|
readonly maxInlineSize?: string | undefined;
|
|
171
171
|
readonly content?: string | undefined;
|
|
@@ -193,19 +193,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
193
193
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
194
194
|
modelValue?: boolean;
|
|
195
195
|
} & {
|
|
196
|
-
role?: import('
|
|
197
|
-
popoverType?: import('
|
|
196
|
+
role?: import('../../..').KdsPopoverRole;
|
|
197
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
198
198
|
fullWidth?: boolean;
|
|
199
199
|
maxInlineSize?: string;
|
|
200
200
|
content?: string;
|
|
201
201
|
} & {
|
|
202
|
-
placement?: Exclude<import('
|
|
202
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
203
203
|
customPlacementPosition?: never;
|
|
204
204
|
}) | ({
|
|
205
205
|
modelValue?: boolean;
|
|
206
206
|
} & {
|
|
207
|
-
role?: import('
|
|
208
|
-
popoverType?: import('
|
|
207
|
+
role?: import('../../..').KdsPopoverRole;
|
|
208
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
209
209
|
fullWidth?: boolean;
|
|
210
210
|
maxInlineSize?: string;
|
|
211
211
|
content?: string;
|
|
@@ -245,19 +245,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
245
245
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
246
246
|
modelValue?: boolean;
|
|
247
247
|
} & {
|
|
248
|
-
role?: import('
|
|
249
|
-
popoverType?: import('
|
|
248
|
+
role?: import('../../..').KdsPopoverRole;
|
|
249
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
250
250
|
fullWidth?: boolean;
|
|
251
251
|
maxInlineSize?: string;
|
|
252
252
|
content?: string;
|
|
253
253
|
} & {
|
|
254
|
-
placement?: Exclude<import('
|
|
254
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
255
255
|
customPlacementPosition?: never;
|
|
256
256
|
}) | ({
|
|
257
257
|
modelValue?: boolean;
|
|
258
258
|
} & {
|
|
259
|
-
role?: import('
|
|
260
|
-
popoverType?: import('
|
|
259
|
+
role?: import('../../..').KdsPopoverRole;
|
|
260
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
261
261
|
fullWidth?: boolean;
|
|
262
262
|
maxInlineSize?: string;
|
|
263
263
|
content?: string;
|