@asaleh37/ui-base 25.8.15 → 25.8.23-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 +1 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/App.tsx +12 -12
- package/src/components/BaseApp.tsx +34 -12
- package/src/components/common/Login.tsx +3 -7
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +1 -0
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +30 -0
- package/src/locales/english/adminLocalsEn.json +6 -6
- package/src/locales/english/devLocalsEn.json +38 -38
package/dist/index.d.ts
CHANGED
|
@@ -334,6 +334,7 @@ type RecordFieldProps = {
|
|
|
334
334
|
fieldLabel: string;
|
|
335
335
|
fieldType: "text" | "number" | "date" | "datetime" | "combobox" | "checkbox" | "html" | "lookup" | "custom";
|
|
336
336
|
lookupType?: string;
|
|
337
|
+
comboboxValueDataType?: "number" | "string";
|
|
337
338
|
required?: boolean;
|
|
338
339
|
disabled?: boolean;
|
|
339
340
|
hidden?: boolean;
|