vue-devui 1.6.1 → 1.6.3
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/auto-complete/index.es.js +4 -4
- package/auto-complete/index.umd.js +2 -2
- package/checkbox/index.es.js +4 -4
- package/checkbox/index.umd.js +9 -9
- package/date-picker-pro/index.es.js +4 -4
- package/date-picker-pro/index.umd.js +2 -2
- package/form/index.es.js +4 -4
- package/form/index.umd.js +9 -9
- package/fullscreen/index.es.js +167 -0
- package/fullscreen/index.umd.js +1 -0
- package/fullscreen/package.json +8 -0
- package/fullscreen/style.css +1 -0
- package/global.d.ts +1 -0
- package/input/index.es.js +4 -4
- package/input/index.umd.js +1 -1
- package/input-number/index.es.js +4 -4
- package/input-number/index.umd.js +10 -10
- package/mention/index.es.js +4 -4
- package/mention/index.umd.js +2 -2
- package/nuxt/components/Fullscreen.js +3 -0
- package/nuxt/components/fullscreenProps.js +3 -0
- package/package.json +1 -1
- package/pagination/index.es.js +4 -4
- package/pagination/index.umd.js +1 -1
- package/radio/index.es.js +4 -4
- package/radio/index.umd.js +2 -2
- package/search/index.es.js +4 -4
- package/search/index.umd.js +10 -10
- package/select/index.es.js +4 -4
- package/select/index.umd.js +15 -15
- package/switch/index.es.js +4 -4
- package/switch/index.umd.js +14 -14
- package/table/index.es.js +4 -4
- package/table/index.umd.js +1 -1
- package/textarea/index.es.js +4 -4
- package/textarea/index.umd.js +2 -2
- package/time-picker/index.es.js +4 -4
- package/time-picker/index.umd.js +1 -1
- package/time-select/index.es.js +4 -4
- package/time-select/index.umd.js +1 -1
- package/tree/index.es.js +4 -4
- package/tree/index.umd.js +1 -1
- package/types/form/src/components/form-item/form-item-types.d.ts +3 -3
- package/types/form/src/form-types.d.ts +3 -3
- package/types/fullscreen/index.d.ts +1 -0
- package/vue-devui.es.js +6 -5
- package/vue-devui.umd.js +4 -4
package/select/index.es.js
CHANGED
|
@@ -5533,8 +5533,8 @@ const formProps = {
|
|
|
5533
5533
|
default: "reposition"
|
|
5534
5534
|
}
|
|
5535
5535
|
};
|
|
5536
|
-
const FORM_TOKEN =
|
|
5537
|
-
const STYLE_TOKEN =
|
|
5536
|
+
const FORM_TOKEN = "dForm";
|
|
5537
|
+
const STYLE_TOKEN = "dFormStyle";
|
|
5538
5538
|
function lockScroll() {
|
|
5539
5539
|
if (document.documentElement.scrollHeight > document.documentElement.clientHeight) {
|
|
5540
5540
|
const scrollTop = document.documentElement.scrollTop;
|
|
@@ -5724,8 +5724,8 @@ const formItemProps = {
|
|
|
5724
5724
|
default: ""
|
|
5725
5725
|
}
|
|
5726
5726
|
};
|
|
5727
|
-
const FORM_ITEM_TOKEN =
|
|
5728
|
-
const LABEL_DATA =
|
|
5727
|
+
const FORM_ITEM_TOKEN = "dFormItem";
|
|
5728
|
+
const LABEL_DATA = "dFormLabelData";
|
|
5729
5729
|
const fixedOverlayProps = {
|
|
5730
5730
|
modelValue: {
|
|
5731
5731
|
type: Boolean,
|