orion-design 1.0.4 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/dist/Throne/index.d.ts +0 -2
  2. package/dist/Throne/index.js +7 -13
  3. package/dist/Throne/index.js.map +1 -1
  4. package/dist/auth/index.d.ts +16 -0
  5. package/dist/auth/index.js +49 -0
  6. package/dist/auth/index.js.map +1 -0
  7. package/dist/components/Edittable/columns/EdittableColumnDate.d.ts +1 -1
  8. package/dist/components/Edittable/columns/EdittableColumnMultiselect.d.ts +1 -1
  9. package/dist/components/Edittable/columns/EdittableColumnNumber.d.ts +1 -1
  10. package/dist/components/Edittable/columns/EdittableColumnSingleselect.d.ts +1 -1
  11. package/dist/components/Form/Form.d.ts +2 -2
  12. package/dist/components/Form/Form.js.map +1 -1
  13. package/dist/components/Tabs/index.d.ts +114 -56
  14. package/dist/components/Tabs/index.js +88 -464
  15. package/dist/components/Tabs/index.js.map +1 -1
  16. package/dist/components/Tabs/tab-pane.d.ts +8 -16
  17. package/dist/components/Tabs/tab-pane.js +1 -34
  18. package/dist/components/Tabs/tab-pane.js.map +1 -1
  19. package/dist/components/Tabs/tab-pane.vue.d.ts +3 -28
  20. package/dist/components/Tabs/tabs.d.ts +12 -101
  21. package/dist/components/Tabs/tabs.js +2 -0
  22. package/dist/components/Tabs/tabs.js.map +1 -0
  23. package/dist/components/Tabs/tabs.vue.d.ts +63 -0
  24. package/dist/components/_util/browser.js +2 -2
  25. package/dist/components/_util/dom/element.js +1 -1
  26. package/dist/components/_util/dom/position.js +1 -1
  27. package/dist/components/_util/dom/scroll.js +1 -1
  28. package/dist/components/_util/dom/style.js +1 -1
  29. package/dist/components/_util/index.js +1 -1
  30. package/dist/components/_util/raf.js +1 -1
  31. package/dist/components/_util/vue/global-node.js +1 -1
  32. package/dist/components/components.d.ts +0 -1
  33. package/dist/components/index.d.ts +1 -0
  34. package/dist/components/index.js +14 -14
  35. package/dist/components/index.js.map +1 -1
  36. package/dist/index-C8JNJPWW.js +8 -0
  37. package/dist/{index-C9tCD90X.js.map → index-C8JNJPWW.js.map} +1 -1
  38. package/dist/index.css +1 -1
  39. package/dist/version/version.d.ts +1 -1
  40. package/dist/version/version.js +1 -1
  41. package/dist/version/version.js.map +1 -1
  42. package/package.json +1 -1
  43. package/dist/components/Tabs/constants.d.ts +0 -19
  44. package/dist/components/Tabs/constants.js +0 -5
  45. package/dist/components/Tabs/constants.js.map +0 -1
  46. package/dist/components/Tabs/tab-bar.d.ts +0 -59
  47. package/dist/components/Tabs/tab-bar.js +0 -15
  48. package/dist/components/Tabs/tab-bar.js.map +0 -1
  49. package/dist/components/Tabs/tab-bar.vue.d.ts +0 -131
  50. package/dist/components/Tabs/tab-nav.d.ts +0 -237
  51. package/dist/index-C9tCD90X.js +0 -45
