x-runtime-lib 0.8.0 → 0.8.1

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.
@@ -0,0 +1,12 @@
1
+ declare var __VLS_7: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_7) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -1,3 +1,4 @@
1
+ import ZMesh from './3d/mesh/v1/index.vue';
1
2
  import ZBarChartV1 from './chart/barChart/v1/index.vue';
2
3
  import ZLineChartV1 from './chart/lineChart/v1/index.vue';
3
4
  import ZRefV1 from './misc/ref/v1/index.vue';
@@ -38,6 +39,7 @@ import ZStepperWindowV1 from './regular/stepperWindow/v1/index.vue';
38
39
  import ZStepperWindowItemV1 from './regular/stepperWindowItem/v1/index.vue';
39
40
  import ZSwitchV1 from './regular/switch/v1/index.vue';
40
41
  import ZTabV1 from './regular/tab/v1/index.vue';
42
+ import ZTableV1 from './regular/table/v1/index.vue';
41
43
  import ZTabsV1 from './regular/tabs/v1/index.vue';
42
44
  import ZTextV1 from './regular/text/v1/index.vue';
43
45
  import ZTextareaV1 from './regular/textarea/v1/index.vue';
@@ -46,4 +48,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
46
48
  import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
47
49
  import ZWindowV1 from './regular/window/v1/index.vue';
48
50
  import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
49
- export { ZBarChartV1, ZLineChartV1, ZRefV1, ZRenderSwitchV1, ZSlotV1, ZBadgeV1, ZBtnV1, ZBtnGroupV1, ZBtnToggleV1, ZCardV1, ZCheckboxV1, ZChipV1, ZChipGroupV1, ZColorPickerV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDatePickerV1, ZDialogV1, ZFileInputV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZFormV1, ZIconV1, ZMenuV1, ZNumberInputV1, ZPaginationV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSliderV1, ZStepperV1, ZStepperHeaderV1, ZStepperItemV1, ZStepperWindowV1, ZStepperWindowItemV1, ZSwitchV1, ZTabV1, ZTabsV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZWindowV1, ZWindowItemV1 };
51
+ export { ZMesh, ZBarChartV1, ZLineChartV1, ZRefV1, ZRenderSwitchV1, ZSlotV1, ZBadgeV1, ZBtnV1, ZBtnGroupV1, ZBtnToggleV1, ZCardV1, ZCheckboxV1, ZChipV1, ZChipGroupV1, ZColorPickerV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDatePickerV1, ZDialogV1, ZFileInputV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZFormV1, ZIconV1, ZMenuV1, ZNumberInputV1, ZPaginationV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSliderV1, ZStepperV1, ZStepperHeaderV1, ZStepperItemV1, ZStepperWindowV1, ZStepperWindowItemV1, ZSwitchV1, ZTabV1, ZTableV1, ZTabsV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZWindowV1, ZWindowItemV1 };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -1,6 +1,6 @@
1
- import { CSSProperties, Ref } from 'vue';
1
+ import { CSSProperties } from 'vue';
2
2
  import { BaseProps } from '@/types';
