@evoke-platform/ui-components 1.0.0-dev.231 → 1.0.0-dev.232
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/published/components/custom/Form/FormComponents/DocumentComponent/DocumentComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/DocumentComponent/DocumentComponent.js +0 -3
- package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/FormFieldComponent.js +0 -3
- package/dist/published/components/custom/Form/FormComponents/ImageComponent/ImageComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/ImageComponent/ImageComponent.js +0 -3
- package/dist/published/components/custom/Form/FormComponents/ObjectComponent/ObjectComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/ObjectComponent/ObjectComponent.js +0 -3
- package/dist/published/components/custom/Form/FormComponents/UserComponent/UserComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/UserComponent/UserComponent.js +0 -3
- package/dist/published/components/custom/Form/FormComponents/ViewOnlyComponent.d.ts +0 -1
- package/dist/published/components/custom/Form/FormComponents/ViewOnlyComponent.js +0 -3
- package/package.json +1 -1
package/dist/published/components/custom/Form/FormComponents/DocumentComponent/DocumentComponent.js
CHANGED
@@ -133,7 +133,4 @@ export class DocumentComponent extends ReactComponent {
|
|
133
133
|
React.createElement(FormComponentWrapper, { ...this.component, inputId: inputId, viewOnly: !this.component.canUpdateProperty, errorMessage: this.errorMessages() },
|
134
134
|
React.createElement(Document, { ...this.component, id: inputId, handleChange: this.handleChange, error: this.hasErrors(), value: this.dataValue }))), root);
|
135
135
|
}
|
136
|
-
detachReact(element) {
|
137
|
-
ReactDOM.unmountComponentAtNode(element);
|
138
|
-
}
|
139
136
|
}
|
@@ -38,6 +38,5 @@ export declare class FormFieldComponent extends ReactComponent {
|
|
38
38
|
handleComponentChange: (components: any, value: any) => void;
|
39
39
|
handleChange: (key: string, value: any) => void;
|
40
40
|
attachReact(element: Element): void;
|
41
|
-
detachReact(element: Element): void;
|
42
41
|
}
|
43
42
|
export {};
|
@@ -467,7 +467,4 @@ export class FormFieldComponent extends ReactComponent {
|
|
467
467
|
this.emit('changed-' + this.component.key, e.target.value);
|
468
468
|
}, ...this.component, id: inputId, defaultValue: this.dataValue, mask: this.component.inputMask, error: this.hasErrors(), size: this.component.fieldHeight ?? 'medium' }))), root);
|
469
469
|
}
|
470
|
-
detachReact(element) {
|
471
|
-
ReactDOM.unmountComponentAtNode(element);
|
472
|
-
}
|
473
470
|
}
|
package/dist/published/components/custom/Form/FormComponents/ImageComponent/ImageComponent.js
CHANGED
@@ -115,7 +115,4 @@ export class ImageComponent extends ReactComponent {
|
|
115
115
|
return ReactDOM.render(React.createElement("div", null, !this.component.hidden ? (React.createElement(FormComponentWrapper, { ...this.component, inputId: inputId, viewOnly: !this.component.canUpdateProperty, errorMessage: this.errorMessages() },
|
116
116
|
React.createElement(Image, { ...this.component, id: inputId, value: this.dataValue, handleChange: this.handleChange, error: this.hasErrors() }))) : null), root);
|
117
117
|
}
|
118
|
-
detachReact(element) {
|
119
|
-
ReactDOM.unmountComponentAtNode(element);
|
120
|
-
}
|
121
118
|
}
|
package/dist/published/components/custom/Form/FormComponents/ObjectComponent/ObjectComponent.d.ts
CHANGED
@@ -32,6 +32,5 @@ export declare class ObjectComponent extends ReactComponent {
|
|
32
32
|
handleChangeObjectProperty: (key: string, value?: ObjectInstance | null) => void;
|
33
33
|
beforeSubmit(): void;
|
34
34
|
attachReact(element: Element): void;
|
35
|
-
detachReact(element: Element): void;
|
36
35
|
}
|
37
36
|
export {};
|
package/dist/published/components/custom/Form/FormComponents/ObjectComponent/ObjectComponent.js
CHANGED
@@ -184,7 +184,4 @@ export class ObjectComponent extends ReactComponent {
|
|
184
184
|
React.createElement(FormComponentWrapper, { ...updatedComponent, inputId: inputId, errorMessage: this.errorMessages() },
|
185
185
|
React.createElement(ObjectPropertyInput, { ...updatedComponent, id: inputId, handleChangeObjectProperty: this.handleChangeObjectProperty, error: this.hasErrors(), filter: this.criteria ? { where: transformToWhere(this.updatedCriteria) } : undefined, richTextEditor: this.component.richTextEditor }))), root);
|
186
186
|
}
|
187
|
-
detachReact(element) {
|
188
|
-
ReactDOM.unmountComponentAtNode(element);
|
189
|
-
}
|
190
187
|
}
|
@@ -124,7 +124,4 @@ export class UserComponent extends ReactComponent {
|
|
124
124
|
React.createElement(FormComponentWrapper, { ...updatedComponent, inputId: inputId, errorMessage: this.errorMessages() },
|
125
125
|
React.createElement(UserProperty, { ...updatedComponent, id: inputId, value: this.dataValue ?? '', handleChangeUserProperty: this.handleChangeUserProperty, error: this.hasErrors(), filter: this.criteria ? { where: transformToWhere(this.updatedCriteria) } : undefined }))), root);
|
126
126
|
}
|
127
|
-
detachReact(element) {
|
128
|
-
ReactDOM.unmountComponentAtNode(element);
|
129
|
-
}
|
130
127
|
}
|
@@ -17,5 +17,4 @@ export declare class ViewOnlyComponent extends ReactComponent {
|
|
17
17
|
constructor(component: BaseFormComponentProps, options: any, data: any);
|
18
18
|
showValue(value: unknown): {} | undefined;
|
19
19
|
attachReact(element: Element): void;
|
20
|
-
detachReact(element: Element): void;
|
21
20
|
}
|