bge-ui 1.2.5 → 1.2.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.
- package/dist/index.d.ts +3 -1
- package/dist/index.js +992 -865
- package/dist/select/index.vue.d.ts +37 -0
- package/dist/select/option.vue.d.ts +15 -0
- package/dist/style.css +82 -2
- package/dist/tooltip/index.vue.d.ts +1 -16
- package/package.json +1 -1
- package/src/form/index.vue +2 -1
- package/src/index.ts +8 -3
- package/src/input/index.vue +0 -2
- package/src/select/index.vue +185 -2
- package/src/select/option.vue +40 -0
- package/src/slider/index.vue +1 -1
- package/src/tooltip/index.vue +1 -12
- package/src/tooltip/usePopper.ts +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -12,8 +12,10 @@ import UiDialog from "./dialog/index.vue";
|
|
|
12
12
|
import UiCheckbox from "./checkBox/index.vue";
|
|
13
13
|
import UiRadio from "./radio/index.vue";
|
|
14
14
|
import UiSlider from "./slider/index.vue";
|
|
15
|
+
import UiSelect from "./select/index.vue";
|
|
16
|
+
import UiOption from "./select/option.vue";
|
|
15
17
|
export * from './icons/index.ts';
|
|
16
|
-
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider };
|
|
18
|
+
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption };
|
|
17
19
|
declare const _default: {
|
|
18
20
|
install(app: App): void;
|
|
19
21
|
};
|