@isettingkit/business-rules 2.2.4 → 2.2.6
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.es.d.ts +2 -3
- package/dist/index.es.js +1840 -1751
- package/package.json +3 -3
package/dist/index.es.d.ts
CHANGED
|
@@ -180,6 +180,7 @@ declare interface IBusinessRules_3 {
|
|
|
180
180
|
onRemoveCondition?: (conditionName: string) => void;
|
|
181
181
|
onRestoreConditions?: (conditionNames: string[]) => void;
|
|
182
182
|
baseDecisionTemplate?: IRuleDecision;
|
|
183
|
+
shouldRenderEmptyMessage?: boolean;
|
|
183
184
|
}
|
|
184
185
|
|
|
185
186
|
export declare interface IBusinessRuleView {
|
|
@@ -389,9 +390,7 @@ export declare const mapByGroupNew: (raw: any, mapFn: (condition: any) => any) =
|
|
|
389
390
|
|
|
390
391
|
export declare const ModalRules: (props: IModalRules) => ReactPortal;
|
|
391
392
|
|
|
392
|
-
export declare const normalizeDecisionToNewShape:
|
|
393
|
-
[k: string]: any;
|
|
394
|
-
}>(decision: T) => T;
|
|
393
|
+
export declare const normalizeDecisionToNewShape: (decision: any) => any;
|
|
395
394
|
|
|
396
395
|
export declare const parseRangeFromString: (value: string | number | string[] | IValue | undefined) => string | number | IValue | string[] | {
|
|
397
396
|
from?: number;
|