sag_components 2.0.0-beta22 → 2.0.0-beta23
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/types/icons/ArrowDownIcon.d.ts +6 -0
- package/dist/types/icons/ArrowDropDownIcon.d.ts +6 -0
- package/dist/types/icons/ArrowSelectIcon.d.ts +6 -0
- package/dist/types/icons/ArrowUpIcon.d.ts +6 -0
- package/dist/types/icons/AttachedIcon.d.ts +6 -0
- package/dist/types/icons/BellIcon.d.ts +6 -0
- package/dist/types/icons/ButtonArrowRight.d.ts +5 -0
- package/dist/types/icons/Calendar.d.ts +2 -0
- package/dist/types/icons/CalendarIcon.d.ts +6 -0
- package/dist/types/icons/CalendarInOpen.d.ts +2 -0
- package/dist/types/icons/CheckBoxButtonCheckedIcon.d.ts +7 -0
- package/dist/types/icons/CheckBoxCheckedIcon.d.ts +7 -0
- package/dist/types/icons/CheckBoxNotCheckedIcon.d.ts +7 -0
- package/dist/types/icons/ChervronLeftIcon.d.ts +2 -0
- package/dist/types/icons/ChervronRightIcon.d.ts +2 -0
- package/dist/types/icons/ChevronLeftIcon.d.ts +4 -0
- package/dist/types/icons/ChevronRightIcon.d.ts +4 -0
- package/dist/types/icons/ClockIcon.d.ts +6 -0
- package/dist/types/icons/CloseIcon.d.ts +6 -0
- package/dist/types/icons/CloseXIcon.d.ts +6 -0
- package/dist/types/icons/ComboBoxArrowDownIcon.d.ts +7 -0
- package/dist/types/icons/ComboBoxArrowUpIcon.d.ts +7 -0
- package/dist/types/icons/DocumentIcon.d.ts +6 -0
- package/dist/types/icons/DownloadIcon.d.ts +6 -0
- package/dist/types/icons/ErrorIcon.d.ts +6 -0
- package/dist/types/icons/ExitIcon.d.ts +7 -0
- package/dist/types/icons/ExportIcon.d.ts +7 -0
- package/dist/types/icons/EyeIcon.d.ts +7 -0
- package/dist/types/icons/FileIcon.d.ts +6 -0
- package/dist/types/icons/FilterIcon.d.ts +6 -0
- package/dist/types/icons/FlyIcon.d.ts +7 -0
- package/dist/types/icons/FoodLionChartIcon.d.ts +2 -0
- package/dist/types/icons/FoodLionIcon.d.ts +6 -0
- package/dist/types/icons/FoodLionNewIcon.d.ts +5 -0
- package/dist/types/icons/GiantFoodChartIcon.d.ts +2 -0
- package/dist/types/icons/GiantFoodIcon.d.ts +7 -0
- package/dist/types/icons/GiantFoodIcon_new.d.ts +7 -0
- package/dist/types/icons/HannafordChartIcon.d.ts +2 -0
- package/dist/types/icons/HannafordIcon.d.ts +6 -0
- package/dist/types/icons/HannafordIcon_new.d.ts +6 -0
- package/dist/types/icons/InfoIcon.d.ts +7 -0
- package/dist/types/icons/LampIcon.d.ts +6 -0
- package/dist/types/icons/LegendLineIcon.d.ts +6 -0
- package/dist/types/icons/LegendUnionIcon.d.ts +6 -0
- package/dist/types/icons/MaintenanceIcon.d.ts +7 -0
- package/dist/types/icons/MenuItemClosedIcon.d.ts +7 -0
- package/dist/types/icons/MenuItemOpenIcon.d.ts +7 -0
- package/dist/types/icons/MenuItemRightIcon.d.ts +7 -0
- package/dist/types/icons/MenuItemUpIcon.d.ts +7 -0
- package/dist/types/icons/NoDataFoundIcon.d.ts +12 -0
- package/dist/types/icons/OptionsIcon.d.ts +6 -0
- package/dist/types/icons/ReselectIcon.d.ts +6 -0
- package/dist/types/icons/SearchIcon.d.ts +6 -0
- package/dist/types/icons/ShoppingCartIcon.d.ts +6 -0
- package/dist/types/icons/ShoutIcon.d.ts +6 -0
- package/dist/types/icons/SortIcon.d.ts +7 -0
- package/dist/types/icons/SpotlightProductIcon.d.ts +7 -0
- package/dist/types/icons/StopAndShopChartIcon.d.ts +2 -0
- package/dist/types/icons/StopAndShopIcon.d.ts +7 -0
- package/dist/types/icons/StopAndShopNewIcon.d.ts +6 -0
- package/dist/types/icons/SucceededIcon.d.ts +6 -0
- package/dist/types/icons/TheGiantCompanyChartIcon.d.ts +2 -0
- package/dist/types/icons/TheGiantCompanyIcon.d.ts +5 -0
- package/dist/types/icons/TheGiantCompanyNewIcon.d.ts +6 -0
- package/dist/types/reactTestApp/App.d.ts +2 -0
- package/dist/types/reactTestApp/index.d.ts +1 -0
- package/dist/types/reactTestApp/vite.config.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function CheckBoxButtonCheckedIcon({ clicked, width, height, color, }: {
|
|
2
|
+
clicked: any;
|
|
3
|
+
width?: string | undefined;
|
|
4
|
+
height?: string | undefined;
|
|
5
|
+
color?: string | undefined;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default CheckBoxButtonCheckedIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function CheckBoxNotCheckedIcon({ clicked, width, height, color }: {
|
|
2
|
+
clicked: any;
|
|
3
|
+
width?: string | undefined;
|
|
4
|
+
height?: string | undefined;
|
|
5
|
+
color?: string | undefined;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default CheckBoxNotCheckedIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function ComboBoxArrowDownIcon({ clicked, width, height, color, }: {
|
|
2
|
+
clicked: any;
|
|
3
|
+
width?: string | undefined;
|
|
4
|
+
height?: string | undefined;
|
|
5
|
+
color?: string | undefined;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default ComboBoxArrowDownIcon;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export function NoDataFoundIcon({ width, height }: {
|
|
2
|
+
width?: string | undefined;
|
|
3
|
+
height?: string | undefined;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export namespace NoDataFoundIcon {
|
|
6
|
+
namespace propTypes {
|
|
7
|
+
const height: PropTypes.Requireable<string>;
|
|
8
|
+
const width: PropTypes.Requireable<string>;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export default NoDataFoundIcon;
|
|
12
|
+
import PropTypes from "prop-types";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function SortIcon({ width, height, fillUpperArrow, fillLowerArrow }: {
|
|
2
|
+
width?: string | undefined;
|
|
3
|
+
height?: string | undefined;
|
|
4
|
+
fillUpperArrow?: string | undefined;
|
|
5
|
+
fillLowerArrow?: string | undefined;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SortIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|