sag_components 2.0.0-beta22 → 2.0.0-beta24

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.
Files changed (72) hide show
  1. package/dist/index.esm.js +159 -150
  2. package/dist/index.esm.js.map +1 -1
  3. package/dist/index.js +159 -150
  4. package/dist/index.js.map +1 -1
  5. package/dist/types/icons/ArrowDownIcon.d.ts +6 -0
  6. package/dist/types/icons/ArrowDropDownIcon.d.ts +6 -0
  7. package/dist/types/icons/ArrowSelectIcon.d.ts +6 -0
  8. package/dist/types/icons/ArrowUpIcon.d.ts +6 -0
  9. package/dist/types/icons/AttachedIcon.d.ts +6 -0
  10. package/dist/types/icons/BellIcon.d.ts +6 -0
  11. package/dist/types/icons/ButtonArrowRight.d.ts +5 -0
  12. package/dist/types/icons/Calendar.d.ts +2 -0
  13. package/dist/types/icons/CalendarIcon.d.ts +6 -0
  14. package/dist/types/icons/CalendarInOpen.d.ts +2 -0
  15. package/dist/types/icons/CheckBoxButtonCheckedIcon.d.ts +7 -0
  16. package/dist/types/icons/CheckBoxCheckedIcon.d.ts +7 -0
  17. package/dist/types/icons/CheckBoxNotCheckedIcon.d.ts +7 -0
  18. package/dist/types/icons/ChervronLeftIcon.d.ts +2 -0
  19. package/dist/types/icons/ChervronRightIcon.d.ts +2 -0
  20. package/dist/types/icons/ChevronLeftIcon.d.ts +4 -0
  21. package/dist/types/icons/ChevronRightIcon.d.ts +4 -0
  22. package/dist/types/icons/ClockIcon.d.ts +6 -0
  23. package/dist/types/icons/CloseIcon.d.ts +6 -0
  24. package/dist/types/icons/CloseXIcon.d.ts +6 -0
  25. package/dist/types/icons/ComboBoxArrowDownIcon.d.ts +7 -0
  26. package/dist/types/icons/ComboBoxArrowUpIcon.d.ts +7 -0
  27. package/dist/types/icons/DocumentIcon.d.ts +6 -0
  28. package/dist/types/icons/DownloadIcon.d.ts +6 -0
  29. package/dist/types/icons/ErrorIcon.d.ts +6 -0
  30. package/dist/types/icons/ExitIcon.d.ts +7 -0
  31. package/dist/types/icons/ExportIcon.d.ts +7 -0
  32. package/dist/types/icons/EyeIcon.d.ts +7 -0
  33. package/dist/types/icons/FileIcon.d.ts +6 -0
  34. package/dist/types/icons/FilterIcon.d.ts +6 -0
  35. package/dist/types/icons/FlyIcon.d.ts +7 -0
  36. package/dist/types/icons/FoodLionChartIcon.d.ts +2 -0
  37. package/dist/types/icons/FoodLionIcon.d.ts +6 -0
  38. package/dist/types/icons/FoodLionNewIcon.d.ts +5 -0
  39. package/dist/types/icons/GiantFoodChartIcon.d.ts +2 -0
  40. package/dist/types/icons/GiantFoodIcon.d.ts +7 -0
  41. package/dist/types/icons/GiantFoodIcon_new.d.ts +7 -0
  42. package/dist/types/icons/HannafordChartIcon.d.ts +2 -0
  43. package/dist/types/icons/HannafordIcon.d.ts +6 -0
  44. package/dist/types/icons/HannafordIcon_new.d.ts +6 -0
  45. package/dist/types/icons/InfoIcon.d.ts +7 -0
  46. package/dist/types/icons/LampIcon.d.ts +6 -0
  47. package/dist/types/icons/LegendLineIcon.d.ts +6 -0
  48. package/dist/types/icons/LegendUnionIcon.d.ts +6 -0
  49. package/dist/types/icons/MaintenanceIcon.d.ts +7 -0
  50. package/dist/types/icons/MenuItemClosedIcon.d.ts +7 -0
  51. package/dist/types/icons/MenuItemOpenIcon.d.ts +7 -0
  52. package/dist/types/icons/MenuItemRightIcon.d.ts +7 -0
  53. package/dist/types/icons/MenuItemUpIcon.d.ts +7 -0
  54. package/dist/types/icons/NoDataFoundIcon.d.ts +12 -0
  55. package/dist/types/icons/OptionsIcon.d.ts +6 -0
  56. package/dist/types/icons/ReselectIcon.d.ts +6 -0
  57. package/dist/types/icons/SearchIcon.d.ts +6 -0
  58. package/dist/types/icons/ShoppingCartIcon.d.ts +6 -0
  59. package/dist/types/icons/ShoutIcon.d.ts +6 -0
  60. package/dist/types/icons/SortIcon.d.ts +7 -0
  61. package/dist/types/icons/SpotlightProductIcon.d.ts +7 -0
  62. package/dist/types/icons/StopAndShopChartIcon.d.ts +2 -0
  63. package/dist/types/icons/StopAndShopIcon.d.ts +7 -0
  64. package/dist/types/icons/StopAndShopNewIcon.d.ts +6 -0
  65. package/dist/types/icons/SucceededIcon.d.ts +6 -0
  66. package/dist/types/icons/TheGiantCompanyChartIcon.d.ts +2 -0
  67. package/dist/types/icons/TheGiantCompanyIcon.d.ts +5 -0
  68. package/dist/types/icons/TheGiantCompanyNewIcon.d.ts +6 -0
  69. package/dist/types/utils/IconsHandler.d.ts +1 -1
  70. package/package.json +2 -1
  71. package/dist/types/utils/ComponentFactory.d.ts +0 -4
  72. package/dist/types/utils/regex/OnlyEnglishLetters.regex.d.ts +0 -1
