bge-ui 1.4.0 → 1.4.2
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 +2 -1
- package/dist/index.js +476 -402
- package/dist/style.css +26 -0
- package/dist/switch/index.vue.d.ts +47 -0
- package/package.json +1 -1
- package/src/checkbox/index.vue +18 -3
- package/src/index.ts +5 -2
- package/src/radio/index.vue +9 -1
- package/src/switch/index.vue +80 -0
package/dist/index.d.ts
CHANGED
|
@@ -15,8 +15,9 @@ 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
|
+
import UiSwitch from "./switch/index.vue";
|
|
18
19
|
export * from './icons/index.ts';
|
|
19
|
-
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption, UiDatePicker };
|
|
20
|
+
export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption, UiDatePicker, UiSwitch };
|
|
20
21
|
declare const _default: {
|
|
21
22
|
install(app: App): void;
|
|
22
23
|
};
|