@useinsider/ab-components 0.0.62 → 0.0.64
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 +3 -3
- package/dist/ab-components.cjs.js.map +1 -1
- package/dist/ab-components.css +1 -1
- package/dist/ab-components.es.js +911 -883
- package/dist/ab-components.es.js.map +1 -1
- package/dist/ab-components.iife.js +3 -3
- package/dist/ab-components.iife.js.map +1 -1
- package/dist/ab-components.umd.js +3 -3
- package/dist/ab-components.umd.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -177,9 +177,9 @@ contentRef: HTMLDivElement;
|
|
|
177
177
|
}, HTMLDivElement>;
|
|
178
178
|
|
|
179
179
|
declare const __VLS_component_9: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
180
|
+
triggerRef: HTMLDivElement;
|
|
180
181
|
tooltipRef: HTMLDivElement;
|
|
181
182
|
floatingArrowRef: HTMLDivElement;
|
|
182
|
-
triggerRef: HTMLDivElement;
|
|
183
183
|
}, any>;
|
|
184
184
|
|
|
185
185
|
declare type __VLS_Props = {
|
|
@@ -189,6 +189,7 @@ declare type __VLS_Props = {
|
|
|
189
189
|
status?: boolean;
|
|
190
190
|
preventXss?: boolean;
|
|
191
191
|
iconName?: IconNames;
|
|
192
|
+
hideDelay?: number;
|
|
192
193
|
};
|
|
193
194
|
|
|
194
195
|
declare function __VLS_template(): {
|
|
@@ -291,13 +292,13 @@ declare function __VLS_template_8(): {
|
|
|
291
292
|
declare function __VLS_template_9(): {
|
|
292
293
|
attrs: Partial<{}>;
|
|
293
294
|
slots: {
|
|
294
|
-
contentSlot?(_: {}): any;
|
|
295
295
|
default?(_: {}): any;
|
|
296
|
+
contentSlot?(_: {}): any;
|
|
296
297
|
};
|
|
297
298
|
refs: {
|
|
299
|
+
triggerRef: HTMLDivElement;
|
|
298
300
|
tooltipRef: HTMLDivElement;
|
|
299
301
|
floatingArrowRef: HTMLDivElement;
|
|
300
|
-
triggerRef: HTMLDivElement;
|
|
301
302
|
};
|
|
302
303
|
rootEl: any;
|
|
303
304
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useinsider/ab-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.64",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -30,8 +30,8 @@
|
|
|
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.
|
|
33
|
+
"publish:sdb": "npm run build && npm pack && docker cp ./useinsider-ab-components-0.0.64.tgz skeleton_design_bundle:/var/skeleton-design-bundle/design-editor-modules/ && docker exec -it skeleton_design_bundle sh -c 'npm i --no-save /var/skeleton-design-bundle/design-editor-modules/useinsider-ab-components-0.0.64.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.64.tgz && npm run dev",
|
|
35
35
|
"lint": "eslint . --fix",
|
|
36
36
|
"storybook": "storybook dev -p 6006",
|
|
37
37
|
"build-storybook": "storybook build"
|