@leaflink/stash 51.7.0 → 51.9.0
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/Filters.vue.d.ts +20 -7
- package/dist/ListView.vue.d.ts +26 -7
- package/dist/Select.js +199 -189
- package/dist/Select.js.map +1 -1
- package/dist/Select.vue.d.ts +70 -9
- package/dist/components.css +1 -1
- package/package.json +1 -1
package/dist/Filters.vue.d.ts
CHANGED
|
@@ -1763,15 +1763,28 @@ menuPlacement: Placement;
|
|
|
1763
1763
|
enableTeleport: boolean;
|
|
1764
1764
|
teleportTo: string | HTMLElement;
|
|
1765
1765
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1766
|
-
$slots: {
|
|
1767
|
-
selected
|
|
1766
|
+
$slots: Readonly<{
|
|
1767
|
+
selected(props: {
|
|
1768
1768
|
option: any;
|
|
1769
|
-
|
|
1770
|
-
|
|
1769
|
+
onRemove: () => void;
|
|
1770
|
+
chipSelectedClass: string;
|
|
1771
|
+
}): unknown;
|
|
1772
|
+
option(props: {
|
|
1771
1773
|
option: any;
|
|
1772
|
-
}):
|
|
1773
|
-
|
|
1774
|
-
hint
|
|
1774
|
+
}): unknown;
|
|
1775
|
+
'no-options'(): unknown;
|
|
1776
|
+
hint(): unknown;
|
|
1777
|
+
}> & {
|
|
1778
|
+
selected(props: {
|
|
1779
|
+
option: any;
|
|
1780
|
+
onRemove: () => void;
|
|
1781
|
+
chipSelectedClass: string;
|
|
1782
|
+
}): unknown;
|
|
1783
|
+
option(props: {
|
|
1784
|
+
option: any;
|
|
1785
|
+
}): unknown;
|
|
1786
|
+
'no-options'(): unknown;
|
|
1787
|
+
hint(): unknown;
|
|
1775
1788
|
};
|
|
1776
1789
|
});
|
|
1777
1790
|
DatePicker: {
|
package/dist/ListView.vue.d.ts
CHANGED
|
@@ -3027,15 +3027,34 @@ menuPlacement: Placement;
|
|
|
3027
3027
|
enableTeleport: boolean;
|
|
3028
3028
|
teleportTo: string | HTMLElement;
|
|
3029
3029
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3030
|
-
$slots: {
|
|
3031
|
-
selected
|
|
3030
|
+
$slots: Readonly<{
|
|
3031
|
+
selected(props: {
|
|
3032
3032
|
option: any;
|
|
3033
|
-
|
|
3034
|
-
|
|
3033
|
+
onRemove: () => void; /**
|
|
3034
|
+
* Helps determine if the list is filtered or not when there is an incomplete
|
|
3035
|
+
* result list, such as when isServerSide is true.
|
|
3036
|
+
*/
|
|
3037
|
+
chipSelectedClass: string;
|
|
3038
|
+
}): unknown;
|
|
3039
|
+
option(props: {
|
|
3035
3040
|
option: any;
|
|
3036
|
-
}):
|
|
3037
|
-
|
|
3038
|
-
hint
|
|
3041
|
+
}): unknown;
|
|
3042
|
+
'no-options'(): unknown;
|
|
3043
|
+
hint(): unknown;
|
|
3044
|
+
}> & {
|
|
3045
|
+
selected(props: {
|
|
3046
|
+
option: any;
|
|
3047
|
+
onRemove: () => void; /**
|
|
3048
|
+
* Helps determine if the list is filtered or not when there is an incomplete
|
|
3049
|
+
* result list, such as when isServerSide is true.
|
|
3050
|
+
*/
|
|
3051
|
+
chipSelectedClass: string;
|
|
3052
|
+
}): unknown;
|
|
3053
|
+
option(props: {
|
|
3054
|
+
option: any;
|
|
3055
|
+
}): unknown;
|
|
3056
|
+
'no-options'(): unknown;
|
|
3057
|
+
hint(): unknown;
|
|
3039
3058
|
};
|
|
3040
3059
|
});
|
|
3041
3060
|
DatePicker: {
|