geekin-devtoys 0.3.4 → 0.3.6

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,164 @@
1
+ import { onBeforeUpdate as z, onUnmounted as S, getCurrentInstance as E, watchEffect as F, isRef as M, watch as T, defineComponent as H, ref as m, computed as b, createBlock as N, openBlock as P, unref as g, normalizeStyle as U, normalizeClass as L, withCtx as W, createTextVNode as G, toDisplayString as j } from "vue";
2
+ import { c as q, d as $, f as k, e as C, g as v, M as J } from "../index-Bbr5fWvI.mjs";
3
+ function A(...t) {
4
+ const e = !Array.isArray(t[0]), s = e ? 0 : -1, o = t[0 + s], l = t[1 + s], n = t[2 + s], r = t[3 + s], a = q(l, n, r);
5
+ return e ? a(o) : a;
6
+ }
7
+ function K(t) {
8
+ let e = 0;
9
+ const s = ({ timestamp: l, delta: n }) => {
10
+ e || (e = l), t(l - e, n);
11
+ }, o = () => $(s);
12
+ z(() => {
13
+ o(), k.update(s, !0);
14
+ }), S(() => o()), k.update(s, !0);
15
+ }
16
+ function D(t) {
17
+ const e = C(t()), s = () => e.set(t()), o = () => k.preRender(s, !1, !0);
18
+ let l;
19
+ const n = (a) => {
20
+ l = a.map((c) => c.on("change", o));
21
+ }, r = () => {
22
+ l.forEach((a) => a()), $(s);
23
+ };
24
+ return E() && S(() => {
25
+ r();
26
+ }), {
27
+ subscribe: n,
28
+ unsubscribe: r,
29
+ value: e,
30
+ updateValue: s
31
+ };
32
+ }
33
+ function Q(t) {
34
+ v.current = [];
35
+ const { value: e, subscribe: s, unsubscribe: o, updateValue: l } = D(t);
36
+ return s(v.current), v.current = void 0, F(() => {
37
+ o(), v.current = [], l(), s(v.current), v.current = void 0;
38
+ }), e;
39
+ }
40
+ function X(t, e, s, o) {
41
+ if (typeof t == "function") return Q(t);
42
+ let l, n;
43
+ if (typeof e == "function")
44
+ n = e, l = Array.isArray(t) ? t : [t];
45
+ else if (M(e)) {
46
+ const a = C(0);
47
+ let c = A(e.value, s, o);
48
+ T(e, (f) => {
49
+ c = A(f, s, o), a.set(a.get() + 1);
50
+ }, { flush: "sync" }), n = (f) => Array.isArray(f) ? c(f[0]) : c(f), l = Array.isArray(t) ? [...t, a] : [t, a];
51
+ } else
52
+ n = A(e, s, o), l = Array.isArray(t) ? t : [t];
53
+ const r = Array.isArray(t) ? B(l, n) : B(l, (a) => n(a[0]));
54
+ if (!Array.isArray(t)) {
55
+ const a = t.accelerate;
56
+ if (a && !a.isTransformed && typeof e != "function" && Array.isArray(s) && o?.clamp !== !1) {
57
+ const c = M(e) ? e.value : e;
58
+ r.accelerate = {
59
+ ...a,
60
+ times: c,
61
+ keyframes: s,
62
+ isTransformed: !0
63
+ };
64
+ }
65
+ }
66
+ return r;
67
+ }
68
+ function B(t, e) {
69
+ const s = [], o = () => {
70
+ s.length = 0;
71
+ const r = t.length;
72
+ for (let a = 0; a < r; a++) s[a] = t[a].get();
73
+ return e(s);
74
+ }, { value: l, subscribe: n } = D(o);
75
+ return n(t), l;
76
+ }
77
+ const h = /* @__PURE__ */ H({
78
+ __name: "index",
79
+ props: {
80
+ text: {},
81
+ disabled: { type: Boolean, default: !1 },
82
+ speed: { default: 2 },
83
+ className: { default: "" },
84
+ color: { default: "#b5b5b5" },
85
+ shineColor: { default: "#ffffff" },
86
+ spread: { default: 120 },
87
+ yoyo: { type: Boolean, default: !1 },
88
+ pauseOnHover: { type: Boolean, default: !1 },
89
+ direction: { default: "left" },
90
+ delay: { default: 0 }
91
+ },
92
+ setup(t) {
93
+ const e = t, s = m(!1), o = C(0), l = m(0), n = m(null), r = m(e.direction === "left" ? 1 : -1), a = b(() => e.speed * 1e3), c = b(() => e.delay * 1e3);
94
+ K((u) => {
95
+ if (e.disabled || s.value) {
96
+ n.value = null;
97
+ return;
98
+ }
99
+ if (n.value === null) {
100
+ n.value = u;
101
+ return;
102
+ }
103
+ const V = u - n.value;
104
+ if (n.value = u, l.value += V, e.yoyo) {
105
+ const d = a.value + c.value, y = d * 2, i = l.value % y;
106
+ if (i < a.value) {
107
+ const p = i / a.value * 100;
108
+ o.set(r.value === 1 ? p : 100 - p);
109
+ } else if (i < d)
110
+ o.set(r.value === 1 ? 100 : 0);
111
+ else if (i < d + a.value) {
112
+ const x = 100 - (i - d) / a.value * 100;
113
+ o.set(r.value === 1 ? x : 100 - x);
114
+ } else
115
+ o.set(r.value === 1 ? 0 : 100);
116
+ } else {
117
+ const d = a.value + c.value, y = l.value % d;
118
+ if (y < a.value) {
119
+ const i = y / a.value * 100;
120
+ o.set(r.value === 1 ? i : 100 - i);
121
+ } else
122
+ o.set(r.value === 1 ? 100 : 0);
123
+ }
124
+ }), T(
125
+ () => e.direction,
126
+ () => {
127
+ r.value = e.direction === "left" ? 1 : -1, l.value = 0, o.set(0);
128
+ },
129
+ {
130
+ immediate: !0
131
+ }
132
+ );
133
+ const f = X(o, (u) => `${150 - u * 2}% center`), _ = () => {
134
+ e.pauseOnHover && (s.value = !0);
135
+ }, I = () => {
136
+ e.pauseOnHover && (s.value = !1);
137
+ }, w = b(() => ({
138
+ backgroundImage: `linear-gradient(${e.spread}deg, ${e.color} 0%, ${e.color} 35%, ${e.shineColor} 50%, ${e.color} 65%, ${e.color} 100%)`,
139
+ backgroundSize: "200% auto",
140
+ WebkitBackgroundClip: "text",
141
+ backgroundClip: "text",
142
+ WebkitTextFillColor: "transparent"
143
+ }));
144
+ return (u, V) => (P(), N(g(J), {
145
+ tag: "span",
146
+ class: L(["inline-block", u.className]),
147
+ style: U({ ...w.value, backgroundPosition: g(f) }),
148
+ onMouseenter: _,
149
+ onMouseleave: I
150
+ }, {
151
+ default: W(() => [
152
+ G(j(u.text), 1)
153
+ ]),
154
+ _: 1
155
+ }, 8, ["class", "style"]));
156
+ }
157
+ });
158
+ h.install = (t) => {
159
+ t.component(h.name, h);
160
+ };
161
+ export {
162
+ h as GShinyText,
163
+ h as default
164
+ };
@@ -0,0 +1 @@
1
+ export {}
@@ -0,0 +1,42 @@
1
+ import { Component } from 'vue';
2
+ interface Props {
3
+ /** 按钮类型 */
4
+ type?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'default' | 'text';
5
+ /** 按钮图标组件 */
6
+ icon?: Component;
7
+ /** loading 态 */
8
+ loading?: boolean;
9
+ /** 禁用态 */
10
+ disabled?: boolean;
11
+ /** 是否朴素按钮 */
12
+ plain?: boolean;
13
+ /** 按钮尺寸 */
14
+ size?: 'small' | 'default' | 'large';
15
+ }
16
+ declare function __VLS_template(): {
17
+ attrs: Partial<{}>;
18
+ slots: {
19
+ default?(_: {}): any;
20
+ };
21
+ refs: {};
22
+ rootEl: HTMLButtonElement;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
26
+ click: (evt: MouseEvent) => any;
27
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
28
+ onClick?: ((evt: MouseEvent) => any) | undefined;
29
+ }>, {
30
+ type: "primary" | "success" | "warning" | "danger" | "info" | "default" | "text";
31
+ size: "small" | "default" | "large";
32
+ disabled: boolean;
33
+ loading: boolean;
34
+ plain: boolean;
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
36
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
37
+ export default _default;
38
+ type __VLS_WithTemplateSlots<T, S> = T & {
39
+ new (): {
40
+ $slots: S;
41
+ };
42
+ };
@@ -0,0 +1,17 @@
1
+ import { DialogPosition } from './useDialogManager';
2
+ interface Props {
3
+ /** 弹窗标题 */
4
+ title: string;
5
+ /** 图标位置 */
6
+ position: DialogPosition;
7
+ /** 提醒动画触发次数 */
8
+ attentionTick?: number;
9
+ }
10
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
+ restore: () => any;
12
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
13
+ onRestore?: (() => any) | undefined;
14
+ }>, {
15
+ attentionTick: number;
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { Component, InjectionKey } from 'vue';
2
+ import { DialogManager } from './useDialogManager';
3
+ /**
4
+ * 弹窗管理器注入键(GDialogPro 独立,不与 GDialog 共享)
5
+ */
6
+ export declare const DIALOG_MANAGER_KEY: InjectionKey<DialogManager>;
7
+ /**
8
+ * 预设对话框尺寸
9
+ */
10
+ export declare const DIALOG_SIZES: {
11
+ readonly small: "380px";
12
+ readonly medium: "480px";
13
+ readonly large: "580px";
14
+ };
15
+ /**
16
+ * 关闭来源(用于 beforeClose 钩子)
17
+ * - cancel:底部取消按钮
18
+ * - close:标题栏关闭按钮 / ESC / 蒙层
19
+ * - minimize:标题栏最小化按钮
20
+ * - save:底部保存按钮
21
+ * - action:自定义底部操作(actions 配置项)
22
+ */
23
+ export type DialogCloseAction = 'cancel' | 'close' | 'minimize' | 'save' | 'action';
24
+ /**
25
+ * 自定义底部操作按钮
26
+ */
27
+ export interface FooterAction {
28
+ /** 唯一标识,作为 emit('action', key) 的载荷 */
29
+ key: string;
30
+ /** 按钮文案 */
31
+ label: string;
32
+ /** 按钮类型(语义与常见 UI 库一致) */
33
+ type?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'default' | 'text';
34
+ /** 按钮图标组件 */
35
+ icon?: Component;
36
+ /** loading 态 */
37
+ loading?: boolean;
38
+ /** 禁用态 */
39
+ disabled?: boolean;
40
+ /** 是否朴素按钮 */
41
+ plain?: boolean;
42
+ /** 点击回调(与 emit('action', key) 同时触发,回调返回 Promise 时按钮自动 loading) */
43
+ onClick?: () => void | Promise<void>;
44
+ }
45
+ /**
46
+ * 最小化图标布局常量
47
+ */
48
+ export declare const MINIMIZED_LAYOUT: {
49
+ readonly ICON_WIDTH: 92;
50
+ readonly ICON_HEIGHT: 34;
51
+ readonly GAP: 8;
52
+ readonly BOTTOM_OFFSET: 18;
53
+ readonly RIGHT_OFFSET: 18;
54
+ readonly MAX_PER_ROW: 8;
55
+ };
@@ -0,0 +1,9 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ /** 减号(取消按钮默认图标) */
3
+ export declare const Remove: FunctionalComponent;
4
+ /** 刷新(重置按钮默认图标) */
5
+ export declare const Refresh: FunctionalComponent;
6
+ /** 圆圈打勾(保存按钮默认图标) */
7
+ export declare const CircleCheck: FunctionalComponent;
8
+ /** 聊天气泡圆点(最小化图标默认图标) */
9
+ export declare const ChatDotRound: FunctionalComponent;
@@ -0,0 +1,147 @@
1
+ import { DialogCloseAction, FooterAction } from './const';
2
+ interface Props {
3
+ /**
4
+ * @description 标题名
5
+ * @version 0.1.6
6
+ * @default ''
7
+ */
8
+ title: string;
9
+ /**
10
+ * @description 对话框尺寸
11
+ * @version 0.1.6
12
+ * @default 'medium'
13
+ */
14
+ size?: 'small' | 'medium' | 'large' | string;
15
+ /**
16
+ * @description 是否显示对话框
17
+ * @version 0.1.6
18
+ * @default false
19
+ */
20
+ modelValue?: boolean;
21
+ /**
22
+ * @description 是否隐藏底部操作区(包含取消/重置/保存与自定义 actions)
23
+ * @version 0.2.18
24
+ * @default false
25
+ */
26
+ hideFooter?: boolean;
27
+ /**
28
+ * @description 自定义底部操作按钮组。配置后会替换默认的 取消/重置/保存
29
+ * @version 0.2.18
30
+ * @default undefined
31
+ */
32
+ actions?: FooterAction[];
33
+ /**
34
+ * @description 是否显示默认「取消」按钮(actions 模式下无效)
35
+ * @version 0.2.18
36
+ * @default true
37
+ */
38
+ showCancel?: boolean;
39
+ /**
40
+ * @description 是否显示默认「重置」按钮(actions 模式下无效)
41
+ * @version 0.2.18
42
+ * @default true
43
+ */
44
+ showReset?: boolean;
45
+ /**
46
+ * @description 是否显示默认「保存」按钮(actions 模式下无效)
47
+ * @version 0.2.18
48
+ * @default true
49
+ */
50
+ showSave?: boolean;
51
+ /**
52
+ * @description 默认「取消」按钮文案
53
+ * @version 0.2.18
54
+ * @default '取消'
55
+ */
56
+ cancelText?: string;
57
+ /**
58
+ * @description 默认「重置」按钮文案
59
+ * @version 0.2.18
60
+ * @default '重置'
61
+ */
62
+ resetText?: string;
63
+ /**
64
+ * @description 默认「保存」按钮文案
65
+ * @version 0.2.18
66
+ * @default '保存'
67
+ */
68
+ saveText?: string;
69
+ /**
70
+ * @description 保存按钮 loading 态(异步保存时使用)
71
+ * @version 0.2.18
72
+ * @default false
73
+ */
74
+ saveLoading?: boolean;
75
+ /**
76
+ * @description 保存按钮禁用态
77
+ * @version 0.2.18
78
+ * @default false
79
+ */
80
+ saveDisabled?: boolean;
81
+ /**
82
+ * @description 关闭前钩子。返回 false 或 Promise<false> 时取消关闭。
83
+ * 触发时机:点击关闭/最小化/ESC/蒙层/取消/保存
84
+ * @version 0.2.18
85
+ * @default undefined
86
+ */
87
+ beforeClose?: (action: DialogCloseAction) => boolean | Promise<boolean>;
88
+ }
89
+ /** 标题栏关闭按钮 / ESC / 蒙层 / 作用域插槽 close 调用入口 */
90
+ declare function handleClose(): Promise<void>;
91
+ /** 取消按钮 */
92
+ declare function handleCancel(): Promise<void>;
93
+ /** 重置按钮(不触发关闭,无需 beforeClose) */
94
+ declare function handleReset(): void;
95
+ /** 保存按钮 */
96
+ declare function handleSave(): Promise<void>;
97
+ declare function __VLS_template(): {
98
+ attrs: Partial<{}>;
99
+ slots: {
100
+ default?(_: {}): any;
101
+ footer?(_: {
102
+ cancel: typeof handleCancel;
103
+ reset: typeof handleReset;
104
+ save: typeof handleSave;
105
+ close: typeof handleClose;
106
+ loading: boolean;
107
+ }): any;
108
+ moreOperations?(_: {}): any;
109
+ };
110
+ refs: {};
111
+ rootEl: any;
112
+ };
113
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
114
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
115
+ reset: () => any;
116
+ cancel: () => any;
117
+ minimize: (data: any) => any;
118
+ save: () => any;
119
+ action: (key: string) => any;
120
+ "update:modelValue": (value: boolean) => any;
121
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
122
+ onReset?: (() => any) | undefined;
123
+ onCancel?: (() => any) | undefined;
124
+ onMinimize?: ((data: any) => any) | undefined;
125
+ onSave?: (() => any) | undefined;
126
+ onAction?: ((key: string) => any) | undefined;
127
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
128
+ }>, {
129
+ title: string;
130
+ size: "small" | "medium" | "large" | string;
131
+ hideFooter: boolean;
132
+ showCancel: boolean;
133
+ showReset: boolean;
134
+ showSave: boolean;
135
+ cancelText: string;
136
+ resetText: string;
137
+ saveText: string;
138
+ saveLoading: boolean;
139
+ saveDisabled: boolean;
140
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
141
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
142
+ export default _default;
143
+ type __VLS_WithTemplateSlots<T, S> = T & {
144
+ new (): {
145
+ $slots: S;
146
+ };
147
+ };
@@ -0,0 +1,58 @@
1
+ import { ComputedRef } from 'vue';
2
+ /**
3
+ * 弹窗描述符
4
+ */
5
+ export interface DialogDescriptor {
6
+ /** 弹窗唯一标识 */
7
+ id: string;
8
+ /** 弹窗标题,显示在最小化图标上 */
9
+ title: string;
10
+ /** 是否处于最小化状态 */
11
+ isMinimized: boolean;
12
+ /** 最小化状态下的提醒次数 */
13
+ attentionTick?: number;
14
+ }
15
+ /**
16
+ * 最小化图标位置
17
+ */
18
+ export interface DialogPosition {
19
+ /** 距右侧距离 (px) */
20
+ right: number;
21
+ /** 距底部距离 (px) */
22
+ bottom: number;
23
+ }
24
+ /**
25
+ * 弹窗管理器接口
26
+ */
27
+ export interface DialogManager {
28
+ /** 响应式弹窗注册表 */
29
+ dialogs: Map<string, DialogDescriptor>;
30
+ /** 注册弹窗 */
31
+ register: (descriptor: DialogDescriptor) => void;
32
+ /** 注销弹窗 */
33
+ unregister: (id: string) => void;
34
+ /** 最小化弹窗 */
35
+ minimize: (id: string) => void;
36
+ /** 提醒已最小化的弹窗 */
37
+ remindMinimized: (id: string) => void;
38
+ /** 恢复弹窗 */
39
+ restore: (id: string) => void;
40
+ /** 获取图标位置(响应式) */
41
+ getPosition: (id: string) => ComputedRef<DialogPosition>;
42
+ /** 当前最小化的弹窗列表 */
43
+ minimizedList: ComputedRef<DialogDescriptor[]>;
44
+ }
45
+ /**
46
+ * 创建弹窗管理器实例(应用层调用一次)
47
+ * @example
48
+ * ```ts
49
+ * const dialogManager = createDialogManager()
50
+ * app.provide(DIALOG_MANAGER_KEY, dialogManager)
51
+ * ```
52
+ */
53
+ export declare function createDialogManager(): DialogManager;
54
+ /**
55
+ * 弹窗管理器消费者 composable(GDialogPro 内部使用)
56
+ * 通过 inject 获取管理器实例,未提供时返回 null(向后兼容)
57
+ */
58
+ export declare function useDialogManager(): DialogManager | null;
@@ -0,0 +1,37 @@
1
+ interface ShinyTextProps {
2
+ /** 文本内容 */
3
+ text: string;
4
+ /** 禁用动效,冻结在当前帧 */
5
+ disabled?: boolean;
6
+ /** 单次扫光时长,单位秒 */
7
+ speed?: number;
8
+ /** 透传到根 span 的自定义类名 */
9
+ className?: string;
10
+ /** 基础文字色 */
11
+ color?: string;
12
+ /** 高光色 */
13
+ shineColor?: string;
14
+ /** 渐变角度,单位 deg */
15
+ spread?: number;
16
+ /** 来回往返扫光 */
17
+ yoyo?: boolean;
18
+ /** 鼠标悬停时暂停 */
19
+ pauseOnHover?: boolean;
20
+ /** 扫光方向 */
21
+ direction?: 'left' | 'right';
22
+ /** 每个周期结束后的停留时长,单位秒 */
23
+ delay?: number;
24
+ }
25
+ declare const _default: import('vue').DefineComponent<ShinyTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ShinyTextProps> & Readonly<{}>, {
26
+ delay: number;
27
+ className: string;
28
+ disabled: boolean;
29
+ color: string;
30
+ direction: "left" | "right";
31
+ speed: number;
32
+ spread: number;
33
+ shineColor: string;
34
+ yoyo: boolean;
35
+ pauseOnHover: boolean;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ export default _default;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("../GCount/index.js"),l=require("../GDialog/index.js"),a=require("../GTable/index.js"),o=require("../GVideo/index.js"),d=require("../GBubble/index.js"),n=require("../GProgress/index.js"),G=require("../GScreen/index.js"),i=require("../GPluginVideo/index.js"),s=require("../GPie3D/index.js"),c=require("../GRing/index.js"),f=require("../GInputTreeTag/index.js"),g=require("../GFuzzyText/index.js"),e=require("../GCard/index.js"),q=require("../GScroller/index.js"),u={GCount:r.default,GDialog:l.default,GTable:a.default,GVideo:o.default,GBubble:d.default,GProgress:n.default,GScreen:G.default,GPluginVideo:i.default,GPie3D:s.default,GRing:c.default,GInputTreeTag:f.default,GFuzzyText:g.default,GCard:e.default,GScroller:q.default},P=T=>{Object.keys(u).forEach(b=>{const t=u[b];T.component(t.name,t)})},S={install:P};exports.GCount=r.default;exports.GDialog=l.default;exports.GTable=a.default;exports.GVideo=o.default;exports.GBubble=d.default;exports.GProgress=n.default;exports.GScreen=G.default;exports.GPluginVideo=i.default;exports.GPie3D=s.default;exports.GRing=c.default;exports.GInputTreeTag=f.default;exports.GFuzzyText=g.default;exports.GCard=e.default;exports.cardPresets=e.cardPresets;exports.GScroller=q.default;exports.default=S;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("../GCount/index.js"),l=require("../GDialog/index.js"),a=require("../GDialogPro/index.js"),o=require("../GTable/index.js"),n=require("../GVideo/index.js"),d=require("../GBubble/index.js"),G=require("../GProgress/index.js"),i=require("../GScreen/index.js"),s=require("../GPluginVideo/index.js"),c=require("../GPie3D/index.js"),f=require("../GRing/index.js"),g=require("../GInputTreeTag/index.js"),q=require("../GFuzzyText/index.js"),e=require("../GCard/index.js"),T=require("../GScroller/index.js"),P=require("../GShinyText/index.js"),u={GCount:r.default,GDialog:l.default,GDialogPro:a.default,GTable:o.default,GVideo:n.default,GBubble:d.default,GProgress:G.default,GScreen:i.default,GPluginVideo:s.default,GPie3D:c.default,GRing:f.default,GInputTreeTag:g.default,GFuzzyText:q.default,GCard:e.default,GScroller:T.default,GShinyText:P.default},D=b=>{Object.keys(u).forEach(S=>{const t=u[S];b.component(t.name,t)})},y={install:D};exports.GCount=r.default;exports.GDialog=l.default;exports.GDialogPro=a.default;exports.GTable=o.default;exports.GVideo=n.default;exports.GBubble=d.default;exports.GProgress=G.default;exports.GScreen=i.default;exports.GPluginVideo=s.default;exports.GPie3D=c.default;exports.GRing=f.default;exports.GInputTreeTag=g.default;exports.GFuzzyText=q.default;exports.GCard=e.default;exports.cardPresets=e.cardPresets;exports.GScroller=T.default;exports.GShinyText=P.default;exports.default=y;
@@ -1,54 +1,60 @@
1
- import e from "../GCount/index.mjs";
2
- import i from "../GDialog/index.mjs";
3
- import n from "../GTable/index.mjs";
4
- import f from "../GVideo/index.mjs";
5
- import p from "../GBubble/index.mjs";
6
- import s from "../GProgress/index.mjs";
7
- import a from "../GScreen/index.mjs";
8
- import G from "../GPluginVideo/index.mjs";
9
- import c from "../GPie3D/index.mjs";
10
- import l from "../GRing/index.mjs";
1
+ import i from "../GCount/index.mjs";
2
+ import e from "../GDialog/index.mjs";
3
+ import n from "../GDialogPro/index.mjs";
4
+ import f from "../GTable/index.mjs";
5
+ import p from "../GVideo/index.mjs";
6
+ import s from "../GBubble/index.mjs";
7
+ import a from "../GProgress/index.mjs";
8
+ import G from "../GScreen/index.mjs";
9
+ import c from "../GPluginVideo/index.mjs";
10
+ import l from "../GPie3D/index.mjs";
11
+ import _ from "../GRing/index.mjs";
11
12
  import u from "../GInputTreeTag/index.mjs";
12
- import _ from "../GFuzzyText/index.mjs";
13
- import d from "../GCard/index.mjs";
14
- import { cardPresets as O } from "../GCard/index.mjs";
15
- import g from "../GScroller/index.mjs";
13
+ import d from "../GFuzzyText/index.mjs";
14
+ import g from "../GCard/index.mjs";
15
+ import { cardPresets as w } from "../GCard/index.mjs";
16
+ import x from "../GScroller/index.mjs";
17
+ import T from "../GShinyText/index.mjs";
16
18
  const r = {
17
- GCount: e,
18
- GDialog: i,
19
- GTable: n,
20
- GVideo: f,
21
- GBubble: p,
22
- GProgress: s,
23
- GScreen: a,
24
- GPluginVideo: G,
25
- GPie3D: c,
26
- GRing: l,
19
+ GCount: i,
20
+ GDialog: e,
21
+ GDialogPro: n,
22
+ GTable: f,
23
+ GVideo: p,
24
+ GBubble: s,
25
+ GProgress: a,
26
+ GScreen: G,
27
+ GPluginVideo: c,
28
+ GPie3D: l,
29
+ GRing: _,
27
30
  GInputTreeTag: u,
28
- GFuzzyText: _,
29
- GCard: d,
30
- GScroller: g
31
- }, x = (m) => {
31
+ GFuzzyText: d,
32
+ GCard: g,
33
+ GScroller: x,
34
+ GShinyText: T
35
+ }, P = (m) => {
32
36
  Object.keys(r).forEach((t) => {
33
37
  const o = r[t];
34
38
  m.component(o.name, o);
35
39
  });
36
- }, B = { install: x };
40
+ }, R = { install: P };
37
41
  export {
38
- p as GBubble,
39
- d as GCard,
40
- e as GCount,
41
- i as GDialog,
42
- _ as GFuzzyText,
42
+ s as GBubble,
43
+ g as GCard,
44
+ i as GCount,
45
+ e as GDialog,
46
+ n as GDialogPro,
47
+ d as GFuzzyText,
43
48
  u as GInputTreeTag,
44
- c as GPie3D,
45
- G as GPluginVideo,
46
- s as GProgress,
47
- l as GRing,
48
- a as GScreen,
49
- g as GScroller,
50
- n as GTable,
51
- f as GVideo,
52
- O as cardPresets,
53
- B as default
49
+ l as GPie3D,
50
+ c as GPluginVideo,
51
+ a as GProgress,
52
+ _ as GRing,
53
+ G as GScreen,
54
+ x as GScroller,
55
+ T as GShinyText,
56
+ f as GTable,
57
+ p as GVideo,
58
+ w as cardPresets,
59
+ R as default
54
60
  };