@namba_one/ui-kit-2 1.0.198 → 1.0.199
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/index.d.ts +15 -17
- package/dist/index.es.js +5817 -5799
- package/dist/index.umd.js +25 -25
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -77,9 +77,7 @@ close: () => any;
|
|
|
77
77
|
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
78
78
|
onClose?: (() => any) | undefined;
|
|
79
79
|
"onUpdate:isShowDropdown"?: ((value: boolean) => any) | undefined;
|
|
80
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
81
|
-
fixedElementRef: HTMLDivElement;
|
|
82
|
-
}, any>;
|
|
80
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
83
81
|
|
|
84
82
|
declare const __VLS_component_2: DefineComponent<TheImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TheImageProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
85
83
|
image: HTMLImageElement;
|
|
@@ -755,9 +753,7 @@ declare function __VLS_template_19(): {
|
|
|
755
753
|
};
|
|
756
754
|
}): any;
|
|
757
755
|
};
|
|
758
|
-
refs: {
|
|
759
|
-
fixedElementRef: HTMLDivElement;
|
|
760
|
-
};
|
|
756
|
+
refs: {};
|
|
761
757
|
rootEl: any;
|
|
762
758
|
};
|
|
763
759
|
|
|
@@ -2163,17 +2159,7 @@ export declare const Dropdown: __VLS_WithTemplateSlots_7<typeof __VLS_component_
|
|
|
2163
2159
|
|
|
2164
2160
|
export declare const DropdownElement: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2165
2161
|
|
|
2166
|
-
export declare type DropdownElementProps =
|
|
2167
|
-
isShowDropdown: boolean;
|
|
2168
|
-
verticalOffset?: number | string;
|
|
2169
|
-
horizontalOffset?: number | string;
|
|
2170
|
-
horizontalAlign?: 'left' | 'right' | 'center';
|
|
2171
|
-
verticalAlign?: 'top' | 'bottom' | 'center';
|
|
2172
|
-
isStretchToParent?: boolean;
|
|
2173
|
-
minWidth?: number | string;
|
|
2174
|
-
isCenterByParent?: boolean;
|
|
2175
|
-
isCloseOnScrollParent?: boolean;
|
|
2176
|
-
};
|
|
2162
|
+
export declare type DropdownElementProps = WrapperProps;
|
|
2177
2163
|
|
|
2178
2164
|
declare type DropdownElementProvider = () => void;
|
|
2179
2165
|
|
|
@@ -3608,4 +3594,16 @@ declare const weights: readonly ["regular", "medium", "semibold", "bold"];
|
|
|
3608
3594
|
|
|
3609
3595
|
declare const weights_2: TheTextProps['weight'][];
|
|
3610
3596
|
|
|
3597
|
+
declare type WrapperProps = {
|
|
3598
|
+
isShowDropdown: boolean;
|
|
3599
|
+
verticalOffset?: number | string;
|
|
3600
|
+
horizontalOffset?: number | string;
|
|
3601
|
+
horizontalAlign?: 'left' | 'right' | 'center';
|
|
3602
|
+
verticalAlign?: 'top' | 'bottom' | 'center';
|
|
3603
|
+
isStretchToParent?: boolean;
|
|
3604
|
+
minWidth?: number | string;
|
|
3605
|
+
isCenterByParent?: boolean;
|
|
3606
|
+
isCloseOnScrollParent?: boolean;
|
|
3607
|
+
};
|
|
3608
|
+
|
|
3611
3609
|
export { }
|