x-runtime-lib 0.7.4 → 0.7.5
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/chip/v1/index.vue.d.ts +2 -1
- package/dist/components/element/regular/colorPicker/v1/index.vue.d.ts +3 -0
- package/dist/components/element/regular/datePicker/v1/index.vue.d.ts +2 -0
- package/dist/components/element/regular/switch/v1/index.vue.d.ts +3 -0
- package/dist/components/element/regular/textarea/v1/index.vue.d.ts +2 -1
- package/dist/element/_common/items/fieldVariantItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/index.d.ts +2 -2
- package/dist/element/_common/items/sheetVariantItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/textareaVariantItems/v1/index.d.ts +2 -0
- package/dist/element/_common/keys.d.ts +3 -0
- package/dist/element/regular/chip/v1/index.d.ts +1 -3
- package/dist/element/regular/colorPicker/v1/index.d.ts +1 -0
- package/dist/element/regular/colorPicker/v1/meta.d.ts +2 -0
- package/dist/element/regular/datePicker/v1/index.d.ts +1 -0
- package/dist/element/regular/datePicker/v1/meta.d.ts +2 -0
- package/dist/element/regular/index.d.ts +3 -0
- package/dist/element/regular/switch/v1/index.d.ts +1 -0
- package/dist/element/regular/switch/v1/meta.d.ts +2 -0
- package/dist/element/regular/textarea/v1/spawn.d.ts +2 -0
- package/dist/{i18n-en.nar2aqs0.js → i18n-en.j7309mes.js} +9 -0
- package/dist/{i18n-zhHans.fv26qvx5.js → i18n-zhHans.lunea4x9.js} +9 -0
- package/dist/index.js +2729 -2240
- package/dist/types/element.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,9 +7,11 @@ import ZBtnV1 from './regular/btn/v1/index.vue';
|
|
|
7
7
|
import ZCardV1 from './regular/card/v1/index.vue';
|
|
8
8
|
import ZCheckboxV1 from './regular/checkbox/v1/index.vue';
|
|
9
9
|
import ZChipV1 from './regular/chip/v1/index.vue';
|
|
10
|
+
import ZColorPickerV1 from './regular/colorPicker/v1/index.vue';
|
|
10
11
|
import ZComboboxV1 from './regular/combobox/v1/index.vue';
|
|
11
12
|
import ZContainerV1 from './regular/container/v1/index.vue';
|
|
12
13
|
import ZDataTableV1 from './regular/dataTable/v1/index.vue';
|
|
14
|
+
import ZDatePickerV1 from './regular/datePicker/v1/index.vue';
|
|
13
15
|
import ZDialogV1 from './regular/dialog/v1/index.vue';
|
|
14
16
|
import ZFileInputV1 from './regular/fileInput/v1/index.vue';
|
|
15
17
|
import ZFlexLayoutV1 from './regular/flexLayout/v1/index.vue';
|
|
@@ -23,6 +25,7 @@ import ZRangeSliderV1 from './regular/rangeSlider/v1/index.vue';
|
|
|
23
25
|
import ZRatingV1 from './regular/rating/v1/index.vue';
|
|
24
26
|
import ZSelectV1 from './regular/select/v1/index.vue';
|
|
25
27
|
import ZSliderV1 from './regular/slider/v1/index.vue';
|
|
28
|
+
import ZSwitchV1 from './regular/switch/v1/index.vue';
|
|
26
29
|
import ZTextV1 from './regular/text/v1/index.vue';
|
|
27
30
|
import ZTextareaV1 from './regular/textarea/v1/index.vue';
|
|
28
31
|
import ZTextFieldV1 from './regular/textField/v1/index.vue';
|
|
@@ -30,4 +33,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
|
|
|
30
33
|
import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
|
|
31
34
|
import ZWindowV1 from './regular/window/v1/index.vue';
|
|
32
35
|
import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
|
|
33
|
-
export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBadgeV1, ZBtnV1, ZCardV1, ZCheckboxV1, ZChipV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDialogV1, ZFileInputV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZFormV1, ZMenuV1, ZNumberInputV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSliderV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZWindowV1, ZWindowItemV1 };
|
|
36
|
+
export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBadgeV1, ZBtnV1, ZCardV1, ZCheckboxV1, ZChipV1, ZColorPickerV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDatePickerV1, ZDialogV1, ZFileInputV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZFormV1, ZMenuV1, ZNumberInputV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSliderV1, ZSwitchV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZWindowV1, ZWindowItemV1 };
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
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>;
|
|
2
3
|
export default _default;
|
|
@@ -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,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,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;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
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>;
|
|
2
3
|
export default _default;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export * from './axisTypeItems/v1';
|
|
2
2
|
export * from './borderStyleItems/v1';
|
|
3
|
-
export * from './btnVariantItems/v1';
|
|
4
|
-
export * from './cardVariantItems/v1';
|
|
5
3
|
export * from './colorModeItems/v1';
|
|
6
4
|
export * from './densityItems/v1';
|
|
7
5
|
export * from './directionItems/v1';
|
|
6
|
+
export * from './fieldVariantItems/v1';
|
|
8
7
|
export * from './flexCrossAlignItems/v1';
|
|
9
8
|
export * from './flexDirectionItems/v1';
|
|
10
9
|
export * from './flexMainAlignItems/v1';
|
|
11
10
|
export * from './flexWrapItems/v1';
|
|
12
11
|
export * from './fontWeightItems/v1';
|
|
12
|
+
export * from './sheetVariantItems/v1';
|
|
13
13
|
export * from './showTicksItems/v1';
|
|
14
14
|
export * from './sizeItems/v1';
|
|
15
15
|
export * from './textAlignItems/v1';
|
|
@@ -4,9 +4,11 @@ export declare const keyBtnV1 = "btn_v1";
|
|
|
4
4
|
export declare const keyCardV1 = "card_v1";
|
|
5
5
|
export declare const keyCheckboxV1 = "checkbox_v1";
|
|
6
6
|
export declare const keyChipV1 = "chip_v1";
|
|
7
|
+
export declare const keyColorPickerV1 = "color_picker_v1";
|
|
7
8
|
export declare const keyComboboxV1 = "combobox_v1";
|
|
8
9
|
export declare const keyContainerV1 = "container_v1";
|
|
9
10
|
export declare const keyDataTableV1 = "data_table_v1";
|
|
11
|
+
export declare const keyDatePickerV1 = "date_picker_v1";
|
|
10
12
|
export declare const keyDialogV1 = "dialog_v1";
|
|
11
13
|
export declare const keyFileInputV1 = "file_input_v1";
|
|
12
14
|
export declare const keyFlexLayoutV1 = "flex_layout_v1";
|
|
@@ -24,6 +26,7 @@ export declare const keyRatingV1 = "rating_v1";
|
|
|
24
26
|
export declare const keyRefV1 = "ref_v1";
|
|
25
27
|
export declare const keySelectV1 = "select_v1";
|
|
26
28
|
export declare const keySliderV1 = "slider_v1";
|
|
29
|
+
export declare const keySwitchV1 = "switch_v1";
|
|
27
30
|
export declare const keyTextV1 = "text_v1";
|
|
28
31
|
export declare const keyTextareaV1 = "textarea_v1";
|
|
29
32
|
export declare const keyTextFieldV1 = "text_field_v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -3,9 +3,11 @@ export * from './btn/v1';
|
|
|
3
3
|
export * from './card/v1';
|
|
4
4
|
export * from './checkbox/v1';
|
|
5
5
|
export * from './chip/v1';
|
|
6
|
+
export * from './colorPicker/v1';
|
|
6
7
|
export * from './combobox/v1';
|
|
7
8
|
export * from './container/v1';
|
|
8
9
|
export * from './dataTable/v1';
|
|
10
|
+
export * from './datePicker/v1';
|
|
9
11
|
export * from './dialog/v1';
|
|
10
12
|
export * from './fileInput/v1';
|
|
11
13
|
export * from './flexLayout/v1';
|
|
@@ -19,6 +21,7 @@ export * from './rangeSlider/v1';
|
|
|
19
21
|
export * from './rating/v1';
|
|
20
22
|
export * from './select/v1';
|
|
21
23
|
export * from './slider/v1';
|
|
24
|
+
export * from './switch/v1';
|
|
22
25
|
export * from './text/v1';
|
|
23
26
|
export * from './textarea/v1';
|
|
24
27
|
export * from './textField/v1';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -6,6 +6,7 @@ const e = {
|
|
|
6
6
|
append: "Append",
|
|
7
7
|
appendInner: "Append Inner",
|
|
8
8
|
auto: "Auto",
|
|
9
|
+
autoGrow: "Auto Grow",
|
|
9
10
|
background0: "Background 0",
|
|
10
11
|
background1: "Background 1",
|
|
11
12
|
background2: "Background 2",
|
|
@@ -37,11 +38,13 @@ const e = {
|
|
|
37
38
|
category: "Category",
|
|
38
39
|
center: "Center",
|
|
39
40
|
chart: "Chart",
|
|
41
|
+
checkbox: "Checkbox",
|
|
40
42
|
chip: "Chip",
|
|
41
43
|
circularRef: "Circular Reference",
|
|
42
44
|
clearable: "Clearable",
|
|
43
45
|
click: "Click",
|
|
44
46
|
color: "Color",
|
|
47
|
+
colorPicker: "Color Picker",
|
|
45
48
|
column: "Column",
|
|
46
49
|
columnReverse: "Column Reverse",
|
|
47
50
|
combobox: "Combobox",
|
|
@@ -60,6 +63,7 @@ const e = {
|
|
|
60
63
|
dataDisplay: "Data Display",
|
|
61
64
|
dataTable: "Data Table",
|
|
62
65
|
dataTableServer: "Data Table Server",
|
|
66
|
+
datePicker: "Date Picker",
|
|
63
67
|
decoration: "Decoration",
|
|
64
68
|
default: "Default",
|
|
65
69
|
density: "Density",
|
|
@@ -124,6 +128,7 @@ const e = {
|
|
|
124
128
|
margin: "Margin",
|
|
125
129
|
max: "Max",
|
|
126
130
|
maxHeight: "Max Height",
|
|
131
|
+
maxRows: "Max Rows",
|
|
127
132
|
maxWidth: "Max Width",
|
|
128
133
|
medium: "Medium",
|
|
129
134
|
menu: "Menu",
|
|
@@ -141,6 +146,7 @@ const e = {
|
|
|
141
146
|
outlined: "Outlined",
|
|
142
147
|
padding: "Padding",
|
|
143
148
|
percent: "Percent",
|
|
149
|
+
pickers: "Pickers",
|
|
144
150
|
pixel: "Pixel",
|
|
145
151
|
placeholder: "Placeholder",
|
|
146
152
|
plain: "Plain",
|
|
@@ -160,6 +166,7 @@ const e = {
|
|
|
160
166
|
roundRadius: "Round Radius",
|
|
161
167
|
row: "Row",
|
|
162
168
|
rowReverse: "Row Reverse",
|
|
169
|
+
rows: "Rows",
|
|
163
170
|
secondary: "Secondary",
|
|
164
171
|
select: "Select",
|
|
165
172
|
selection: "Selection",
|
|
@@ -184,9 +191,11 @@ const e = {
|
|
|
184
191
|
stretch: "Stretch",
|
|
185
192
|
style: "Style",
|
|
186
193
|
subtext: "Subtext",
|
|
194
|
+
subtitle: "Subtitle",
|
|
187
195
|
subtitle1: "Subtitle 1",
|
|
188
196
|
subtitle2: "Subtitle 2",
|
|
189
197
|
success: "Success",
|
|
198
|
+
switch: "Switch",
|
|
190
199
|
text: "Text",
|
|
191
200
|
textarea: "Textarea",
|
|
192
201
|
textField: "Text Field",
|
|
@@ -6,6 +6,7 @@ const e = {
|
|
|
6
6
|
append: "追加",
|
|
7
7
|
appendInner: "内部追加",
|
|
8
8
|
auto: "自动",
|
|
9
|
+
autoGrow: "自动增长",
|
|
9
10
|
background0: "背景0",
|
|
10
11
|
background1: "背景1",
|
|
11
12
|
background2: "背景2",
|
|
@@ -37,11 +38,13 @@ const e = {
|
|
|
37
38
|
category: "类目",
|
|
38
39
|
center: "中心",
|
|
39
40
|
chart: "图表",
|
|
41
|
+
checkbox: "复选框",
|
|
40
42
|
chip: "纸片",
|
|
41
43
|
circularRef: "循环引用",
|
|
42
44
|
clearable: "可清除",
|
|
43
45
|
click: "单击",
|
|
44
46
|
color: "颜色",
|
|
47
|
+
colorPicker: "颜色拾取器",
|
|
45
48
|
column: "列",
|
|
46
49
|
columnReverse: "列反向",
|
|
47
50
|
combobox: "组合框",
|
|
@@ -60,6 +63,7 @@ const e = {
|
|
|
60
63
|
dataDisplay: "数据展示",
|
|
61
64
|
dataTable: "数据表",
|
|
62
65
|
dataTableServer: "服务端数据表",
|
|
66
|
+
datePicker: "日期拾取器",
|
|
63
67
|
decoration: "装饰",
|
|
64
68
|
default: "缺省",
|
|
65
69
|
density: "密度",
|
|
@@ -124,6 +128,7 @@ const e = {
|
|
|
124
128
|
margin: "外边距",
|
|
125
129
|
max: "最大值",
|
|
126
130
|
maxHeight: "最大高度",
|
|
131
|
+
maxRows: "最大行",
|
|
127
132
|
maxWidth: "最大宽度",
|
|
128
133
|
medium: "中",
|
|
129
134
|
menu: "菜单",
|
|
@@ -141,6 +146,7 @@ const e = {
|
|
|
141
146
|
outlined: "轮廓",
|
|
142
147
|
padding: "内边距",
|
|
143
148
|
percent: "百分比",
|
|
149
|
+
pickers: "拾取器",
|
|
144
150
|
pixel: "像素",
|
|
145
151
|
placeholder: "占位符",
|
|
146
152
|
plain: "朴素",
|
|
@@ -160,6 +166,7 @@ const e = {
|
|
|
160
166
|
roundRadius: "圆角半径",
|
|
161
167
|
row: "行",
|
|
162
168
|
rowReverse: "行反向",
|
|
169
|
+
rows: "行",
|
|
163
170
|
secondary: "次要",
|
|
164
171
|
select: "选择",
|
|
165
172
|
selection: "选择",
|
|
@@ -184,9 +191,11 @@ const e = {
|
|
|
184
191
|
stretch: "伸展",
|
|
185
192
|
style: "风格",
|
|
186
193
|
subtext: "子文本",
|
|
194
|
+
subtitle: "子标题",
|
|
187
195
|
subtitle1: "子标题1",
|
|
188
196
|
subtitle2: "子标题2",
|
|
189
197
|
success: "成功",
|
|
198
|
+
switch: "开关",
|
|
190
199
|
text: "文本",
|
|
191
200
|
textarea: "文本区域",
|
|
192
201
|
textField: "文本字段",
|