x-runtime-lib 0.7.46 → 0.8.0

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.
@@ -1,6 +1,5 @@
1
1
  import ZBarChartV1 from './chart/barChart/v1/index.vue';
2
2
  import ZLineChartV1 from './chart/lineChart/v1/index.vue';
3
- import ZListV1 from './misc/list/v1/index.vue';
4
3
  import ZRefV1 from './misc/ref/v1/index.vue';
5
4
  import ZRenderSwitchV1 from './misc/renderSwitch/v1/index.vue';
6
5
  import ZSlotV1 from './misc/slot/v1/index.vue';
@@ -47,4 +46,4 @@ import ZTimelineV1 from './regular/timeline/v1/index.vue';
47
46
  import ZTimelineItemV1 from './regular/timelineItem/v1/index.vue';
48
47
  import ZWindowV1 from './regular/window/v1/index.vue';
49
48
  import ZWindowItemV1 from './regular/windowItem/v1/index.vue';
50
- export { ZBarChartV1, ZLineChartV1, ZListV1, 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 };
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,7 @@
1
+ import { RefContext } from '@/types';
2
+ interface Props {
3
+ refContext: RefContext;
4
+ object: any;
5
+ }
6
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -1,6 +1,5 @@
1
1
  import { BaseProps, RefContext } from '@/types';
2
2
  interface Props extends BaseProps {
3
- id: string;
4
3
  refContext: RefContext;
5
4
  }
6
5
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -0,0 +1,2 @@
1
+ import { Sandbox } from '@/types';
2
+ export declare function useCustomProps(sandbox: Sandbox, object: any): void;
@@ -0,0 +1,2 @@
1
+ import { Sandbox } from '@/types';
2
+ export declare function useCustomStates(sandbox: Sandbox, object: any): void;
@@ -0,0 +1,2 @@
1
+ import { BaseProps, Sandbox } from '@/types';
2
+ export declare function useElementMethod(sandbox: Sandbox, props: BaseProps, hook: (params: unknown) => void): void;
@@ -0,0 +1,4 @@
1
+ import { BaseProps, Mode, Sandbox } from '@/types';
2
+ export declare function useElementProp(mode: Mode, sandbox: Sandbox, props: BaseProps, keys: string[], json?: boolean): {
3
+ prop: import("vue").Ref<any, any>;
4
+ };
@@ -8,6 +8,8 @@ export * from './common/color/v1';
8
8
  export * from './common/margin/v1';
9
9
  export * from './common/padding/v1';
10
10
  export * from './common/size/v1';
11
- export * from './core/method';
12
- export * from './core/prop';
11
+ export * from './core/customProps';
12
+ export * from './core/customStates';
13
+ export * from './core/elementMethod';
14
+ export * from './core/elementProp';
13
15
  export * from './core/theme';
@@ -21,7 +21,6 @@ export declare const keyFormV1 = "form_v1";
21
21
  export declare const keyIconV1 = "icon_v1";
22
22
  export declare const keyGlobalityV1 = "globality_v1";
23
23
  export declare const keyLineChartV1 = "line_chart_v1";
24
- export declare const keyListV1 = "list_v1";
25
24
  export declare const keyMenuV1 = "menu_v1";
26
25
  export declare const keyNumberInputV1 = "number_input_v1";
27
26
  export declare const keyPaginationV1 = "pagination_v1";
@@ -1,4 +1,3 @@
1
1
  export * from './globality/v1';
2
- export * from './list/v1';
3
2
  export * from './ref/v1';
4
3
  export * from './renderSwitch/v1';
@@ -150,7 +150,6 @@ const e = {
150
150
  line: "Line",
151
151
  lineChart: "Line Chart",
152
152
  lineThrough: "Line Through",
153
- list: "List",
154
153
  loading: "Loading",
155
154
  log: "Log",
156
155
  mainAxisAlign: "Main Axis Align",
@@ -150,7 +150,6 @@ const e = {
150
150
  line: "线",
151
151
  lineChart: "折线图",
152
152
  lineThrough: "中划线",
153
- list: "列表",
154
153
  loading: "加载中",
155
154
  log: "对数",
156
155
  mainAxisAlign: "主轴对齐",