@@ -0,0 +1,6 @@
1
+ export function ArrowDownIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ArrowDownIcon;
@@ -0,0 +1,6 @@
1
+ export function ArrowDropDownIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ArrowDropDownIcon;
@@ -0,0 +1,6 @@
1
+ export function ArrowSelectIcon({ width, height, color, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ArrowSelectIcon;
@@ -0,0 +1,6 @@
1
+ export function ArrowUpIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ArrowUpIcon;
@@ -0,0 +1,6 @@
1
+ export function AttachedIcon({ width, height, fill }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default AttachedIcon;
@@ -0,0 +1,6 @@
1
+ export function BellIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default BellIcon;
@@ -0,0 +1,5 @@
1
+ export function ButtonArrowRight({ width, height }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export default ButtonArrowRight;
@@ -0,0 +1,2 @@
1
+ export function Calendar(): import("react/jsx-runtime").JSX.Element;
2
+ export default Calendar;
@@ -0,0 +1,6 @@
1
+ export function CalendarIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default CalendarIcon;
@@ -0,0 +1,2 @@
1
+ export function CalendarInOpen(): import("react/jsx-runtime").JSX.Element;
2
+ export default CalendarInOpen;
@@ -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 CheckBoxCheckedIcon({ 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 CheckBoxCheckedIcon;
@@ -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,2 @@
1
+ export function ChervronLeftIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default ChervronLeftIcon;
@@ -0,0 +1,2 @@
1
+ export function ChervronRightIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default ChervronRightIcon;
@@ -0,0 +1,4 @@
1
+ export function ChevronLeftIcon({ disabled, }: {
2
+ disabled?: boolean | undefined;
3
+ }): import("react/jsx-runtime").JSX.Element;
4
+ export default ChevronLeftIcon;
@@ -0,0 +1,4 @@
1
+ export function ChevronRightIcon({ disabled, }: {
2
+ disabled?: boolean | undefined;
3
+ }): import("react/jsx-runtime").JSX.Element;
4
+ export default ChevronRightIcon;
@@ -0,0 +1,6 @@
1
+ export function ClockIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ClockIcon;
@@ -0,0 +1,6 @@
1
+ export function CloseIcon({ width, height, fill, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default CloseIcon;
@@ -0,0 +1,6 @@
1
+ export function CloseXIcon({ width, height, fill, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default CloseXIcon;
@@ -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,7 @@
1
+ export function ComboBoxArrowUpIcon({ 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 ComboBoxArrowUpIcon;
@@ -0,0 +1,6 @@
1
+ export function DocumentIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default DocumentIcon;
@@ -0,0 +1,6 @@
1
+ export function DownloadIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default DownloadIcon;
@@ -0,0 +1,6 @@
1
+ export function ErrorIcon({ color, width, height }: {
2
+ color?: string | undefined;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ErrorIcon;
@@ -0,0 +1,7 @@
1
+ export function ExitIcon({ 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 ExitIcon;
@@ -0,0 +1,7 @@
1
+ export function ExportIcon({ 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 ExportIcon;
@@ -0,0 +1,7 @@
1
+ export function EyeIcon({ 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 EyeIcon;
@@ -0,0 +1,6 @@
1
+ export function FileIcon({ width, height, fill }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default FileIcon;
@@ -0,0 +1,6 @@
1
+ export function FilterIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default FilterIcon;
@@ -0,0 +1,7 @@
1
+ export function FlyIcon({ 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 FlyIcon;
@@ -0,0 +1,2 @@
1
+ export function FoodLionChartIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default FoodLionChartIcon;
@@ -0,0 +1,6 @@
1
+ export function FoodLionIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default FoodLionIcon;
@@ -0,0 +1,5 @@
1
+ export function FoodLionNewIcon({ width, height }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export default FoodLionNewIcon;
@@ -0,0 +1,2 @@
1
+ export function GiantFoodChartIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default GiantFoodChartIcon;
@@ -0,0 +1,7 @@
1
+ export function GiantFoodIcon({ clicked, width, height, viewBox }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ viewBox?: string | undefined;
6
+ }): import("react/jsx-runtime").JSX.Element;
7
+ export default GiantFoodIcon;
@@ -0,0 +1,7 @@
1
+ export function GiantFoodNewIcon({ clicked, width, height, viewBox, }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ viewBox?: string | undefined;
6
+ }): import("react/jsx-runtime").JSX.Element;
7
+ export default GiantFoodNewIcon;
@@ -0,0 +1,2 @@
1
+ export function HannafordChartIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default HannafordChartIcon;
@@ -0,0 +1,6 @@
1
+ export function HannafordIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default HannafordIcon;
@@ -0,0 +1,6 @@
1
+ export function HannafordNewIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default HannafordNewIcon;
@@ -0,0 +1,7 @@
1
+ export function InfoIcon({ clicked, color, width, height, }: {
2
+ clicked: any;
3
+ color?: string | undefined;
4
+ width?: string | undefined;
5
+ height?: string | undefined;
6
+ }): import("react/jsx-runtime").JSX.Element;
7
+ export default InfoIcon;
@@ -0,0 +1,6 @@
1
+ export function LampIcon({ width, height, fill, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default LampIcon;
@@ -0,0 +1,6 @@
1
+ export function LegendLineIcon({ width, height, color, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default LegendLineIcon;
@@ -0,0 +1,6 @@
1
+ export function LegendUnionIcon({ width, height, color, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default LegendUnionIcon;
@@ -0,0 +1,7 @@
1
+ export function MaintenanceIcon({ 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 MaintenanceIcon;
@@ -0,0 +1,7 @@
1
+ export function MenuItemClosedIcon({ 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 MenuItemClosedIcon;
@@ -0,0 +1,7 @@
1
+ export function MenuItemOpenIcon({ 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 MenuItemOpenIcon;
@@ -0,0 +1,7 @@
1
+ export function MenuItemRightIcon({ 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 MenuItemRightIcon;
@@ -0,0 +1,7 @@
1
+ export function MenuItemUpIcon({ 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 MenuItemUpIcon;
@@ -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,6 @@
1
+ export function OptionsIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default OptionsIcon;
@@ -0,0 +1,6 @@
1
+ export function ReselectIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ReselectIcon;
@@ -0,0 +1,6 @@
1
+ export function SearchIcon({ width, height, color }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ color?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default SearchIcon;
@@ -0,0 +1,6 @@
1
+ export function ShoppingCartIcon({ clicked, width, height }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ShoppingCartIcon;
@@ -0,0 +1,6 @@
1
+ export function ShoutIcon({ width, height, fill }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ fill?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default ShoutIcon;
@@ -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,7 @@
1
+ export function SpotlightProductIcon({ 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 SpotlightProductIcon;
@@ -0,0 +1,2 @@
1
+ export function StopAndShopChartIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default StopAndShopChartIcon;
@@ -0,0 +1,7 @@
1
+ export function StopAndShopIcon({ clicked, width, height, viewBox }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ viewBox?: string | undefined;
6
+ }): import("react/jsx-runtime").JSX.Element;
7
+ export default StopAndShopIcon;
@@ -0,0 +1,6 @@
1
+ export function StopAndShopNewIcon({ width, height, viewBox }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ viewBox?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default StopAndShopNewIcon;
@@ -0,0 +1,6 @@
1
+ export function SucceededIcon({ color, width, height }: {
2
+ color?: string | undefined;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default SucceededIcon;
@@ -0,0 +1,2 @@
1
+ export function TheGiantCompanyChartIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default TheGiantCompanyChartIcon;
@@ -0,0 +1,5 @@
1
+ export function TheGiantCompanyIcon({ width, height, }: {
2
+ width?: string | undefined;
3
+ height?: string | undefined;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export default TheGiantCompanyIcon;
@@ -0,0 +1,6 @@
1
+ export function TheGiantCompanyIcon({ clicked, width, height, }: {
2
+ clicked: any;
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default TheGiantCompanyIcon;
@@ -1 +1 @@
1
- export function getIcon(icon: any, iconHeight: any, iconWidth: any, color: any, disabled: any, pointer: any, callBackOnClick: any): "" | import("react/jsx-runtime").JSX.Element;
1
+ export function getIcon(icon: any, iconHeight: any, iconWidth: any, color: any, disabled: any, pointer: any, callBackOnClick: any): import("react/jsx-runtime").JSX.Element | "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta22",
3
+ "version": "2.0.0-beta24",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -30,6 +30,7 @@
30
30
  "@rollup/plugin-babel": "^6.0.3",
31
31
  "@rollup/plugin-commonjs": "^24.0.0",
32
32
  "@rollup/plugin-node-resolve": "^13.0.6",
33
+ "@rollup/plugin-typescript": "^12.1.2",
33
34
  "@storybook/addon-designs": "^7.0.9",
34
35
  "@storybook/addon-essentials": "^7.4.6",
35
36
  "@storybook/addon-interactions": "^7.4.6",
@@ -1,4 +0,0 @@
1
- export default Factory;
2
- declare function Factory({ componentName }: {
3
- componentName: any;
4
- }): any;
@@ -1 +0,0 @@
1
- export const OnlyEnglishLettersRegex: RegExp;