x-runtime-lib 0.6.14 → 0.6.16
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/regular/flexLayout/v1/index.vue.d.ts +19 -0
- package/dist/components/element/regular/flexLayoutEntry/v1/index.vue.d.ts +19 -0
- package/dist/composables/element/common/border/v1/index.d.ts +2 -2
- package/dist/composables/element/common/color/v1/index.d.ts +4 -0
- package/dist/composables/element/index.d.ts +1 -0
- package/dist/element/_common/items/colorModeItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/flexCrossAlignItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/flexDirectionItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/flexMainAlignItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/flexWrapItems/v1/index.d.ts +2 -0
- package/dist/element/_common/items/index.d.ts +6 -0
- package/dist/element/_common/items/themeColorItems/v1/index.d.ts +2 -0
- package/dist/element/_common/keys.d.ts +2 -0
- package/dist/element/_common/props/color/v1/index.d.ts +2 -0
- package/dist/element/_common/props/index.d.ts +1 -0
- package/dist/element/_common/types/marginTypes/v1/index.d.ts +1 -1
- package/dist/element/regular/flexLayout/v1/index.d.ts +3 -0
- package/dist/element/regular/flexLayoutEntry/v1/index.d.ts +3 -0
- package/dist/{i18n-en-gk1u42wl.js → i18n-en-o1wce72d.js} +37 -1
- package/dist/{i18n-zhHans-mhlcmbyg.js → i18n-zhHans-nhidk65s.js} +37 -2
- package/dist/index.js +2669 -2322
- package/dist/types/element.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { BaseProps } from '../../../../../types';
|
|
3
|
+
declare const style: import("vue").ComputedRef<CSSProperties>;
|
|
4
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
}>;
|
|
9
|
+
declare const __VLS_self: import("vue").DefineComponent<BaseProps, {
|
|
10
|
+
style: typeof style;
|
|
11
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BaseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
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>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { BaseProps } from '../../../../../types';
|
|
3
|
+
declare const style: import("vue").ComputedRef<CSSProperties>;
|
|
4
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
}>;
|
|
9
|
+
declare const __VLS_self: import("vue").DefineComponent<BaseProps, {
|
|
10
|
+
style: typeof style;
|
|
11
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BaseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
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>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { CSSProperties } from 'vue';
|
|
1
|
+
import { CSSProperties, Ref } from 'vue';
|
|
2
2
|
import { BaseProps } from '../../../../../types';
|
|
3
|
-
export declare function useBorderV1(props: BaseProps): {
|
|
3
|
+
export declare function useBorderV1(dark: Ref<boolean>, props: BaseProps): {
|
|
4
4
|
borderStyle: import("vue").ComputedRef<any>;
|
|
5
5
|
borderWidth: import("vue").ComputedRef<any>;
|
|
6
6
|
borderColor: import("vue").ComputedRef<any>;
|
|
@@ -4,6 +4,7 @@ export * from './chart/title/v1';
|
|
|
4
4
|
export * from './chart/xAxis/v1';
|
|
5
5
|
export * from './chart/yAxis/v1';
|
|
6
6
|
export * from './common/border/v1';
|
|
7
|
+
export * from './common/color/v1';
|
|
7
8
|
export * from './common/margin/v1';
|
|
8
9
|
export * from './common/padding/v1';
|
|
9
10
|
export * from './common/size/v1';
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
export * from './axisTypeItems/v1';
|
|
2
2
|
export * from './borderStyleItems/v1';
|
|
3
3
|
export * from './btnVariantItems/v1';
|
|
4
|
+
export * from './colorModeItems/v1';
|
|
4
5
|
export * from './densityItems/v1';
|
|
6
|
+
export * from './flexCrossAlignItems/v1';
|
|
7
|
+
export * from './flexDirectionItems/v1';
|
|
8
|
+
export * from './flexMainAlignItems/v1';
|
|
9
|
+
export * from './flexWrapItems/v1';
|
|
10
|
+
export * from './themeColorItems/v1';
|
|
@@ -6,6 +6,8 @@ export declare const keyComboboxV1 = "combobox_v1";
|
|
|
6
6
|
export declare const keyContainerV1 = "container_v1";
|
|
7
7
|
export declare const keyDataTableV1 = "data_table_v1";
|
|
8
8
|
export declare const keyDialogV1 = "dialog_v1";
|
|
9
|
+
export declare const keyFlexLayoutV1 = "flex_layout_v1";
|
|
10
|
+
export declare const keyFlexLayoutEntryV1 = "flex_layout_entry_v1";
|
|
9
11
|
export declare const keyGlobalityV1 = "globality_v1";
|
|
10
12
|
export declare const keyLineChartV1 = "line_chart_v1";
|
|
11
13
|
export declare const keyNumberInputV1 = "number_input_v1";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ZType } from '../../../../../types';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const marginTypesV1: ZType[];
|
|
@@ -5,14 +5,25 @@ const e = {
|
|
|
5
5
|
append: "Append",
|
|
6
6
|
appendInner: "Append Inner",
|
|
7
7
|
auto: "Auto",
|
|
8
|
+
background0: "Background 0",
|
|
9
|
+
background1: "Background 1",
|
|
10
|
+
background2: "Background 2",
|
|
8
11
|
backgroundColor: "Background Color",
|
|
9
12
|
barChart: "Bar Chart",
|
|
13
|
+
baseline: "Baseline",
|
|
10
14
|
basic: "Basic",
|
|
11
15
|
block: "Block",
|
|
12
16
|
border: "Border",
|
|
13
17
|
bottom: "Bottom",
|
|
14
18
|
bottomLeft: "Bottom Left",
|
|
15
19
|
bottomRight: "Bottom Right",
|
|
20
|
+
bp: {
|
|
21
|
+
xs: "X Small",
|
|
22
|
+
sm: "Small",
|
|
23
|
+
md: "Middle",
|
|
24
|
+
lg: "Large",
|
|
25
|
+
xl: "X Large"
|
|
26
|
+
},
|
|
16
27
|
button: "Button",
|
|
17
28
|
card: "Card",
|
|
18
29
|
category: "Category",
|
|
@@ -23,12 +34,15 @@ const e = {
|
|
|
23
34
|
click: "Click",
|
|
24
35
|
color: "Color",
|
|
25
36
|
column: "Column",
|
|
37
|
+
columnReverse: "Column Reverse",
|
|
26
38
|
combobox: "Combobox",
|
|
27
39
|
comfortable: "Comfortable",
|
|
28
40
|
comp: "Comp",
|
|
29
41
|
compNotAvail: "Comp Not Available",
|
|
30
42
|
compact: "Compact",
|
|
31
43
|
container: "Container",
|
|
44
|
+
crossAxisAlign: "Cross Axis Align",
|
|
45
|
+
custom: "Custom",
|
|
32
46
|
dark: "Dark",
|
|
33
47
|
dashed: "Dashed",
|
|
34
48
|
data: "Data",
|
|
@@ -38,19 +52,24 @@ const e = {
|
|
|
38
52
|
density: "Density",
|
|
39
53
|
dotted: "Dotted",
|
|
40
54
|
dialog: "Dialog",
|
|
55
|
+
direction: "Direction",
|
|
41
56
|
disabled: "Disabled",
|
|
42
57
|
elevated: "Elevated",
|
|
43
58
|
end: "End",
|
|
59
|
+
error: "Error",
|
|
44
60
|
fixed: "Fixed",
|
|
45
61
|
fixedFooter: "Fixed Footer",
|
|
46
62
|
fixedHeader: "Fixed Header",
|
|
47
63
|
flat: "Flat",
|
|
64
|
+
flexLayout: "Flex Layout",
|
|
65
|
+
flexLayoutEntry: "Flex Layout Entry",
|
|
48
66
|
globality: "Globality",
|
|
49
67
|
globalSettings: "Global Settings",
|
|
50
68
|
headers: "Headers",
|
|
51
69
|
height: "Height",
|
|
52
70
|
hideDetails: "Hide Details",
|
|
53
71
|
id: "ID",
|
|
72
|
+
info: "Info",
|
|
54
73
|
item: "Item",
|
|
55
74
|
items: "Items",
|
|
56
75
|
label: "Label",
|
|
@@ -60,14 +79,17 @@ const e = {
|
|
|
60
79
|
lineChart: "Line Chart",
|
|
61
80
|
loading: "Loading",
|
|
62
81
|
log: "Log",
|
|
82
|
+
mainAxisAlign: "Main Axis Align",
|
|
63
83
|
margin: "Margin",
|
|
64
84
|
maxHeight: "Max Height",
|
|
65
85
|
maxWidth: "Max Width",
|
|
66
86
|
medium: "Medium",
|
|
67
87
|
minHeight: "Min Height",
|
|
68
88
|
minWidth: "Min Width",
|
|
89
|
+
mode: "Mode",
|
|
69
90
|
multiSort: "Multi Sort",
|
|
70
91
|
name: "Name",
|
|
92
|
+
no: "No",
|
|
71
93
|
notSet: "Not Set",
|
|
72
94
|
numberInput: "Number Input",
|
|
73
95
|
outlined: "Outlined",
|
|
@@ -79,11 +101,16 @@ const e = {
|
|
|
79
101
|
position: "Position",
|
|
80
102
|
prepend: "Prepend",
|
|
81
103
|
prependInner: "Prepend Inner",
|
|
104
|
+
primary: "Primary",
|
|
82
105
|
rating: "Rating",
|
|
83
106
|
readonly: "Readonly",
|
|
84
107
|
ref: "Reference",
|
|
108
|
+
reverse: "Reverse",
|
|
85
109
|
right: "Right",
|
|
86
110
|
roundRadius: "Round Radius",
|
|
111
|
+
row: "Row",
|
|
112
|
+
rowReverse: "Row Reverse",
|
|
113
|
+
secondary: "Secondary",
|
|
87
114
|
select: "Select",
|
|
88
115
|
series: "Series",
|
|
89
116
|
settings: "Settings",
|
|
@@ -93,12 +120,18 @@ const e = {
|
|
|
93
120
|
slots: "Slots",
|
|
94
121
|
solid: "Solid",
|
|
95
122
|
sortable: "Sortable",
|
|
123
|
+
spaceAround: "Space Around",
|
|
124
|
+
spaceBetween: "Space Between",
|
|
125
|
+
spaceEvenly: "Space Evenly",
|
|
96
126
|
start: "Start",
|
|
127
|
+
stretch: "Stretch",
|
|
97
128
|
style: "Style",
|
|
98
129
|
subtext: "Sub Text",
|
|
130
|
+
success: "Success",
|
|
99
131
|
text: "Text",
|
|
100
132
|
textArea: "Text Area",
|
|
101
133
|
textField: "Text Field",
|
|
134
|
+
theme: "Theme",
|
|
102
135
|
thin: "Thin",
|
|
103
136
|
thick: "Thick",
|
|
104
137
|
time: "Time",
|
|
@@ -110,9 +143,12 @@ const e = {
|
|
|
110
143
|
type: "Type",
|
|
111
144
|
value: "Value",
|
|
112
145
|
variant: "Variant",
|
|
146
|
+
warning: "Warning",
|
|
113
147
|
width: "Width",
|
|
148
|
+
wrap: "Wrap",
|
|
114
149
|
xAxis: "X Axis",
|
|
115
|
-
yAxis: "Y Axis"
|
|
150
|
+
yAxis: "Y Axis",
|
|
151
|
+
yes: "Yes"
|
|
116
152
|
}
|
|
117
153
|
};
|
|
118
154
|
export {
|
|
@@ -5,14 +5,25 @@ const e = {
|
|
|
5
5
|
append: "追加",
|
|
6
6
|
appendInner: "内部追加",
|
|
7
7
|
auto: "自动",
|
|
8
|
+
background0: "背景0",
|
|
9
|
+
background1: "背景1",
|
|
10
|
+
background2: "背景2",
|
|
8
11
|
backgroundColor: "背景颜色",
|
|
9
12
|
barChart: "柱状图",
|
|
13
|
+
baseline: "基线",
|
|
10
14
|
basic: "基本",
|
|
11
15
|
block: "块",
|
|
12
16
|
border: "边框",
|
|
13
17
|
bottom: "底部",
|
|
14
18
|
bottomLeft: "底左",
|
|
15
19
|
bottomRight: "底右",
|
|
20
|
+
bp: {
|
|
21
|
+
xs: "极小",
|
|
22
|
+
sm: "小屏",
|
|
23
|
+
md: "中屏",
|
|
24
|
+
lg: "大屏",
|
|
25
|
+
xl: "超大"
|
|
26
|
+
},
|
|
16
27
|
button: "按钮",
|
|
17
28
|
card: "卡片",
|
|
18
29
|
category: "类目",
|
|
@@ -23,12 +34,15 @@ const e = {
|
|
|
23
34
|
click: "单击",
|
|
24
35
|
color: "颜色",
|
|
25
36
|
column: "列",
|
|
37
|
+
columnReverse: "列反向",
|
|
26
38
|
combobox: "组合框",
|
|
27
39
|
comfortable: "舒适",
|
|
28
40
|
comp: "组件",
|
|
29
41
|
compNotAvail: "组件不可用",
|
|
30
42
|
compact: "紧凑",
|
|
31
43
|
container: "容器",
|
|
44
|
+
crossAxisAlign: "交叉轴对齐",
|
|
45
|
+
custom: "自定义",
|
|
32
46
|
dark: "暗",
|
|
33
47
|
dashed: "虚线",
|
|
34
48
|
data: "数据",
|
|
@@ -38,19 +52,24 @@ const e = {
|
|
|
38
52
|
density: "密度",
|
|
39
53
|
dotted: "点画线",
|
|
40
54
|
dialog: "对话框",
|
|
55
|
+
direction: "方向",
|
|
41
56
|
disabled: "禁用",
|
|
42
57
|
elevated: "升高",
|
|
43
58
|
end: "结束",
|
|
59
|
+
error: "错误",
|
|
44
60
|
fixed: "固定",
|
|
45
61
|
fixedFooter: "固定脚部",
|
|
46
62
|
fixedHeader: "固定头部",
|
|
47
63
|
flat: "扁平",
|
|
64
|
+
flexLayout: "弹性布局",
|
|
65
|
+
flexLayoutEntry: "弹性布局条目",
|
|
48
66
|
globality: "全局",
|
|
49
67
|
globalSettings: "全局设置",
|
|
50
68
|
headers: "头部",
|
|
51
69
|
height: "高度",
|
|
52
70
|
hideDetails: "隐藏细节",
|
|
53
71
|
id: "ID",
|
|
72
|
+
info: "信息",
|
|
54
73
|
item: "项目",
|
|
55
74
|
items: "项目",
|
|
56
75
|
label: "标签",
|
|
@@ -60,14 +79,17 @@ const e = {
|
|
|
60
79
|
lineChart: "折线图",
|
|
61
80
|
loading: "加载中",
|
|
62
81
|
log: "对数",
|
|
82
|
+
mainAxisAlign: "主轴对齐",
|
|
63
83
|
margin: "外边距",
|
|
64
84
|
maxHeight: "最大高度",
|
|
65
85
|
maxWidth: "最大宽度",
|
|
66
86
|
medium: "中",
|
|
67
87
|
minHeight: "最小高度",
|
|
68
88
|
minWidth: "最小宽度",
|
|
89
|
+
mode: "模式",
|
|
69
90
|
multiSort: "多重排序",
|
|
70
91
|
name: "名称",
|
|
92
|
+
no: "否",
|
|
71
93
|
notSet: "未设置",
|
|
72
94
|
numberInput: "数字输入",
|
|
73
95
|
outlined: "轮廓",
|
|
@@ -79,12 +101,16 @@ const e = {
|
|
|
79
101
|
position: "位置",
|
|
80
102
|
prepend: "预追加",
|
|
81
103
|
prependInner: "内部预追加",
|
|
82
|
-
|
|
104
|
+
primary: "首要",
|
|
83
105
|
rating: "评级",
|
|
84
106
|
readonly: "只读",
|
|
85
107
|
ref: "引用",
|
|
108
|
+
reverse: "反向",
|
|
86
109
|
right: "右边",
|
|
87
110
|
roundRadius: "圆角半径",
|
|
111
|
+
row: "行",
|
|
112
|
+
rowReverse: "行反向",
|
|
113
|
+
secondary: "次要",
|
|
88
114
|
select: "选择",
|
|
89
115
|
series: "系列",
|
|
90
116
|
settings: "设置",
|
|
@@ -94,12 +120,18 @@ const e = {
|
|
|
94
120
|
slots: "插槽",
|
|
95
121
|
solid: "实线",
|
|
96
122
|
sortable: "可排序",
|
|
123
|
+
spaceAround: "环绕",
|
|
124
|
+
spaceBetween: "间隔",
|
|
125
|
+
spaceEvenly: "均匀",
|
|
97
126
|
start: "开始",
|
|
127
|
+
stretch: "伸展",
|
|
98
128
|
style: "风格",
|
|
99
129
|
subtext: "子文本",
|
|
130
|
+
success: "成功",
|
|
100
131
|
text: "文本",
|
|
101
132
|
textArea: "文本区域",
|
|
102
133
|
textField: "文本字段",
|
|
134
|
+
theme: "主题",
|
|
103
135
|
thin: "细",
|
|
104
136
|
thick: "粗",
|
|
105
137
|
time: "时间",
|
|
@@ -111,9 +143,12 @@ const e = {
|
|
|
111
143
|
type: "类型",
|
|
112
144
|
value: "值",
|
|
113
145
|
variant: "变种",
|
|
146
|
+
warning: "警告",
|
|
114
147
|
width: "宽度",
|
|
148
|
+
wrap: "换行",
|
|
115
149
|
xAxis: "x轴",
|
|
116
|
-
yAxis: "y轴"
|
|
150
|
+
yAxis: "y轴",
|
|
151
|
+
yes: "是"
|
|
117
152
|
}
|
|
118
153
|
};
|
|
119
154
|
export {
|