x-runtime-lib 0.7.39 → 0.7.41
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/control/conditional/v1/index.vue.d.ts +12 -0
- package/dist/components/element/control/list/v1/index.vue.d.ts +3 -0
- package/dist/components/element/control/list/v1/item.vue.d.ts +16 -0
- package/dist/components/element/index.d.ts +3 -1
- package/dist/element/_common/keys.d.ts +2 -0
- package/dist/element/control/conditional/v1/index.d.ts +1 -0
- package/dist/element/control/conditional/v1/meta.d.ts +2 -0
- package/dist/element/control/list/v1/index.d.ts +1 -0
- package/dist/element/control/list/v1/meta.d.ts +2 -0
- package/dist/{i18n-en.gzfmjy3s.js → i18n-en.dkcd6khi.js} +8 -0
- package/dist/{i18n-zhHans.iikqghyl.js → i18n-zhHans.g2xas2zq.js} +8 -0
- package/dist/index.js +654 -651
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => 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
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { BaseProps } from '@/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<BaseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BaseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
item: any;
|
|
3
|
+
fields: string[];
|
|
4
|
+
}
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -1,5 +1,7 @@
|
|
|
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
5
|
import ZRefV1 from './misc/ref/v1/index.vue';
|
|
4
6
|
import ZSlotV1 from './misc/slot/v1/index.vue';
|
|
5
7
|
import ZBadgeV1 from './regular/badge/v1/index.vue';
|
|
@@ -45,4 +47,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
|
|
|
45
47
|
import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
|
|
46
48
|
import ZWindowV1 from './regular/window/v1/index.vue';
|
|
47
49
|
import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
|
|
48
|
-
export { ZBarChartV1, ZLineChartV1, 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, 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 };
|
|
@@ -10,6 +10,7 @@ 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";
|
|
13
14
|
export declare const keyContainerV1 = "container_v1";
|
|
14
15
|
export declare const keyDataTableV1 = "data_table_v1";
|
|
15
16
|
export declare const keyDatePickerV1 = "date_picker_v1";
|
|
@@ -21,6 +22,7 @@ export declare const keyFormV1 = "form_v1";
|
|
|
21
22
|
export declare const keyIconV1 = "icon_v1";
|
|
22
23
|
export declare const keyGlobalityV1 = "globality_v1";
|
|
23
24
|
export declare const keyLineChartV1 = "line_chart_v1";
|
|
25
|
+
export declare const keyListV1 = "list_v1";
|
|
24
26
|
export declare const keyMenuV1 = "menu_v1";
|
|
25
27
|
export declare const keyNumberInputV1 = "number_input_v1";
|
|
26
28
|
export declare const keyPaginationV1 = "pagination_v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -67,9 +67,11 @@ const e = {
|
|
|
67
67
|
comp: "Comp",
|
|
68
68
|
compNotAvail: "Comp Not Available",
|
|
69
69
|
compact: "Compact",
|
|
70
|
+
conditional: "Conditional",
|
|
70
71
|
container: "Container",
|
|
71
72
|
containment: "Containment",
|
|
72
73
|
continuous: "Continuous",
|
|
74
|
+
control: "Control",
|
|
73
75
|
crossAxisAlign: "Cross Axis Align",
|
|
74
76
|
custom: "Custom",
|
|
75
77
|
dark: "Dark",
|
|
@@ -96,6 +98,7 @@ const e = {
|
|
|
96
98
|
false: "False",
|
|
97
99
|
fastFail: "Fast Fail",
|
|
98
100
|
feedback: "Feedback",
|
|
101
|
+
fields: "Fields",
|
|
99
102
|
fileInput: "File Input",
|
|
100
103
|
fill: "Fill",
|
|
101
104
|
filled: "Filled",
|
|
@@ -138,6 +141,7 @@ const e = {
|
|
|
138
141
|
item: "Item",
|
|
139
142
|
items: "Items",
|
|
140
143
|
justify: "Justify",
|
|
144
|
+
key: "Key",
|
|
141
145
|
label: "Label",
|
|
142
146
|
large: "Large",
|
|
143
147
|
left: "Left",
|
|
@@ -147,6 +151,7 @@ const e = {
|
|
|
147
151
|
line: "Line",
|
|
148
152
|
lineChart: "Line Chart",
|
|
149
153
|
lineThrough: "Line Through",
|
|
154
|
+
list: "List",
|
|
150
155
|
loading: "Loading",
|
|
151
156
|
log: "Log",
|
|
152
157
|
mainAxisAlign: "Main Axis Align",
|
|
@@ -169,10 +174,12 @@ const e = {
|
|
|
169
174
|
multiSort: "Multi Sort",
|
|
170
175
|
name: "Name",
|
|
171
176
|
navigation: "Navigation",
|
|
177
|
+
newValue: "New Value",
|
|
172
178
|
no: "No",
|
|
173
179
|
none: "None",
|
|
174
180
|
notSet: "Not Set",
|
|
175
181
|
numberInput: "Number Input",
|
|
182
|
+
oldValue: "Old Value",
|
|
176
183
|
open: "Open",
|
|
177
184
|
overline: "Overline",
|
|
178
185
|
outlined: "Outlined",
|
|
@@ -189,6 +196,7 @@ const e = {
|
|
|
189
196
|
prepend: "Prepend",
|
|
190
197
|
prependInner: "Prepend Inner",
|
|
191
198
|
primary: "Primary",
|
|
199
|
+
propChange: "Property Change",
|
|
192
200
|
radio: "Radio",
|
|
193
201
|
radioGroup: "Radio Group",
|
|
194
202
|
rangeSlider: "Range Slider",
|
|
@@ -67,9 +67,11 @@ const e = {
|
|
|
67
67
|
comp: "组件",
|
|
68
68
|
compNotAvail: "组件不可用",
|
|
69
69
|
compact: "紧凑",
|
|
70
|
+
conditional: "条件",
|
|
70
71
|
container: "容器",
|
|
71
72
|
containment: "容器类",
|
|
72
73
|
continuous: "连续",
|
|
74
|
+
control: "控制",
|
|
73
75
|
crossAxisAlign: "交叉轴对齐",
|
|
74
76
|
custom: "自定义",
|
|
75
77
|
dark: "暗",
|
|
@@ -96,6 +98,7 @@ const e = {
|
|
|
96
98
|
false: "假",
|
|
97
99
|
fastFail: "快速失败",
|
|
98
100
|
feedback: "反馈",
|
|
101
|
+
fields: "字段",
|
|
99
102
|
fileInput: "文件输入",
|
|
100
103
|
fill: "充满",
|
|
101
104
|
filled: "充满",
|
|
@@ -138,6 +141,7 @@ const e = {
|
|
|
138
141
|
item: "项目",
|
|
139
142
|
items: "项目",
|
|
140
143
|
justify: "公正",
|
|
144
|
+
key: "键",
|
|
141
145
|
label: "标签",
|
|
142
146
|
large: "大",
|
|
143
147
|
left: "左边",
|
|
@@ -147,6 +151,7 @@ const e = {
|
|
|
147
151
|
line: "线",
|
|
148
152
|
lineChart: "折线图",
|
|
149
153
|
lineThrough: "中划线",
|
|
154
|
+
list: "列表",
|
|
150
155
|
loading: "加载中",
|
|
151
156
|
log: "对数",
|
|
152
157
|
mainAxisAlign: "主轴对齐",
|
|
@@ -169,10 +174,12 @@ const e = {
|
|
|
169
174
|
multiSort: "多重排序",
|
|
170
175
|
name: "名称",
|
|
171
176
|
navigation: "导航",
|
|
177
|
+
newValue: "新值",
|
|
172
178
|
no: "否",
|
|
173
179
|
none: "没有",
|
|
174
180
|
notSet: "未设置",
|
|
175
181
|
numberInput: "数字输入",
|
|
182
|
+
oldValue: "旧值",
|
|
176
183
|
open: "打开",
|
|
177
184
|
overline: "上划线",
|
|
178
185
|
outlined: "轮廓",
|
|
@@ -189,6 +196,7 @@ const e = {
|
|
|
189
196
|
prepend: "前置添加",
|
|
190
197
|
prependInner: "前置添加/内部",
|
|
191
198
|
primary: "首要",
|
|
199
|
+
propChange: "属性变化",
|
|
192
200
|
radio: "单选",
|
|
193
201
|
radioGroup: "单选分组",
|
|
194
202
|
rangeSlider: "范围滑动条",
|