@asaleh37/ui-base 25.10.22 → 25.10.24
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 +3 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +2 -0
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +1 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +8 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +1 -1
- package/src/layout/NavigationTree.tsx +1 -4
package/dist/index.d.ts
CHANGED
|
@@ -143,6 +143,7 @@ interface ComboBoxProps {
|
|
|
143
143
|
label: string;
|
|
144
144
|
disabled?: boolean;
|
|
145
145
|
required?: boolean;
|
|
146
|
+
groupField?: string;
|
|
146
147
|
commonStoreKey?: string;
|
|
147
148
|
dataQueryId?: number;
|
|
148
149
|
storeUrl?: string;
|
|
@@ -282,6 +283,7 @@ type TemplateGridColDef = GridColDef & {
|
|
|
282
283
|
dataQueryId?: number;
|
|
283
284
|
storeUrl?: string;
|
|
284
285
|
storeLoadParam?: any;
|
|
286
|
+
comboboxGroupField?: string;
|
|
285
287
|
};
|
|
286
288
|
type TemplateGridAttachmentProps = {
|
|
287
289
|
attachmentCode: string;
|
|
@@ -366,6 +368,7 @@ type RecordFieldProps = {
|
|
|
366
368
|
fieldType: "text" | "number" | "date" | "datetime" | "combobox" | "checkbox" | "html" | "lookup" | "custom";
|
|
367
369
|
lookupType?: string;
|
|
368
370
|
comboboxValueDataType?: "number" | "string";
|
|
371
|
+
comboboxGroupField?: string;
|
|
369
372
|
commonStoreKey?: string;
|
|
370
373
|
dataQueryId?: number;
|
|
371
374
|
storeUrl?: string;
|