sag_components 2.0.0-beta218 → 2.0.0-beta219

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.
@@ -29,3 +29,4 @@ export const DropdownButton: import("styled-components/dist/types").IStyledCompo
29
29
  export const DropdownIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
30
30
  export const DropdownMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
31
31
  export const DropdownOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
32
+ export const HeroButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
@@ -302,6 +302,21 @@ export const supplierColumns: ({
302
302
  tagConfig?: undefined;
303
303
  rangeFilter?: undefined;
304
304
  tooltipText?: undefined;
305
+ } | {
306
+ key: string;
307
+ title: string;
308
+ filter: boolean;
309
+ sort: boolean;
310
+ checkBox: boolean;
311
+ fieldType: string;
312
+ minWidth: string;
313
+ maxWidth: string;
314
+ filterOptions: any[];
315
+ sortOptions: any[];
316
+ tooltipText: string[];
317
+ freeTextFilter?: undefined;
318
+ tagConfig?: undefined;
319
+ rangeFilter?: undefined;
305
320
  } | {
306
321
  key: string;
307
322
  title: string;
@@ -336,6 +351,7 @@ export const supplierData: ({
336
351
  HUB: string;
337
352
  Comments: string;
338
353
  Trash: string;
354
+ IsHero: boolean;
339
355
  Tags: string[];
340
356
  } | {
341
357
  Status: string;
@@ -352,6 +368,7 @@ export const supplierData: ({
352
368
  HUB: string;
353
369
  Comments: string;
354
370
  Trash: string;
371
+ IsHero: boolean;
355
372
  Tags: string;
356
373
  })[];
357
374
  export const dropdownTableData: {
@@ -0,0 +1,6 @@
1
+ export default HeroIcon;
2
+ declare function HeroIcon({ width, height, full }: {
3
+ width?: string;
4
+ height?: string;
5
+ full?: boolean;
6
+ }): 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-beta218",
3
+ "version": "2.0.0-beta219",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",