sag_components 2.0.0-beta333 → 2.0.0-beta335

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.
@@ -37,3 +37,6 @@ export const CheckboxInput: import("styled-components/dist/types").IStyledCompon
37
37
  export const HeroButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
38
38
  export const EditableCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
39
39
  export const PencilButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
40
+ export const NotAvailableIconButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
41
+ export const NotAvailableCellWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
42
+ export const NotAvailableText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -452,3 +452,12 @@ export const dropdownTableData: {
452
452
  Priority: string;
453
453
  Category: string;
454
454
  }[];
455
+ export const inputFieldsData: {
456
+ id: number;
457
+ Supplier: string;
458
+ Package: string;
459
+ Banner: string;
460
+ RedemptionCost: number;
461
+ RedemptionID: string;
462
+ UPCs: number;
463
+ }[];
@@ -1,6 +1,8 @@
1
- export function CalendarIcon({ clicked, width, height }: {
1
+ export function CalendarIcon({ clicked, width, height, fill, color }: {
2
2
  clicked: any;
3
3
  width?: string;
4
4
  height?: string;
5
+ fill?: string;
6
+ color: any;
5
7
  }): import("react/jsx-runtime").JSX.Element;
6
8
  export default CalendarIcon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta333",
3
+ "version": "2.0.0-beta335",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",