x-runtime-lib 0.7.40 → 0.7.42
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 +2 -1
- package/dist/components/element/misc/renderSwitch/v1/index.vue.d.ts +13 -0
- package/dist/element/_common/keys.d.ts +1 -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/element/misc/index.d.ts +1 -0
- package/dist/element/misc/renderSwitch/v1/index.d.ts +1 -0
- package/dist/element/misc/renderSwitch/v1/meta.d.ts +2 -0
- package/dist/{i18n-en.gzfmjy3s.js → i18n-en.bxvae9bx.js} +8 -0
- package/dist/{i18n-zhHans.iikqghyl.js → i18n-zhHans.pum3a9fg.js} +8 -0
- package/dist/index.js +1085 -1040
- 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,6 +1,7 @@
|
|
|
1
1
|
import ZBarChartV1 from './chart/barChart/v1/index.vue';
|
|
2
2
|
import ZLineChartV1 from './chart/lineChart/v1/index.vue';
|
|
3
3
|
import ZRefV1 from './misc/ref/v1/index.vue';
|
|
4
|
+
import ZRenderSwitchV1 from './misc/renderSwitch/v1/index.vue';
|
|
4
5
|
import ZSlotV1 from './misc/slot/v1/index.vue';
|
|
5
6
|
import ZBadgeV1 from './regular/badge/v1/index.vue';
|
|
6
7
|
import ZBtnV1 from './regular/btn/v1/index.vue';
|
|
@@ -45,4 +46,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
|
|
|
45
46
|
import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
|
|
46
47
|
import ZWindowV1 from './regular/window/v1/index.vue';
|
|
47
48
|
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 };
|
|
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 };
|
|
@@ -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
|
+
};
|
|
@@ -30,6 +30,7 @@ export declare const keyRangeSliderV1 = "range_slider_v1";
|
|
|
30
30
|
export declare const keyPackageV1 = "package_v1";
|
|
31
31
|
export declare const keyRatingV1 = "rating_v1";
|
|
32
32
|
export declare const keyRefV1 = "ref_v1";
|
|
33
|
+
export declare const keyRenderSwitchV1 = "render_switch_v1";
|
|
33
34
|
export declare const keySelectV1 = "select_v1";
|
|
34
35
|
export declare const keySliderV1 = "slider_v1";
|
|
35
36
|
export declare const keyStepperV1 = "stepper_v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './meta';
|
|
@@ -89,6 +89,7 @@ const e = {
|
|
|
89
89
|
dot: "Dot",
|
|
90
90
|
dotted: "Dotted",
|
|
91
91
|
draggable: "Draggable",
|
|
92
|
+
dynamic: "Dynamic",
|
|
92
93
|
elevated: "Elevated",
|
|
93
94
|
emphasis: "Emphasis",
|
|
94
95
|
end: "End",
|
|
@@ -96,6 +97,7 @@ const e = {
|
|
|
96
97
|
false: "False",
|
|
97
98
|
fastFail: "Fast Fail",
|
|
98
99
|
feedback: "Feedback",
|
|
100
|
+
fields: "Fields",
|
|
99
101
|
fileInput: "File Input",
|
|
100
102
|
fill: "Fill",
|
|
101
103
|
filled: "Filled",
|
|
@@ -138,6 +140,7 @@ const e = {
|
|
|
138
140
|
item: "Item",
|
|
139
141
|
items: "Items",
|
|
140
142
|
justify: "Justify",
|
|
143
|
+
key: "Key",
|
|
141
144
|
label: "Label",
|
|
142
145
|
large: "Large",
|
|
143
146
|
left: "Left",
|
|
@@ -147,6 +150,7 @@ const e = {
|
|
|
147
150
|
line: "Line",
|
|
148
151
|
lineChart: "Line Chart",
|
|
149
152
|
lineThrough: "Line Through",
|
|
153
|
+
list: "List",
|
|
150
154
|
loading: "Loading",
|
|
151
155
|
log: "Log",
|
|
152
156
|
mainAxisAlign: "Main Axis Align",
|
|
@@ -169,10 +173,12 @@ const e = {
|
|
|
169
173
|
multiSort: "Multi Sort",
|
|
170
174
|
name: "Name",
|
|
171
175
|
navigation: "Navigation",
|
|
176
|
+
newValue: "New Value",
|
|
172
177
|
no: "No",
|
|
173
178
|
none: "None",
|
|
174
179
|
notSet: "Not Set",
|
|
175
180
|
numberInput: "Number Input",
|
|
181
|
+
oldValue: "Old Value",
|
|
176
182
|
open: "Open",
|
|
177
183
|
overline: "Overline",
|
|
178
184
|
outlined: "Outlined",
|
|
@@ -189,6 +195,7 @@ const e = {
|
|
|
189
195
|
prepend: "Prepend",
|
|
190
196
|
prependInner: "Prepend Inner",
|
|
191
197
|
primary: "Primary",
|
|
198
|
+
propChange: "Property Change",
|
|
192
199
|
radio: "Radio",
|
|
193
200
|
radioGroup: "Radio Group",
|
|
194
201
|
rangeSlider: "Range Slider",
|
|
@@ -196,6 +203,7 @@ const e = {
|
|
|
196
203
|
readonly: "Readonly",
|
|
197
204
|
ref: "Reference",
|
|
198
205
|
regular: "Regular",
|
|
206
|
+
renderSwitch: "Render Switch",
|
|
199
207
|
reverse: "Reverse",
|
|
200
208
|
right: "Right",
|
|
201
209
|
ripple: "Ripple",
|
|
@@ -89,6 +89,7 @@ const e = {
|
|
|
89
89
|
dot: "点",
|
|
90
90
|
dotted: "点画线",
|
|
91
91
|
draggable: "可拖拽",
|
|
92
|
+
dynamic: "动态",
|
|
92
93
|
elevated: "升高",
|
|
93
94
|
emphasis: "强调",
|
|
94
95
|
end: "结束",
|
|
@@ -96,6 +97,7 @@ const e = {
|
|
|
96
97
|
false: "假",
|
|
97
98
|
fastFail: "快速失败",
|
|
98
99
|
feedback: "反馈",
|
|
100
|
+
fields: "字段",
|
|
99
101
|
fileInput: "文件输入",
|
|
100
102
|
fill: "充满",
|
|
101
103
|
filled: "充满",
|
|
@@ -138,6 +140,7 @@ const e = {
|
|
|
138
140
|
item: "项目",
|
|
139
141
|
items: "项目",
|
|
140
142
|
justify: "公正",
|
|
143
|
+
key: "键",
|
|
141
144
|
label: "标签",
|
|
142
145
|
large: "大",
|
|
143
146
|
left: "左边",
|
|
@@ -147,6 +150,7 @@ const e = {
|
|
|
147
150
|
line: "线",
|
|
148
151
|
lineChart: "折线图",
|
|
149
152
|
lineThrough: "中划线",
|
|
153
|
+
list: "列表",
|
|
150
154
|
loading: "加载中",
|
|
151
155
|
log: "对数",
|
|
152
156
|
mainAxisAlign: "主轴对齐",
|
|
@@ -169,10 +173,12 @@ const e = {
|
|
|
169
173
|
multiSort: "多重排序",
|
|
170
174
|
name: "名称",
|
|
171
175
|
navigation: "导航",
|
|
176
|
+
newValue: "新值",
|
|
172
177
|
no: "否",
|
|
173
178
|
none: "没有",
|
|
174
179
|
notSet: "未设置",
|
|
175
180
|
numberInput: "数字输入",
|
|
181
|
+
oldValue: "旧值",
|
|
176
182
|
open: "打开",
|
|
177
183
|
overline: "上划线",
|
|
178
184
|
outlined: "轮廓",
|
|
@@ -189,6 +195,7 @@ const e = {
|
|
|
189
195
|
prepend: "前置添加",
|
|
190
196
|
prependInner: "前置添加/内部",
|
|
191
197
|
primary: "首要",
|
|
198
|
+
propChange: "属性变化",
|
|
192
199
|
radio: "单选",
|
|
193
200
|
radioGroup: "单选分组",
|
|
194
201
|
rangeSlider: "范围滑动条",
|
|
@@ -196,6 +203,7 @@ const e = {
|
|
|
196
203
|
readonly: "只读",
|
|
197
204
|
ref: "引用",
|
|
198
205
|
regular: "常规",
|
|
206
|
+
renderSwitch: "渲染开关",
|
|
199
207
|
reverse: "反向",
|
|
200
208
|
right: "右边",
|
|
201
209
|
ripple: "波纹",
|