sag_components 2.0.0-beta220 → 2.0.0-beta222

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.
@@ -1,4 +1,4 @@
1
- export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, withMarginBottom, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, orderBy, elementType, }: {
1
+ export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, height, withMarginBottom, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, orderBy, elementType, }: {
2
2
  label: any;
3
3
  labelEmptyValue: any;
4
4
  options: any;
@@ -7,6 +7,7 @@ export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValu
7
7
  required: any;
8
8
  disabled: any;
9
9
  width: any;
10
+ height: any;
10
11
  withMarginBottom?: boolean;
11
12
  error: any;
12
13
  errorMessage: any;
@@ -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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta220",
3
+ "version": "2.0.0-beta222",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",