layplux 0.0.1
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.
- package/dist/cjs/components/center-view/index.cjs +41 -0
- package/dist/cjs/components/corner-glow/index.cjs +31 -0
- package/dist/cjs/components/dropdown/index.cjs +162 -0
- package/dist/cjs/components/icon/index.cjs +59 -0
- package/dist/cjs/components/index.cjs +25 -0
- package/dist/cjs/components/panel-view/index.cjs +166 -0
- package/dist/cjs/components/popup/index.cjs +280 -0
- package/dist/cjs/components/title/index.cjs +76 -0
- package/dist/cjs/components/tooltip/index.cjs +68 -0
- package/dist/cjs/components/widget/index.cjs +104 -0
- package/dist/cjs/index.cjs +40 -0
- package/dist/cjs/layout/glass-overlay.cjs +31 -0
- package/dist/cjs/layout/layered-manager.cjs +35 -0
- package/dist/cjs/layout/layplux.cjs +41 -0
- package/dist/cjs/layout/root-pane.cjs +46 -0
- package/dist/cjs/layout/skeleton/bottom-area.cjs +64 -0
- package/dist/cjs/layout/skeleton/bottom-left-area.cjs +42 -0
- package/dist/cjs/layout/skeleton/bottom-right-area.cjs +38 -0
- package/dist/cjs/layout/skeleton/center-area.cjs +467 -0
- package/dist/cjs/layout/skeleton/index.cjs +24 -0
- package/dist/cjs/layout/skeleton/left-bottom-area.cjs +42 -0
- package/dist/cjs/layout/skeleton/left-top-area.cjs +42 -0
- package/dist/cjs/layout/skeleton/right-bottom-area.cjs +38 -0
- package/dist/cjs/layout/skeleton/right-top-area.cjs +38 -0
- package/dist/cjs/layout/skeleton/skeleton.cjs +66 -0
- package/dist/cjs/layout/skeleton/top-area.cjs +64 -0
- package/dist/cjs/locales/en-US.cjs +34 -0
- package/dist/cjs/locales/index.cjs +39 -0
- package/dist/cjs/locales/zh-CN.cjs +34 -0
- package/dist/cjs/managers/area.cjs +32 -0
- package/dist/cjs/managers/index.cjs +20 -0
- package/dist/cjs/managers/pane.cjs +34 -0
- package/dist/cjs/managers/skeleton.cjs +208 -0
- package/dist/cjs/managers/theme.cjs +37 -0
- package/dist/cjs/managers/widget-container.cjs +96 -0
- package/dist/cjs/managers/widget.cjs +103 -0
- package/dist/cjs/types/config.cjs +16 -0
- package/dist/cjs/types/index.cjs +18 -0
- package/dist/cjs/types/locale.cjs +16 -0
- package/dist/cjs/utils/event-bus.cjs +154 -0
- package/dist/cjs/utils/focus-tracker.cjs +154 -0
- package/dist/cjs/utils/index.cjs +31 -0
- package/dist/cjs/utils/unique-id.cjs +27 -0
- package/dist/cjs/utils/vue.cjs +37 -0
- package/dist/esm/components/center-view/index.mjs +21 -0
- package/dist/esm/components/corner-glow/index.mjs +11 -0
- package/dist/esm/components/dropdown/index.mjs +146 -0
- package/dist/esm/components/icon/index.mjs +39 -0
- package/dist/esm/components/index.mjs +8 -0
- package/dist/esm/components/panel-view/index.mjs +152 -0
- package/dist/esm/components/popup/index.mjs +268 -0
- package/dist/esm/components/title/index.mjs +56 -0
- package/dist/esm/components/tooltip/index.mjs +48 -0
- package/dist/esm/components/widget/index.mjs +84 -0
- package/dist/esm/index.mjs +10 -0
- package/dist/esm/layout/glass-overlay.mjs +11 -0
- package/dist/esm/layout/layered-manager.mjs +15 -0
- package/dist/esm/layout/layplux.mjs +21 -0
- package/dist/esm/layout/root-pane.mjs +26 -0
- package/dist/esm/layout/skeleton/bottom-area.mjs +44 -0
- package/dist/esm/layout/skeleton/bottom-left-area.mjs +22 -0
- package/dist/esm/layout/skeleton/bottom-right-area.mjs +18 -0
- package/dist/esm/layout/skeleton/center-area.mjs +454 -0
- package/dist/esm/layout/skeleton/index.mjs +4 -0
- package/dist/esm/layout/skeleton/left-bottom-area.mjs +22 -0
- package/dist/esm/layout/skeleton/left-top-area.mjs +22 -0
- package/dist/esm/layout/skeleton/right-bottom-area.mjs +18 -0
- package/dist/esm/layout/skeleton/right-top-area.mjs +18 -0
- package/dist/esm/layout/skeleton/skeleton.mjs +46 -0
- package/dist/esm/layout/skeleton/top-area.mjs +44 -0
- package/dist/esm/locales/en-US.mjs +14 -0
- package/dist/esm/locales/index.mjs +19 -0
- package/dist/esm/locales/zh-CN.mjs +14 -0
- package/dist/esm/managers/area.mjs +12 -0
- package/dist/esm/managers/index.mjs +3 -0
- package/dist/esm/managers/pane.mjs +14 -0
- package/dist/esm/managers/skeleton.mjs +192 -0
- package/dist/esm/managers/theme.mjs +17 -0
- package/dist/esm/managers/widget-container.mjs +76 -0
- package/dist/esm/managers/widget.mjs +83 -0
- package/dist/esm/types/config.mjs +0 -0
- package/dist/esm/types/index.mjs +1 -0
- package/dist/esm/types/locale.mjs +0 -0
- package/dist/esm/utils/event-bus.mjs +124 -0
- package/dist/esm/utils/focus-tracker.mjs +135 -0
- package/dist/esm/utils/index.mjs +10 -0
- package/dist/esm/utils/unique-id.mjs +7 -0
- package/dist/esm/utils/vue.mjs +17 -0
- package/dist/style/base/_tokens-dark.scss +51 -0
- package/dist/style/base/_tokens.scss +56 -0
- package/dist/style/components/_bottom-area.scss +30 -0
- package/dist/style/components/_bottom-left-area.scss +8 -0
- package/dist/style/components/_bottom-right-area.scss +8 -0
- package/dist/style/components/_center-area.scss +162 -0
- package/dist/style/components/_corner-glow.scss +17 -0
- package/dist/style/components/_dropdown.scss +91 -0
- package/dist/style/components/_glass-pane.scss +6 -0
- package/dist/style/components/_layered-manager.scss +6 -0
- package/dist/style/components/_left-bottom-area.scss +8 -0
- package/dist/style/components/_left-top-area.scss +9 -0
- package/dist/style/components/_pane-view.scss +79 -0
- package/dist/style/components/_popup.scss +19 -0
- package/dist/style/components/_right-bottom-area.scss +8 -0
- package/dist/style/components/_right-top-area.scss +8 -0
- package/dist/style/components/_root-pane.scss +17 -0
- package/dist/style/components/_skeleton.scss +38 -0
- package/dist/style/components/_title-view.scss +176 -0
- package/dist/style/components/_tooltip.scss +65 -0
- package/dist/style/components/_top-area.scss +25 -0
- package/dist/style/index.css +768 -0
- package/dist/style/layplux.scss +21 -0
- package/dist/types/components/center-view/index.d.ts +16 -0
- package/dist/types/components/center-view/index.d.ts.map +1 -0
- package/dist/types/components/corner-glow/index.d.ts +2 -0
- package/dist/types/components/corner-glow/index.d.ts.map +1 -0
- package/dist/types/components/dropdown/index.d.ts +116 -0
- package/dist/types/components/dropdown/index.d.ts.map +1 -0
- package/dist/types/components/icon/index.d.ts +22 -0
- package/dist/types/components/icon/index.d.ts.map +1 -0
- package/dist/types/components/index.d.ts +9 -0
- package/dist/types/components/index.d.ts.map +1 -0
- package/dist/types/components/panel-view/index.d.ts +22 -0
- package/dist/types/components/panel-view/index.d.ts.map +1 -0
- package/dist/types/components/popup/index.d.ts +99 -0
- package/dist/types/components/popup/index.d.ts.map +1 -0
- package/dist/types/components/title/index.d.ts +57 -0
- package/dist/types/components/title/index.d.ts.map +1 -0
- package/dist/types/components/tooltip/index.d.ts +69 -0
- package/dist/types/components/tooltip/index.d.ts.map +1 -0
- package/dist/types/components/widget/index.d.ts +15 -0
- package/dist/types/components/widget/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/layout/glass-overlay.d.ts +2 -0
- package/dist/types/layout/glass-overlay.d.ts.map +1 -0
- package/dist/types/layout/layered-manager.d.ts +8 -0
- package/dist/types/layout/layered-manager.d.ts.map +1 -0
- package/dist/types/layout/layplux.d.ts +25 -0
- package/dist/types/layout/layplux.d.ts.map +1 -0
- package/dist/types/layout/root-pane.d.ts +8 -0
- package/dist/types/layout/root-pane.d.ts.map +1 -0
- package/dist/types/layout/skeleton/bottom-area.d.ts +9 -0
- package/dist/types/layout/skeleton/bottom-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/bottom-left-area.d.ts +9 -0
- package/dist/types/layout/skeleton/bottom-left-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/bottom-right-area.d.ts +9 -0
- package/dist/types/layout/skeleton/bottom-right-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/center-area.d.ts +11 -0
- package/dist/types/layout/skeleton/center-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/index.d.ts +2 -0
- package/dist/types/layout/skeleton/index.d.ts.map +1 -0
- package/dist/types/layout/skeleton/left-bottom-area.d.ts +9 -0
- package/dist/types/layout/skeleton/left-bottom-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/left-top-area.d.ts +9 -0
- package/dist/types/layout/skeleton/left-top-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/right-bottom-area.d.ts +9 -0
- package/dist/types/layout/skeleton/right-bottom-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/right-top-area.d.ts +9 -0
- package/dist/types/layout/skeleton/right-top-area.d.ts.map +1 -0
- package/dist/types/layout/skeleton/skeleton.d.ts +8 -0
- package/dist/types/layout/skeleton/skeleton.d.ts.map +1 -0
- package/dist/types/layout/skeleton/top-area.d.ts +9 -0
- package/dist/types/layout/skeleton/top-area.d.ts.map +1 -0
- package/dist/types/locales/en-US.d.ts +3 -0
- package/dist/types/locales/en-US.d.ts.map +1 -0
- package/dist/types/locales/index.d.ts +7 -0
- package/dist/types/locales/index.d.ts.map +1 -0
- package/dist/types/locales/zh-CN.d.ts +3 -0
- package/dist/types/locales/zh-CN.d.ts.map +1 -0
- package/dist/types/managers/area.d.ts +10 -0
- package/dist/types/managers/area.d.ts.map +1 -0
- package/dist/types/managers/index.d.ts +5 -0
- package/dist/types/managers/index.d.ts.map +1 -0
- package/dist/types/managers/pane.d.ts +8 -0
- package/dist/types/managers/pane.d.ts.map +1 -0
- package/dist/types/managers/skeleton.d.ts +38 -0
- package/dist/types/managers/skeleton.d.ts.map +1 -0
- package/dist/types/managers/theme.d.ts +2 -0
- package/dist/types/managers/theme.d.ts.map +1 -0
- package/dist/types/managers/widget-container.d.ts +21 -0
- package/dist/types/managers/widget-container.d.ts.map +1 -0
- package/dist/types/managers/widget.d.ts +26 -0
- package/dist/types/managers/widget.d.ts.map +1 -0
- package/dist/types/types/config.d.ts +54 -0
- package/dist/types/types/config.d.ts.map +1 -0
- package/dist/types/types/index.d.ts +2 -0
- package/dist/types/types/index.d.ts.map +1 -0
- package/dist/types/types/locale.d.ts +12 -0
- package/dist/types/types/locale.d.ts.map +1 -0
- package/dist/types/utils/event-bus.d.ts +18 -0
- package/dist/types/utils/event-bus.d.ts.map +1 -0
- package/dist/types/utils/focus-tracker.d.ts +37 -0
- package/dist/types/utils/focus-tracker.d.ts.map +1 -0
- package/dist/types/utils/index.d.ts +6 -0
- package/dist/types/utils/index.d.ts.map +1 -0
- package/dist/types/utils/unique-id.d.ts +2 -0
- package/dist/types/utils/unique-id.d.ts.map +1 -0
- package/dist/types/utils/vue.d.ts +5 -0
- package/dist/types/utils/vue.d.ts.map +1 -0
- package/dist/umd/index.js +4000 -0
- package/package.json +46 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@use 'base/tokens';
|
|
2
|
+
@use 'base/tokens-dark';
|
|
3
|
+
@use 'components/root-pane';
|
|
4
|
+
@use 'components/skeleton';
|
|
5
|
+
@use 'components/glass-pane';
|
|
6
|
+
@use 'components/corner-glow';
|
|
7
|
+
@use 'components/layered-manager';
|
|
8
|
+
@use 'components/top-area';
|
|
9
|
+
@use 'components/bottom-area';
|
|
10
|
+
@use 'components/title-view';
|
|
11
|
+
@use 'components/left-top-area';
|
|
12
|
+
@use 'components/left-bottom-area';
|
|
13
|
+
@use 'components/bottom-left-area';
|
|
14
|
+
@use 'components/right-top-area';
|
|
15
|
+
@use 'components/right-bottom-area';
|
|
16
|
+
@use 'components/bottom-right-area';
|
|
17
|
+
@use 'components/pane-view';
|
|
18
|
+
@use 'components/center-area';
|
|
19
|
+
@use 'components/popup';
|
|
20
|
+
@use 'components/dropdown';
|
|
21
|
+
@use 'components/tooltip';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { IWidget } from '../../managers';
|
|
3
|
+
export declare const CenterView: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
widget: PropType<IWidget>;
|
|
5
|
+
anchor: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
}>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
widget: PropType<IWidget>;
|
|
11
|
+
anchor: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/center-view/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA6B,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,UAAU;YAGD,QAAQ,CAAC,OAAO,CAAC;;;;;;YAAjB,QAAQ,CAAC,OAAO,CAAC;;;;;iGAgBrC,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const CornerGlow: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/corner-glow/index.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,wTAKrB,CAAC"}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { type PropType, type VNode } from 'vue';
|
|
2
|
+
type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end';
|
|
3
|
+
export declare const Dropdown: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
visible: BooleanConstructor;
|
|
5
|
+
trigger: {
|
|
6
|
+
type: PropType<"hover" | "click" | "contextmenu">;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
placement: {
|
|
10
|
+
type: PropType<Placement>;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
disabled: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
destroyOnClose: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
onClick: PropType<(key: string) => void>;
|
|
22
|
+
getContainer: {
|
|
23
|
+
type: PropType<() => HTMLElement>;
|
|
24
|
+
};
|
|
25
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
visible: BooleanConstructor;
|
|
27
|
+
trigger: {
|
|
28
|
+
type: PropType<"hover" | "click" | "contextmenu">;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
placement: {
|
|
32
|
+
type: PropType<Placement>;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
disabled: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
destroyOnClose: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
onClick: PropType<(key: string) => void>;
|
|
44
|
+
getContainer: {
|
|
45
|
+
type: PropType<() => HTMLElement>;
|
|
46
|
+
};
|
|
47
|
+
}>> & Readonly<{
|
|
48
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
}>, {
|
|
50
|
+
visible: boolean;
|
|
51
|
+
trigger: "click" | "contextmenu" | "hover";
|
|
52
|
+
placement: Placement;
|
|
53
|
+
disabled: boolean;
|
|
54
|
+
destroyOnClose: boolean;
|
|
55
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
56
|
+
export declare const DropdownMenu: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
export declare const DropdownItem: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
58
|
+
eventKey: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
required: true;
|
|
61
|
+
};
|
|
62
|
+
disabled: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
danger: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
+
eventKey: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
disabled: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
danger: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
default: boolean;
|
|
82
|
+
};
|
|
83
|
+
}>> & Readonly<{}>, {
|
|
84
|
+
disabled: boolean;
|
|
85
|
+
danger: boolean;
|
|
86
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
87
|
+
export declare const DropdownDivider: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
88
|
+
export declare const DropdownSubmenu: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
89
|
+
title: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
};
|
|
92
|
+
icon: PropType<VNode>;
|
|
93
|
+
disabled: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
getContainer: {
|
|
98
|
+
type: PropType<() => HTMLElement>;
|
|
99
|
+
};
|
|
100
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
101
|
+
title: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
};
|
|
104
|
+
icon: PropType<VNode>;
|
|
105
|
+
disabled: {
|
|
106
|
+
type: BooleanConstructor;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
getContainer: {
|
|
110
|
+
type: PropType<() => HTMLElement>;
|
|
111
|
+
};
|
|
112
|
+
}>> & Readonly<{}>, {
|
|
113
|
+
disabled: boolean;
|
|
114
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
115
|
+
export {};
|
|
116
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,QAAQ,EAEb,KAAK,KAAK,EACX,MAAM,KAAK,CAAC;AAIb,KAAK,SAAS,GAAG,KAAK,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,cAAc,GAAG,YAAY,CAAC;AAM5F,eAAO,MAAM,QAAQ;;;cAIU,QAAQ,CAAC,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC;;;;cACzC,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;aAG3B,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;;cAClB,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;cALlC,QAAQ,CAAC,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC;;;;cACzC,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;aAG3B,QAAQ,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;;cAClB,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;;;;;;4EA4B/D,CAAC;AAEH,eAAO,MAAM,YAAY,wTAKvB,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EA8BvB,CAAC;AAEH,eAAO,MAAM,eAAe,wTAK1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;UAIR,QAAQ,CAAC,KAAK,CAAC;;;;;;cAEG,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;;UAF7C,QAAQ,CAAC,KAAK,CAAC;;;;;;cAEG,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;4EA8C/D,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare const MoreIcon: import("vue").DefineComponent<{
|
|
2
|
+
size?: number | string | undefined;
|
|
3
|
+
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
4
|
+
size?: number | string | undefined;
|
|
5
|
+
}> & Readonly<{}>, {
|
|
6
|
+
size: string | number;
|
|
7
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export declare const MinimizeIcon: import("vue").DefineComponent<{
|
|
9
|
+
size?: number | string | undefined;
|
|
10
|
+
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
11
|
+
size?: number | string | undefined;
|
|
12
|
+
}> & Readonly<{}>, {
|
|
13
|
+
size: string | number;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
export declare const ChevronRightIcon: import("vue").DefineComponent<{
|
|
16
|
+
size?: number | string | undefined;
|
|
17
|
+
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
18
|
+
size?: number | string | undefined;
|
|
19
|
+
}> & Readonly<{}>, {
|
|
20
|
+
size: string | number;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/index.tsx"],"names":[],"mappings":"AA+BA,eAAO,MAAM,QAAQ;WA5BZ,MAAM,GAAG,MAAM;;WAAf,MAAM,GAAG,MAAM;;;4EA+BvB,CAAC;AAEF,eAAO,MAAM,YAAY;WAjChB,MAAM,GAAG,MAAM;;WAAf,MAAM,GAAG,MAAM;;;4EAiC8C,CAAC;AAEvE,eAAO,MAAM,gBAAgB;WAnCpB,MAAM,GAAG,MAAM;;WAAf,MAAM,GAAG,MAAM;;;4EAsCvB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './corner-glow';
|
|
2
|
+
export * from './panel-view';
|
|
3
|
+
export * from './widget';
|
|
4
|
+
export * from './title';
|
|
5
|
+
export * from './panel-view';
|
|
6
|
+
export * from './dropdown';
|
|
7
|
+
export * from './tooltip';
|
|
8
|
+
export * from './center-view';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PropType, type VNode } from 'vue';
|
|
2
|
+
import type { IWidget } from '../../managers';
|
|
3
|
+
export interface MenuItemConfig {
|
|
4
|
+
type?: 'item' | 'divider';
|
|
5
|
+
key?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
icon?: VNode;
|
|
8
|
+
children?: MenuItemConfig[];
|
|
9
|
+
onClick?: (key: string, widget: IWidget) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const PanelView: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
|
+
anchor: StringConstructor;
|
|
13
|
+
title: StringConstructor;
|
|
14
|
+
widget: PropType<IWidget>;
|
|
15
|
+
menuItems: PropType<MenuItemConfig[]>;
|
|
16
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
anchor: StringConstructor;
|
|
18
|
+
title: StringConstructor;
|
|
19
|
+
widget: PropType<IWidget>;
|
|
20
|
+
menuItems: PropType<MenuItemConfig[]>;
|
|
21
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/panel-view/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgC,KAAK,QAAQ,EAAY,KAAK,KAAK,EAAkB,MAAM,KAAK,CAAC;AACxG,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAc9C,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,QAAQ,CAAC,EAAE,cAAc,EAAE,CAAC;IAE5B,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;CAClD;AAeD,eAAO,MAAM,SAAS;;;YAKA,QAAQ,CAAC,OAAO,CAAC;eACf,QAAQ,CAAC,cAAc,EAAE,CAAC;;;;YAD5B,QAAQ,CAAC,OAAO,CAAC;eACf,QAAQ,CAAC,cAAc,EAAE,CAAC;iGAkJhD,CAAC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
type Trigger = 'hover' | 'click' | 'focus' | 'contextmenu' | 'manual';
|
|
3
|
+
type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
|
|
4
|
+
export declare const Popup: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
visible: BooleanConstructor;
|
|
6
|
+
trigger: {
|
|
7
|
+
type: PropType<Trigger>;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
placement: {
|
|
11
|
+
type: PropType<Placement>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
offset: {
|
|
15
|
+
type: PropType<{
|
|
16
|
+
x?: number;
|
|
17
|
+
y?: number;
|
|
18
|
+
}>;
|
|
19
|
+
default: () => {
|
|
20
|
+
y: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
mouseEnterDelay: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
mouseLeaveDelay: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
disabled: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
destroyOnClose: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
getContainer: {
|
|
40
|
+
type: PropType<() => HTMLElement>;
|
|
41
|
+
default: () => HTMLElement;
|
|
42
|
+
};
|
|
43
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
visible: BooleanConstructor;
|
|
45
|
+
trigger: {
|
|
46
|
+
type: PropType<Trigger>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
placement: {
|
|
50
|
+
type: PropType<Placement>;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
offset: {
|
|
54
|
+
type: PropType<{
|
|
55
|
+
x?: number;
|
|
56
|
+
y?: number;
|
|
57
|
+
}>;
|
|
58
|
+
default: () => {
|
|
59
|
+
y: number;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
mouseEnterDelay: {
|
|
63
|
+
type: NumberConstructor;
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
mouseLeaveDelay: {
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
default: number;
|
|
69
|
+
};
|
|
70
|
+
disabled: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
destroyOnClose: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
78
|
+
getContainer: {
|
|
79
|
+
type: PropType<() => HTMLElement>;
|
|
80
|
+
default: () => HTMLElement;
|
|
81
|
+
};
|
|
82
|
+
}>> & Readonly<{
|
|
83
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
}>, {
|
|
85
|
+
visible: boolean;
|
|
86
|
+
trigger: Trigger;
|
|
87
|
+
placement: Placement;
|
|
88
|
+
offset: {
|
|
89
|
+
x?: number;
|
|
90
|
+
y?: number;
|
|
91
|
+
};
|
|
92
|
+
mouseEnterDelay: number;
|
|
93
|
+
mouseLeaveDelay: number;
|
|
94
|
+
disabled: boolean;
|
|
95
|
+
destroyOnClose: boolean;
|
|
96
|
+
getContainer: () => HTMLElement;
|
|
97
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
|
+
export {};
|
|
99
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/popup/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAQL,KAAK,QAAQ,EACd,MAAM,KAAK,CAAC;AAEb,KAAK,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,aAAa,GAAG,QAAQ,CAAC;AAEtE,KAAK,SAAS,GACV,KAAK,GACL,WAAW,GACX,SAAS,GACT,QAAQ,GACR,cAAc,GACd,YAAY,GACZ,MAAM,GACN,YAAY,GACZ,UAAU,GACV,OAAO,GACP,aAAa,GACb,WAAW,CAAC;AA8EhB,eAAO,MAAM,KAAK;;;cAIa,QAAQ,CAAC,OAAO,CAAC;;;;cACf,QAAQ,CAAC,SAAS,CAAC;;;;cACtB,QAAQ,CAAC;YAAE,CAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;cAK5B,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;;cAPlC,QAAQ,CAAC,OAAO,CAAC;;;;cACf,QAAQ,CAAC,SAAS,CAAC;;;;cACtB,QAAQ,CAAC;YAAE,CAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;cAK5B,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;;;;;;YALpB,MAAM;YAAM,MAAM;;;;;;wBAKV,WAAW;4EAiP9D,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { type PropType, type Component, type VNode } from 'vue';
|
|
2
|
+
export declare const TitleView: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
icon: PropType<string | Component | VNode>;
|
|
4
|
+
title: PropType<string | Component | VNode>;
|
|
5
|
+
mode: {
|
|
6
|
+
type: PropType<"icon-only" | "stacked" | "inline">;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
state: {
|
|
10
|
+
type: PropType<"idle" | "active" | "disabled" | "error">;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
focused: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: PropType<"small" | "middle" | "large">;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
className: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
onClick: PropType<() => void>;
|
|
26
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
icon: PropType<string | Component | VNode>;
|
|
28
|
+
title: PropType<string | Component | VNode>;
|
|
29
|
+
mode: {
|
|
30
|
+
type: PropType<"icon-only" | "stacked" | "inline">;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
state: {
|
|
34
|
+
type: PropType<"idle" | "active" | "disabled" | "error">;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
focused: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
size: {
|
|
42
|
+
type: PropType<"small" | "middle" | "large">;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
className: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
onClick: PropType<() => void>;
|
|
50
|
+
}>> & Readonly<{}>, {
|
|
51
|
+
size: "small" | "middle" | "large";
|
|
52
|
+
mode: "icon-only" | "stacked" | "inline";
|
|
53
|
+
state: "error" | "disabled" | "idle" | "active";
|
|
54
|
+
focused: boolean;
|
|
55
|
+
className: string;
|
|
56
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/title/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,KAAK,SAAS,EAAE,KAAK,KAAK,EAAE,MAAM,KAAK,CAAC;AAGjF,eAAO,MAAM,SAAS;UAIkB,QAAQ,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC;WACnC,QAAQ,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC;;cAEvD,QAAQ,CAAC,WAAW,GAAG,SAAS,GAAG,QAAQ,CAAC;;;;cAK5C,QAAQ,CAAC,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;;;;;;;;cASlD,QAAQ,CAAC,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;;;;;;;aAOnC,QAAQ,CAAC,MAAM,IAAI,CAAC;;UAxBL,QAAQ,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC;WACnC,QAAQ,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC;;cAEvD,QAAQ,CAAC,WAAW,GAAG,SAAS,GAAG,QAAQ,CAAC;;;;cAK5C,QAAQ,CAAC,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;;;;;;;;cASlD,QAAQ,CAAC,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;;;;;;;aAOnC,QAAQ,CAAC,MAAM,IAAI,CAAC;;;;;;;4EA2B3C,CAAC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { type PropType, type VNode } from 'vue';
|
|
2
|
+
type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
|
|
3
|
+
export declare const Tooltip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
title: PropType<string | VNode>;
|
|
5
|
+
trigger: {
|
|
6
|
+
type: PropType<"hover" | "click" | "focus">;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
placement: {
|
|
10
|
+
type: PropType<Placement>;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
mouseEnterDelay: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
default: number;
|
|
16
|
+
};
|
|
17
|
+
mouseLeaveDelay: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
default: number;
|
|
20
|
+
};
|
|
21
|
+
visible: BooleanConstructor;
|
|
22
|
+
disabled: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
getContainer: {
|
|
27
|
+
type: PropType<() => HTMLElement>;
|
|
28
|
+
default: () => HTMLElement;
|
|
29
|
+
};
|
|
30
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
title: PropType<string | VNode>;
|
|
32
|
+
trigger: {
|
|
33
|
+
type: PropType<"hover" | "click" | "focus">;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
placement: {
|
|
37
|
+
type: PropType<Placement>;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
mouseEnterDelay: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
mouseLeaveDelay: {
|
|
45
|
+
type: NumberConstructor;
|
|
46
|
+
default: number;
|
|
47
|
+
};
|
|
48
|
+
visible: BooleanConstructor;
|
|
49
|
+
disabled: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
getContainer: {
|
|
54
|
+
type: PropType<() => HTMLElement>;
|
|
55
|
+
default: () => HTMLElement;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{
|
|
58
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
}>, {
|
|
60
|
+
visible: boolean;
|
|
61
|
+
trigger: "click" | "focus" | "hover";
|
|
62
|
+
placement: Placement;
|
|
63
|
+
mouseEnterDelay: number;
|
|
64
|
+
mouseLeaveDelay: number;
|
|
65
|
+
disabled: boolean;
|
|
66
|
+
getContainer: () => HTMLElement;
|
|
67
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
68
|
+
export {};
|
|
69
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/tooltip/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAmB,KAAK,QAAQ,EAAE,KAAK,KAAK,EAAE,MAAM,KAAK,CAAC;AAIjE,KAAK,SAAS,GACV,KAAK,GACL,WAAW,GACX,SAAS,GACT,QAAQ,GACR,cAAc,GACd,YAAY,GACZ,MAAM,GACN,YAAY,GACZ,UAAU,GACV,OAAO,GACP,aAAa,GACb,WAAW,CAAC;AAEhB,eAAO,MAAM,OAAO;WAGqB,QAAQ,CAAC,MAAM,GAAG,KAAK,CAAC;;cAClC,QAAQ,CAAC,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC;;;;cACnC,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;cAKd,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;WAPxB,QAAQ,CAAC,MAAM,GAAG,KAAK,CAAC;;cAClC,QAAQ,CAAC,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC;;;;cACnC,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;cAKd,QAAQ,CAAC,MAAM,WAAW,CAAC;;;;;;;;;;;;wBAAZ,WAAW;4EAiC9D,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { IWidget } from '../../managers';
|
|
3
|
+
export declare const WidgetView: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
widget: PropType<IWidget>;
|
|
5
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
widget: PropType<IWidget>;
|
|
9
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export declare const WidgetTitleView: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
|
+
widget: PropType<IWidget>;
|
|
12
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
widget: PropType<IWidget>;
|
|
14
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/widget/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsD,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AACxF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAI9C,eAAO,MAAM,UAAU;YAID,QAAQ,CAAC,OAAO,CAAC;;;;YAAjB,QAAQ,CAAC,OAAO,CAAC;iGAgCrC,CAAC;AAEH,eAAO,MAAM,eAAe;YAIN,QAAQ,CAAC,OAAO,CAAC;;YAAjB,QAAQ,CAAC,OAAO,CAAC;iGAuCrC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { default as Layplux } from './layout/layplux';
|
|
2
|
+
export { useSkeleton } from './managers/skeleton';
|
|
3
|
+
export type { ISkeleton, IWidget, IWidgetContainer } from './managers';
|
|
4
|
+
export type { IArea } from './managers/area';
|
|
5
|
+
export type { IPane, ViewMode } from './managers/pane';
|
|
6
|
+
export type { SkeletonConfig, SkeletonConfigArea, SkeletonConfigType, WidgetBaseConfig, PanelWidgetConfig, PanelWidgetProps, InteractionWidgetConfig, InteractionWidgetProps, CenterWidgetConfig, CenterWidgetProps, } from './types';
|
|
7
|
+
export { createPluginEventBus } from './utils/event-bus';
|
|
8
|
+
export type { PluginEventBus } from './utils/event-bus';
|
|
9
|
+
export { FocusTracker } from './utils/focus-tracker';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAGtD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGlD,YAAY,EAAE,SAAS,EAAE,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACvE,YAAY,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC7C,YAAY,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAGvD,YAAY,EACV,cAAc,EACd,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,uBAAuB,EACvB,sBAAsB,EACtB,kBAAkB,EAClB,iBAAiB,GAClB,MAAM,SAAS,CAAC;AAGjB,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const GlassOverlay: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
//# sourceMappingURL=glass-overlay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glass-overlay.d.ts","sourceRoot":"","sources":["../../../src/layout/glass-overlay.tsx"],"names":[],"mappings":"AAQA,eAAO,MAAM,YAAY,wTAKvB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { ISkeleton } from '../managers';
|
|
3
|
+
export declare const LayeredManager: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
skeleton: PropType<ISkeleton>;
|
|
5
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
skeleton: PropType<ISkeleton>;
|
|
7
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
//# sourceMappingURL=layered-manager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"layered-manager.d.ts","sourceRoot":"","sources":["../../../src/layout/layered-manager.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAErD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQ7C,eAAO,MAAM,cAAc;cAGH,QAAQ,CAAC,SAAS,CAAC;;cAAnB,QAAQ,CAAC,SAAS,CAAC;iGASzC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { App, PropType } from 'vue';
|
|
2
|
+
import type { ISkeleton } from '../managers';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
skeleton: PropType<ISkeleton>;
|
|
6
|
+
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
skeleton: PropType<ISkeleton>;
|
|
15
|
+
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
|
16
|
+
__isFragment?: never;
|
|
17
|
+
__isTeleport?: never;
|
|
18
|
+
__isSuspense?: never;
|
|
19
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
skeleton: PropType<ISkeleton>;
|
|
21
|
+
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
22
|
+
install: (app: App) => App<any>;
|
|
23
|
+
};
|
|
24
|
+
export default _default;
|
|
25
|
+
//# sourceMappingURL=layplux.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"layplux.d.ts","sourceRoot":"","sources":["../../../src/layout/layplux.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAGzC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;;;kBAKrB,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;kBAAnB,QAAQ,CAAC,SAAS,CAAC;;;;;;cAAnB,QAAQ,CAAC,SAAS,CAAC;;mBAQ1B,GAAG;;AADpB,wBAKG"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { ISkeleton } from '../managers';
|
|
3
|
+
export declare const RootPane: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
skeleton: PropType<ISkeleton>;
|
|
5
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
skeleton: PropType<ISkeleton>;
|
|
7
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
//# sourceMappingURL=root-pane.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"root-pane.d.ts","sourceRoot":"","sources":["../../../src/layout/root-pane.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsC,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAIxE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C,eAAO,MAAM,QAAQ;cAGG,QAAQ,CAAC,SAAS,CAAC;;cAAnB,QAAQ,CAAC,SAAS,CAAC;iGAkBzC,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { InteractionWidgetConfig } from '../../types';
|
|
3
|
+
import type { IWidget, IArea } from '../../managers';
|
|
4
|
+
export declare const BottomArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
area: PropType<IArea<InteractionWidgetConfig, IWidget>>;
|
|
6
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
area: PropType<IArea<InteractionWidgetConfig, IWidget>>;
|
|
8
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
//# sourceMappingURL=bottom-area.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bottom-area.d.ts","sourceRoot":"","sources":["../../../../src/layout/skeleton/bottom-area.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AACrD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAErD,eAAO,MAAM,UAAU;UAGH,QAAQ,CAAC,KAAK,CAAC,uBAAuB,EAAE,OAAO,CAAC,CAAC;;UAAjD,QAAQ,CAAC,KAAK,CAAC,uBAAuB,EAAE,OAAO,CAAC,CAAC;iGAoCnE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { IArea, IWidget } from '../../managers';
|
|
3
|
+
import type { PanelWidgetConfig } from '../../types';
|
|
4
|
+
export declare const BottomLeftArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
area: PropType<IArea<PanelWidgetConfig, IWidget>>;
|
|
6
|
+
}>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
area: PropType<IArea<PanelWidgetConfig, IWidget>>;
|
|
8
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
//# sourceMappingURL=bottom-left-area.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bottom-left-area.d.ts","sourceRoot":"","sources":["../../../../src/layout/skeleton/bottom-left-area.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AACrD,OAAO,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,eAAO,MAAM,cAAc;UAGP,QAAQ,CAAC,KAAK,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;;UAA3C,QAAQ,CAAC,KAAK,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;iGAqB7D,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { IArea, IWidget } from '../../managers';
|
|
3
|
+
import type { PanelWidgetConfig } from '../../types';
|
|
4
|
+
export declare const BottomRightArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
area: PropType<IArea<PanelWidgetConfig, IWidget>>;
|
|
6
|
+
}>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
area: PropType<IArea<PanelWidgetConfig, IWidget>>;
|
|
8
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
//# sourceMappingURL=bottom-right-area.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bottom-right-area.d.ts","sourceRoot":"","sources":["../../../../src/layout/skeleton/bottom-right-area.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AACrD,OAAO,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,eAAO,MAAM,eAAe;UAGR,QAAQ,CAAC,KAAK,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;;UAA3C,QAAQ,CAAC,KAAK,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;iGAiB7D,CAAC"}
|