@isettingkit/business-rules 2.1.27 → 2.2.0

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;
@@ -208,23 +206,6 @@ declare interface IBusinessRuleView_2 {
208
206
  onDelete?: () => void;
209
207
  }
210
208
 
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
209
  export declare interface ICheckpickerField {
229
210
  label?: string;
230
211
  name: string;
@@ -237,8 +218,6 @@ export declare interface ICheckpickerField {
237
218
  invalid?: boolean;
238
219
  }
239
220
 
240
- declare type ICheckpickerSize = (typeof sizes)[number];
241
-
242
221
  export declare type IClientLabel = string;
243
222
 
244
223
  export declare interface IDragAndDropBoxes {
@@ -463,8 +442,6 @@ export declare const RulesForm: (props: IRulesForm) => JSX.Element;
463
442
 
464
443
  export declare const SendButton: (props: IButton) => JSX.Element;
465
444
 
466
- declare const sizes: readonly ["wide", "compact"];
467
-
468
445
  export declare const sortDisplayDataSampleSwitchPlaces: (props: IRevertSortedData) => {
469
446
  businessRuleId?: string;
470
447
  conditionDataType?: ValueDataType[keyof ValueDataType];