x-runtime-lib 0.9.20 → 0.9.21

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,16 @@
1
+ type __VLS_Props = {
2
+ props: Record<string, any>;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -1,3 +1,4 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ import { ElementProps } from '@/types';
2
+ declare const __VLS_export: import("vue").DefineComponent<ElementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ElementProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2
3
  declare const _default: typeof __VLS_export;
3
4
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import { ElementProps } from '@/types';
2
- declare var __VLS_8: {};
2
+ declare var __VLS_21: {};
3
3
  type __VLS_Slots = {} & {
4
- default?: (props: typeof __VLS_8) => any;
4
+ default?: (props: typeof __VLS_21) => any;
5
5
  };
6
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
7
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -0,0 +1,16 @@
1
+ type __VLS_Props = {
2
+ isHovering: boolean | null;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,16 @@
1
+ type __VLS_Props = {
2
+ isHovering: boolean | null;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,3 @@
1
+ export declare function useActivator(): {
2
+ activatorProps: Record<string, any> | undefined;
3
+ };
@@ -0,0 +1,5 @@
1
+ import { Ref } from 'vue';
2
+ import { Node } from '@/types';
3
+ export declare function useElementPropertyTemp(node: Ref<Node>, keys: string[], initValue?: any): {
4
+ property: Ref<any, any>;
5
+ };
@@ -1,3 +1,4 @@
1
+ export * from './activator';
1
2
  export * from './breakpoint';
2
3
  export * from './delayAttach';
3
4
  export * from './elementBase';
@@ -6,6 +7,7 @@ export * from './elementMethod';
6
7
  export * from './elementPropertyBreakpoint';
7
8
  export * from './elementPropertyColor';
8
9
  export * from './elementPropertyEager';
10
+ export * from './elementPropertyTemp';
9
11
  export * from './elementProperty';
10
12
  export * from './elementSlotMethod';
11
13
  export * from './elementSlotProperty';
@@ -0,0 +1,3 @@
1
+ export declare function useSlotProps(): {
2
+ props: Record<string, any> | undefined;
3
+ };
@@ -4,7 +4,6 @@ export * from './chart/series/v1';
4
4
  export * from './chart/title/v1';
5
5
  export * from './chart/xAxis/v1';
6
6
  export * from './chart/yAxis/v1';
7
- export * from './ui/activator/v1';
8
7
  export * from './ui/border/v1';
9
8
  export * from './ui/margin/v1';
10
9
  export * from './ui/padding/v1';
@@ -31,10 +31,10 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
31
31
  basic: "Basic",
32
32
  black: "Black",
33
33
  block: "Block",
34
+ blur: "Blur",
34
35
  bodyLarge: "Body Large",
35
36
  bodyMedium: "Body Medium",
36
37
  bodySmall: "Body Small",
37
- blur: "Blur",
38
38
  bold: "Bold",
39
39
  border: "Border",
40
40
  both: "Both",
@@ -43,6 +43,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
43
43
  bottomRight: "Bottom Right",
44
44
  boxGeometry: "Box Geometry",
45
45
  breadcrumbs: "Breadcrumbs",
46
+ breakpoint: "Breakpoint",
46
47
  button: "Button",
47
48
  buttonToggle: "Button Toggle",
48
49
  buttonToggleEntry: "Button Toggle Entry",
@@ -88,7 +89,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
88
89
  customSlot: "Custom Slot",
89
90
  customSlotPropertyChange: "Custom Slot Property Change",
90
91
  dark: "Dark",
91
- darkModeChange: "Dark Mode Change",
92
+ darkMode: "Dark Mode",
92
93
  dashed: "Dashed",
93
94
  data: "Data",
94
95
  dataDisplay: "Data Display",
@@ -173,7 +174,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
173
174
  instances: "Instances",
174
175
  intensity: "Intensity",
175
176
  isActive: "Is Active",
176
- isDarkMode: "Is Dark Mode",
177
177
  isFocused: "Is Focused",
178
178
  isHovering: "Is Hovering",
179
179
  italic: "Italic",
@@ -231,7 +231,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
231
231
  name: "Name",
232
232
  navigation: "Navigation",
233
233
  nearDistance: "Near Distance",
234
- newScreenSize: "New Screen Size",
235
234
  newValue: "New Value",
236
235
  no: "No",
237
236
  none: "None",
@@ -239,7 +238,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
239
238
  numberInput: "Number Input",
240
239
  objects: "Objects",
241
240
  offset: "Offset",
242
- oldScreenSize: "Old Screen Size",
243
241
  oldValue: "Old Value",
244
242
  oneTimePasswordInput: "One Time Password Input",
245
243
  open: "Open",
@@ -296,7 +294,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
296
294
  rows: "Rows",
297
295
  runtime: "Runtime",
298
296
  scale: "Scale",
299
- screenSizeChange: "Screen Size Change",
300
297
  secondary: "Secondary",
301
298
  select: "Select",
302
299
  selection: "Selection",
@@ -43,6 +43,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
43
43
  bottomRight: "底右",
44
44
  boxGeometry: "盒子几何体",
45
45
  breadcrumbs: "面包屑",
46
+ breakpoint: "断点",
46
47
  button: "按钮",
47
48
  buttonToggle: "按钮切换",
48
49
  buttonToggleEntry: "按钮切换条目",
@@ -88,7 +89,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
88
89
  customSlot: "自定义插槽",
89
90
  customSlotPropertyChange: "自定义插槽属性变化",
90
91
  dark: "暗",
91
- darkModeChange: "暗模式变化",
92
+ darkMode: "暗模式",
92
93
  dashed: "虚线",
93
94
  data: "数据",
94
95
  dataDisplay: "数据展示",
@@ -173,7 +174,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
173
174
  instances: "实例(s)",
174
175
  intensity: "强度",
175
176
  isActive: "是否激活",
176
- isDarkMode: "是否暗模式",
177
177
  isFocused: "是否聚集",
178
178
  isHovering: "是否悬浮",
179
179
  italic: "斜体",
@@ -231,7 +231,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
231
231
  name: "名称",
232
232
  navigation: "导航",
233
233
  nearDistance: "近距离",
234
- newScreenSize: "新屏幕大小",
235
234
  newValue: "新值",
236
235
  no: "否",
237
236
  none: "没有",
@@ -239,7 +238,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
239
238
  numberInput: "数字输入",
240
239
  objects: "对象",
241
240
  offset: "偏移",
242
- oldScreenSize: "旧屏幕大小",
243
241
  oldValue: "旧值",
244
242
  oneTimePasswordInput: "一次性密码输入",
245
243
  open: "打开",
@@ -296,7 +294,6 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
296
294
  rows: "行",
297
295
  runtime: "运行时",
298
296
  scale: "缩放",
299
- screenSizeChange: "屏幕大小变化",
300
297
  secondary: "次要",
301
298
  select: "选择",
302
299
  selection: "选择",