x-runtime-lib 0.8.0 → 0.8.2

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.
@@ -0,0 +1,12 @@
1
+ declare var __VLS_7: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_7) => 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
+ };
@@ -1,3 +1,4 @@
1
+ import ZMesh from './3d/mesh/v1/index.vue';
1
2
  import ZBarChartV1 from './chart/barChart/v1/index.vue';
2
3
  import ZLineChartV1 from './chart/lineChart/v1/index.vue';
3
4
  import ZRefV1 from './misc/ref/v1/index.vue';
@@ -38,6 +39,7 @@ import ZStepperWindowV1 from './regular/stepperWindow/v1/index.vue';
38
39
  import ZStepperWindowItemV1 from './regular/stepperWindowItem/v1/index.vue';
39
40
  import ZSwitchV1 from './regular/switch/v1/index.vue';
40
41
  import ZTabV1 from './regular/tab/v1/index.vue';
42
+ import ZTableV1 from './regular/table/v1/index.vue';
41
43
  import ZTabsV1 from './regular/tabs/v1/index.vue';
42
44
  import ZTextV1 from './regular/text/v1/index.vue';
43
45
  import ZTextareaV1 from './regular/textarea/v1/index.vue';
@@ -46,4 +48,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
46
48
  import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
47
49
  import ZWindowV1 from './regular/window/v1/index.vue';
48
50
  import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
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 };
51
+ export { ZMesh, 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, ZTableV1, ZTabsV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZWindowV1, ZWindowItemV1 };
@@ -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;
@@ -1,6 +1,6 @@
1
- import { CSSProperties, Ref } from 'vue';
1
+ import { CSSProperties } from 'vue';
2
2
  import { BaseProps } from '@/types';
