forstok-ui-lib 8.9.4 → 8.9.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/index.d.ts +1 -1
- package/dist/index.js +19 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/export-download.svg +11 -6
- package/src/components/dropdown/index.tsx +374 -185
- package/src/components/dropdown/styles.ts +101 -60
package/dist/index.d.ts
CHANGED
|
@@ -919,7 +919,7 @@ declare const RangeContainer: styled_components_dist_types.IStyledComponentBase<
|
|
|
919
919
|
$mode?: "white";
|
|
920
920
|
}>> & string;
|
|
921
921
|
|
|
922
|
-
type TDropdownChild = Pick<TDropdown,
|
|
922
|
+
type TDropdownChild = Pick<TDropdown, "$internalWidth" | "$openPosition" | "$placement" | "$bottom" | "$top">;
|
|
923
923
|
declare const DropDownWrapper: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, TDropdownChild>> & string;
|
|
924
924
|
declare const DropDownOverlayWrapper: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
925
925
|
declare const DropDownControl: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|