jamespot-react-core 1.1.183 → 1.1.185
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/build/724.843c4f66e67a00f149d5.chunk.js +561 -0
- package/build/724.843c4f66e67a00f149d5.chunk.js.map +1 -0
- package/build/app.bundle.js +653 -641
- package/build/app.bundle.js.map +1 -1
- package/build/socket.sharedworker.36b2317446c7c433029e.js.map +1 -1
- package/build/src/ReactCore.d.ts +10 -4
- package/build/src/components/widgets/wrapper/JRCWidgetDatasourceTableWrapper.d.ts +1 -1
- package/build/src/components/widgets/wrapper/JRCWidgetExcelDatasourceTableWrapper.d.ts +1 -1
- package/build/src/components/widgets/wrapper/utils.d.ts +2 -2
- package/build/src/displayer/DisplayForm.component.d.ts +1 -2
- package/build/src/displayer/types.d.ts +1 -0
- package/build/src/displayer/useDisplay.d.ts +1 -2
- package/build/src/initTinymce.d.ts +2 -0
- package/build/src/redux/store.d.ts +2644 -0
- package/build/src/registry/CommonRegistry.d.ts +2 -0
- package/build/src/registry/CoreRegistry.d.ts +2 -0
- package/build/src/registry/GlobalRegistry.d.ts +13 -0
- package/build/src/registry/ReactCommonRegistry.d.ts +13 -0
- package/build/src/registry/ReactCoreRegistry.d.ts +13 -0
- package/build/src/registry/index.d.ts +1 -0
- package/build/src/registry/types.common.d.ts +14 -0
- package/build/src/registry/types.core.d.ts +14 -0
- package/build/src/types.d.ts +2 -1
- package/build/src/utils/socket.d.ts +1 -1
- package/build/src/utils/types.d.ts +4 -50
- package/build/src/utils/types.socket.d.ts +48 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/package.json +10 -10
- package/build/724.4e810912c9eacc41e4bb.chunk.js +0 -559
- package/build/724.4e810912c9eacc41e4bb.chunk.js.map +0 -1
- package/build/src/registry/ReactRegistry.d.ts +0 -13
- package/build/src/registry/Registry.d.ts +0 -2
- package/build/src/registry/types.d.ts +0 -31
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { AllComponentListKey, AllComponentListType, AllComponentTypes } from './types';
|
|
3
|
-
export interface RegistryComponents {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}
|
|
6
|
-
export declare class ReactRegistry {
|
|
7
|
-
list: RegistryComponents;
|
|
8
|
-
listLazy: RegistryComponents;
|
|
9
|
-
getComponent(name: string): any;
|
|
10
|
-
registerLazyComponent(name: string, promise: React.LazyExoticComponent<React.ComponentType<any>>): void;
|
|
11
|
-
registerLib(componentList: Partial<AllComponentListType>, importPromise: any): void;
|
|
12
|
-
getLazyComponent<T extends AllComponentListKey>(name: T): AllComponentTypes[AllComponentListType[T]];
|
|
13
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import jComponentList from './ext-component-list';
|
|
2
|
-
import { coreComponentsMapping } from './core-component-list';
|
|
3
|
-
import jrComponent from 'jamespot-react-components';
|
|
4
|
-
import * as coreComponents from './coreComponents';
|
|
5
|
-
/**
|
|
6
|
-
* j-react-components { JRCButton: () => <JRCButton/>, ... }
|
|
7
|
-
*/
|
|
8
|
-
export type JrComponentTypes = typeof jrComponent;
|
|
9
|
-
/**
|
|
10
|
-
* jrc component list { Button: "JRCButton", ... }
|
|
11
|
-
*/
|
|
12
|
-
export type JrComponentListType = typeof jComponentList;
|
|
13
|
-
/**
|
|
14
|
-
* jrc component keys { "Button" | ... }
|
|
15
|
-
*/
|
|
16
|
-
export type JrComponentListKey = keyof JrComponentListType;
|
|
17
|
-
/**
|
|
18
|
-
* j-core-components { Empty: () => <Empty/>, ... }
|
|
19
|
-
*/
|
|
20
|
-
export type CoreComponentTypes = typeof coreComponents;
|
|
21
|
-
/**
|
|
22
|
-
* jrc component list { Empty: "Empty", ... }
|
|
23
|
-
*/
|
|
24
|
-
export type CoreComponentListType = typeof coreComponentsMapping;
|
|
25
|
-
/**
|
|
26
|
-
* core component keys { "Empty" | ... }
|
|
27
|
-
*/
|
|
28
|
-
export type CoreComponentListKey = keyof CoreComponentListType;
|
|
29
|
-
export type AllComponentTypes = JrComponentTypes & CoreComponentTypes;
|
|
30
|
-
export type AllComponentListType = JrComponentListType & CoreComponentListType;
|
|
31
|
-
export type AllComponentListKey = JrComponentListKey | CoreComponentListKey;
|