yc-vep-ui 0.0.19 → 0.0.21
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/element-plus.d.ts +1 -0
- package/dist/element-plus.es.js +1 -0
- package/dist/element-plus.umd.js +1 -0
- package/dist/entry.d.ts +3 -0
- package/dist/icons-vue.es.js +1 -0
- package/dist/icons-vue.umd.js +1 -0
- package/dist/icons.d.ts +1 -0
- package/dist/vep-ui.es.js +389 -711
- package/dist/vep-ui.umd.js +1 -1
- package/dist/yc-vep-ui.css +166 -1
- package/package.json +15 -2
- package/dist/components/Chart/Bar.vue.d.ts +0 -3
- package/dist/components/Chart/Pie.vue.d.ts +0 -3
- package/dist/components/Chart/Series.vue.d.ts +0 -9
- package/dist/components/Chart/index.d.ts +0 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'element-plus'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "element-plus";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,t){typeof exports==`object`&&typeof module<`u`?t():typeof define==`function`&&define.amd?define([],t):(e=typeof globalThis<`u`?globalThis:e||self,t())})(this,function(){Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=require(`element-plus`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})})});
|
package/dist/entry.d.ts
CHANGED
|
@@ -9,6 +9,9 @@ import { default as UiInfiniteScroll } from './components/InfiniteScroll/index.v
|
|
|
9
9
|
import { default as UiDescriptions } from './components/Descriptions/index.vue';
|
|
10
10
|
import { default as UiDialog } from './components/Dialog/index.vue';
|
|
11
11
|
export { UiCard, UiTable, UiFilter, UiForm, UiEditor, UiTree, UiInfiniteScroll, UiDescriptions, UiDialog, };
|
|
12
|
+
export type * from './components/type';
|
|
13
|
+
export type { IProp } from './components/type';
|
|
14
|
+
export type * from 'element-plus';
|
|
12
15
|
declare const _default: {
|
|
13
16
|
install(app: App): void;
|
|
14
17
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@element-plus/icons-vue";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,t){typeof exports==`object`&&typeof module<`u`?t():typeof define==`function`&&define.amd?define([],t):(e=typeof globalThis<`u`?globalThis:e||self,t())})(this,function(){Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=require(`@element-plus/icons-vue`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})})});
|
package/dist/icons.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@element-plus/icons-vue'
|