[PAGE LAYOUTS] Add widgets validation (#16635)
- Add widget validation - Remove 'None' option for primary axis group by - Fix error message parsing by passing the operation type in `useMetadataErrorHandler`
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export enum CrudOperationType {
|
||||
CREATE = 'CREATE',
|
||||
UPDATE = 'UPDATE',
|
||||
DELETE = 'DELETE',
|
||||
RESTORE = 'RESTORE',
|
||||
DESTROY = 'DESTROY',
|
||||
}
|
||||
@@ -50,6 +50,7 @@ export {
|
||||
export type { CompositeFieldSubFieldName } from './CompositeFieldSubFieldNameType';
|
||||
export type { ConfigVariableValue } from './ConfigVariableValue';
|
||||
export { ConnectedAccountProvider } from './ConnectedAccountProvider';
|
||||
export { CrudOperationType } from './CrudOperationType';
|
||||
export type { EnumFieldMetadataType } from './EnumFieldMetadataType';
|
||||
export type { ExcludeFunctions } from './ExcludeFunctions';
|
||||
export type { ExtractPropertiesThatEndsWithId } from './ExtractPropertiesThatEndsWithId';
|
||||
|
||||
Reference in New Issue
Block a user