@bscomp/ep-ui 0.0.8 → 0.0.9
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/lib/components.d.ts +4 -0
- package/lib/ep-ui.js +2587 -2466
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +15 -15
- package/lib/form/index.d.ts +3 -12
- package/lib/form/src/index.vue.d.ts +2 -7
- package/lib/form-dialog/index.d.ts +150 -0
- package/lib/form-dialog/src/index.vue.d.ts +88 -0
- package/lib/index.d.ts +2 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
package/lib/components.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import EPInput from "./input/src/index.vue"
|
|
|
5
5
|
import EPDatePicker from "./date-picker/src/index.vue"
|
|
6
6
|
import EPRadio from "./radio/src/index.vue"
|
|
7
7
|
import EPCheckbox from "./checkbox/src/index.vue"
|
|
8
|
+
import EPDialog from "./form-dialog/src/index.vue"
|
|
9
|
+
import EPForm from "./form/src/index.vue"
|
|
8
10
|
|
|
9
11
|
declare module "vue" {
|
|
10
12
|
export interface GlobalComponents {
|
|
@@ -15,5 +17,7 @@ declare module "vue" {
|
|
|
15
17
|
EPDatePicker: typeof EPDatePicker
|
|
16
18
|
EPRadio: typeof EPRadio
|
|
17
19
|
EPCheckbox: typeof EPCheckbox
|
|
20
|
+
EPDialog: typeof EPDialog
|
|
21
|
+
EPForm: typeof EPForm
|
|
18
22
|
}
|
|
19
23
|
}
|