@pixelium/web-vue 0.0.3-beta → 0.0.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/dist/index.d.ts +10 -1
- package/dist/pixelium-vue.cjs +2 -2
- package/dist/pixelium-vue.css +1 -1
- package/dist/pixelium-vue.js +563 -558
- package/dist/pixelium-vue.umd.cjs +2 -2
- package/es/alert/draw.d.ts +6 -0
- package/es/alert/index.d.ts +29 -0
- package/es/alert/type.d.ts +83 -0
- package/es/aside/index.css +1 -0
- package/es/aside/index.js +1 -1
- package/es/auto-complete/index.css +1 -0
- package/es/auto-complete/index.js +2 -2
- package/es/button/index.js +4 -4
- package/es/button-group/index.js +2 -2
- package/es/checkbox/index.js +2 -2
- package/es/checkbox-group/index.js +1 -1
- package/es/col/index.js +1 -1
- package/es/container/index.css +1 -0
- package/es/dialog/dialog-wrapped.d.ts +52 -0
- package/es/dialog/dialog.d.ts +51 -0
- package/es/dialog/index.d.ts +5 -0
- package/es/dialog/type.d.ts +308 -0
- package/es/footer/index.css +1 -0
- package/es/form-item/index.css +0 -3
- package/es/form-item/index.js +1 -1
- package/es/grid-item/index.js +1 -1
- package/es/header/index.css +1 -0
- package/es/index.css +1 -1
- package/es/index.js +9 -8
- package/es/input/index.css +1 -0
- package/es/input/index.js +2 -2
- package/es/input-group/index.js +2 -2
- package/es/input-group-label/index.js +2 -2
- package/es/input-number/index.css +1 -0
- package/es/input-number/index.js +2 -2
- package/es/input-tag/index.css +1 -0
- package/es/input-tag/index.js +2 -2
- package/es/main/index.css +4 -0
- package/es/main/index.d.ts +4 -1
- package/es/main/index.js +7 -3
- package/es/main/type.d.ts +7 -0
- package/es/message-box/index.js +1 -1
- package/es/popup-portal/index.d.ts +15 -0
- package/es/popup-portal/type.d.ts +3 -0
- package/es/popup-wrapper/use-popup-wrapper-manager.d.ts +1 -0
- package/es/radio/index.js +1 -1
- package/es/radio-group/index.js +1 -1
- package/es/select/index.css +1 -0
- package/es/select/index.js +2 -2
- package/es/share/hook/use-dark-mode.js +3 -3
- package/es/share/hook/use-polling.d.ts +2 -0
- package/es/share/hook/use-watch-global-css-var.js +2 -2
- package/es/share/style/index.css +5 -0
- package/es/share/util/locale.d.ts +46 -0
- package/es/slider/index.css +3 -0
- package/es/slider/index.js +1 -1
- package/es/switch/index.js +1 -1
- package/es/textarea/index.css +1 -0
- package/es/textarea/index.js +1 -1
- package/package.json +1 -1
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/coverage-final.json +0 -106
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -926
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -210
package/dist/index.d.ts
CHANGED
|
@@ -569,11 +569,20 @@ type __VLS_WithSlots$7<T, S> = T & {
|
|
|
569
569
|
$slots: S;
|
|
570
570
|
};
|
|
571
571
|
};
|
|
572
|
+
export type MainProps = {
|
|
573
|
+
/**
|
|
574
|
+
* @property {boolean} [soft=false]
|
|
575
|
+
* @version 0.0.3
|
|
576
|
+
*/
|
|
577
|
+
soft?: boolean;
|
|
578
|
+
};
|
|
572
579
|
declare var __VLS_1$6: {};
|
|
573
580
|
type __VLS_Slots$8 = {} & {
|
|
574
581
|
default?: (props: typeof __VLS_1$6) => any;
|
|
575
582
|
};
|
|
576
|
-
declare const __VLS_component$8: import("vue").DefineComponent<
|
|
583
|
+
declare const __VLS_component$8: import("vue").DefineComponent<MainProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MainProps> & Readonly<{}>, {
|
|
584
|
+
soft: boolean;
|
|
585
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
577
586
|
declare const _default$11: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
|
|
578
587
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
579
588
|
new (): {
|