@knime/kds-components 0.22.0 → 0.22.2
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 +56 -55
- package/dist/index.js +83 -27
- package/dist/index.js.map +1 -1
- package/dist/src/forms/_helper/List/KdsListItem/KdsListItem.vue.d.ts.map +1 -1
- package/dist/src/forms/_helper/List/ListContainer/KdsListContainer.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/ColorInput/ColorPicker.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts +3 -1
- package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +5 -2
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/constants.d.ts +3 -0
- package/dist/src/forms/selects/Dropdown/constants.d.ts.map +1 -0
- package/dist/src/forms/selects/MultiSelectListBox/useMultiSelectListBoxSelection.d.ts.map +1 -1
- package/dist/src/layouts/ResizeContainer/KdsResizeContainer.vue.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsListItem.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/forms/_helper/List/KdsListItem/KdsListItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsListItem.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/forms/_helper/List/KdsListItem/KdsListItem.vue"],"names":[],"mappings":"AA4RA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;;;;;;;;;AAqMnD,wBASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsListContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/forms/_helper/List/ListContainer/KdsListContainer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsListContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/forms/_helper/List/ListContainer/KdsListContainer.vue"],"names":[],"mappings":"AA+YA,OAAO,KAAK,EAEV,qBAAqB,EAEtB,MAAM,SAAS,CAAC;;;;;;;;;;;;;;AAqdjB,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColorPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ColorInput/ColorPicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ColorPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ColorInput/ColorPicker.vue"],"names":[],"mappings":"AAyiBA,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;AAsIF,wBASG"}
|
|
@@ -4,10 +4,12 @@ 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: () => void;
|
|
8
8
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
select: (id: string) => any;
|
|
9
10
|
"update:modelValue": (value: string) => any;
|
|
10
11
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
+
onSelect?: ((id: string) => any) | undefined;
|
|
11
13
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
13
15
|
searchEl: ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"AAkKA,OAAO,KAAK,EAAE,sBAAsB,EAAqB,MAAM,SAAS,CAAC;AAEzE,KAAK,WAAW,GAAG,sBAAsB,CAAC;AAsG1C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAoK0jZ,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBhsZ,wBAUG"}
|
|
@@ -151,10 +151,12 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
151
151
|
dropdownContainerEl: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
152
152
|
modelValue?: string;
|
|
153
153
|
} & import('./types.ts').DropdownContainerProps> & Readonly<{
|
|
154
|
+
onSelect?: ((id: string) => any) | undefined;
|
|
154
155
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
155
156
|
}>, {
|
|
156
|
-
focus: () => void
|
|
157
|
+
focus: () => void;
|
|
157
158
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
159
|
+
select: (id: string) => any;
|
|
158
160
|
"update:modelValue": (value: string) => any;
|
|
159
161
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
160
162
|
searchEl: ({
|
|
@@ -365,9 +367,10 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
365
367
|
}, Readonly<{
|
|
366
368
|
modelValue?: string;
|
|
367
369
|
} & import('./types.ts').DropdownContainerProps> & Readonly<{
|
|
370
|
+
onSelect?: ((id: string) => any) | undefined;
|
|
368
371
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
369
372
|
}>, {
|
|
370
|
-
focus: () => void
|
|
373
|
+
focus: () => void;
|
|
371
374
|
}, {}, {}, {}, {}> | null;
|
|
372
375
|
}, HTMLDivElement>;
|
|
373
376
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsDropdown.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/KdsDropdown.vue"],"names":[],"mappings":"AA8FA,OAAO,EAAY,QAAQ,EAAoC,MAAM,KAAK,CAAC;;iBA+C9D,MAAM;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAiM09d,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBnme,wBASG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/Dropdown/constants.ts"],"names":[],"mappings":"AAAA,iFAAiF;AACjF,eAAO,MAAM,yBAAyB,KAAK,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useMultiSelectListBoxSelection.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/MultiSelectListBox/useMultiSelectListBoxSelection.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,GAAG,EAMT,MAAM,KAAK,CAAC;AAGb,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAI3D,KAAK,qCAAqC,GAAG;IAC3C,8CAA8C;IAC9C,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC;IAC1B,kEAAkE;IAClE,SAAS,EAAE,GAAG,CAAC,2BAA2B,EAAE,CAAC,CAAC;IAC9C,wCAAwC;IACxC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACvB,0EAA0E;IAC1E,gBAAgB,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC;IAC7C,qEAAqE;IACrE,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC,CAAC;AAEF,eAAO,MAAM,8BAA8B,GAAI,uEAM5C,qCAAqC;;;yBAWV,MAAM;;yBAsFN,UAAU,SAAS,MAAM,SAAS,MAAM;qBA8B5C,UAAU;gBAmBf,UAAU;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"useMultiSelectListBoxSelection.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/MultiSelectListBox/useMultiSelectListBoxSelection.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,GAAG,EAMT,MAAM,KAAK,CAAC;AAGb,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAI3D,KAAK,qCAAqC,GAAG;IAC3C,8CAA8C;IAC9C,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC;IAC1B,kEAAkE;IAClE,SAAS,EAAE,GAAG,CAAC,2BAA2B,EAAE,CAAC,CAAC;IAC9C,wCAAwC;IACxC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACvB,0EAA0E;IAC1E,gBAAgB,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC;IAC7C,qEAAqE;IACrE,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC,CAAC;AAEF,eAAO,MAAM,8BAA8B,GAAI,uEAM5C,qCAAqC;;;yBAWV,MAAM;;yBAsFN,UAAU,SAAS,MAAM,SAAS,MAAM;qBA8B5C,UAAU;gBAmBf,UAAU;;;;;;;;;;;;CA4L9B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsResizeContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/ResizeContainer/KdsResizeContainer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsResizeContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/ResizeContainer/KdsResizeContainer.vue"],"names":[],"mappings":"AAwHA,OAAO,EAAE,KAAK,aAAa,EAAwC,MAAM,KAAK,CAAC;AAK/E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAgFvD,iBAAS,cAAc;WA4ET,OAAO,IAA6B;;;;YAXrB,GAAG;;;;;;EAgB/B;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;kBAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/kds-components",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.2",
|
|
4
4
|
"description": "Package containing basic Vue components of the KNIME Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@knime/utils": "^1.9.2",
|
|
38
38
|
"consola": "^3.4.2",
|
|
39
39
|
"pretty-bytes": "^7.1.0",
|
|
40
|
-
"@knime/kds-styles": "^0.22.
|
|
40
|
+
"@knime/kds-styles": "^0.22.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@storybook/vue3-vite": "^10.3.3",
|