@isettingkit/business-rules 2.1.27 → 2.2.1

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.
@@ -32,8 +32,6 @@ export declare const BusinessRuleView: (props: IBusinessRuleView) => JSX.Element
32
32
 
33
33
  export declare const BusinessRuleViewNew: (props: IBusinessRuleView_2) => JSX.Element;
34
34
 
35
- export declare const Checkpicker: (props: ICheckpicker) => JSX.Element;
36
-
37
35
  export declare const convertRangeToString: (value: {
38
36
  from: number;
39
37
  to: number;
@@ -69,8 +67,6 @@ export declare const Filter: (props: IFilter) => JSX.Element;
69
67
 
70
68
  export declare const filterByGroup: <T>(obj: Record<string, T[]>, pred: (c: T) => boolean) => Record<string, T[]>;
71
69
 
72
- export declare const FilterModal: (props: IFilterModal) => ReactPortal;
73
-
74
70
  export declare const flatFromGroups: <T>(obj: Record<string, T[]>) => T[];
75
71
 
76
72
  export declare const formatDecisionForBackend: (props: {
@@ -208,23 +204,6 @@ declare interface IBusinessRuleView_2 {
208
204
  onDelete?: () => void;
209
205
  }
210
206
 
211
- declare interface ICheckpicker {
212
- disabled?: boolean;
213
- fullwidth?: boolean;
214
- id?: string;
215
- invalid?: boolean;
216
- label?: string;
217
- maxItems?: number;
218
- message?: string;
219
- name: string;
220
- onChange: (name: string, values: string) => void;
221
- options: IOption[];
222
- placeholder?: string;
223
- required?: boolean;
224
- size?: ICheckpickerSize;
225
- values: string;
226
- }
227
-
228
207
  export declare interface ICheckpickerField {
229
208
  label?: string;
230
209
  name: string;
@@ -237,8 +216,6 @@ export declare interface ICheckpickerField {
237
216
  invalid?: boolean;
238
217
  }
239
218
 
240
- declare type ICheckpickerSize = (typeof sizes)[number];
241
-
242
219
  export declare type IClientLabel = string;
243
220
 
244
221
  export declare interface IDragAndDropBoxes {
@@ -307,17 +284,6 @@ export declare interface IFilter {
307
284
  titleFilter: string;
308
285
  }
309
286
 
310
- export declare interface IFilterModal {
311
- actionButtonLabel: string;
312
- cancelButtonLabel: string;
313
- children: React.ReactNode;
314
- loading?: boolean;
315
- onClick: () => void;
316
- onCloseModal: () => void;
317
- portalId: string;
318
- title: string;
319
- }
320
-
321
287
  export declare interface IFilterTag {
322
288
  icon: JSX_2.Element;
323
289
  label: string;
@@ -463,8 +429,6 @@ export declare const RulesForm: (props: IRulesForm) => JSX.Element;
463
429
 
464
430
  export declare const SendButton: (props: IButton) => JSX.Element;
465
431
 
466
- declare const sizes: readonly ["wide", "compact"];
467
-
468
432
  export declare const sortDisplayDataSampleSwitchPlaces: (props: IRevertSortedData) => {
469
433
  businessRuleId?: string;
470
434
  conditionDataType?: ValueDataType[keyof ValueDataType];