x-runtime-lib 0.6.33 → 0.6.35

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.
@@ -15,6 +15,7 @@ import ZMenuV1 from './regular/menu/v1/index.vue';
15
15
  import ZNumberInputV1 from './regular/numberInput/v1/index.vue';
16
16
  import ZRatingV1 from './regular/rating/v1/index.vue';
17
17
  import ZSelectV1 from './regular/select/v1/index.vue';
18
+ import ZTextV1 from './regular/text/v1/index.vue';
18
19
  import ZTextAreaV1 from './regular/textArea/v1/index.vue';
19
20
  import ZTextFieldV1 from './regular/textField/v1/index.vue';
20
- export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBtnV1, ZCardV1, ZChipV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDialogV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZMenuV1, ZNumberInputV1, ZRatingV1, ZSelectV1, ZTextAreaV1, ZTextFieldV1 };
21
+ export { ZBarChartV1, ZLineChartV1, ZRefV1, ZSlotV1, ZBtnV1, ZCardV1, ZChipV1, ZComboboxV1, ZContainerV1, ZDataTableV1, ZDialogV1, ZFlexLayoutV1, ZFlexLayoutEntryV1, ZMenuV1, ZNumberInputV1, ZRatingV1, ZSelectV1, ZTextV1, ZTextAreaV1, ZTextFieldV1 };
@@ -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
+ import { ZItem } from '../../../../../types';
2
+ export declare const fontWeightItemsV1: ZItem[];
@@ -7,4 +7,9 @@ export * from './flexCrossAlignItems/v1';
7
7
  export * from './flexDirectionItems/v1';
8
8
  export * from './flexMainAlignItems/v1';
9
9
  export * from './flexWrapItems/v1';
10
+ export * from './fontWeightItems/v1';
11
+ export * from './textAlignItems/v1';
12
+ export * from './textDecorationItems/v1';
13
+ export * from './textEmphasisItems/v1';
14
+ export * from './textStyleItems/v1';
10
15
  export * from './themeColorItems/v1';
@@ -0,0 +1,2 @@
1
+ import { ZItem } from '../../../../../types';
2
+ export declare const textAlignItemsV1: ZItem[];
@@ -0,0 +1,2 @@
1
+ import { ZItem } from '../../../../../types';
2
+ export declare const textDecorationItemsV1: ZItem[];
@@ -0,0 +1,2 @@
1
+ import { ZItem } from '../../../../../types';
2
+ export declare const textEmphasisItemsV1: ZItem[];
@@ -0,0 +1,2 @@
1
+ import { ZItem } from '../../../../../types';
2
+ export declare const textStyleItemsV1: ZItem[];
@@ -16,5 +16,6 @@ export declare const keyPackageV1 = "package_v1";
16
16
  export declare const keyRatingV1 = "rating_v1";
17
17
  export declare const keyRefV1 = "ref_v1";
18
18
  export declare const keySelectV1 = "select_v1";
19
+ export declare const keyTextV1 = "text_v1";
19
20
  export declare const keyTextAreaV1 = "text_area_v1";
20
21
  export declare const keyTextFieldV1 = "text_field_v1";
