@jsonui/core 0.6.0 → 0.7.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.
@@ -6,8 +6,6 @@ import I18n from './utils/I18n';
6
6
  import { StockContext, PathModifierContext } from './utils/contextHandler';
7
7
  import { compSelectorHook } from './store/root/selectors';
8
8
  import stockFunctions from './stock/functions';
9
- import persistConfig from './store/persistConfig';
10
9
  import storeReducers from './store/reducers';
11
- import appRootFunctions from './stock/appRootFunctions';
12
10
  export type * from './utils/types';
13
- export { Stock, I18n, wrapperUtil, util, constants, StockContext, PathModifierContext, appRootFunctions, compSelectorHook, stockFunctions, persistConfig, storeReducers, };
11
+ export { Stock, I18n, wrapperUtil, util, constants, StockContext, PathModifierContext, compSelectorHook, stockFunctions, storeReducers };
@@ -1,10 +1,5 @@
1
1
  export declare const DATA_UPDATE = "DATA_UPDATE";
2
- export declare const PURGE = "PURGE";
3
2
  export declare const set: (payload: any) => {
4
3
  type: string;
5
4
  payload: any;
6
5
  };
7
- export declare const purge: (payload: any) => {
8
- type: string;
9
- payload: any;
10
- };
@@ -4,8 +4,6 @@ export declare const STORE_TOUCH_POSTFIX = ".touch";
4
4
  export declare const PATH_MODIFIERS_KEY = "$pathModifiers";
5
5
  export declare const MODIFIER_KEY = "$modifier";
6
6
  export declare const ACTION_KEY = "$action";
7
- export declare const PERSIST_STORAGE_KEY = "$persistStores";
8
- export declare const PERSIST_STORAGE_NAMES: string[];
9
7
  export declare const REF_ASSETS = "$assetsRef";
10
8
  export declare const REF_LOCALES = "$locales";
11
9
  export declare const REF_VALIDATES = "$validations";
@@ -1,5 +1,5 @@
1
1
  import React, { ReactNode } from 'react';
2
- import * as c from 'utils/constants';
2
+ import * as c from './constants';
3
3
  export declare type UIDefinition = any;
4
4
  export declare type Path = string;
5
5
  export declare type ArraysType = any[];
@@ -19,4 +19,4 @@ export declare const collectObjMerge: (refConst: string, json: any) => {};
19
19
  export declare const collectObjToArray: (refConst: string, json: any, flatten?: boolean) => any[];
20
20
  export declare const isValidJson: (d: any) => boolean;
21
21
  export declare const isPrimitiveValue: (value: any, emptyStringAllowed?: boolean) => boolean;
22
- export declare const hasLeaf: (obj: any, emptyStringAllowed?: boolean) => boolean;
22
+ export declare const hasLeaf: (obj: any, emptyStringAllowed?: boolean | undefined) => boolean;