@opentiny/tiny-robot 0.2.0-alpha.5 → 0.2.0-alpha.6
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/action-group/index.js +69 -67
- package/dist/bubble/index.js +17 -16
- package/dist/dropdown-menu/index.js +34 -32
- package/dist/flow-layout-buttons/index.js +74 -71
- package/dist/index.d.ts +11 -11
- package/dist/style.css +1 -1
- package/dist/suggestion-pills/index.js +36 -35
- package/dist/suggestion-popover/index.js +66 -64
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -66,8 +66,8 @@ groupShowMoreTrigger: "click" | "hover";
|
|
|
66
66
|
popoverWidth: string | number;
|
|
67
67
|
popoverHeight: string | number;
|
|
68
68
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
popoverTriggerRef: HTMLDivElement;
|
|
70
|
+
popoverRef: HTMLDivElement;
|
|
71
71
|
}, HTMLDivElement>;
|
|
72
72
|
|
|
73
73
|
declare const __VLS_component_2: DefineComponent<DropdownMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -78,8 +78,8 @@ declare const __VLS_component_2: DefineComponent<DropdownMenuProps, {}, {}, {},
|
|
|
78
78
|
minWidth: string | number;
|
|
79
79
|
topOffset: string | number;
|
|
80
80
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
dropDownTriggerRef: HTMLDivElement;
|
|
82
|
+
dropdownMenuRef: HTMLDivElement;
|
|
83
83
|
}, HTMLDivElement>;
|
|
84
84
|
|
|
85
85
|
declare const __VLS_component_3: DefineComponent<PromptsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -797,7 +797,7 @@ declare const __VLS_component_7: DefineComponent<SuggestionPillsProps, {}, {}, {
|
|
|
797
797
|
}, string, PublicProps, Readonly<SuggestionPillsProps> & Readonly<{
|
|
798
798
|
"onItem-click"?: ((item: SuggestionPillItem_2<Record<string, unknown>>) => any) | undefined;
|
|
799
799
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
800
|
-
|
|
800
|
+
containerRef: HTMLDivElement;
|
|
801
801
|
}, HTMLDivElement>;
|
|
802
802
|
|
|
803
803
|
declare const __VLS_component_8: DefineComponent<SuggestionPillButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SuggestionPillButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
@@ -846,8 +846,8 @@ declare function __VLS_template_10(): {
|
|
|
846
846
|
attrs: Partial<{}>;
|
|
847
847
|
slots: Readonly<SuggestionPopoverSlots> & SuggestionPopoverSlots;
|
|
848
848
|
refs: {
|
|
849
|
-
|
|
850
|
-
|
|
849
|
+
popoverTriggerRef: HTMLDivElement;
|
|
850
|
+
popoverRef: HTMLDivElement;
|
|
851
851
|
};
|
|
852
852
|
rootEl: HTMLDivElement;
|
|
853
853
|
};
|
|
@@ -856,8 +856,8 @@ declare function __VLS_template_2(): {
|
|
|
856
856
|
attrs: Partial<{}>;
|
|
857
857
|
slots: Readonly<DropdownMenuSlots> & DropdownMenuSlots;
|
|
858
858
|
refs: {
|
|
859
|
-
|
|
860
|
-
|
|
859
|
+
dropDownTriggerRef: HTMLDivElement;
|
|
860
|
+
dropdownMenuRef: HTMLDivElement;
|
|
861
861
|
};
|
|
862
862
|
rootEl: HTMLDivElement;
|
|
863
863
|
};
|
|
@@ -1552,7 +1552,7 @@ declare function __VLS_template_7(): {
|
|
|
1552
1552
|
default?(_: {}): any;
|
|
1553
1553
|
};
|
|
1554
1554
|
refs: {
|
|
1555
|
-
|
|
1555
|
+
containerRef: HTMLDivElement;
|
|
1556
1556
|
};
|
|
1557
1557
|
rootEl: HTMLDivElement;
|
|
1558
1558
|
};
|
|
@@ -1830,7 +1830,7 @@ export { _default_13 as SuggestionPopover }
|
|
|
1830
1830
|
export { _default_13 as TrSuggestionPopover }
|
|
1831
1831
|
|
|
1832
1832
|
declare const _default_14: DefineComponent<BubbleListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BubbleListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1833
|
-
|
|
1833
|
+
scrollContainerRef: HTMLDivElement;
|
|
1834
1834
|
}, HTMLDivElement>;
|
|
1835
1835
|
|
|
1836
1836
|
declare const _default_15: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|