x-runtime-lib 0.6.32 → 0.6.34

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;
@@ -13,6 +13,8 @@ const e = {
13
13
  baseline: "Baseline",
14
14
  basic: "Basic",
15
15
  block: "Block",
16
+ body1: "Body 1",
17
+ body2: "Body 2",
16
18
  border: "Border",
17
19
  bottom: "Bottom",
18
20
  bottomLeft: "Bottom Left",
@@ -25,6 +27,7 @@ const e = {
25
27
  xl: "X Large"
26
28
  },
27
29
  button: "Button",
30
+ caption: "Caption",
28
31
  card: "Card",
29
32
  category: "Category",
30
33
  center: "Center",
@@ -66,6 +69,12 @@ const e = {
66
69
  flexLayoutEntry: "Flex Layout Entry",
67
70
  globality: "Globality",
68
71
  globalSettings: "Global Settings",
72
+ h1: "Heading 1",
73
+ h2: "Heading 2",
74
+ h3: "Heading 3",
75
+ h4: "Heading 4",
76
+ h5: "Heading 5",
77
+ h6: "Heading 6",
69
78
  headers: "Headers",
70
79
  height: "Height",
71
80
  hideDetails: "Hide Details",
@@ -94,6 +103,7 @@ const e = {
94
103
  no: "No",
95
104
  notSet: "Not Set",
96
105
  numberInput: "Number Input",
106
+ overline: "Overline",
97
107
  outlined: "Outlined",
98
108
  padding: "Padding",
99
109
  percent: "Percent",
@@ -128,7 +138,9 @@ const e = {
128
138
  start: "Start",
129
139
  stretch: "Stretch",
130
140
  style: "Style",
131
- subtext: "Sub Text",
141
+ subtext: "Subtext",
142
+ subtitle1: "Subtitle 1",
143
+ subtitle2: "Subtitle 2",
132
144
  success: "Success",
133
145
  text: "Text",
134
146
  textArea: "Text Area",
@@ -13,6 +13,8 @@ const e = {
13
13
  baseline: "基线",
14
14
  basic: "基本",
15
15
  block: "块",
16
+ body1: "主体1",
17
+ body2: "主体2",
16
18
  border: "边框",
17
19
  bottom: "底部",
18
20
  bottomLeft: "底左",
@@ -25,6 +27,7 @@ const e = {
25
27
  xl: "超大"
26
28
  },
27
29
  button: "按钮",
30
+ caption: "说明",
28
31
  card: "卡片",
29
32
  category: "类目",
30
33
  center: "中心",
@@ -66,6 +69,12 @@ const e = {
66
69
  flexLayoutEntry: "弹性布局条目",
67
70
  globality: "全局",
68
71
  globalSettings: "全局设置",
72
+ h1: "标题1",
73
+ h2: "标题2",
74
+ h3: "标题3",
75
+ h4: "标题4",
76
+ h5: "标题5",
77
+ h6: "标题6",
69
78
  headers: "头部",
70
79
  height: "高度",
71
80
  hideDetails: "隐藏细节",
@@ -94,6 +103,7 @@ const e = {
94
103
  no: "否",
95
104
  notSet: "未设置",
96
105
  numberInput: "数字输入",
106
+ overline: "上划线",
97
107
  outlined: "轮廓",
98
108
  padding: "内边距",
99
109
  percent: "百分比",
@@ -129,6 +139,8 @@ const e = {
129
139
  stretch: "伸展",
130
140
  style: "风格",
131
141
  subtext: "子文本",
142
+ subtitle1: "子标题1",
143
+ subtitle2: "子标题2",
132
144
  success: "成功",
133
145
  text: "文本",
134
146
  textArea: "文本区域",