adverich-kun-ui 0.1.47 → 0.1.49
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/adverich-kun-ui.css +1 -1
- package/dist/components/KunCard/src/components/KunCard.vue.js +49 -50
- package/dist/components/KunCard/src/composables/kunCardProps.js +43 -0
- package/dist/components/KunCard/src/composables/useCard.js +16 -0
- package/dist/components/KunCardActions/src/components/KunCardActions.vue.js +22 -0
- package/dist/components/KunCardActions/src/composables/kunCardActionsProps.js +35 -0
- package/dist/components/KunCardActions/src/composables/useCardActions.js +19 -0
- package/dist/components/KunCardItem/src/components/KunCardItem.vue.js +22 -0
- package/dist/components/KunCardItem/src/composables/kunCardItemProps.js +21 -0
- package/dist/components/KunCardItem/src/composables/useCardItem.js +17 -0
- package/dist/components/KunCardSubtitle/src/components/KunCardSubtitle.vue.js +24 -0
- package/dist/components/KunCardSubtitle/src/composables/kunCardSubtitleProps.js +25 -0
- package/dist/components/KunCardSubtitle/src/composables/useCardSubtitle.js +15 -0
- package/dist/components/KunCardText/src/components/KunCardText.vue.js +21 -56
- package/dist/components/KunCardText/src/composables/kunCardTextProps.js +25 -0
- package/dist/components/KunCardText/src/composables/useCardText.js +15 -0
- package/dist/components/KunCardTitle/src/components/KunCardTitle.vue.js +61 -0
- package/dist/components/KunCardTitle/src/composables/kunCardTitleProps.js +58 -0
- package/dist/components/KunCardTitle/src/composables/useCardTitle.js +25 -0
- package/dist/components/KunCol/src/components/KunCol.vue.js +53 -0
- package/dist/components/KunContainer/src/components/KunContainer.vue.js +41 -0
- package/dist/components/KunForm/src/components/KunForm.vue.js +62 -0
- package/dist/components/KunLoaderCircular/src/components/KunLoaderCircular.vue.js +42 -0
- package/dist/components/KunRow/src/components/KunRow.vue.js +57 -0
- package/dist/components/KunSlider/src/components/KunSlider.vue.js +52 -0
- package/dist/components/KunSlider/src/composables/useSlider.js +17 -0
- package/dist/components/KunSlider/src/composables/useSliderProps.js +49 -0
- package/dist/components/KunTextField/src/components/KunTextField.vue.js +79 -65
- package/dist/components/KunTextField/src/composables/KunTextFieldProps.js +19 -7
- package/dist/index.js +77 -47
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,58 +1,88 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import
|
|
2
|
+
import o from "./components/KunAlert/src/components/KunAlert.vue.js";
|
|
3
3
|
import i from "./components/KunAppbar/src/components/KunAppbar.vue.js";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
4
|
+
import a from "./components/KunAppbarTitle/src/components/KunAppbarTitle.vue.js";
|
|
5
|
+
import t from "./components/KunAutocomplete/src/components/KunAutocomplete.vue.js";
|
|
6
6
|
import u from "./components/KunBtn/src/components/KunBtn.vue.js";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import c from "./components/
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
|
|
19
|
-
|
|
7
|
+
import f from "./components/KunBudge/src/components/KunBudge.vue.js";
|
|
8
|
+
import s from "./components/KunCard/src/components/KunCard.vue.js";
|
|
9
|
+
import K from "./components/KunCardActions/src/components/KunCardActions.vue.js";
|
|
10
|
+
import _ from "./components/KunCardItem/src/components/KunCardItem.vue.js";
|
|
11
|
+
import c from "./components/KunCardSubtitle/src/components/KunCardSubtitle.vue.js";
|
|
12
|
+
import p from "./components/KunCardText/src/components/KunCardText.vue.js";
|
|
13
|
+
import e from "./components/KunCardTitle/src/components/KunCardTitle.vue.js";
|
|
14
|
+
import d from "./components/KunCol/src/components/KunCol.vue.js";
|
|
15
|
+
import l from "./components/KunContainer/src/components/KunContainer.vue.js";
|
|
16
|
+
import $ from "./components/KunCurrency/src/components/KunCurrency.vue.js";
|
|
17
|
+
import C from "./components/KunDivider/src/components/KunDivider.vue.js";
|
|
18
|
+
import T from "./components/KunForm/src/components/KunForm.vue.js";
|
|
19
|
+
import b from "./components/KunIcon/src/components/KunIcon.vue.js";
|
|
20
|
+
import A from "./components/KunList/src/components/KunList.vue.js";
|
|
21
|
+
import S from "./components/KunLoaderCircular/src/components/KunLoaderCircular.vue.js";
|
|
22
|
+
import x from "./components/KunRow/src/components/KunRow.vue.js";
|
|
23
|
+
import w from "./components/KunSlider/src/components/KunSlider.vue.js";
|
|
24
|
+
import F from "./components/KunSpacer/src/components/KunSpacer.vue.js";
|
|
25
|
+
import I from "./components/KunSwitch/src/components/KunSwitch.vue.js";
|
|
26
|
+
import h from "./components/KunTextField/src/components/KunTextField.vue.js";
|
|
27
|
+
import B from "./components/KunToolbar/src/components/KunToolbar.vue.js";
|
|
28
|
+
const n = {
|
|
29
|
+
KunAlert: o,
|
|
20
30
|
KunAppbar: i,
|
|
21
|
-
KunAppbarTitle:
|
|
22
|
-
KunAutocomplete:
|
|
31
|
+
KunAppbarTitle: a,
|
|
32
|
+
KunAutocomplete: t,
|
|
23
33
|
KunBtn: u,
|
|
24
|
-
KunBudge:
|
|
25
|
-
KunCard:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
KunBudge: f,
|
|
35
|
+
KunCard: s,
|
|
36
|
+
KunCardActions: K,
|
|
37
|
+
KunCardItem: _,
|
|
38
|
+
KunCardSubtitle: c,
|
|
39
|
+
KunCardText: p,
|
|
40
|
+
KunCardTitle: e,
|
|
41
|
+
KunCol: d,
|
|
42
|
+
KunContainer: l,
|
|
43
|
+
KunCurrency: $,
|
|
44
|
+
KunDivider: C,
|
|
45
|
+
KunForm: T,
|
|
46
|
+
KunIcon: b,
|
|
47
|
+
KunList: A,
|
|
48
|
+
KunLoaderCircular: S,
|
|
49
|
+
KunRow: x,
|
|
50
|
+
KunSlider: w,
|
|
51
|
+
KunSpacer: F,
|
|
52
|
+
KunSwitch: I,
|
|
53
|
+
KunTextField: h,
|
|
54
|
+
KunToolbar: B
|
|
35
55
|
};
|
|
36
|
-
function
|
|
37
|
-
for (const
|
|
38
|
-
|
|
56
|
+
function mr(m) {
|
|
57
|
+
for (const r in n)
|
|
58
|
+
m.component(r, n[r]);
|
|
39
59
|
}
|
|
40
60
|
export {
|
|
41
|
-
|
|
61
|
+
o as KunAlert,
|
|
42
62
|
i as KunAppbar,
|
|
43
|
-
|
|
44
|
-
|
|
63
|
+
a as KunAppbarTitle,
|
|
64
|
+
t as KunAutocomplete,
|
|
45
65
|
u as KunBtn,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
c as
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
66
|
+
f as KunBudge,
|
|
67
|
+
s as KunCard,
|
|
68
|
+
K as KunCardActions,
|
|
69
|
+
_ as KunCardItem,
|
|
70
|
+
c as KunCardSubtitle,
|
|
71
|
+
p as KunCardText,
|
|
72
|
+
e as KunCardTitle,
|
|
73
|
+
d as KunCol,
|
|
74
|
+
l as KunContainer,
|
|
75
|
+
$ as KunCurrency,
|
|
76
|
+
C as KunDivider,
|
|
77
|
+
T as KunForm,
|
|
78
|
+
b as KunIcon,
|
|
79
|
+
A as KunList,
|
|
80
|
+
S as KunLoaderCircular,
|
|
81
|
+
x as KunRow,
|
|
82
|
+
w as KunSlider,
|
|
83
|
+
F as KunSpacer,
|
|
84
|
+
I as KunSwitch,
|
|
85
|
+
h as KunTextField,
|
|
86
|
+
B as KunToolbar,
|
|
87
|
+
mr as install
|
|
58
88
|
};
|