magneto365.ui 2.68.1-beta → 2.69.0-beta
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/assets/3c9ef5949d25901a.svg +11 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +160 -147
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Popover/Popover.interface.d.ts +2 -0
- package/dist/cjs/types/constants/icons.constants.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +160 -147
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Popover/Popover.interface.d.ts +2 -0
- package/dist/esm/types/constants/icons.constants.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
declare type PositionY = 'top' | 'bottom';
|
|
2
3
|
declare type PositionX = 'left' | 'center' | 'right';
|
|
3
4
|
export interface IPopover {
|
|
@@ -30,5 +31,6 @@ export interface IPopover {
|
|
|
30
31
|
*/
|
|
31
32
|
staticContent?: boolean;
|
|
32
33
|
className?: string;
|
|
34
|
+
style?: React.CSSProperties;
|
|
33
35
|
}
|
|
34
36
|
export {};
|
|
@@ -189,3 +189,4 @@ export { default as X } from '../assets/X.svg';
|
|
|
189
189
|
export { default as Youtube } from '../assets/Youtube.svg';
|
|
190
190
|
export { default as YoutubeSolid } from '../assets/YoutubeSolid.svg';
|
|
191
191
|
export { default as FilterIcon } from '../assets/filter-search.svg';
|
|
192
|
+
export { default as SortIcon } from '../assets/SortIcon.svg';
|