@@ -1,16 +1,8 @@
1
- import { ExtractPropTypes } from 'vue';
2
- import { default as TabPane } from './tab-pane.vue';
3
- export declare const tabPaneProps: {
4
- readonly label: import('../_util').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
5
- readonly name: {
6
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
7
- readonly required: false;
8
- readonly validator: ((val: unknown) => boolean) | undefined;
9
- __epPropKey: true;
10
- };
11
- readonly closable: BooleanConstructor;
12
- readonly disabled: BooleanConstructor;
13
- readonly lazy: BooleanConstructor;
14
- };
15
- export type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>;
16
- export type TabPaneInstance = InstanceType<typeof TabPane>;
1
+ import { TabPaneName } from './tabs';
2
+ export interface TabPaneProps {
3
+ label?: string;
4
+ disabled?: boolean;
5
+ name?: TabPaneName;
6
+ closable?: boolean;
7
+ lazy?: boolean;
8
+ }
@@ -1,35 +1,2 @@
1
- import "lodash-es";
2
- import "vue";
3
- import { buildProps as o } from "../_util/vue/props/runtime.js";
4
- import "element-plus";
5
- const r = o({
6
- /**
7
- * @description title of the tab
8
- */
9
- label: {
10
- type: String,
11
- default: ""
12
- },
13
- /**
14
- * @description identifier corresponding to the name of Tabs, representing the alias of the tab-pane, the default is ordinal number of the tab-pane in the sequence, e.g. the first tab-pane is '0'
15
- */
16
- name: {
17
- type: [String, Number]
18
- },
19
- /**
20
- * @description whether Tab is closable
21
- */
22
- closable: Boolean,
23
- /**
24
- * @description whether Tab is disabled
25
- */
26
- disabled: Boolean,
27
- /**
28
- * @description whether Tab is lazily rendered
29
- */
30
- lazy: Boolean
31
- });
32
- export {
33
- r as tabPaneProps
34
- };
1
+
35
2
  //# sourceMappingURL=tab-pane.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tab-pane.js","sources":["../../../src/components/Tabs/tab-pane.ts"],"sourcesContent":["import { buildProps } from '../_util'\r\nimport type { ExtractPropTypes } from 'vue'\r\nimport type TabPane from './tab-pane.vue'\r\n\r\nexport const tabPaneProps = buildProps({\r\n /**\r\n * @description title of the tab\r\n */\r\n label: {\r\n type: String,\r\n default: '',\r\n },\r\n /**\r\n * @description identifier corresponding to the name of Tabs, representing the alias of the tab-pane, the default is ordinal number of the tab-pane in the sequence, e.g. the first tab-pane is '0'\r\n */\r\n name: {\r\n type: [String, Number],\r\n },\r\n /**\r\n * @description whether Tab is closable\r\n */\r\n closable: Boolean,\r\n /**\r\n * @description whether Tab is disabled\r\n */\r\n disabled: Boolean,\r\n /**\r\n * @description whether Tab is lazily rendered\r\n */\r\n lazy: Boolean,\r\n} as const)\r\n\r\nexport type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>\r\n\r\nexport type TabPaneInstance = InstanceType<typeof TabPane>\r\n"],"names":["tabPaneProps","buildProps"],"mappings":";;;;AAIO,MAAMA,IAAeC,EAAW;AAAA;AAAA;AAAA;AAAA,EAIrC,OAAO;AAAA,IACL,MAAM;AAAA,IACN,SAAS;AAAA,EACX;AAAA;AAAA;AAAA;AAAA,EAIA,MAAM;AAAA,IACJ,MAAM,CAAC,QAAQ,MAAM;AAAA,EACvB;AAAA;AAAA;AAAA;AAAA,EAIA,UAAU;AAAA;AAAA;AAAA;AAAA,EAIV,UAAU;AAAA;AAAA;AAAA;AAAA,EAIV,MAAM;AACR,CAAU;"}
