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.
- package/dist/index.esm.js +84 -32
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +84 -32
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/TableBody.styles.d.ts +1 -0
- package/dist/types/components/Table/data.d.ts +17 -0
- package/dist/types/icons/HeroIcon.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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: {
|