@dao-style/core 1.11.2-beta.3 → 1.11.2-beta.5
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/components/select/option.vue.d.ts +2 -1
- package/dist/components/select/options.d.ts +7 -0
- package/dist/components/select/select.d.ts +3 -0
- package/dist/components/select/select.vue.d.ts +1 -0
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +3802 -3758
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
1
2
|
import type { ScrollableHTMLElement } from './types';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
3
4
|
value: {
|
|
@@ -13,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
14
|
default: boolean;
|
|
14
15
|
};
|
|
15
16
|
}, {
|
|
16
|
-
optionRef:
|
|
17
|
+
optionRef: Ref<ScrollableHTMLElement | null>;
|
|
17
18
|
visible: import("vue").ComputedRef<boolean>;
|
|
18
19
|
labelValue: import("vue").ComputedRef<string | number | boolean | undefined>;
|
|
19
20
|
isSelected: import("vue").ComputedRef<boolean>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { VNode } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
}>[] | undefined, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update-options"[], "update-options", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
5
|
+
"onUpdate-options"?: ((...args: any[]) => any) | undefined;
|
|
6
|
+
}, {}>;
|
|
7
|
+
export default _default;
|
|
@@ -612,6 +612,7 @@ declare const DaoSelect: {
|
|
|
612
612
|
};
|
|
613
613
|
handleCheckAll: (checked: boolean) => void;
|
|
614
614
|
resetCurrentVal: () => void;
|
|
615
|
+
handleUpdateOptions: (data: OptionValue[]) => void;
|
|
615
616
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], string, {
|
|
616
617
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
617
618
|
modelValue: string | number | boolean | unknown[];
|
|
@@ -1156,6 +1157,7 @@ declare const DaoSelect: {
|
|
|
1156
1157
|
};
|
|
1157
1158
|
handleCheckAll: (checked: boolean) => void;
|
|
1158
1159
|
resetCurrentVal: () => void;
|
|
1160
|
+
handleUpdateOptions: (data: OptionValue[]) => void;
|
|
1159
1161
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
1160
1162
|
__isFragment?: undefined;
|
|
1161
1163
|
__isTeleport?: undefined;
|
|
@@ -1668,6 +1670,7 @@ declare const DaoSelect: {
|
|
|
1668
1670
|
};
|
|
1669
1671
|
handleCheckAll: (checked: boolean) => void;
|
|
1670
1672
|
resetCurrentVal: () => void;
|
|
1673
|
+
handleUpdateOptions: (data: OptionValue[]) => void;
|
|
1671
1674
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], "open" | "close" | "change" | "update:modelValue" | "search-change", {
|
|
1672
1675
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
1673
1676
|
modelValue: string | number | boolean | unknown[];
|
|
@@ -502,6 +502,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
502
502
|
};
|
|
503
503
|
handleCheckAll: (checked: boolean) => void;
|
|
504
504
|
resetCurrentVal: () => void;
|
|
505
|
+
handleUpdateOptions: (data: DaoSelectOption['value'][]) => void;
|
|
505
506
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], "open" | "close" | "change" | "update:modelValue" | "search-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
506
507
|
modelValue: {
|
|
507
508
|
type: (StringConstructor | BooleanConstructor | ArrayConstructor | NumberConstructor)[];
|