@asaleh37/ui-base 25.9.17 → 25.9.19
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 +112 -112
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +112 -112
- package/dist/index.mjs.map +1 -1
- package/index.html +7 -0
- package/package.json +1 -1
- package/public/manifest.json +21 -0
- package/src/components/common/MobileLogin.tsx +229 -0
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +1 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +2 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +1 -0
- package/src/layout/Layout.tsx +4 -1
- package/src/main.tsx +2 -2
- package/src/navigationItems/index.tsx +0 -7
- package/src/routes/index.ts +1 -4
- package/vite.config.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -396,6 +396,7 @@ type FormElementGroupProps = {
|
|
|
396
396
|
formActions?: any;
|
|
397
397
|
hiddenFields?: string[];
|
|
398
398
|
disabledFields?: string[];
|
|
399
|
+
formValuesChangeCallBk?: FormValueChangeCallBk;
|
|
399
400
|
};
|
|
400
401
|
type FormValueChangeCallBk = (formValues: any, formActions: FormActionProps, formManager: UseFormReturn, fieldName?: string, newValue?: any, selectedRecord?: any) => void;
|
|
401
402
|
type FormElementFieldProps = {
|