@asaleh37/ui-base 25.9.5 → 25.9.6-1
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.d.ts +9 -1
- package/dist/index.js +32 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -39
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/administration/dev/WorkflowDocumentGrid.tsx +1 -1
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +4 -1
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +18 -60
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +57 -2
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +1 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +19 -12
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +7 -3
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +3 -4
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +4 -4
- package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +2 -1
- package/src/redux/features/administration/AdministrationStoresMetaData.ts +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -143,7 +143,11 @@ interface ComboBoxProps {
|
|
|
143
143
|
label: string;
|
|
144
144
|
disabled?: boolean;
|
|
145
145
|
required?: boolean;
|
|
146
|
-
|
|
146
|
+
commonStoreKey?: string;
|
|
147
|
+
dataQueryId?: number;
|
|
148
|
+
storeUrl?: string;
|
|
149
|
+
storeLoadParam?: any;
|
|
150
|
+
options?: Array<any>;
|
|
147
151
|
errorMessage?: any;
|
|
148
152
|
hidden?: boolean;
|
|
149
153
|
displayField: string;
|
|
@@ -357,6 +361,10 @@ type RecordFieldProps = {
|
|
|
357
361
|
fieldType: "text" | "number" | "date" | "datetime" | "combobox" | "checkbox" | "html" | "lookup" | "custom";
|
|
358
362
|
lookupType?: string;
|
|
359
363
|
comboboxValueDataType?: "number" | "string";
|
|
364
|
+
commonStoreKey?: string;
|
|
365
|
+
dataQueryId?: number;
|
|
366
|
+
storeUrl?: string;
|
|
367
|
+
storeLoadParam?: any;
|
|
360
368
|
required?: boolean;
|
|
361
369
|
disabled?: boolean;
|
|
362
370
|
hidden?: boolean;
|