x-runtime-lib 0.7.41 → 0.7.43

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.
@@ -1,8 +1,8 @@
1
1
  import ZBarChartV1 from './chart/barChart/v1/index.vue';
2
2
  import ZLineChartV1 from './chart/lineChart/v1/index.vue';
3
- import ZConditionalV1 from './control/conditional/v1/index.vue';
4
- import ZListV1 from './control/list/v1/index.vue';
3
+ import ZListV1 from './misc/list/v1/index.vue';
5
4
  import ZRefV1 from './misc/ref/v1/index.vue';
5
+ import ZRenderSwitchV1 from './misc/renderSwitch/v1/index.vue';
6
6
  import ZSlotV1 from './misc/slot/v1/index.vue';
7
7
  import ZBadgeV1 from './regular/badge/v1/index.vue';
8
8
  import ZBtnV1 from './regular/btn/v1/index.vue';
@@ -47,4 +47,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
47
47
  import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
48
48
  import ZWindowV1 from './regular/window/v1/index.vue';
49
49
  import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
50
- export { ZBarChartV1, ZLineChartV1, ZConditionalV1, ZListV1, ZRefV1, 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 };
50
+ export { ZBarChartV1, ZLineChartV1, ZListV1, 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 };
@@ -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;
@@ -0,0 +1,13 @@
1
+ import { BaseProps } from '@/types';
2
+ declare var __VLS_7: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_7) => any;
5
+ };
6
+ 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>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -10,7 +10,6 @@ export declare const keyChipV1 = "chip_v1";
10
10
  export declare const keyChipGroupV1 = "chip_group_v1";
11
11
  export declare const keyColorPickerV1 = "color_picker_v1";
12
12
  export declare const keyComboboxV1 = "combobox_v1";
13
- export declare const keyConditionalV1 = "conditional_v1";
14
13
  export declare const keyContainerV1 = "container_v1";
15
14
  export declare const keyDataTableV1 = "data_table_v1";
16
15
  export declare const keyDatePickerV1 = "date_picker_v1";
@@ -32,6 +31,7 @@ export declare const keyRangeSliderV1 = "range_slider_v1";
32
31
  export declare const keyPackageV1 = "package_v1";
33
32
  export declare const keyRatingV1 = "rating_v1";
34
33
  export declare const keyRefV1 = "ref_v1";
34
+ export declare const keyRenderSwitchV1 = "render_switch_v1";
35
35
  export declare const keySelectV1 = "select_v1";
36
36
  export declare const keySliderV1 = "slider_v1";
37
37
  export declare const keyStepperV1 = "stepper_v1";
@@ -1,2 +1,4 @@
1
1
  export * from './globality/v1';
2
+ export * from './list/v1';
2
3
  export * from './ref/v1';
4
+ export * from './renderSwitch/v1';
@@ -0,0 +1,2 @@
1
+ import { ZElement } from '@/types';
2
+ export declare const renderSwitchV1: ZElement;
@@ -65,13 +65,11 @@ const e = {
65
65
  combobox: "Combobox",
66
66
  comfortable: "Comfortable",
67
67
  comp: "Comp",
68
- compNotAvail: "Comp Not Available",
69
68
  compact: "Compact",
70
- conditional: "Conditional",
69
+ compNotAvail: "Comp Not Available",
71
70
  container: "Container",
72
71
  containment: "Containment",
73
72
  continuous: "Continuous",
74
- control: "Control",
75
73
  crossAxisAlign: "Cross Axis Align",
76
74
  custom: "Custom",
77
75
  dark: "Dark",
@@ -91,6 +89,7 @@ const e = {
91
89
  dot: "Dot",
92
90
  dotted: "Dotted",
93
91
  draggable: "Draggable",
92
+ dynamic: "Dynamic",
94
93
  elevated: "Elevated",
95
94
  emphasis: "Emphasis",
96
95
  end: "End",
@@ -204,6 +203,7 @@ const e = {
204
203
  readonly: "Readonly",
205
204
  ref: "Reference",
206
205
  regular: "Regular",
206
+ renderSwitch: "Render Switch",
207
207
  reverse: "Reverse",
208
208
  right: "Right",
209
209
  ripple: "Ripple",
@@ -65,13 +65,11 @@ const e = {
65
65
  combobox: "组合框",
66
66
  comfortable: "舒适",
67
67
  comp: "组件",
68
- compNotAvail: "组件不可用",
69
68
  compact: "紧凑",
70
- conditional: "条件",
69
+ compNotAvail: "组件不可用",
71
70
  container: "容器",
72
71
  containment: "容器类",
73
72
  continuous: "连续",
74
- control: "控制",
75
73
  crossAxisAlign: "交叉轴对齐",
76
74
  custom: "自定义",
77
75
  dark: "暗",
@@ -91,6 +89,7 @@ const e = {
91
89
  dot: "点",
92
90
  dotted: "点画线",
93
91
  draggable: "可拖拽",
92
+ dynamic: "动态",
94
93
  elevated: "升高",
95
94
  emphasis: "强调",
96
95
  end: "结束",
@@ -204,6 +203,7 @@ const e = {
204
203
  readonly: "只读",
205
204
  ref: "引用",
206
205
  regular: "常规",
206
+ renderSwitch: "渲染开关",
207
207
  reverse: "反向",
208
208
  right: "右边",
209
209
  ripple: "波纹",