@useinsider/ab-components 0.0.85 → 0.0.86
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/ab-components.cjs.js +1 -1
- package/dist/ab-components.cjs.js.map +1 -1
- package/dist/ab-components.css +1 -1
- package/dist/ab-components.es.js +203 -190
- package/dist/ab-components.es.js.map +1 -1
- package/dist/ab-components.iife.js +1 -1
- package/dist/ab-components.iife.js.map +1 -1
- package/dist/ab-components.umd.js +1 -1
- package/dist/ab-components.umd.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ validateAddItem: (item: string, items: MenuItem[]) => string | null;
|
|
|
144
144
|
mode: "primary" | "smart";
|
|
145
145
|
searchPlaceholder: string;
|
|
146
146
|
showSelectedIcon: boolean;
|
|
147
|
+
rotateArrow: boolean;
|
|
147
148
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
148
149
|
|
|
149
150
|
declare const __VLS_component_7: DefineComponent<ModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -608,6 +609,7 @@ declare interface InDropdownMenuProps {
|
|
|
608
609
|
addButtonText?: string;
|
|
609
610
|
validateAddItem?: (item: string, items: MenuItem[]) => string | null;
|
|
610
611
|
showSelectedIcon?: boolean;
|
|
612
|
+
rotateArrow?: boolean;
|
|
611
613
|
menuHeight?: number;
|
|
612
614
|
width?: number;
|
|
613
615
|
mode?: 'primary' | 'smart';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useinsider/ab-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.86",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"build-only": "vite build",
|
|
31
31
|
"type-check": "vue-tsc --build",
|
|
32
32
|
"pack:move": "npm pack --pack-destination ../design-editor-frontend",
|
|
33
|
-
"publish:sdb": "npm run build && npm pack && docker cp ./useinsider-ab-components-0.0.
|
|
34
|
-
"publish:def": "npm run build && npm run pack:move && cd ../design-editor-frontend && npm i ./useinsider-ab-components-0.0.
|
|
35
|
-
"publish:sdb:wookiee": "npm run build && npm pack && docker cp ./useinsider-ab-components-0.0.
|
|
33
|
+
"publish:sdb": "npm run build && npm pack && docker cp ./useinsider-ab-components-0.0.86.tgz skeleton_design_bundle:/var/skeleton-design-bundle/design-editor-modules/ && docker exec -it skeleton_design_bundle sh -c 'npm i /var/skeleton-design-bundle/design-editor-modules/useinsider-ab-components-0.0.86.tgz && npm run dev'",
|
|
34
|
+
"publish:def": "npm run build && npm run pack:move && cd ../design-editor-frontend && npm i ./useinsider-ab-components-0.0.86.tgz && npm run dev",
|
|
35
|
+
"publish:sdb:wookiee": "npm run build && npm pack && docker cp ./useinsider-ab-components-0.0.86.tgz skeleton-design-bundle:/var/skeleton-design-bundle/design-editor-modules/ && docker exec -it skeleton-design-bundle sh -c 'npm i /var/skeleton-design-bundle/design-editor-modules/useinsider-ab-components-0.0.86.tgz && npm run dev'",
|
|
36
36
|
"lint": "eslint . --fix",
|
|
37
37
|
"storybook": "storybook dev -p 6006",
|
|
38
38
|
"build-storybook": "storybook build"
|