3
- export declare function useBorderV1(dark: Ref<boolean>, props: BaseProps): {
3
+ export declare function useBorderV1(props: BaseProps): {
4
4
  borderStyle: import("vue").ComputedRef<any>;
5
5
  borderWidth: import("vue").ComputedRef<any>;
6
6
  borderColor: import("vue").ComputedRef<any>;
@@ -1,4 +1,4 @@
1
1
  import { Ref } from 'vue';
2
- export declare function useColorV1(dark: Ref<boolean>, raw: Ref<any>): {
2
+ export declare function useColorV1(raw: Ref<any>): {
3
3
  color: import("vue").ComputedRef<any>;
4
4
  };
@@ -1,7 +1,6 @@
1
- import { CSSProperties, Ref } from 'vue';
2
- import { BaseProps, Mode } from '@/types';
3
- import { Device } from '@/utils';
4
- export declare function useSizeV1(mode: Mode, device: Ref<Device>, props: BaseProps): {
1
+ import { CSSProperties } from 'vue';
2
+ import { BaseProps } from '@/types';
3
+ export declare function useSizeV1(props: BaseProps): {
5
4
  width: import("vue").ComputedRef<any>;
6
5
  minWidth: import("vue").ComputedRef<any>;
7
6
  maxWidth: import("vue").ComputedRef<any>;
@@ -1,4 +1,4 @@
1
- import { BaseProps, Mode, Sandbox } from '@/types';
2
- export declare function useElementProp(mode: Mode, sandbox: Sandbox, props: BaseProps, keys: string[], json?: boolean): {
1
+ import { BaseProps } from '@/types';
2
+ export declare function useElementProp(props: BaseProps, keys: string[], json?: boolean): {
3
3
  prop: import("vue").Ref<any, any>;
4
4
  };
@@ -1,4 +1,3 @@
1
- import { Ref } from 'vue';
2
- export declare function useTheme(dark: Ref<boolean>): {
1
+ export declare function useTheme(): {
3
2
  theme: import("vue").ComputedRef<"dark" | "light">;
4
3
  };
@@ -0,0 +1 @@
1
+ export * from './meta';
@@ -0,0 +1,2 @@
1
+ import { ZElement } from '@/types';
2
+ export declare const meshV1: ZElement;
@@ -22,6 +22,7 @@ export declare const keyIconV1 = "icon_v1";
22
22
  export declare const keyGlobalityV1 = "globality_v1";
23
23
  export declare const keyLineChartV1 = "line_chart_v1";
24
24
  export declare const keyMenuV1 = "menu_v1";
25
+ export declare const keyMeshV1 = "mesh_v1";
25
26
  export declare const keyNumberInputV1 = "number_input_v1";
26
27
  export declare const keyPaginationV1 = "pagination_v1";
27
28
  export declare const keyRadioV1 = "radio_v1";
@@ -40,6 +41,7 @@ export declare const keyStepperWindowV1 = "stepper_window_v1";
40
41
  export declare const keyStepperWindowItemV1 = "stepper_window_item_v1";
41
42
  export declare const keySwitchV1 = "switch_v1";
42
43
  export declare const keyTabV1 = "tab_v1";
44
+ export declare const keyTableV1 = "table_v1";
43
45
  export declare const keyTabsV1 = "tabs_v1";
44
46
  export declare const keyTextV1 = "text_v1";
45
47
  export declare const keyTextareaV1 = "textarea_v1";
@@ -6,5 +6,6 @@ export * from './margin/v1';
6
6
  export * from './padding/v1';
7
7
  export * from './size/v1';
8
8
  export * from './title/v1';
9
+ export * from './transform/v1';
9
10
  export * from './xAxis/v1';
10
11
  export * from './yAxis/v1';
@@ -0,0 +1,2 @@
1
+ import { ZProp } from '@/types';
2
+ export declare const transformV1: ZProp;
@@ -0,0 +1 @@
1
+ export * from './meta';
@@ -0,0 +1,2 @@
1
+ import { ZElement } from '@/types';
2
+ export declare const tableV1: ZElement;
@@ -112,7 +112,6 @@ const e = {
112
112
  form: "Form",
113
113
  formRelated: "Form Related",
114
114
  globality: "Globality",
115
- globalSettings: "Global Settings",
116
115
  grow: "Grow",
117
116
  h1: "Heading 1",
118
117
  h2: "Heading 2",
@@ -255,6 +254,7 @@ const e = {
255
254
  suffix: "Suffix",
256
255
  switch: "Switch",
257
256
  tab: "Tab",
257
+ table: "Table",
258
258
  tabs: "Tabs",
259
259
  text: "Text",
260
260
  textarea: "Textarea",
@@ -112,7 +112,6 @@ const e = {
112
112
  form: "表单",
113
113
  formRelated: "表单相关",
114
114
  globality: "全局",
115
- globalSettings: "全局设置",
116
115
  grow: "伸展",
117
116
  h1: "标题1",
118
117
  h2: "标题2",
@@ -255,6 +254,7 @@ const e = {
255
254
  suffix: "后缀",
256
255
  switch: "开关",
257
256
  tab: "选项卡项目",
257
+ table: "表",
258
258
  tabs: "选项卡",
259
259
  text: "文本",
260
260
  textarea: "文本区域",