cc1-ui 1.0.3 → 1.0.4
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/cc1-ui.js
CHANGED
|
@@ -8,7 +8,7 @@ const VMask = () => defineAsyncComponent(() => import('./index-ycYY--mh.js'));
|
|
|
8
8
|
const VCircle = () => defineAsyncComponent(() => import('./index-ti4E-Nv5.js'));
|
|
9
9
|
const VIcon = () => defineAsyncComponent(() => import('./index-BGzY32VF.js'));
|
|
10
10
|
const VSelect = () => defineAsyncComponent(() => import('./index-ClZ7RWBn.js'));
|
|
11
|
-
const VSIcon = () => defineAsyncComponent(() => import('./index-
|
|
11
|
+
const VSIcon = () => defineAsyncComponent(() => import('./index-DMuy0jqo.js'));
|
|
12
12
|
const installDR = (fun, app) => {
|
|
13
13
|
fun().then((module) => module.install(app));
|
|
14
14
|
};
|
|
@@ -77,7 +77,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
77
77
|
getProps: () => {
|
|
78
78
|
Object.keys(conf.props).forEach((key) => {
|
|
79
79
|
if (!StrUtil.isNull(viconConf[key])) {
|
|
80
|
-
conf.props[key] = typeof viconConf[key] === "function" ? viconConf[key]() : viconConf[key];
|
|
80
|
+
conf.props[key] = typeof viconConf[key] === "function" ? viconConf[key](props, viconConf) : viconConf[key];
|
|
81
81
|
}
|
|
82
82
|
if (!StrUtil.isNull(props[key])) {
|
|
83
83
|
conf.props[key] = props[key];
|
package/dist/index.d.ts
CHANGED
|
@@ -12,14 +12,14 @@ export {}
|
|
|
12
12
|
/* prettier-ignore */
|
|
13
13
|
declare module 'vue' {
|
|
14
14
|
export interface GlobalComponents {
|
|
15
|
-
VButton:typeof import('./components/Button/index.vue')['default']
|
|
16
15
|
VCircle:typeof import('./components/Circle/index.vue')['default']
|
|
16
|
+
VButton:typeof import('./components/Button/index.vue')['default']
|
|
17
|
+
VMask:typeof import('./components/Mask/index.vue')['default']
|
|
18
|
+
VIcon:typeof import('./components/Icon/index.vue')['default']
|
|
17
19
|
VSIcon:typeof import('./components/SIcon/index.vue')['default']
|
|
18
|
-
VScale:typeof import('./components/Scale/index.vue')['default']
|
|
19
|
-
VSelect:typeof import('./components/Select/index.vue')['default']
|
|
20
20
|
VSwitch:typeof import('./components/Switch/index.vue')['default']
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
VSelect:typeof import('./components/Select/index.vue')['default']
|
|
22
|
+
VScale:typeof import('./components/Scale/index.vue')['default']
|
|
23
23
|
}
|
|
24
24
|
export interface ComponentCustomProperties {
|
|
25
25
|
}
|
package/dist/vconf.d.ts
CHANGED