geekin-devtoys 0.3.1 → 0.3.3
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/lib/GCard/index.js +1 -0
- package/lib/GCard/index.mjs +287 -0
- package/lib/GCard/style.css +1 -0
- package/lib/GCard.d.ts +1 -0
- package/lib/GFuzzyText/index.js +1 -0
- package/lib/GFuzzyText/index.mjs +171 -0
- package/lib/GFuzzyText.d.ts +1 -0
- package/lib/GInputTreeTag/index.js +9 -1
- package/lib/GInputTreeTag/index.mjs +375 -186
- package/lib/GInputTreeTag/style.css +1 -1
- package/lib/GScroller/index.js +1 -0
- package/lib/GScroller/index.mjs +283 -0
- package/lib/GScroller/style.css +1 -0
- package/lib/GScroller.d.ts +1 -0
- package/lib/components/GCard/index.d.ts +45 -0
- package/lib/components/GCard/presets.d.ts +17 -0
- package/lib/components/GFuzzyText/index.d.ts +61 -0
- package/lib/components/GInputTreeTag/index.d.ts +24 -15
- package/lib/components/GScroller/index.d.ts +70 -0
- package/lib/components/GTable/index.d.ts +1 -1
- package/lib/index/index.js +1 -1
- package/lib/index/index.mjs +34 -23
- package/lib/index-Bi7JS7ve.mjs +5152 -0
- package/lib/index-xqOURU1q.js +1 -0
- package/lib/index.d.ts +5 -1
- package/package.json +31 -5
package/lib/index/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const
|
|
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;
|
package/lib/index/index.mjs
CHANGED
|
@@ -1,43 +1,54 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import e from "../GCount/index.mjs";
|
|
2
|
+
import i from "../GDialog/index.mjs";
|
|
3
|
+
import n from "../GTable/index.mjs";
|
|
4
4
|
import f from "../GVideo/index.mjs";
|
|
5
5
|
import p from "../GBubble/index.mjs";
|
|
6
6
|
import s from "../GProgress/index.mjs";
|
|
7
7
|
import a from "../GScreen/index.mjs";
|
|
8
|
-
import
|
|
9
|
-
import
|
|
8
|
+
import G from "../GPluginVideo/index.mjs";
|
|
9
|
+
import c from "../GPie3D/index.mjs";
|
|
10
10
|
import l from "../GRing/index.mjs";
|
|
11
11
|
import u from "../GInputTreeTag/index.mjs";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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";
|
|
16
|
+
const r = {
|
|
17
|
+
GCount: e,
|
|
18
|
+
GDialog: i,
|
|
19
|
+
GTable: n,
|
|
16
20
|
GVideo: f,
|
|
17
21
|
GBubble: p,
|
|
18
22
|
GProgress: s,
|
|
19
23
|
GScreen: a,
|
|
20
|
-
GPluginVideo:
|
|
21
|
-
GPie3D:
|
|
24
|
+
GPluginVideo: G,
|
|
25
|
+
GPie3D: c,
|
|
22
26
|
GRing: l,
|
|
23
|
-
GInputTreeTag: u
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
GInputTreeTag: u,
|
|
28
|
+
GFuzzyText: _,
|
|
29
|
+
GCard: d,
|
|
30
|
+
GScroller: g
|
|
31
|
+
}, x = (m) => {
|
|
32
|
+
Object.keys(r).forEach((t) => {
|
|
33
|
+
const o = r[t];
|
|
34
|
+
m.component(o.name, o);
|
|
28
35
|
});
|
|
29
|
-
},
|
|
36
|
+
}, B = { install: x };
|
|
30
37
|
export {
|
|
31
38
|
p as GBubble,
|
|
32
|
-
|
|
33
|
-
|
|
39
|
+
d as GCard,
|
|
40
|
+
e as GCount,
|
|
41
|
+
i as GDialog,
|
|
42
|
+
_ as GFuzzyText,
|
|
34
43
|
u as GInputTreeTag,
|
|
35
|
-
|
|
36
|
-
|
|
44
|
+
c as GPie3D,
|
|
45
|
+
G as GPluginVideo,
|
|
37
46
|
s as GProgress,
|
|
38
47
|
l as GRing,
|
|
39
48
|
a as GScreen,
|
|
40
|
-
|
|
49
|
+
g as GScroller,
|
|
50
|
+
n as GTable,
|
|
41
51
|
f as GVideo,
|
|
42
|
-
|
|
52
|
+
O as cardPresets,
|
|
53
|
+
B as default
|
|
43
54
|
};
|