1
+ {"version":3,"file":"tab-pane.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,39 +1,14 @@
1
+ import { TabPaneProps } from './tab-pane';
1
2
  declare function __VLS_template(): {
2
3
  slots: {
4
+ label?(_: {}): any;
3
5
  default?(_: {}): any;
4
6
  };
5
7
  refs: {};
6
8
  attrs: Partial<{}>;
7
9
  };
8
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
10
- readonly label: import('../_util').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
11
- readonly name: {
12
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
13
- readonly required: false;
14
- readonly validator: ((val: unknown) => boolean) | undefined;
15
- __epPropKey: true;
16
- };
17
- readonly closable: BooleanConstructor;
18
- readonly disabled: BooleanConstructor;
19
- readonly lazy: BooleanConstructor;
20
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
- readonly label: import('../_util').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
22
- readonly name: {
23
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
24
- readonly required: false;
25
- readonly validator: ((val: unknown) => boolean) | undefined;
26
- __epPropKey: true;
27
- };
28
- readonly closable: BooleanConstructor;
29
- readonly disabled: BooleanConstructor;
30
- readonly lazy: BooleanConstructor;
31
- }>> & Readonly<{}>, {
32
- readonly label: string;
33
- readonly disabled: boolean;
34
- readonly closable: boolean;
35
- readonly lazy: boolean;
36
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ declare const __VLS_component: import('vue').DefineComponent<TabPaneProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TabPaneProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
12
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
38
13
  export default _default;
39
14
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,101 +1,12 @@
1
- import { TabsPaneContext } from './constants';
2
- import { ExtractPropTypes } from 'vue';
3
- import { Awaitable } from '../_util';
4
- export type TabPaneName = string | number;
5
- export declare const tabsProps: {
6
- readonly type: import('../_util').EpPropFinalized<StringConstructor, "" | "card" | "border-card", unknown, "card", boolean>;
7
- readonly modelValue: {
8
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
9
- readonly required: false;
10
- readonly validator: ((val: unknown) => boolean) | undefined;
11
- __epPropKey: true;
12
- };
13
- readonly tabPosition: import('../_util').EpPropFinalized<StringConstructor, "top" | "bottom" | "left" | "right", unknown, "top", boolean>;
14
- readonly beforeLeave: import('../_util').EpPropFinalized<(new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
15
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
16
- new (): any;
17
- readonly prototype: any;
18
- } | (((new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
19
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
20
- new (): any;
21
- readonly prototype: any;
22
- }) | null)[], unknown, unknown, () => true, boolean>;
23
- readonly stretch: BooleanConstructor;
24
- };
25
- export type TabsProps = ExtractPropTypes<typeof tabsProps>;
26
- export declare const tabsEmits: {
27
- "update:modelValue": (name: TabPaneName) => name is string | number;
28
- tabClick: (pane: TabsPaneContext, ev: Event) => boolean;
29
- tabChange: (name: TabPaneName) => name is string | number;
30
- };
31
- export type TabsEmits = typeof tabsEmits;
32
- export type TabsPanes = Record<number, TabsPaneContext>;
33
- declare const Tabs: import('vue').DefineComponent<ExtractPropTypes<{
34
- readonly type: import('../_util').EpPropFinalized<StringConstructor, "" | "card" | "border-card", unknown, "card", boolean>;
35
- readonly modelValue: {
36
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
37
- readonly required: false;
38
- readonly validator: ((val: unknown) => boolean) | undefined;
39
- __epPropKey: true;
40
- };
41
- readonly tabPosition: import('../_util').EpPropFinalized<StringConstructor, "top" | "bottom" | "left" | "right", unknown, "top", boolean>;
42
- readonly beforeLeave: import('../_util').EpPropFinalized<(new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
43
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
44
- new (): any;
45
- readonly prototype: any;
46
- } | (((new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
47
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
48
- new (): any;
49
- readonly prototype: any;
50
- }) | null)[], unknown, unknown, () => true, boolean>;
51
- readonly stretch: BooleanConstructor;
52
- }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
53
- "update:modelValue": (name: TabPaneName) => name is string | number;
54
- tabClick: (pane: TabsPaneContext, ev: Event) => boolean;
55
- tabChange: (name: TabPaneName) => name is string | number;
56
- }, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
57
- readonly type: import('../_util').EpPropFinalized<StringConstructor, "" | "card" | "border-card", unknown, "card", boolean>;
58
- readonly modelValue: {
59
- readonly type: import('vue').PropType<import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
60
- readonly required: false;
61
- readonly validator: ((val: unknown) => boolean) | undefined;
62
- __epPropKey: true;
63
- };
64
- readonly tabPosition: import('../_util').EpPropFinalized<StringConstructor, "top" | "bottom" | "left" | "right", unknown, "top", boolean>;
65
- readonly beforeLeave: import('../_util').EpPropFinalized<(new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
66
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
67
- new (): any;
68
- readonly prototype: any;
69
- } | (((new (...args: any[]) => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | (() => (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>) | {
70
- (): (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
71
- new (): any;
72
- readonly prototype: any;
73
- }) | null)[], unknown, unknown, () => true, boolean>;
74
- readonly stretch: BooleanConstructor;
75
- }>> & Readonly<{
76
- "onUpdate:modelValue"?: ((name: TabPaneName) => any) | undefined;
77
- onTabClick?: ((pane: {
78
- uid: number;
79
- slots: import('vue').Slots;
80
- props: {
81
- readonly label: string;
82
- readonly disabled: boolean;
83
- readonly closable: boolean;
84
- readonly lazy: boolean;
85
- readonly name?: import('../_util').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
86
- };
87
- paneName: string | number | undefined;
88
- active: boolean;
89
- index: string | undefined;
90
- }, ev: Event) => any) | undefined;
91
- onTabChange?: ((name: TabPaneName) => any) | undefined;
92
- }>, {
93
- readonly stretch: boolean;
94
- readonly type: import('../_util').EpPropMergeType<StringConstructor, "" | "card" | "border-card", unknown>;
95
- readonly tabPosition: import('../_util').EpPropMergeType<StringConstructor, "top" | "bottom" | "left" | "right", unknown>;
96
- readonly beforeLeave: (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
97
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
98
- export type TabsInstance = InstanceType<typeof Tabs> & {
99
- currentName: TabPaneName;
100
- };
101
- export default Tabs;
1
+ import { TabsPaneContext as ElTabsPaneContext, TabPaneName as ElTabPaneName } from 'element-plus';
2
+ type Awaitable<T> = Promise<T> | T;
3
+ export type TabPaneName = ElTabPaneName;
4
+ export type TabsPaneContext = ElTabsPaneContext;
5
+ export interface TabsProps {
6
+ type?: 'card' | 'border-card' | '';
7
+ closable?: boolean;
8
+ tabPosition?: 'top' | 'right' | 'bottom' | 'left';
9
+ stretch?: boolean;
10
+ beforeLeave?: (newName: TabPaneName, oldName: TabPaneName) => Awaitable<void | boolean>;
11
+ }
12
+ export {};
@@ -0,0 +1,2 @@
1
+
2
+ //# sourceMappingURL=tabs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tabs.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,63 @@
1
+ import { TabPaneName, TabsProps } from './tabs';
2
+ declare let __VLS_typeProps: TabsProps;
3
+ type __VLS_PublicProps = {
4
+ modelValue?: TabPaneName;
5
+ } & typeof __VLS_typeProps;
6
+ declare function __VLS_template(): {
7
+ slots: {
8
+ "right-extra"?(_: {}): any;
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ attrs: Partial<{}>;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ "update:modelValue": (modelValue: import('element-plus').TabPaneName) => any;
17
+ } & {
18
+ "tab-click": (pane: {
19
+ uid: number;
20
+ slots: import('vue').Slots;
21
+ props: {
22
+ readonly label: string;
23
+ readonly disabled: boolean;
24
+ readonly closable: boolean;
25
+ readonly lazy: boolean;
26
+ readonly name?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
27
+ };
28
+ paneName: string | number | undefined;
29
+ active: boolean;
30
+ index: string | undefined;
31
+ isClosable: boolean;
32
+ }, ev: Event) => any;
33
+ "tab-change": (name: import('element-plus').TabPaneName) => any;
34
+ "tab-remove": (name: import('element-plus').TabPaneName) => any;
35
+ "tab-add": () => any;
36
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
37
+ "onTab-click"?: ((pane: {
38
+ uid: number;
39
+ slots: import('vue').Slots;
40
+ props: {
41
+ readonly label: string;
42
+ readonly disabled: boolean;
43
+ readonly closable: boolean;
44
+ readonly lazy: boolean;
45
+ readonly name?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
46
+ };
47
+ paneName: string | number | undefined;
48
+ active: boolean;
49
+ index: string | undefined;
50
+ isClosable: boolean;
51
+ }, ev: Event) => any) | undefined;
52
+ "onTab-change"?: ((name: import('element-plus').TabPaneName) => any) | undefined;
53
+ "onTab-remove"?: ((name: import('element-plus').TabPaneName) => any) | undefined;
54
+ "onTab-add"?: (() => any) | undefined;
55
+ "onUpdate:modelValue"?: ((modelValue: import('element-plus').TabPaneName) => any) | undefined;
56
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
57
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
58
+ export default _default;
59
+ type __VLS_WithTemplateSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
@@ -1,5 +1,5 @@
1
- import { i } from "../../index-C9tCD90X.js";
2
- import { a as s } from "../../index-C9tCD90X.js";
1
+ import { i } from "../../index-C8JNJPWW.js";
2
+ import { a as s } from "../../index-C8JNJPWW.js";
3
3
  const r = () => i && /firefox/i.test(window.navigator.userAgent);
4
4
  export {
5
5
  i as isClient,
@@ -1,7 +1,7 @@
1
1
  import { e as t } from "../../../functions-LOH6x_02.js";
2
2
  import "lodash-es";
3
3
  import "vue";
4
- import { i as e } from "../../../index-C9tCD90X.js";
4
+ import { i as e } from "../../../index-C8JNJPWW.js";
5
5
  const u = (r) => {
6
6
  if (!e || r === "") return null;
7
7
  if (t(r))
@@ -1,4 +1,4 @@
1
- import { i as c } from "../../../index-C9tCD90X.js";
1
+ import { i as c } from "../../../index-C8JNJPWW.js";
2
2
  const s = (t, i) => {
3
3
  if (!c || !t || !i) return !1;
4
4
  const e = t.getBoundingClientRect();
@@ -2,7 +2,7 @@ import { easeInOutCubic as w } from "../easings.js";
2
2
  import { isWindow as u } from "../types.js";
3
3
  import { rAF as h, cAF as a } from "../raf.js";
4
4
  import { getStyle as T } from "./style.js";
5
- import { i as p } from "../../../index-C9tCD90X.js";
5
+ import { i as p } from "../../../index-C8JNJPWW.js";
6
6
  const v = (o, t) => {
7
7
  if (!p) return !1;
8
8
  const l = {
@@ -2,7 +2,7 @@ import { isNumber as u, isStringNumber as d } from "../types.js";
2
2
  import { c as f, d as c, e as m } from "../../../functions-LOH6x_02.js";
3
3
  import { entriesOf as p, keysOf as b } from "../objects.js";
4
4
  import { debugWarn as g } from "../error.js";
5
- import { i as l } from "../../../index-C9tCD90X.js";
5
+ import { i as l } from "../../../index-C8JNJPWW.js";
6
6
  const y = "utils/dom/style", e = (r = "") => r.split(" ").filter((t) => !!t.trim()), w = (r, t) => {
7
7
  if (!r || !t) return !1;
8
8
  if (t.includes(" ")) throw new Error("className should not contain space.");
@@ -26,7 +26,7 @@ import { mutable as Co } from "./typescript.js";
26
26
  import { throttleByRaf as So } from "./throttleByRaf.js";
27
27
  import { easeInOutCubic as Po } from "./easings.js";
28
28
  import { castArray as Oo } from "lodash-es";
29
- import { i as Io, a as wo } from "../../index-C9tCD90X.js";
29
+ import { i as Io, a as wo } from "../../index-C8JNJPWW.js";
30
30
  import { isVNode as Ao } from "vue";
31
31
  export {
32
32
  K as CloseComponents,
@@ -1,4 +1,4 @@
1
- import { i as o } from "../../index-C9tCD90X.js";
1
+ import { i as o } from "../../index-C8JNJPWW.js";
2
2
  const e = (i) => o ? window.requestAnimationFrame(i) : setTimeout(i, 16), m = (i) => o ? window.cancelAnimationFrame(i) : clearTimeout(i);
3
3
  export {
4
4
  m as cAF,
@@ -1,4 +1,4 @@
1
- import { i as n } from "../../../index-C9tCD90X.js";
1
+ import { i as n } from "../../../index-C8JNJPWW.js";
2
2
  const i = [];
3
3
  let t = n ? document.body : void 0;
4
4
  function r(e) {
@@ -7,7 +7,6 @@ export { Rowflex, Colflex, Flexitem } from './Flex';
7
7
  export type { RowflexProps, ColflexProps, FlexitemProps } from './Flex';
8
8
  export { default as Card } from './Card';
9
9
  export { default as Tabs } from './Tabs';
10
- export type { TabsProps } from './Tabs';
11
10
  export { default as Pagetable } from './Pagetable';
12
11
  export { default as Edittable } from './Edittable';
13
12
  export { default as Querytable } from './Querytable';
@@ -10,3 +10,4 @@ export * from './MessageBox';
10
10
  export * from './Pagetable';
11
11
  export * from './Input';
12
12
  export * from './Edittable';
13
+ export * from './Tabs';
@@ -8,12 +8,12 @@ import { OMessageBox as g } from "./MessageBox/index.js";
8
8
  import { default as P, pagetableProps as I } from "./Pagetable/index.js";
9
9
  import { Checkbox as O, CheckboxGroup as h, DateInput as y, FileInput as M, LovInput as L, MultiSelect as k, NumberInput as w, PasswordInput as E, RadioGroup as F, SingleSelect as B, StringInput as G, Switch as K, TableSelect as Q, Textarea as R } from "./Input/index.js";
10
10
  import { default as D, edittableProps as N } from "./Edittable/index.js";
11
- import { default as z } from "./Button/index.js";
12
- import { default as H } from "./Tooltip/index.js";
13
- import { S as U } from "../index-CvcZkdiG.js";
14
- import { Colflex as W, Flexitem as X, Rowflex as Y } from "./Flex/index.js";
15
- import { default as _ } from "./Card/index.js";
16
- import { default as ee } from "./Tabs/index.js";
11
+ import { default as z } from "./Tabs/index.js";
12
+ import { default as H } from "./Button/index.js";
13
+ import { default as U } from "./Tooltip/index.js";
14
+ import { S as W } from "../index-CvcZkdiG.js";
15
+ import { Colflex as Y, Flexitem as Z, Rowflex as _ } from "./Flex/index.js";
16
+ import { default as ee } from "./Card/index.js";
17
17
  import { default as oe } from "./Querytable/index.js";
18
18
  import { LovPagetable as ae, LovQuerytable as le } from "./LovTable/index.js";
19
19
  import { default as pe } from "./TableSelectPagetable/index.js";
@@ -33,15 +33,15 @@ const l = function(e) {
33
33
  }), e;
34
34
  };
35
35
  export {
36
- z as Button,
37
- _ as Card,
36
+ H as Button,
37
+ ee as Card,
38
38
  O as Checkbox,
39
39
  h as CheckboxGroup,
40
- W as Colflex,
40
+ Y as Colflex,
41
41
  y as DateInput,
42
42
  D as Edittable,
43
43
  M as FileInput,
44
- X as Flexitem,
44
+ Z as Flexitem,
45
45
  n as Form,
46
46
  xe as Icon,
47
47
  L as LovInput,
@@ -57,17 +57,17 @@ export {
57
57
  E as PasswordInput,
58
58
  oe as Querytable,
59
59
  F as RadioGroup,
60
- Y as Rowflex,
60
+ _ as Rowflex,
61
61
  B as SingleSelect,
62
- U as Space,
62
+ W as Space,
63
63
  G as StringInput,
64
64
  K as Switch,
65
65
  Q as TableSelect,
66
66
  pe as TableSelectPagetable,
67
- ee as Tabs,
67
+ z as Tabs,
68
68
  R as Textarea,
69
69
  s as ThroneContextProvider,
70
- H as Tooltip,
70
+ U as Tooltip,
71
71
  c as Tree,
72
72
  N as edittableProps,
73
73
  de as formContextKey,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/components/index.ts"],"sourcesContent":["import type { App } from 'vue'\r\n\r\nimport * as components from './components'\r\n\r\nexport * from './components'\r\n\r\nexport type * from './types'\r\n\r\nexport const install = function (app: App) {\r\n Object.keys(components).forEach((key) => {\r\n const component = components[key]\r\n if (component.install) {\r\n app.use(component)\r\n }\r\n })\r\n return app\r\n}\r\n\r\nexport * from './Modal'\r\nexport * from './Form'\r\nexport * from './Tree'\r\nexport * from './Message'\r\nexport * from './MessageBox'\r\nexport * from './Pagetable'\r\nexport * from './Input'\r\nexport * from './Edittable'\r\n"],"names":["install","app","components","key","component"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQa,MAAAA,IAAU,SAAUC,GAAU;AACzC,gBAAO,KAAKC,CAAU,EAAE,QAAQ,CAACC,MAAQ;AACjC,UAAAC,IAAYF,EAAWC,CAAG;AAChC,IAAIC,EAAU,WACZH,EAAI,IAAIG,CAAS;AAAA,EACnB,CACD,GACMH;AACT;"}
1
+ {"version":3,"file":"index.js","sources":["../../src/components/index.ts"],"sourcesContent":["import type { App } from 'vue'\r\n\r\nimport * as components from './components'\r\n\r\nexport * from './components'\r\n\r\nexport type * from './types'\r\n\r\nexport const install = function (app: App) {\r\n Object.keys(components).forEach((key) => {\r\n const component = components[key]\r\n if (component.install) {\r\n app.use(component)\r\n }\r\n })\r\n return app\r\n}\r\n\r\nexport * from './Modal'\r\nexport * from './Form'\r\nexport * from './Tree'\r\nexport * from './Message'\r\nexport * from './MessageBox'\r\nexport * from './Pagetable'\r\nexport * from './Input'\r\nexport * from './Edittable'\r\nexport * from './Tabs'\r\n"],"names":["install","app","components","key","component"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQa,MAAAA,IAAU,SAAUC,GAAU;AACzC,gBAAO,KAAKC,CAAU,EAAE,QAAQ,CAACC,MAAQ;AACjC,UAAAC,IAAYF,EAAWC,CAAG;AAChC,IAAIC,EAAU,WACZH,EAAI,IAAIG,CAAS;AAAA,EACnB,CACD,GACMH;AACT;"}
@@ -0,0 +1,8 @@
1
+ import "vue";
2
+ var n;
3
+ const i = typeof window < "u", t = i && ((n = window == null ? void 0 : window.navigator) == null ? void 0 : n.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
4
+ export {
5
+ t as a,
6
+ i
7
+ };
8
+ //# sourceMappingURL=index-C8JNJPWW.js.map