sag_components 2.0.0-beta223 → 2.0.0-beta224

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.
@@ -30,3 +30,5 @@ export const DropdownIcon: import("styled-components/dist/types").IStyledCompone
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
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;
33
+ export const EditableCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
34
+ export const PencilButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
@@ -236,6 +236,21 @@ export const supplierColumns: ({
236
236
  tagConfig?: undefined;
237
237
  rangeFilter?: undefined;
238
238
  tooltipText?: undefined;
239
+ } | {
240
+ key: string;
241
+ title: string;
242
+ fieldType: string;
243
+ minWidth: string;
244
+ maxWidth: string;
245
+ filter: boolean;
246
+ sort: boolean;
247
+ checkBox?: undefined;
248
+ filterOptions?: undefined;
249
+ sortOptions?: undefined;
250
+ freeTextFilter?: undefined;
251
+ tagConfig?: undefined;
252
+ rangeFilter?: undefined;
253
+ tooltipText?: undefined;
239
254
  } | {
240
255
  key: string;
241
256
  title: string;
@@ -357,6 +372,7 @@ export const supplierData: ({
357
372
  EventID: string;
358
373
  WeekNumber: string;
359
374
  Period: string;
375
+ PromoPrice: number;
360
376
  EventAttribute: string;
361
377
  EventType: string;
362
378
  EventSubType: string;
@@ -393,6 +409,29 @@ export const supplierData: ({
393
409
  color: string;
394
410
  };
395
411
  Tags: string;
412
+ PromoPrice?: undefined;
413
+ } | {
414
+ Status: string;
415
+ Supplier: string;
416
+ EventID: string;
417
+ WeekNumber: string;
418
+ Period: string;
419
+ PromoPrice: number;
420
+ EventAttribute: string;
421
+ EventType: string;
422
+ EventSubType: string;
423
+ Component: string;
424
+ NegotiatedBrand: string;
425
+ ProductGroup: string;
426
+ HUB: string;
427
+ Comments: any;
428
+ Trash: string;
429
+ IsHero: boolean;
430
+ Priority: {
431
+ show: boolean;
432
+ color: string;
433
+ };
434
+ Tags: string;
396
435
  })[];
397
436
  export const dropdownTableData: {
398
437
  id: number;
@@ -0,0 +1,6 @@
1
+ export function PencilIcon({ width, height, fill }: {
2
+ width?: string;
3
+ height?: string;
4
+ fill?: string;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default PencilIcon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta223",
3
+ "version": "2.0.0-beta224",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",