bge-ui 1.7.5 → 1.7.7

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,45 @@
1
+ declare const _default: __VLS_WithTemplateSlots<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
+ default?(_: {}): any;
39
+ }>;
40
+ export default _default;
41
+ type __VLS_WithTemplateSlots<T, S> = T & {
42
+ new (): {
43
+ $slots: S;
44
+ };
45
+ };
package/dist/index.d.ts CHANGED
@@ -16,8 +16,9 @@ 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
  };