@@ -0,0 +1,3 @@
1
+ import { ZElement } from '../../../../types';
2
+ declare const element: ZElement;
3
+ export default element;
@@ -12,7 +12,11 @@ const e = {
12
12
  barChart: "Bar Chart",
13
13
  baseline: "Baseline",
14
14
  basic: "Basic",
15
+ black: "Black",
15
16
  block: "Block",
17
+ body1: "Body 1",
18
+ body2: "Body 2",
19
+ bold: "Bold",
16
20
  border: "Border",
17
21
  bottom: "Bottom",
18
22
  bottomLeft: "Bottom Left",
@@ -25,6 +29,7 @@ const e = {
25
29
  xl: "X Large"
26
30
  },
27
31
  button: "Button",
32
+ caption: "Caption",
28
33
  card: "Card",
29
34
  category: "Category",
30
35
  center: "Center",
@@ -48,6 +53,7 @@ const e = {
48
53
  data: "Data",
49
54
  dataTable: "Data Table",
50
55
  dataTableServer: "Data Table Server",
56
+ decoration: "Decoration",
51
57
  default: "Default",
52
58
  density: "Density",
53
59
  dotted: "Dotted",
@@ -55,6 +61,7 @@ const e = {
55
61
  direction: "Direction",
56
62
  disabled: "Disabled",
57
63
  elevated: "Elevated",
64
+ emphasis: "Emphasis",
58
65
  end: "End",
59
66
  error: "Error",
60
67
  false: "False",
@@ -66,18 +73,28 @@ const e = {
66
73
  flexLayoutEntry: "Flex Layout Entry",
67
74
  globality: "Globality",
68
75
  globalSettings: "Global Settings",
76
+ h1: "Heading 1",
77
+ h2: "Heading 2",
78
+ h3: "Heading 3",
79
+ h4: "Heading 4",
80
+ h5: "Heading 5",
81
+ h6: "Heading 6",
69
82
  headers: "Headers",
70
83
  height: "Height",
71
84
  hideDetails: "Hide Details",
85
+ high: "High",
72
86
  id: "ID",
73
87
  info: "Info",
88
+ italic: "Italic",
74
89
  item: "Item",
75
90
  items: "Items",
91
+ justify: "Justify",
76
92
  label: "Label",
77
93
  left: "Left",
78
94
  legend: "Legend",
79
95
  light: "Light",
80
96
  lineChart: "Line Chart",
97
+ lineThrough: "Line Through",
81
98
  loading: "Loading",
82
99
  log: "Log",
83
100
  mainAxisAlign: "Main Axis Align",
@@ -92,8 +109,10 @@ const e = {
92
109
  multiSort: "Multi Sort",
93
110
  name: "Name",
94
111
  no: "No",
112
+ none: "None",
95
113
  notSet: "Not Set",
96
114
  numberInput: "Number Input",
115
+ overline: "Overline",
97
116
  outlined: "Outlined",
98
117
  padding: "Padding",
99
118
  percent: "Percent",
@@ -107,6 +126,7 @@ const e = {
107
126
  rating: "Rating",
108
127
  readonly: "Readonly",
109
128
  ref: "Reference",
129
+ regular: "Regular",
110
130
  reverse: "Reverse",
111
131
  right: "Right",
112
132
  roundRadius: "Round Radius",
@@ -128,7 +148,9 @@ const e = {
128
148
  start: "Start",
129
149
  stretch: "Stretch",
130
150
  style: "Style",
131
- subtext: "Sub Text",
151
+ subtext: "Subtext",
152
+ subtitle1: "Subtitle 1",
153
+ subtitle2: "Subtitle 2",
132
154
  success: "Success",
133
155
  text: "Text",
134
156
  textArea: "Text Area",
@@ -144,9 +166,11 @@ const e = {
144
166
  topRight: "Top Right",
145
167
  true: "True",
146
168
  type: "Type",
169
+ underline: "Underline",
147
170
  value: "Value",
148
171
  variant: "Variant",
149
172
  warning: "Warning",
173
+ weight: "Weight",
150
174
  width: "Width",
151
175
  wrap: "Wrap",
152
176
  xAxis: "X Axis",
@@ -12,7 +12,11 @@ const e = {
12
12
  barChart: "柱状图",
13
13
  baseline: "基线",
14
14
  basic: "基本",
15
+ black: "黑",
15
16
  block: "块",
17
+ body1: "主体1",
18
+ body2: "主体2",
19
+ bold: "粗",
16
20
  border: "边框",
17
21
  bottom: "底部",
18
22
  bottomLeft: "底左",
@@ -25,6 +29,7 @@ const e = {
25
29
  xl: "超大"
26
30
  },
27
31
  button: "按钮",
32
+ caption: "说明",
28
33
  card: "卡片",
29
34
  category: "类目",
30
35
  center: "中心",
@@ -48,6 +53,7 @@ const e = {
48
53
  data: "数据",
49
54
  dataTable: "数据表",
50
55
  dataTableServer: "服务端数据表",
56
+ decoration: "装饰",
51
57
  default: "缺省",
52
58
  density: "密度",
53
59
  dotted: "点画线",
@@ -55,6 +61,7 @@ const e = {
55
61
  direction: "方向",
56
62
  disabled: "禁用",
57
63
  elevated: "升高",
64
+ emphasis: "强调",
58
65
  end: "结束",
59
66
  error: "错误",
60
67
  false: "假",
@@ -66,18 +73,28 @@ const e = {
66
73
  flexLayoutEntry: "弹性布局条目",
67
74
  globality: "全局",
68
75
  globalSettings: "全局设置",
76
+ h1: "标题1",
77
+ h2: "标题2",
78
+ h3: "标题3",
79
+ h4: "标题4",
80
+ h5: "标题5",
81
+ h6: "标题6",
69
82
  headers: "头部",
70
83
  height: "高度",
71
84
  hideDetails: "隐藏细节",
85
+ high: "高",
72
86
  id: "ID",
73
87
  info: "信息",
88
+ italic: "斜体",
74
89
  item: "项目",
75
90
  items: "项目",
91
+ justify: "公正",
76
92
  label: "标签",
77
93
  left: "左边",
78
94
  legend: "图例",
79
95
  light: "亮",
80
96
  lineChart: "折线图",
97
+ lineThrough: "中划线",
81
98
  loading: "加载中",
82
99
  log: "对数",
83
100
  mainAxisAlign: "主轴对齐",
@@ -92,8 +109,10 @@ const e = {
92
109
  multiSort: "多重排序",
93
110
  name: "名称",
94
111
  no: "否",
112
+ none: "没有",
95
113
  notSet: "未设置",
96
114
  numberInput: "数字输入",
115
+ overline: "上划线",
97
116
  outlined: "轮廓",
98
117
  padding: "内边距",
99
118
  percent: "百分比",
@@ -107,6 +126,7 @@ const e = {
107
126
  rating: "评级",
108
127
  readonly: "只读",
109
128
  ref: "引用",
129
+ regular: "常规",
110
130
  reverse: "反向",
111
131
  right: "右边",
112
132
  roundRadius: "圆角半径",
@@ -129,6 +149,8 @@ const e = {
129
149
  stretch: "伸展",
130
150
  style: "风格",
131
151
  subtext: "子文本",
152
+ subtitle1: "子标题1",
153
+ subtitle2: "子标题2",
132
154
  success: "成功",
133
155
  text: "文本",
134
156
  textArea: "文本区域",
@@ -144,9 +166,11 @@ const e = {
144
166
  topRight: "顶右",
145
167
  true: "真",
146
168
  type: "类型",
169
+ underline: "下划线",
147
170
  value: "值",
148
171
  variant: "变种",
149
172
  warning: "警告",
173
+ weight: "重量",
150
174
  width: "宽度",
151
175
  wrap: "换行",
152
176
  xAxis: "x轴",