adverich-kun-ui 0.1.137 → 0.1.138
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,16 @@
|
|
|
1
|
+
import { createElementBlock as e, openBlock as o, toDisplayString as r } from "vue";
|
|
2
|
+
const l = { class: "text-xl w-fit text-nowrap" }, i = {
|
|
3
|
+
__name: "KunToolbarTitle",
|
|
4
|
+
props: {
|
|
5
|
+
title: {
|
|
6
|
+
type: String,
|
|
7
|
+
default: ""
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
setup(t) {
|
|
11
|
+
return (n, a) => (o(), e("p", l, r(t.title), 1));
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
i as default
|
|
16
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import
|
|
2
|
+
import r from "./components/KunAlert/src/components/KunAlert.vue.js";
|
|
3
3
|
import i from "./components/KunAppbar/src/components/KunAppbar.vue.js";
|
|
4
4
|
import t from "./components/KunAppbarTitle/src/components/KunAppbarTitle.vue.js";
|
|
5
5
|
import a from "./components/KunAutocomplete/src/components/KunAutocomplete.vue.js";
|
|
@@ -14,12 +14,12 @@ import c from "./components/KunCardText/src/components/KunCardText.vue.js";
|
|
|
14
14
|
import l from "./components/KunCardTitle/src/components/KunCardTitle.vue.js";
|
|
15
15
|
import $ from "./components/KunChip/src/components/KunChip.vue.js";
|
|
16
16
|
import d from "./components/KunCol/src/components/KunCol.vue.js";
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
17
|
+
import C from "./components/KunContainer/src/components/KunContainer.vue.js";
|
|
18
|
+
import L from "./components/KunCurrency/src/components/KunCurrency.vue.js";
|
|
19
|
+
import T from "./components/KunDialog/src/components/KunDialog.vue.js";
|
|
20
20
|
import b from "./components/KunDivider/src/components/KunDivider.vue.js";
|
|
21
|
-
import
|
|
22
|
-
import
|
|
21
|
+
import I from "./components/KunForm/src/components/KunForm.vue.js";
|
|
22
|
+
import A from "./components/KunIcon/src/components/KunIcon.vue.js";
|
|
23
23
|
import S from "./components/KunList/src/components/KunList.vue.js";
|
|
24
24
|
import F from "./components/KunListGroup/src/components/KunListGroup.vue.js";
|
|
25
25
|
import x from "./components/KunListImg/src/components/KunListImg.vue.js";
|
|
@@ -42,9 +42,10 @@ import E from "./components/KunSwitch/src/components/KunSwitch.vue.js";
|
|
|
42
42
|
import H from "./components/KunTable/src/components/KunTable.vue.js";
|
|
43
43
|
import J from "./components/KunTextField/src/components/KunTextField.vue.js";
|
|
44
44
|
import O from "./components/KunToolbar/src/components/KunToolbar.vue.js";
|
|
45
|
-
import P from "./components/
|
|
45
|
+
import P from "./components/KunToolbar/src/components/KunToolbarTitle.vue.js";
|
|
46
|
+
import Q from "./components/KunTooltip/src/components/KunTooltip.vue.js";
|
|
46
47
|
const n = {
|
|
47
|
-
KunAlert:
|
|
48
|
+
KunAlert: r,
|
|
48
49
|
KunAppbar: i,
|
|
49
50
|
KunAppbarTitle: t,
|
|
50
51
|
KunAutocomplete: a,
|
|
@@ -60,12 +61,12 @@ const n = {
|
|
|
60
61
|
KunCardTitle: l,
|
|
61
62
|
KunChip: $,
|
|
62
63
|
KunCol: d,
|
|
63
|
-
KunContainer:
|
|
64
|
-
KunCurrency:
|
|
65
|
-
KunDialog:
|
|
64
|
+
KunContainer: C,
|
|
65
|
+
KunCurrency: L,
|
|
66
|
+
KunDialog: T,
|
|
66
67
|
KunDivider: b,
|
|
67
|
-
KunForm:
|
|
68
|
-
KunIcon:
|
|
68
|
+
KunForm: I,
|
|
69
|
+
KunIcon: A,
|
|
69
70
|
KunList: S,
|
|
70
71
|
KunListGroup: F,
|
|
71
72
|
KunListImg: x,
|
|
@@ -87,14 +88,15 @@ const n = {
|
|
|
87
88
|
KunTable: H,
|
|
88
89
|
KunTextField: J,
|
|
89
90
|
KunToolbar: O,
|
|
90
|
-
|
|
91
|
+
KunToolbarTitle: P,
|
|
92
|
+
KunTooltip: Q
|
|
91
93
|
};
|
|
92
|
-
function
|
|
94
|
+
function zm(o) {
|
|
93
95
|
for (const m in n)
|
|
94
|
-
|
|
96
|
+
o.component(m, n[m]);
|
|
95
97
|
}
|
|
96
98
|
export {
|
|
97
|
-
|
|
99
|
+
r as KunAlert,
|
|
98
100
|
i as KunAppbar,
|
|
99
101
|
t as KunAppbarTitle,
|
|
100
102
|
a as KunAutocomplete,
|
|
@@ -109,12 +111,12 @@ export {
|
|
|
109
111
|
l as KunCardTitle,
|
|
110
112
|
$ as KunChip,
|
|
111
113
|
d as KunCol,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
114
|
+
C as KunContainer,
|
|
115
|
+
L as KunCurrency,
|
|
116
|
+
T as KunDialog,
|
|
115
117
|
b as KunDivider,
|
|
116
|
-
|
|
117
|
-
|
|
118
|
+
I as KunForm,
|
|
119
|
+
A as KunIcon,
|
|
118
120
|
S as KunList,
|
|
119
121
|
F as KunListGroup,
|
|
120
122
|
x as KunListImg,
|
|
@@ -136,6 +138,7 @@ export {
|
|
|
136
138
|
H as KunTable,
|
|
137
139
|
J as KunTextField,
|
|
138
140
|
O as KunToolbar,
|
|
139
|
-
P as
|
|
140
|
-
|
|
141
|
+
P as KunToolbarTitle,
|
|
142
|
+
Q as KunTooltip,
|
|
143
|
+
zm as install
|
|
141
144
|
};
|