@ahmadmubarak98/namozaj 1.6.71 → 1.6.72
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/main.d.ts +2 -1
- package/dist/namozaj.js +2296 -2270
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export declare type DateMinMaxValue = {
|
|
|
98
98
|
errorMessage?: string;
|
|
99
99
|
} | null);
|
|
100
100
|
|
|
101
|
-
export declare type EliminatedOptionValues = string[] | number[]
|
|
101
|
+
export declare type EliminatedOptionValues = string[] | number[];
|
|
102
102
|
|
|
103
103
|
export declare type FieldArrayFieldConfig = BaseFieldConfig & {
|
|
104
104
|
type: "field-array";
|
|
@@ -116,6 +116,7 @@ export declare type FieldArrayFieldConfig = BaseFieldConfig & {
|
|
|
116
116
|
canAdd?: boolean;
|
|
117
117
|
canRemove?: boolean;
|
|
118
118
|
unRemovableIndexes?: number[];
|
|
119
|
+
uniqueSelectionFields?: string[];
|
|
119
120
|
onBeforeAdd?: (data: any, formMethods: any) => void | Promise<void>;
|
|
120
121
|
onBeforeRemove?: (data: any, formMethods: any) => void | Promise<void>;
|
|
121
122
|
};
|