@isettingkit/business-rules 1.0.23 → 1.0.25

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.
@@ -26,6 +26,10 @@ export declare const convertRangeToString: (value: {
26
26
  to: number;
27
27
  }) => string;
28
28
 
29
+ export declare const DragAndDropBoxes: (props: IDragAndDropBoxes) => JSX.Element;
30
+
31
+ export declare const DraggableList: (props: IDraggableList) => JSX.Element;
32
+
29
33
  export declare const DropdownMenu: (props: IDropdownMenu) => JSX.Element;
30
34
 
31
35
  export declare const DropdownMenuContainer: (props: IDropdownMenuContainer) => JSX.Element;
@@ -135,8 +139,31 @@ export declare interface ICheckpickerField {
135
139
  invalid?: boolean;
136
140
  }
137
141
 
142
+ export declare type IClientLabel = string;
143
+
144
+ export declare interface IDragAndDropBoxes {
145
+ group?: string;
146
+ left: IDragAndDropColumn;
147
+ right: IDragAndDropColumn;
148
+ }
149
+
150
+ export declare interface IDragAndDropColumn {
151
+ highlightFirst?: boolean;
152
+ items: IClientLabel[];
153
+ legend: string;
154
+ }
155
+
156
+ export declare interface IDraggableList {
157
+ legend: string;
158
+ initialItems: IClientLabel[];
159
+ group: string;
160
+ highlightFirst?: boolean;
161
+ }
162
+
138
163
  export declare interface IDropdownMenu {
139
164
  isOpen: boolean;
165
+ headerActive?: boolean;
166
+ headerPath?: string;
140
167
  links: TLinkItem[];
141
168
  onClick: () => void;
142
169
  title: string;
@@ -153,6 +180,7 @@ export declare interface IDropdownMenuGroup {
153
180
  id: string;
154
181
  title: string;
155
182
  links: TLinkItem[];
183
+ path?: string;
156
184
  }
157
185
 
158
186
  export declare interface IFilter {