bge-ui 1.7.4 → 1.7.6
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/drawer/index.vue.d.ts +38 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +416 -339
- package/dist/style.css +46 -0
- package/package.json +1 -1
- package/src/drawer/index.vue +132 -0
- package/src/index.ts +6 -3
- /package/dist/{checkbox → checkBox}/index.vue.d.ts +0 -0
- /package/src/{checkbox → checkBox}/index.vue +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
customClass: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
teleported: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
visible: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
close: (...args: any[]) => void;
|
|
16
|
+
"update:visible": (...args: any[]) => void;
|
|
17
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
customClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
teleported: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
visible: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}>> & {
|
|
31
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
customClass: string;
|
|
35
|
+
teleported: boolean;
|
|
36
|
+
visible: boolean;
|
|
37
|
+
}, {}>;
|
|
38
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -9,15 +9,16 @@ import UiTabPane from "./tabs/tab-pane.vue";
|
|
|
9
9
|
import UiTooltip from "./tooltip/index.vue";
|
|
10
10
|
import UiMessage from "./message/method.ts";
|
|
11
11
|
import UiDialog from "./dialog/index.vue";
|
|
12
|
-
import UiCheckbox from "./
|
|
12
|
+
import UiCheckbox from "./checkBox/index.vue";
|
|
13
13
|
import UiRadio from "./radio/index.vue";
|
|
14
14
|
import UiSlider from "./slider/index.vue";
|
|
15
15
|
import UiSelect from "./select/index.vue";
|
|
16
16
|
import UiOption from "./select/option.vue";
|
|
17
17
|
import UiDatePicker from "./datePicker/index.vue";
|
|
18
18
|
import UiSwitch from "./switch/index.vue";
|
|
19
|
+
import UiDrawer from "./drawer/index.vue";
|
|
19
20
|
export * from './icons/index.ts';
|
|
20
|
-
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption, UiDatePicker, UiSwitch };
|
|
21
|
+
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption, UiDatePicker, UiSwitch, UiDrawer };
|
|
21
22
|
declare const _default: {
|
|
22
23
|
install(app: App): void;
|
|
23
24
|
};
|