@knime/kds-components 0.30.2 → 0.30.3
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/CHANGELOG.md +10 -0
- package/dist/index.css +69 -71
- package/dist/index.js +11 -9
- package/dist/index.js.map +1 -1
- package/dist/src/containers/MenuContainer/KdsMenuContainer.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/TwinList/TwinListBody.vue.d.ts.map +1 -1
- package/dist/src/overlays/Popover/KdsPopover.vue.d.ts.map +1 -1
- package/dist/src/overlays/Popover/enums.d.ts +3 -1
- package/dist/src/overlays/Popover/enums.d.ts.map +1 -1
- package/dist/src/overlays/Popover/types.d.ts +2 -2
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsMenuContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/KdsMenuContainer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsMenuContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/containers/MenuContainer/KdsMenuContainer.vue"],"names":[],"mappings":"AA6YA,OAAO,KAAK,EAEV,qBAAqB,EAGtB,MAAM,SAAS,CAAC;;;;;;;;;;AAyZjB,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TwinListBody.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/TwinList/TwinListBody.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TwinListBody.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/selects/TwinList/TwinListBody.vue"],"names":[],"mappings":"AAoZA,OAAO,KAAK,EACV,qBAAqB,EAErB,iBAAiB,EAClB,MAAM,SAAS,CAAC;AAEjB,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAkMrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,qBAAqB,CAAC;CACjC,GAAG,WAAW,CAAC;;;;;;AAsYhB,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsPopover.vue.d.ts","sourceRoot":"","sources":["../../../../src/overlays/Popover/KdsPopover.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsPopover.vue.d.ts","sourceRoot":"","sources":["../../../../src/overlays/Popover/KdsPopover.vue"],"names":[],"mappings":"AAqRA,iBAAS,cAAc;WAsDT,OAAO,IAA6B;;yBAXrB,GAAG;;;;;;EAgB/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;iBA9ER,OAAO;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;iBAAP,OAAO;;;;;;;;;;;;;;;;;kBAwFlB,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"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export declare const kdsPopoverPlacement: {
|
|
2
2
|
readonly TOP_LEFT: "top-left";
|
|
3
|
+
readonly TOP_CENTER: "top-center";
|
|
3
4
|
readonly TOP_RIGHT: "top-right";
|
|
4
5
|
readonly BOTTOM_LEFT: "bottom-left";
|
|
6
|
+
readonly BOTTOM_CENTER: "bottom-center";
|
|
5
7
|
readonly BOTTOM_RIGHT: "bottom-right";
|
|
6
8
|
readonly CUSTOM: "custom";
|
|
7
9
|
};
|
|
8
|
-
export declare const kdsPopoverPlacements: ("top-left" | "top-right" | "bottom-left" | "bottom-right" | "custom")[];
|
|
10
|
+
export declare const kdsPopoverPlacements: ("top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | "custom")[];
|
|
9
11
|
export declare const kdsPopoverRole: {
|
|
10
12
|
readonly DIALOG: "dialog";
|
|
11
13
|
readonly MENU: "menu";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../src/overlays/Popover/enums.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../src/overlays/Popover/enums.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;CAQtB,CAAC;AAEX,eAAO,MAAM,oBAAoB,2GAAqC,CAAC;AAEvE,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX,eAAO,MAAM,eAAe,mCAAgC,CAAC;AAE7D,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AAEX,eAAO,MAAM,eAAe,uBAAgC,CAAC"}
|
|
@@ -33,9 +33,9 @@ type KdsPopoverAnchoredProps = {
|
|
|
33
33
|
/**
|
|
34
34
|
* Placement of the popover relative to the anchor element.
|
|
35
35
|
*
|
|
36
|
-
* Format: `{side}-{
|
|
36
|
+
* Format: `{side}-{alignment}` where:
|
|
37
37
|
* - `side`: which side of the anchor the popover appears on (`top`, `bottom`)
|
|
38
|
-
* - `
|
|
38
|
+
* - `alignment`: how the popover aligns with the anchor (`left`, `center`, `right`)
|
|
39
39
|
*
|
|
40
40
|
* @default "bottom-left"
|
|
41
41
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/kds-components",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.3",
|
|
4
4
|
"description": "Package containing basic Vue components of the KNIME Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"motion": "^12.39.0",
|
|
41
41
|
"pretty-bytes": "^7.1.0",
|
|
42
42
|
"temporal-polyfill": "^0.3.2",
|
|
43
|
-
"@knime/kds-styles": "^0.30.
|
|
43
|
+
"@knime/kds-styles": "^0.30.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@storybook/vue3-vite": "^10.4.2",
|