x-runtime-lib 0.6.17 → 0.6.19
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/components/element/index.d.ts +4 -1
- package/dist/components/element/regular/menu/v1/index.vue.d.ts +22 -0
- package/dist/element/_common/keys.d.ts +1 -0
- package/dist/element/regular/menu/v1/index.d.ts +3 -0
- package/dist/{i18n-en-o1wce72d.js → i18n-en-kr032un3.js} +1 -0
- package/dist/{i18n-zhHans-nhidk65s.js → i18n-zhHans-byyo56bb.js} +1 -0
- package/dist/index.js +1219 -1152
- package/package.json +1 -1
|
@@ -9,9 +9,12 @@ import ZComboboxV1 from './regular/combobox/v1/index.vue';
|
|
|
9
9
|
import ZContainerV1 from './regular/container/v1/index.vue';
|
|
10
10
|
import ZDataTableV1 from './regular/dataTable/v1/index.vue';
|
|
11
11
|
import ZDialogV1 from './regular/dialog/v1/index.vue';
|
|
12
|
+
import ZFlexLayoutV1 from './regular/flexLayout/v1/index.vue';
|
|
13
|
+
import ZFlexLayoutEntryV1 from './regular/flexLayoutEntry/v1/index.vue';
|
|
14
|
+
import ZMenuV1 from './regular/menu/v1/index.vue';
|
|
12
15
|
import ZNumberInputV1 from './regular/numberInput/v1/index.vue';
|
|
13
16
|
import ZRatingV1 from './regular/rating/v1/index.vue';
|
|
14
17
|
import ZSelectV1 from './regular/select/v1/index.vue';
|
|
15
18
|
import ZTextAreaV1 from './regular/textArea/v1/index.vue';
|
|
16
19
|
import ZTextFieldV1 from './regular/textField/v1/index.vue';
|
|
17
|
-
export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBtnV1, ZCardV1, ZChipV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDialogV1, ZNumberInputV1, ZRatingV1, ZSelectV1, ZTextAreaV1, ZTextFieldV1 };
|
|
20
|
+
export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBtnV1, ZCardV1, ZChipV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDialogV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZMenuV1, ZNumberInputV1, ZRatingV1, ZSelectV1, ZTextAreaV1, ZTextFieldV1 };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BaseProps } from '../../../../../types';
|
|
2
|
+
declare const mode: import("../../../../../types").Mode;
|
|
3
|
+
declare const id: import("vue").ComputedRef<any>;
|
|
4
|
+
declare const open: import("vue").WritableComputedRef<boolean, boolean>;
|
|
5
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
|
+
declare var __VLS_6: {};
|
|
7
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
8
|
+
default?: (props: typeof __VLS_6) => any;
|
|
9
|
+
}>;
|
|
10
|
+
declare const __VLS_self: import("vue").DefineComponent<BaseProps, {
|
|
11
|
+
mode: typeof mode;
|
|
12
|
+
id: typeof id;
|
|
13
|
+
open: typeof open;
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BaseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<BaseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BaseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -10,6 +10,7 @@ export declare const keyFlexLayoutV1 = "flex_layout_v1";
|
|
|
10
10
|
export declare const keyFlexLayoutEntryV1 = "flex_layout_entry_v1";
|
|
11
11
|
export declare const keyGlobalityV1 = "globality_v1";
|
|
12
12
|
export declare const keyLineChartV1 = "line_chart_v1";
|
|
13
|
+
export declare const keyMenuV1 = "menu_v1";
|
|
13
14
|
export declare const keyNumberInputV1 = "number_input_v1";
|
|
14
15
|
export declare const keyPackageV1 = "package_v1";
|
|
15
16
|
export declare const keyRatingV1 = "rating_v1";
|