@useinsider/ab-components 0.0.108 → 0.0.109
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/ab-components.cjs.js +1 -1
- package/dist/ab-components.cjs.js.map +1 -1
- package/dist/ab-components.css +1 -1
- package/dist/ab-components.es.js +6 -4
- package/dist/ab-components.es.js.map +1 -1
- package/dist/ab-components.iife.js +1 -1
- package/dist/ab-components.iife.js.map +1 -1
- package/dist/ab-components.umd.js +1 -1
- package/dist/ab-components.umd.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -167,6 +167,7 @@ value: string;
|
|
|
167
167
|
"onItem-added"?: ((item: MenuItem) => any) | undefined;
|
|
168
168
|
"onSelect-item"?: ((item: MenuItem) => any) | undefined;
|
|
169
169
|
}>, {
|
|
170
|
+
position: "bottom" | "top";
|
|
170
171
|
modelValue: string;
|
|
171
172
|
menuHeight: number;
|
|
172
173
|
addable: boolean;
|
|
@@ -896,6 +897,7 @@ declare interface InDropdownMenuProps {
|
|
|
896
897
|
width?: number;
|
|
897
898
|
mode?: 'primary' | 'smart';
|
|
898
899
|
anchorSelector?: string;
|
|
900
|
+
position?: 'bottom' | 'top';
|
|
899
901
|
}
|
|
900
902
|
|
|
901
903
|
export declare const InInfoBox: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|