sag_components 2.0.0-beta220 → 2.0.0-beta221
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 +64 -45
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +64 -45
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/data.d.ts +23 -0
- package/package.json +1 -1
|
@@ -203,6 +203,21 @@ export const supplierColumns: ({
|
|
|
203
203
|
tagConfig?: undefined;
|
|
204
204
|
rangeFilter?: undefined;
|
|
205
205
|
tooltipText?: undefined;
|
|
206
|
+
} | {
|
|
207
|
+
key: string;
|
|
208
|
+
title: string;
|
|
209
|
+
fieldType: string;
|
|
210
|
+
minWidth: string;
|
|
211
|
+
maxWidth: string;
|
|
212
|
+
filter?: undefined;
|
|
213
|
+
sort?: undefined;
|
|
214
|
+
checkBox?: undefined;
|
|
215
|
+
filterOptions?: undefined;
|
|
216
|
+
sortOptions?: undefined;
|
|
217
|
+
freeTextFilter?: undefined;
|
|
218
|
+
tagConfig?: undefined;
|
|
219
|
+
rangeFilter?: undefined;
|
|
220
|
+
tooltipText?: undefined;
|
|
206
221
|
} | {
|
|
207
222
|
key: string;
|
|
208
223
|
title: string;
|
|
@@ -352,6 +367,10 @@ export const supplierData: ({
|
|
|
352
367
|
Comments: string;
|
|
353
368
|
Trash: string;
|
|
354
369
|
IsHero: boolean;
|
|
370
|
+
Priority: {
|
|
371
|
+
show: boolean;
|
|
372
|
+
color: string;
|
|
373
|
+
};
|
|
355
374
|
Tags: string[];
|
|
356
375
|
} | {
|
|
357
376
|
Status: string;
|
|
@@ -369,6 +388,10 @@ export const supplierData: ({
|
|
|
369
388
|
Comments: string;
|
|
370
389
|
Trash: string;
|
|
371
390
|
IsHero: boolean;
|
|
391
|
+
Priority: {
|
|
392
|
+
show: boolean;
|
|
393
|
+
color: string;
|
|
394
|
+
};
|
|
372
395
|
Tags: string;
|
|
373
396
|
})[];
|
|
374
397
|
export const dropdownTableData: {
|