x-runtime-lib 0.9.18 → 0.9.20

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,14 @@
1
+ import { ElementProps } from '@/types';
2
+ declare var __VLS_8: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_8) => any;
5
+ };
6
+ declare const __VLS_base: import("vue").DefineComponent<ElementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ElementProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
10
+ type __VLS_WithSlots<T, S> = T & {
11
+ new (): {
12
+ $slots: S;
13
+ };
14
+ };
@@ -19,6 +19,7 @@ import ZFileInputV1 from './fileInput/v1/index.vue';
19
19
  import ZFlexboxV1 from './flexbox/v1/index.vue';
20
20
  import ZFlexboxEntryV1 from './flexboxEntry/v1/index.vue';
21
21
  import ZFormV1 from './form/v1/index.vue';
22
+ import ZHoverV1 from './hover/v1/index.vue';
22
23
  import ZIconV1 from './icon/v1/index.vue';
23
24
  import ZItemV1 from './item/v1/index.vue';
24
25
  import ZItemGroupV1 from './itemGroup/v1/index.vue';
@@ -61,4 +62,4 @@ import ZTimelineItemV1 from './timelineItem/v1/index.vue';
61
62
  import ZTooltipV1 from './tooltip/v1/index.vue';
62
63
  import ZWindowV1 from './window/v1/index.vue';
63
64
  import ZWindowItemV1 from './windowItem/v1/index.vue';
64
- export { ZActivatorV1, ZBadgeV1, ZBreadcrumbsV1, ZBtnV1, ZBtnToggleV1, ZCardV1, ZCheckboxV1, ZChipV1, ZChipGroupV1, ZColorPickerV1, ZComboboxV1, ZContainerV1, ZDataTableClientV1, ZDataTableServerV1, ZDatePickerV1, ZDialogV1, ZFabV1, ZFileInputV1, ZFlexboxV1, ZFlexboxEntryV1, ZFormV1, ZIconV1, ZItemV1, ZItemGroupV1, ZListV1, ZListItemV1, ZMenuV1, ZNumberInputV1, ZOptInputV1, ZPaginationV1, ZPositionerV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSheetV1, ZSlideGroupV1, ZSlideGroupItemV1, ZSliderV1, ZSpeedDialV1, ZStepperV1, ZStepperHeaderV1, ZStepperItemV1, ZStepperWindowV1, ZStepperWindowItemV1, ZSwitchV1, ZTabV1, ZTableV1, ZTableBodyV1, ZTableBodyCellV1, ZTableHeadV1, ZTableHeadCellV1, ZTableRowV1, ZTabsV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZTooltipV1, ZWindowV1, ZWindowItemV1 };
65
+ export { ZActivatorV1, ZBadgeV1, ZBreadcrumbsV1, ZBtnV1, ZBtnToggleV1, ZCardV1, ZCheckboxV1, ZChipV1, ZChipGroupV1, ZColorPickerV1, ZComboboxV1, ZContainerV1, ZDataTableClientV1, ZDataTableServerV1, ZDatePickerV1, ZDialogV1, ZFabV1, ZFileInputV1, ZFlexboxV1, ZFlexboxEntryV1, ZFormV1, ZHoverV1, ZIconV1, ZItemV1, ZItemGroupV1, ZListV1, ZListItemV1, ZMenuV1, ZNumberInputV1, ZOptInputV1, ZPaginationV1, ZPositionerV1, ZRadioV1, ZRadioGroupV1, ZRangeSliderV1, ZRatingV1, ZSelectV1, ZSheetV1, ZSlideGroupV1, ZSlideGroupItemV1, ZSliderV1, ZSpeedDialV1, ZStepperV1, ZStepperHeaderV1, ZStepperItemV1, ZStepperWindowV1, ZStepperWindowItemV1, ZSwitchV1, ZTabV1, ZTableV1, ZTableBodyV1, ZTableBodyCellV1, ZTableHeadV1, ZTableHeadCellV1, ZTableRowV1, ZTabsV1, ZTextV1, ZTextareaV1, ZTextFieldV1, ZTimelineV1, ZTimelineItemV1, ZTooltipV1, ZWindowV1, ZWindowItemV1 };
@@ -1,7 +1,9 @@
1
1
  import { ElementProps } from '@/types';
2
- declare var __VLS_15: {};
2
+ declare var __VLS_15: {}, __VLS_18: {};
3
3
  type __VLS_Slots = {} & {
4
4
  activator?: (props: typeof __VLS_15) => any;
5
+ } & {
6
+ default?: (props: typeof __VLS_18) => any;
5
7
  };
6
8
  declare const __VLS_base: import("vue").DefineComponent<ElementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ElementProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
9
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,5 +1,5 @@
1
- import { Node } from '@/types';
2
1
  import { Ref } from 'vue';
2
+ import { Node } from '@/types';
3
3
  export declare function useElementPropertyBreakpoint(node: Ref<Node>, keys: string[], json?: boolean): {
4
4
  property: import("vue").ComputedRef<any>;
5
5
  };
@@ -0,0 +1,5 @@
1
+ import { Ref } from 'vue';
2
+ import { Node } from '@/types';
3
+ export declare function useElementPropertyEager(node: Ref<Node>, keys: string[], json?: boolean): {
4
+ property: import("vue").ComputedRef<any>;
5
+ };
@@ -5,6 +5,7 @@ export * from './elementDebug';
5
5
  export * from './elementMethod';
6
6
  export * from './elementPropertyBreakpoint';
7
7
  export * from './elementPropertyColor';
8
+ export * from './elementPropertyEager';
8
9
  export * from './elementProperty';
9
10
  export * from './elementSlotMethod';
10
11
  export * from './elementSlotProperty';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import { NodePair } from '@/types';
2
+ export declare function spawn(type: string, subtype: string): NodePair;
@@ -19,6 +19,7 @@ import './fileInput/v1';
19
19
  import './flexbox/v1';
20
20
  import './flexboxEntry/v1';
21
21
  import './form/v1';
22
+ import './hover/v1';
22
23
  import './icon/v1';
23
24
  import './item/v1';
24
25
  import './itemGroup/v1';
@@ -175,6 +175,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
175
175
  isActive: "Is Active",
176
176
  isDarkMode: "Is Dark Mode",
177
177
  isFocused: "Is Focused",
178
+ isHovering: "Is Hovering",
178
179
  italic: "Italic",
179
180
  item: "Item",
180
181
  itemGroup: "Item Group",
@@ -293,6 +294,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
293
294
  row: "Row",
294
295
  rowReverse: "Row Reverse",
295
296
  rows: "Rows",
297
+ runtime: "Runtime",
296
298
  scale: "Scale",
297
299
  screenSizeChange: "Screen Size Change",
298
300
  secondary: "Secondary",
@@ -175,6 +175,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
175
175
  isActive: "是否激活",
176
176
  isDarkMode: "是否暗模式",
177
177
  isFocused: "是否聚集",
178
+ isHovering: "是否悬浮",
178
179
  italic: "斜体",
179
180
  item: "项目",
180
181
  itemGroup: "项目分组",
@@ -293,6 +294,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
293
294
  row: "行",
294
295
  rowReverse: "行反向",
295
296
  rows: "行",
297
+ runtime: "运行时",
296
298
  scale: "缩放",
297
299
  screenSizeChange: "屏幕大小变化",
298
300
  secondary: "次要",