jamespot-react-core 1.1.103 → 1.1.104
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.
|
@@ -4,5 +4,7 @@ declare type InputTaxonomyConfig = {
|
|
|
4
4
|
name: string;
|
|
5
5
|
placeholder: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const InputTaxonomy: (widget: WidgetTaxonomy, config: InputTaxonomyConfig) => (props: DisplayInputComponentProps
|
|
7
|
+
export declare const InputTaxonomy: (widget: WidgetTaxonomy, config: InputTaxonomyConfig) => (props: DisplayInputComponentProps & {
|
|
8
|
+
displayModal?: boolean;
|
|
9
|
+
}) => JSX.Element;
|
|
8
10
|
export {};
|
|
@@ -113,7 +113,9 @@ export declare function formatRichText<Properties extends string>(configuration:
|
|
|
113
113
|
export declare function formatTaxonomy<Properties extends string>(configuration: FieldConfiguration<Properties>): {
|
|
114
114
|
components: {
|
|
115
115
|
render: typeof DisplayDefault;
|
|
116
|
-
input: (props: import("./types").DisplayInputComponentProps
|
|
116
|
+
input: (props: import("./types").DisplayInputComponentProps & {
|
|
117
|
+
displayModal?: boolean | undefined;
|
|
118
|
+
}) => JSX.Element;
|
|
117
119
|
search: typeof NotImplemented;
|
|
118
120
|
};
|
|
119
121
|
label: string;
|
|
@@ -70,6 +70,7 @@ declare const _default: {
|
|
|
70
70
|
readonly InputImage: "JRCInputImage";
|
|
71
71
|
readonly InputRichText: "JRCInputRichText";
|
|
72
72
|
readonly InputSelect: "JRCInputSelect";
|
|
73
|
+
readonly InputSelectHierarchicalTree: "JRCInputSelectHierarchicalTree";
|
|
73
74
|
readonly InputSelectList: "JRCInputSelectList";
|
|
74
75
|
readonly InputText: "JRCInputText";
|
|
75
76
|
readonly InputTextIconButton: "JRCInputTextIconButton";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.104",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@reduxjs/toolkit": "^1.9.0",
|
|
67
67
|
"history": "^5.3.0",
|
|
68
|
-
"jamespot-front-business": "^1.1.
|
|
69
|
-
"jamespot-react-components": "^1.0.
|
|
70
|
-
"jamespot-user-api": "^1.0.
|
|
68
|
+
"jamespot-front-business": "^1.1.13",
|
|
69
|
+
"jamespot-react-components": "^1.0.133",
|
|
70
|
+
"jamespot-user-api": "^1.0.104",
|
|
71
71
|
"react": "^17.0.2",
|
|
72
72
|
"react-dom": "^17.0.2",
|
|
73
73
|
"react-hook-form": "^7.25.0",
|