3
- export declare function useBorderV1(dark: Ref<boolean>, props: BaseProps): {
3
+ export declare function useBorderV1(props: BaseProps): {
4
4
  borderStyle: import("vue").ComputedRef<any>;
5
5
  borderWidth: import("vue").ComputedRef<any>;
6
6
  borderColor: import("vue").ComputedRef<any>;
@@ -1,4 +1,4 @@
1
1
  import { Ref } from 'vue';
2
- export declare function useColorV1(dark: Ref<boolean>, raw: Ref<any>): {
2
+ export declare function useColorV1(raw: Ref<any>): {
3
3
  color: import("vue").ComputedRef<any>;
4
4
  };
@@ -1,7 +1,6 @@
1
- import { CSSProperties, Ref } from 'vue';
2
- import { BaseProps, Mode } from '@/types';
3
- import { Device } from '@/utils';
4
- export declare function useSizeV1(mode: Mode, device: Ref<Device>, props: BaseProps): {
1
+ import { CSSProperties } from 'vue';
2
+ import { BaseProps } from '@/types';
3
+ export declare function useSizeV1(props: BaseProps): {
5
4
  width: import("vue").ComputedRef<any>;
6
5
  minWidth: import("vue").ComputedRef<any>;
7
6
  maxWidth: import("vue").ComputedRef<any>;
@@ -1,4 +1,4 @@
1
- import { BaseProps, Mode, Sandbox } from '@/types';
2
- export declare function useElementProp(mode: Mode, sandbox: Sandbox, props: BaseProps, keys: string[], json?: boolean): {
1
+ import { BaseProps } from '@/types';
2
+ export declare function useElementProp(props: BaseProps, keys: string[], json?: boolean): {
3
3
  prop: import("vue").Ref<any, any>;
4
4
  };
@@ -1,4 +1,3 @@
1
- import { Ref } from 'vue';
2
- export declare function useTheme(dark: Ref<boolean>): {
1
+ export declare function useTheme(): {
3
2
  theme: import("vue").ComputedRef<"dark" | "light">;
4
3
  };
@@ -0,0 +1 @@
1
+ export * from './meta';
@@ -0,0 +1,2 @@
1
+ import { ZElement } from '@/types';
2
+ export declare const meshV1: ZElement;
@@ -22,6 +22,7 @@ export declare const keyIconV1 = "icon_v1";
22
22
  export declare const keyGlobalityV1 = "globality_v1";
23
23
  export declare const keyLineChartV1 = "line_chart_v1";
24
24
  export declare const keyMenuV1 = "menu_v1";
25
+ export declare const keyMeshV1 = "mesh_v1";
25
26
  export declare const keyNumberInputV1 = "number_input_v1";
26
27
  export declare const keyPaginationV1 = "pagination_v1";
27
28
  export declare const keyRadioV1 = "radio_v1";
@@ -40,6 +41,7 @@ export declare const keyStepperWindowV1 = "stepper_window_v1";
40
41
  export declare const keyStepperWindowItemV1 = "stepper_window_item_v1";
41
42
  export declare const keySwitchV1 = "switch_v1";
42
43
  export declare const keyTabV1 = "tab_v1";
44
+ export declare const keyTableV1 = "table_v1";
43
45
  export declare const keyTabsV1 = "tabs_v1";
44
46
  export declare const keyTextV1 = "text_v1";
45
47
  export declare const keyTextareaV1 = "textarea_v1";
@@ -6,5 +6,6 @@ export * from './margin/v1';
6
6
  export * from './padding/v1';
7
7
  export * from './size/v1';
8
8
  export * from './title/v1';
9
+ export * from './transform/v1';
9
10
  export * from './xAxis/v1';
10
11
  export * from './yAxis/v1';
@@ -0,0 +1,2 @@
1
+ import { ZProp } from '@/types';
2
+ export declare const transformV1: ZProp;
@@ -0,0 +1 @@
1
+ export * from './meta';
@@ -0,0 +1,2 @@
1
+ import { ZElement } from '@/types';
2
+ export declare const tableV1: ZElement;
@@ -94,6 +94,7 @@ const e = {
94
94
  emphasis: "Emphasis",
95
95
  end: "End",
96
96
  error: "Error",
97
+ extraData: "Extra Data",
97
98
  false: "False",
98
99
  fastFail: "Fast Fail",
99
100
  feedback: "Feedback",
@@ -112,7 +113,6 @@ const e = {
112
113
  form: "Form",
113
114
  formRelated: "Form Related",
114
115
  globality: "Globality",
115
- globalSettings: "Global Settings",
116
116
  grow: "Grow",
117
117
  h1: "Heading 1",
118
118
  h2: "Heading 2",
@@ -136,6 +136,7 @@ const e = {
136
136
  info: "Info",
137
137
  inline: "Inline",
138
138
  inset: "Inset",
139
+ isDarkMode: "Is Dark Mode",
139
140
  italic: "Italic",
140
141
  item: "Item",
141
142
  items: "Items",
@@ -153,6 +154,7 @@ const e = {
153
154
  loading: "Loading",
154
155
  log: "Log",
155
156
  mainAxisAlign: "Main Axis Align",
157
+ mainData: "Main Data",
156
158
  mandatory: "Mandatory",
157
159
  margin: "Margin",
158
160
  max: "Max",
@@ -161,6 +163,7 @@ const e = {
161
163
  maxWidth: "Max Width",
162
164
  medium: "Medium",
163
165
  menu: "Menu",
166
+ message: "Message",
164
167
  min: "Min",
165
168
  minHeight: "Min Height",
166
169
  minWidth: "Min Width",
@@ -172,11 +175,13 @@ const e = {
172
175
  multiSort: "Multi Sort",
173
176
  name: "Name",
174
177
  navigation: "Navigation",
178
+ newScreenSize: "New Screen Size",
175
179
  newValue: "New Value",
176
180
  no: "No",
177
181
  none: "None",
178
182
  notSet: "Not Set",
179
183
  numberInput: "Number Input",
184
+ oldScreenSize: "Old Screen Size",
180
185
  oldValue: "Old Value",
181
186
  open: "Open",
182
187
  overline: "Overline",
@@ -195,6 +200,7 @@ const e = {
195
200
  prependInner: "Prepend Inner",
196
201
  primary: "Primary",
197
202
  propChange: "Property Change",
203
+ property: "Property",
198
204
  radio: "Radio",
199
205
  radioGroup: "Radio Group",
200
206
  rangeSlider: "Range Slider",
@@ -203,6 +209,7 @@ const e = {
203
209
  ref: "Reference",
204
210
  regular: "Regular",
205
211
  renderSwitch: "Render Switch",
212
+ result: "Result",
206
213
  reverse: "Reverse",
207
214
  right: "Right",
208
215
  ripple: "Ripple",
@@ -255,6 +262,7 @@ const e = {
255
262
  suffix: "Suffix",
256
263
  switch: "Switch",
257
264
  tab: "Tab",
265
+ table: "Table",
258
266
  tabs: "Tabs",
259
267
  text: "Text",
260
268
  textarea: "Textarea",
@@ -94,6 +94,7 @@ const e = {
94
94
  emphasis: "强调",
95
95
  end: "结束",
96
96
  error: "错误",
97
+ extraData: "附加数据",
97
98
  false: "假",
98
99
  fastFail: "快速失败",
99
100
  feedback: "反馈",
@@ -112,7 +113,6 @@ const e = {
112
113
  form: "表单",
113
114
  formRelated: "表单相关",
114
115
  globality: "全局",
115
- globalSettings: "全局设置",
116
116
  grow: "伸展",
117
117
  h1: "标题1",
118
118
  h2: "标题2",
@@ -136,6 +136,7 @@ const e = {
136
136
  info: "信息",
137
137
  inline: "内联",
138
138
  inset: "内嵌",
139
+ isDarkMode: "是否暗模式",
139
140
  italic: "斜体",
140
141
  item: "项目",
141
142
  items: "项目",
@@ -153,6 +154,7 @@ const e = {
153
154
  loading: "加载中",
154
155
  log: "对数",
155
156
  mainAxisAlign: "主轴对齐",
157
+ mainData: "主数据",
156
158
  mandatory: "强制",
157
159
  margin: "外边距",
158
160
  max: "最大值",
@@ -161,6 +163,7 @@ const e = {
161
163
  maxWidth: "最大宽度",
162
164
  medium: "中",
163
165
  menu: "菜单",
166
+ message: "消息",
164
167
  min: "最小值",
165
168
  minHeight: "最小高度",
166
169
  minWidth: "最小宽度",
@@ -172,11 +175,13 @@ const e = {
172
175
  multiSort: "多重排序",
173
176
  name: "名称",
174
177
  navigation: "导航",
178
+ newScreenSize: "新屏幕大小",
175
179
  newValue: "新值",
176
180
  no: "否",
177
181
  none: "没有",
178
182
  notSet: "未设置",
179
183
  numberInput: "数字输入",
184
+ oldScreenSize: "旧屏幕大小",
180
185
  oldValue: "旧值",
181
186
  open: "打开",
182
187
  overline: "上划线",
@@ -195,6 +200,7 @@ const e = {
195
200
  prependInner: "前置添加/内部",
196
201
  primary: "首要",
197
202
  propChange: "属性变化",
203
+ property: "属性",
198
204
  radio: "单选",
199
205
  radioGroup: "单选分组",
200
206
  rangeSlider: "范围滑动条",
@@ -203,6 +209,7 @@ const e = {
203
209
  ref: "引用",
204
210
  regular: "常规",
205
211
  renderSwitch: "渲染开关",
212
+ result: "结果",
206
213
  reverse: "反向",
207
214
  right: "右边",
208
215
  ripple: "波纹",
@@ -255,6 +262,7 @@ const e = {
255
262
  suffix: "后缀",
256
263
  switch: "开关",
257
264
  tab: "选项卡项目",
265
+ table: "表",
258
266
  tabs: "选项卡",
259
267
  text: "文本",
260
268
  textarea: "文本区域",