btt-ui 1.0.34 → 1.0.35
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/es/index.mjs +15 -13
- package/es/src/directives/bubble.mjs +24 -26
- package/es/src/index.mjs +75 -72
- package/es/src/table/index.mjs +7 -0
- package/es/src/table/src/style/index.css +83 -0
- package/es/src/table/src/table.mjs +165 -0
- package/lib/index.js +1 -1
- package/lib/src/directives/bubble.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/table/index.js +1 -0
- package/lib/src/table/src/style/index.css +83 -0
- package/lib/src/table/src/table.js +1 -0
- package/package.json +1 -1
package/es/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import * as m from "./src/directives/index.mjs";
|
|
|
3
3
|
import { Button as s } from "./src/button/index.mjs";
|
|
4
4
|
import { TextButton as u } from "./src/textButton/index.mjs";
|
|
5
5
|
import { default as K } from "./src/link/index.mjs";
|
|
6
|
-
import { default as
|
|
6
|
+
import { default as b } from "./src/upload/index.mjs";
|
|
7
7
|
import { default as k } from "./src/shake/index.mjs";
|
|
8
8
|
import { default as S } from "./src/dialog/index.mjs";
|
|
9
9
|
import { default as g } from "./src/scroll/index.mjs";
|
|
@@ -24,11 +24,12 @@ import { default as oo } from "./src/xgplay/index.mjs";
|
|
|
24
24
|
import { KNumberScroll as to } from "./src/numberScroll/index.mjs";
|
|
25
25
|
import { KCountUp as fo } from "./src/countUp/index.mjs";
|
|
26
26
|
import { KGradientText as mo } from "./src/gradientText/index.mjs";
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
27
|
+
import { KTable as lo } from "./src/table/index.mjs";
|
|
28
|
+
import { Icon as no } from "./src/icon/index.mjs";
|
|
29
|
+
import { Tooltip as so } from "./src/tooltip/index.mjs";
|
|
30
|
+
import { KInput as co } from "./src/input/index.mjs";
|
|
31
|
+
import { Drag as To } from "./src/drag/index.mjs";
|
|
32
|
+
import { KOption as ho, KSelect as ko } from "./src/select/index.mjs";
|
|
32
33
|
const e = function(t, r) {
|
|
33
34
|
if (e.installed)
|
|
34
35
|
return;
|
|
@@ -56,20 +57,21 @@ export {
|
|
|
56
57
|
s as Button,
|
|
57
58
|
j as Card,
|
|
58
59
|
S as Dialog,
|
|
59
|
-
|
|
60
|
+
To as Drag,
|
|
60
61
|
X as ECharts,
|
|
61
62
|
F as HotMap,
|
|
62
|
-
|
|
63
|
+
no as Icon,
|
|
63
64
|
$ as KCheckbox,
|
|
64
65
|
q as KCheckboxGroup,
|
|
65
66
|
A as KCollapse,
|
|
66
67
|
J as KCollapseItem,
|
|
67
68
|
fo as KCountUp,
|
|
68
69
|
mo as KGradientText,
|
|
69
|
-
|
|
70
|
+
co as KInput,
|
|
70
71
|
to as KNumberScroll,
|
|
71
|
-
|
|
72
|
-
|
|
72
|
+
ho as KOption,
|
|
73
|
+
ko as KSelect,
|
|
74
|
+
lo as KTable,
|
|
73
75
|
oo as KVideo,
|
|
74
76
|
K as Link,
|
|
75
77
|
g as Scroll,
|
|
@@ -80,9 +82,9 @@ export {
|
|
|
80
82
|
u as TextButton,
|
|
81
83
|
U as Timeline,
|
|
82
84
|
y as Toast,
|
|
83
|
-
|
|
85
|
+
so as Tooltip,
|
|
84
86
|
V as Tree,
|
|
85
|
-
|
|
87
|
+
b as Upload,
|
|
86
88
|
G as UploadFile,
|
|
87
89
|
H as Wheel,
|
|
88
90
|
x as default
|