vue-devui 1.5.12-hotfix.1 → 1.5.13
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 +139 -61
- package/auto-complete/index.umd.js +16 -16
- package/auto-complete/style.css +1 -1
- package/checkbox/index.es.js +115 -61
- package/checkbox/index.umd.js +15 -15
- package/checkbox/style.css +1 -1
- package/code-editor/index.es.js +5 -2
- package/code-editor/index.umd.js +6 -6
- package/code-review/index.es.js +12 -1
- package/code-review/index.umd.js +18 -18
- package/code-review/style.css +1 -1
- package/date-picker-pro/index.es.js +213 -109
- package/date-picker-pro/index.umd.js +19 -19
- package/date-picker-pro/style.css +1 -1
- package/editor-md/index.es.js +1 -1
- package/editor-md/index.umd.js +1 -1
- package/form/index.es.js +142 -64
- package/form/index.umd.js +14 -14
- package/form/style.css +1 -1
- package/image-preview/index.es.js +2 -6
- package/image-preview/index.umd.js +2 -2
- package/image-preview/style.css +1 -1
- package/input/index.es.js +207 -79
- package/input/index.umd.js +18 -18
- package/input/style.css +1 -1
- package/input-number/index.es.js +123 -46
- package/input-number/index.umd.js +20 -20
- package/input-number/style.css +1 -1
- package/mention/index.es.js +138 -60
- package/mention/index.umd.js +16 -16
- package/mention/style.css +1 -1
- package/nuxt/components/STYLE_TOKEN.js +3 -0
- package/nuxt/components/formControlProps.js +3 -0
- package/package.json +1 -1
- package/pagination/index.es.js +376 -161
- package/pagination/index.umd.js +19 -19
- package/pagination/style.css +1 -1
- package/progress/index.es.js +6 -6
- package/progress/index.umd.js +1 -1
- package/radio/index.es.js +115 -61
- package/radio/index.umd.js +16 -16
- package/radio/style.css +1 -1
- package/search/index.es.js +211 -83
- package/search/index.umd.js +19 -19
- package/search/style.css +1 -1
- package/select/index.es.js +358 -143
- package/select/index.umd.js +17 -17
- package/select/style.css +1 -1
- package/skeleton/index.es.js +1 -0
- package/skeleton/index.umd.js +2 -2
- package/steps/index.es.js +35 -11
- package/steps/index.umd.js +1 -1
- package/style.css +1 -1
- package/switch/index.es.js +115 -61
- package/switch/index.umd.js +14 -14
- package/switch/style.css +1 -1
- package/table/index.es.js +88 -34
- package/table/index.umd.js +15 -15
- package/table/style.css +1 -1
- package/textarea/index.es.js +141 -63
- package/textarea/index.umd.js +17 -17
- package/textarea/style.css +1 -1
- package/time-picker/index.es.js +159 -55
- package/time-picker/index.umd.js +11 -11
- package/time-picker/style.css +1 -1
- package/time-select/index.es.js +358 -143
- package/time-select/index.umd.js +22 -22
- package/time-select/style.css +1 -1
- package/tree/index.es.js +86 -32
- package/tree/index.umd.js +11 -11
- package/tree/style.css +1 -1
- package/types/auto-focus/index.d.ts +9 -0
- package/types/auto-focus/src/auto-focus-directive.d.ts +4 -0
- package/types/code-review/src/code-review-types.d.ts +6 -0
- package/types/code-review/src/code-review.d.ts +9 -0
- package/types/form/index.d.ts +1 -0
- package/types/form/src/components/form-control/use-form-control.d.ts +11 -2
- package/types/form/src/components/form-item/form-item-types.d.ts +10 -2
- package/types/form/src/components/form-item/form-item.d.ts +3 -3
- package/types/form/src/components/form-label/form-label.d.ts +1 -13
- package/types/form/src/components/form-label/use-form-label.d.ts +14 -2
- package/types/form/src/form-types.d.ts +11 -0
- package/types/form/src/form.d.ts +18 -0
- package/types/input/src/composables/use-input-event.d.ts +12 -2
- package/types/input/src/input-types.d.ts +8 -0
- package/types/input/src/input.d.ts +18 -0
- package/types/input-icon/src/input-icon.d.ts +18 -0
- package/types/list/index.d.ts +0 -1
- package/types/select/src/composables/use-select-menu-size.d.ts +5 -0
- package/types/select/src/select-types.d.ts +23 -4
- package/types/select/src/select.d.ts +19 -1
- package/types/select/src/use-select.d.ts +1 -1
- package/types/vue-devui.d.ts +2 -1
- package/vue-devui.es.js +415 -134
- package/vue-devui.umd.js +76 -76
|
@@ -16,6 +16,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
16
|
readonly type: import("vue").PropType<import("./select-types").SelectSize>;
|
|
17
17
|
readonly default: "";
|
|
18
18
|
};
|
|
19
|
+
readonly position: {
|
|
20
|
+
readonly type: import("vue").PropType<import("./select-types").Position[]>;
|
|
21
|
+
readonly default: () => string[];
|
|
22
|
+
};
|
|
19
23
|
readonly overview: {
|
|
20
24
|
readonly type: import("vue").PropType<"border" | "underlined">;
|
|
21
25
|
readonly default: "border";
|
|
@@ -88,7 +92,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
92
|
readonly type: NumberConstructor;
|
|
89
93
|
readonly default: 0;
|
|
90
94
|
};
|
|
91
|
-
|
|
95
|
+
readonly showEmptyWhenUnmatched: {
|
|
96
|
+
readonly type: BooleanConstructor;
|
|
97
|
+
readonly default: true;
|
|
98
|
+
};
|
|
99
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, "clear" | "blur" | "focus" | "update:modelValue" | "toggle-change" | "value-change" | "remove-tag" | "load-more", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
92
100
|
readonly modelValue: {
|
|
93
101
|
readonly type: import("vue").PropType<import("./select-types").ModelValue>;
|
|
94
102
|
readonly default: "";
|
|
@@ -105,6 +113,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
113
|
readonly type: import("vue").PropType<import("./select-types").SelectSize>;
|
|
106
114
|
readonly default: "";
|
|
107
115
|
};
|
|
116
|
+
readonly position: {
|
|
117
|
+
readonly type: import("vue").PropType<import("./select-types").Position[]>;
|
|
118
|
+
readonly default: () => string[];
|
|
119
|
+
};
|
|
108
120
|
readonly overview: {
|
|
109
121
|
readonly type: import("vue").PropType<"border" | "underlined">;
|
|
110
122
|
readonly default: "border";
|
|
@@ -177,8 +189,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
189
|
readonly type: NumberConstructor;
|
|
178
190
|
readonly default: 0;
|
|
179
191
|
};
|
|
192
|
+
readonly showEmptyWhenUnmatched: {
|
|
193
|
+
readonly type: BooleanConstructor;
|
|
194
|
+
readonly default: true;
|
|
195
|
+
};
|
|
180
196
|
}>>, {
|
|
181
197
|
readonly filter: import("./select-types").filterValue;
|
|
198
|
+
readonly position: import("./select-types").Position[];
|
|
182
199
|
readonly loading: boolean;
|
|
183
200
|
readonly disabled: boolean;
|
|
184
201
|
readonly multiple: boolean;
|
|
@@ -200,5 +217,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
200
217
|
readonly loadingText: string;
|
|
201
218
|
readonly onValueChange: (item: import("./select-types").OptionItem, index: number) => void;
|
|
202
219
|
readonly multipleLimit: number;
|
|
220
|
+
readonly showEmptyWhenUnmatched: boolean;
|
|
203
221
|
}>;
|
|
204
222
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import type { SetupContext } from 'vue';
|
|
3
3
|
import { SelectProps, UseSelectReturnType } from './select-types';
|
|
4
|
-
export default function useSelect(props: SelectProps, selectRef: Ref
|
|
4
|
+
export default function useSelect(props: SelectProps, selectRef: Ref, ctx: SetupContext, focus: () => void, blur: () => void, isSelectFocus: Ref<boolean>, t: (path: string) => unknown): UseSelectReturnType;
|
package/types/vue-devui.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ActionTimeline } from './action-timeline';
|
|
|
4
4
|
import { Alert } from './alert';
|
|
5
5
|
import { Anchor } from './anchor';
|
|
6
6
|
import { AutoComplete } from './auto-complete';
|
|
7
|
+
import { AutoFocus } from './auto-focus';
|
|
7
8
|
import { Avatar } from './avatar';
|
|
8
9
|
import { BackTop } from './back-top';
|
|
9
10
|
import { Badge } from './badge';
|
|
@@ -84,7 +85,7 @@ import { TreeSelect } from './tree-select';
|
|
|
84
85
|
import { Upload, fileDropDirective } from './upload';
|
|
85
86
|
import { VirtualList } from './virtual-list';
|
|
86
87
|
import './style/devui.scss';
|
|
87
|
-
export { Accordion, ActionTimeline, Alert, Anchor, AutoComplete, Avatar, BackTop, Badge, Breadcrumb, BreadcrumbItem, Button, ButtonGroup, Card, Carousel, CarouselItem, Cascader, Checkbox, CheckboxGroup, CheckboxButton, CodeEditor, CodeReview, Collapse, CollapseItem, ColorPicker, Comment, Countdown, DatePicker, StickSlider, DatePickerPro, DRangeDatePickerPro, DraggableDirective, DroppableDirective, SortableDirective, Drawer, DrawerService, Dropdown, DropdownMenu, DChart, EditableSelect, EditorMd, MdRender, Form, FormItem, FormOperation, Fullscreen, Gantt, GitGraph, Row, Col, Icon, IconGroup, ImagePreviewDirective, ImagePreviewService, Input, InputIcon, InputNumber, Layout, Content, Header, Footer, Aside, List, ListItem, LoadingService, LoadingDirective, Mention, Menu, SubMenu, MenuItem, Message, Modal, ModalHeader, ModalBody, ModalFooter, MultiAutoComplete, NavSprite, Notification, NotificationService, FlexibleOverlay, FixedOverlay, Pagination, Panel, PanelHeader, PanelBody, PanelFooter, Popover, Progress, QuadrantDiagram, Radio, RadioGroup, RadioButton, Rate, ReadTip, Result, RippleDirective, Search, Select, Option, OptionGroup, Skeleton, SkeletonItem, Slider, Splitter, SplitterPane, Statistic, Status, Steps, Step, StepsGuide, StepsGuideDirective, Sticky, Switch, Table, Column, Tabs, Tab, Tag, TagInput, Textarea, TimePicker, TimeSelect, Timeline, TimelineItem, Tooltip, Transfer, Tree, TreeSelect, Upload, fileDropDirective, VirtualList };
|
|
88
|
+
export { Accordion, ActionTimeline, Alert, Anchor, AutoComplete, AutoFocus, Avatar, BackTop, Badge, Breadcrumb, BreadcrumbItem, Button, ButtonGroup, Card, Carousel, CarouselItem, Cascader, Checkbox, CheckboxGroup, CheckboxButton, CodeEditor, CodeReview, Collapse, CollapseItem, ColorPicker, Comment, Countdown, DatePicker, StickSlider, DatePickerPro, DRangeDatePickerPro, DraggableDirective, DroppableDirective, SortableDirective, Drawer, DrawerService, Dropdown, DropdownMenu, DChart, EditableSelect, EditorMd, MdRender, Form, FormItem, FormOperation, Fullscreen, Gantt, GitGraph, Row, Col, Icon, IconGroup, ImagePreviewDirective, ImagePreviewService, Input, InputIcon, InputNumber, Layout, Content, Header, Footer, Aside, List, ListItem, LoadingService, LoadingDirective, Mention, Menu, SubMenu, MenuItem, Message, Modal, ModalHeader, ModalBody, ModalFooter, MultiAutoComplete, NavSprite, Notification, NotificationService, FlexibleOverlay, FixedOverlay, Pagination, Panel, PanelHeader, PanelBody, PanelFooter, Popover, Progress, QuadrantDiagram, Radio, RadioGroup, RadioButton, Rate, ReadTip, Result, RippleDirective, Search, Select, Option, OptionGroup, Skeleton, SkeletonItem, Slider, Splitter, SplitterPane, Statistic, Status, Steps, Step, StepsGuide, StepsGuideDirective, Sticky, Switch, Table, Column, Tabs, Tab, Tag, TagInput, Textarea, TimePicker, TimeSelect, Timeline, TimelineItem, Tooltip, Transfer, Tree, TreeSelect, Upload, fileDropDirective, VirtualList };
|
|
88
89
|
declare const _default: {
|
|
89
90
|
version: string;
|
|
90
91
|
install(app: App): void;
|