@nubitio/crud 0.5.23 → 0.5.26

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.cts CHANGED
@@ -3,6 +3,28 @@ import { CoreHttpClient, DataGridEventNames, DataRecord, DataRecord as DataRecor
3
3
  import { AppDropdownOption } from "@nubitio/ui";
4
4
  import { WorkflowSchema } from "@nubitio/hydra";
5
5
 
6
+ //#region packages/crud/field/FilterRule.d.ts
7
+ interface FilterRule {
8
+ field: string;
9
+ operator: string;
10
+ value: string | number | boolean;
11
+ }
12
+ //#endregion
13
+ //#region packages/crud/datagrid/GridHandle.d.ts
14
+ interface GridHandle {
15
+ showLoading: (message?: string) => void;
16
+ hideLoading: () => void;
17
+ refresh: () => void;
18
+ reset: () => void;
19
+ loadData: () => Promise<unknown>;
20
+ getSelectedRowKey: () => string | number | undefined;
21
+ getSelectedRow: () => DataRecord$1 | undefined;
22
+ getSelectedRowKeys: () => unknown[];
23
+ getSelectedRows: () => DataRecord$1[];
24
+ getFilter: () => unknown[];
25
+ filter: (filterRule: FilterRule | null) => void;
26
+ }
27
+ //#endregion
6
28
  //#region packages/crud/field/FieldType.d.ts
7
29
  declare enum FieldType {
8
30
  NONE = "none",
@@ -24,13 +46,6 @@ declare enum FieldType {
24
46
  HTML = "html"
25
47
  }
26
48
  //#endregion
27
- //#region packages/crud/field/FilterRule.d.ts
28
- interface FilterRule {
29
- field: string;
30
- operator: string;
31
- value: string | number | boolean;
32
- }
33
- //#endregion
34
49
  //#region packages/crud/field/ValidationRule.d.ts
35
50
  type RequiredRule = {
36
51
  type: 'required';
@@ -442,21 +457,6 @@ interface FormHandle {
442
457
  setIsEdit: (value: boolean) => void;
443
458
  }
444
459
  //#endregion
445
- //#region packages/crud/datagrid/GridHandle.d.ts
446
- interface GridHandle {
447
- showLoading: (message?: string) => void;
448
- hideLoading: () => void;
449
- refresh: () => void;
450
- reset: () => void;
451
- loadData: () => Promise<unknown>;
452
- getSelectedRowKey: () => string | number | undefined;
453
- getSelectedRow: () => DataRecord$1 | undefined;
454
- getSelectedRowKeys: () => unknown[];
455
- getSelectedRows: () => DataRecord$1[];
456
- getFilter: () => unknown[];
457
- filter: (filterRule: FilterRule | null) => void;
458
- }
459
- //#endregion
460
460
  //#region packages/crud/form/FormLayout.d.ts
461
461
  interface FormTab {
462
462
  label: string;
@@ -824,6 +824,12 @@ interface ResourceToolbarContext<T extends DataRecord$1 = DataRecord$1> {
824
824
  events: FormEventNames;
825
825
  emit: <P>(name: string, payload?: P) => void;
826
826
  }
827
+ /** Context passed to `aboveGrid` slot renderers on SmartCrudPage / CrudPage. */
828
+ interface CrudGridSlotContext<T extends DataRecord$1 = DataRecord$1> {
829
+ resource: ResourceConfig<T>;
830
+ gridRef: RefObject<GridHandle | null>;
831
+ refresh: () => void;
832
+ }
827
833
  type ResourceToolbar<T extends DataRecord$1 = DataRecord$1> = ResourceToolbarItems | ((context: ResourceToolbarContext<T>) => ResourceToolbarItems);
828
834
  interface ResourceGridDetail {
829
835
  url: string;
@@ -944,6 +950,11 @@ interface ResourceConfig<T extends DataRecord$1 = DataRecord$1> {
944
950
  viewMode?: CrudViewMode | CrudViewModeConfig;
945
951
  format?: 'json' | 'multipart';
946
952
  toolbar?: ResourceToolbar<T>;
953
+ /**
954
+ * Custom UI between the grid toolbar and the table — KPI cards, quota banners,
955
+ * contextual filters. Static node or render function with grid helpers.
956
+ */
957
+ aboveGrid?: ReactNode | ((context: CrudGridSlotContext<T>) => ReactNode);
947
958
  rowActions?: ResourceRowActions<T>;
948
959
  onSaveSuccess?: (response: T) => void;
949
960
  onSaveError?: (error?: unknown) => void;
@@ -1065,6 +1076,8 @@ interface CrudPageProps<T extends DataRecord$1 = DataRecord$1> {
1065
1076
  /** External ref forwarded to the DataGridView — allows the parent to call
1066
1077
  * showLoading / hideLoading / refresh / getSelectedRow imperatively. */
1067
1078
  gridRef?: React.RefObject<GridHandle | null>;
1079
+ /** Overrides `resource.aboveGrid` — KPI cards, banners, etc. */
1080
+ aboveGrid?: ResourceConfig<T>['aboveGrid'];
1068
1081
  onOperationChange?: (operation: SmartCrudOperation | null) => void;
1069
1082
  }
1070
1083
  /**
@@ -1084,6 +1097,7 @@ declare const CrudPage: <T extends DataRecord$1 = DataRecord$1>({
1084
1097
  editDisabled,
1085
1098
  deleteDisabled,
1086
1099
  gridRef,
1100
+ aboveGrid,
1087
1101
  onOperationChange
1088
1102
  }: CrudPageProps<T>) => React.JSX.Element;
1089
1103
  //#endregion
@@ -1135,6 +1149,8 @@ interface SmartCrudPageProps<T extends DataRecord$1 = DataRecord$1> {
1135
1149
  /** External ref forwarded to the DataGridView — allows the parent to call
1136
1150
  * showLoading / hideLoading / refresh / getSelectedRow imperatively. */
1137
1151
  gridRef?: RefObject<GridHandle | null>;
1152
+ /** Custom UI above the grid table — KPI cards, banners. Overrides `resource.aboveGrid`. */
1153
+ aboveGrid?: ResourceConfig<T>['aboveGrid'];
1138
1154
  }
1139
1155
  /**
1140
1156
  * SmartCrudPage — wraps CrudPage with Hydra auto-discovery and declarative rules.
@@ -1164,7 +1180,8 @@ declare function SmartCrudPage<T extends DataRecord$1 = DataRecord$1>({
1164
1180
  onSelectionChanged,
1165
1181
  editDisabled,
1166
1182
  deleteDisabled,
1167
- gridRef
1183
+ gridRef,
1184
+ aboveGrid
1168
1185
  }: SmartCrudPageProps<T>): React.JSX.Element;
1169
1186
  //#endregion
1170
1187
  //#region packages/crud/crud/SmartCrudRolesContext.d.ts
@@ -1578,6 +1595,8 @@ interface DataGridViewOptions {
1578
1595
  headerFilter?: boolean;
1579
1596
  manualLoad?: boolean;
1580
1597
  beforeToolbar?: () => ReactNode;
1598
+ /** Custom content between the toolbar and the table (KPI cards, banners, filters). */
1599
+ aboveGrid?: ReactNode;
1581
1600
  errorMessage?: string | null;
1582
1601
  onDismissError?: () => void;
1583
1602
  editMode?: 'popup' | 'row' | 'cell' | 'batch';
@@ -2016,4 +2035,4 @@ interface RestQueryDialect {
2016
2035
  */
2017
2036
  declare function createRestResourceStore(dialect?: RestQueryDialect): ResourceStoreFactory;
2018
2037
  //#endregion
2019
- export { type AuditEntry, type AuditFieldLabelResolver, type AuditTrailConfig, AuditTrailPanel, type AuditTrailPanelProps, type BackendAdapter, type BulkAction, type ColSpan, type ColumnPreset, ColumnPresetSelector, type ColumnPresetState, CrudDialogShell, CrudDrawerShell, type CrudDrawerSize, type CrudDrawerViewEvents, type CrudDrawerViewOptions, CrudFormShell, type CrudFormShellProps, CrudPage, CrudPageShell, type CrudPageViewEvents, type CrudPageViewOptions, type CrudViewMode, type CrudViewModeConfig, DATA_GRID_EVENTS, DEFAULT_DRAWER_SIZE, DEFAULT_DRAWER_WIDTH, DRAWER_WIDTHS, type DataGridSelectionChangedEvent, type DataGridSummaryItem, NativeDataGridView as DataGridView, type DataGridViewOptions, type DataRecord, type DetailSummaryOptions, CrudDialogView as DialogView, type DrawerSize, CrudDrawerView as DrawerView, type EnumOption, FORM_EVENTS, type Field, FieldBuilder, type FieldColSpanContext, type FieldDef, type FieldInput, type FieldOverride, FieldType, type FilterRule, type FormHandle, type FormLayout, type FormLayoutHint, type FormOnChangeFn, type FormPresentationContext, type FormPresentationMode, type FormSection, type FormTab, NativeFormView as FormView, type FormViewOptions, type FormatterFn, type GridCellContext, type GridData, type GridHandle, type GridOnChangeFn, HydraAdapter, type ItemFormatterFn, type LoadOption, type OnChangeFn, CrudPageView as PageView, type ResolvedViewMode, type ResourceConfig, type ResourceEmptyState, type ResourceFilterDescriptor, type ResourceFilterRule, type ResourceFormDetail, type ResourceGridDetail, type ResourceLoadOption, type ResourceLoadOptions, type ResourcePermissions, type ResourceRouting, type ResourceRowActions, ResourceSchemaProvider, type ResourceSchemaProviderProps, type ResourceSchemaResolution, type ResourceSchemaResolver, type ResourceSortDescriptor, type ResourceStore, type ResourceStoreFactory, type ResourceStoreOptions, ResourceStoreProvider, type ResourceStoreProviderProps, type ResourceToolbar, type ResourceToolbarAction, type ResourceToolbarActionVariant, type ResourceToolbarContext, type ResourceToolbarItems, RestAdapter, type RestQueryDialect, type SmartCrudFieldContract, type SmartCrudFieldOperation, type SmartCrudFieldPatch, type SmartCrudHydraFieldContract, type SmartCrudHydraFieldDirective, type SmartCrudManualField, type SmartCrudManualFieldContract, type SmartCrudOperation, SmartCrudPage, SmartCrudRolesProvider, type SummaryCalculateContext, type SummaryFormat, type SummaryItem, type SummaryTextContext, type SummaryType, ToolbarSelect, type ToolbarSelectOption, type ToolbarSelectProps, type ValidationRule, buildFieldColSpanContext, buildFields, buildWorkflowRowActions, checkboxField, computeSummaryValue, createCrudEvents, createRestResourceStore, crudRoute, currencyField, dateField, datetimeField, defineFieldContract, defineFields, defineResource, embeddedLinesUrl, entityField, enumField, fileField, formatSummaryValue, identityField, imageField, isLongTextField, isShortField, noneField, numberField, parseDrawerWidthPx, passwordField, resolveDrawerLayoutBucket, resolveDrawerSize, resolveDrawerWidth, resolveFieldColSpan, resolveFieldsColSpans, resolveSummaryText, resolveViewMode, selectField, switchField, textField, textareaField, useColumnPreset, useResourceStoreFactory, useSmartCrudRoles, validateFieldContract };
2038
+ export { type AuditEntry, type AuditFieldLabelResolver, type AuditTrailConfig, AuditTrailPanel, type AuditTrailPanelProps, type BackendAdapter, type BulkAction, type ColSpan, type ColumnPreset, ColumnPresetSelector, type ColumnPresetState, CrudDialogShell, CrudDrawerShell, type CrudDrawerSize, type CrudDrawerViewEvents, type CrudDrawerViewOptions, CrudFormShell, type CrudFormShellProps, type CrudGridSlotContext, CrudPage, CrudPageShell, type CrudPageViewEvents, type CrudPageViewOptions, type CrudViewMode, type CrudViewModeConfig, DATA_GRID_EVENTS, DEFAULT_DRAWER_SIZE, DEFAULT_DRAWER_WIDTH, DRAWER_WIDTHS, type DataGridSelectionChangedEvent, type DataGridSummaryItem, NativeDataGridView as DataGridView, type DataGridViewOptions, type DataRecord, type DetailSummaryOptions, CrudDialogView as DialogView, type DrawerSize, CrudDrawerView as DrawerView, type EnumOption, FORM_EVENTS, type Field, FieldBuilder, type FieldColSpanContext, type FieldDef, type FieldInput, type FieldOverride, FieldType, type FilterRule, type FormHandle, type FormLayout, type FormLayoutHint, type FormOnChangeFn, type FormPresentationContext, type FormPresentationMode, type FormSection, type FormTab, NativeFormView as FormView, type FormViewOptions, type FormatterFn, type GridCellContext, type GridData, type GridHandle, type GridOnChangeFn, HydraAdapter, type ItemFormatterFn, type LoadOption, type OnChangeFn, CrudPageView as PageView, type ResolvedViewMode, type ResourceConfig, type ResourceEmptyState, type ResourceFilterDescriptor, type ResourceFilterRule, type ResourceFormDetail, type ResourceGridDetail, type ResourceLoadOption, type ResourceLoadOptions, type ResourcePermissions, type ResourceRouting, type ResourceRowActions, ResourceSchemaProvider, type ResourceSchemaProviderProps, type ResourceSchemaResolution, type ResourceSchemaResolver, type ResourceSortDescriptor, type ResourceStore, type ResourceStoreFactory, type ResourceStoreOptions, ResourceStoreProvider, type ResourceStoreProviderProps, type ResourceToolbar, type ResourceToolbarAction, type ResourceToolbarActionVariant, type ResourceToolbarContext, type ResourceToolbarItems, RestAdapter, type RestQueryDialect, type SmartCrudFieldContract, type SmartCrudFieldOperation, type SmartCrudFieldPatch, type SmartCrudHydraFieldContract, type SmartCrudHydraFieldDirective, type SmartCrudManualField, type SmartCrudManualFieldContract, type SmartCrudOperation, SmartCrudPage, SmartCrudRolesProvider, type SummaryCalculateContext, type SummaryFormat, type SummaryItem, type SummaryTextContext, type SummaryType, ToolbarSelect, type ToolbarSelectOption, type ToolbarSelectProps, type ValidationRule, buildFieldColSpanContext, buildFields, buildWorkflowRowActions, checkboxField, computeSummaryValue, createCrudEvents, createRestResourceStore, crudRoute, currencyField, dateField, datetimeField, defineFieldContract, defineFields, defineResource, embeddedLinesUrl, entityField, enumField, fileField, formatSummaryValue, identityField, imageField, isLongTextField, isShortField, noneField, numberField, parseDrawerWidthPx, passwordField, resolveDrawerLayoutBucket, resolveDrawerSize, resolveDrawerWidth, resolveFieldColSpan, resolveFieldsColSpans, resolveSummaryText, resolveViewMode, selectField, switchField, textField, textareaField, useColumnPreset, useResourceStoreFactory, useSmartCrudRoles, validateFieldContract };
package/dist/index.d.mts CHANGED
@@ -3,6 +3,28 @@ import { AppDropdownOption } from "@nubitio/ui";
3
3
  import { CoreHttpClient, DataGridEventNames, DataRecord, DataRecord as DataRecord$1, DialogEventNames, FormEventNames, GridData, GridData as GridData$1, createCrudEvents } from "@nubitio/core";
4
4
  import { WorkflowSchema } from "@nubitio/hydra";
5
5
 
6
+ //#region packages/crud/field/FilterRule.d.ts
7
+ interface FilterRule {
8
+ field: string;
9
+ operator: string;
10
+ value: string | number | boolean;
11
+ }
12
+ //#endregion
13
+ //#region packages/crud/datagrid/GridHandle.d.ts
14
+ interface GridHandle {
15
+ showLoading: (message?: string) => void;
16
+ hideLoading: () => void;
17
+ refresh: () => void;
18
+ reset: () => void;
19
+ loadData: () => Promise<unknown>;
20
+ getSelectedRowKey: () => string | number | undefined;
21
+ getSelectedRow: () => DataRecord$1 | undefined;
22
+ getSelectedRowKeys: () => unknown[];
23
+ getSelectedRows: () => DataRecord$1[];
24
+ getFilter: () => unknown[];
25
+ filter: (filterRule: FilterRule | null) => void;
26
+ }
27
+ //#endregion
6
28
  //#region packages/crud/field/FieldType.d.ts
7
29
  declare enum FieldType {
8
30
  NONE = "none",
@@ -24,13 +46,6 @@ declare enum FieldType {
24
46
  HTML = "html"
25
47
  }
26
48
  //#endregion
27
- //#region packages/crud/field/FilterRule.d.ts
28
- interface FilterRule {
29
- field: string;
30
- operator: string;
31
- value: string | number | boolean;
32
- }
33
- //#endregion
34
49
  //#region packages/crud/field/ValidationRule.d.ts
35
50
  type RequiredRule = {
36
51
  type: 'required';
@@ -442,21 +457,6 @@ interface FormHandle {
442
457
  setIsEdit: (value: boolean) => void;
443
458
  }
444
459
  //#endregion
445
- //#region packages/crud/datagrid/GridHandle.d.ts
446
- interface GridHandle {
447
- showLoading: (message?: string) => void;
448
- hideLoading: () => void;
449
- refresh: () => void;
450
- reset: () => void;
451
- loadData: () => Promise<unknown>;
452
- getSelectedRowKey: () => string | number | undefined;
453
- getSelectedRow: () => DataRecord$1 | undefined;
454
- getSelectedRowKeys: () => unknown[];
455
- getSelectedRows: () => DataRecord$1[];
456
- getFilter: () => unknown[];
457
- filter: (filterRule: FilterRule | null) => void;
458
- }
459
- //#endregion
460
460
  //#region packages/crud/form/FormLayout.d.ts
461
461
  interface FormTab {
462
462
  label: string;
@@ -824,6 +824,12 @@ interface ResourceToolbarContext<T extends DataRecord$1 = DataRecord$1> {
824
824
  events: FormEventNames;
825
825
  emit: <P>(name: string, payload?: P) => void;
826
826
  }
827
+ /** Context passed to `aboveGrid` slot renderers on SmartCrudPage / CrudPage. */
828
+ interface CrudGridSlotContext<T extends DataRecord$1 = DataRecord$1> {
829
+ resource: ResourceConfig<T>;
830
+ gridRef: RefObject<GridHandle | null>;
831
+ refresh: () => void;
832
+ }
827
833
  type ResourceToolbar<T extends DataRecord$1 = DataRecord$1> = ResourceToolbarItems | ((context: ResourceToolbarContext<T>) => ResourceToolbarItems);
828
834
  interface ResourceGridDetail {
829
835
  url: string;
@@ -944,6 +950,11 @@ interface ResourceConfig<T extends DataRecord$1 = DataRecord$1> {
944
950
  viewMode?: CrudViewMode | CrudViewModeConfig;
945
951
  format?: 'json' | 'multipart';
946
952
  toolbar?: ResourceToolbar<T>;
953
+ /**
954
+ * Custom UI between the grid toolbar and the table — KPI cards, quota banners,
955
+ * contextual filters. Static node or render function with grid helpers.
956
+ */
957
+ aboveGrid?: ReactNode | ((context: CrudGridSlotContext<T>) => ReactNode);
947
958
  rowActions?: ResourceRowActions<T>;
948
959
  onSaveSuccess?: (response: T) => void;
949
960
  onSaveError?: (error?: unknown) => void;
@@ -1065,6 +1076,8 @@ interface CrudPageProps<T extends DataRecord$1 = DataRecord$1> {
1065
1076
  /** External ref forwarded to the DataGridView — allows the parent to call
1066
1077
  * showLoading / hideLoading / refresh / getSelectedRow imperatively. */
1067
1078
  gridRef?: React.RefObject<GridHandle | null>;
1079
+ /** Overrides `resource.aboveGrid` — KPI cards, banners, etc. */
1080
+ aboveGrid?: ResourceConfig<T>['aboveGrid'];
1068
1081
  onOperationChange?: (operation: SmartCrudOperation | null) => void;
1069
1082
  }
1070
1083
  /**
@@ -1084,6 +1097,7 @@ declare const CrudPage: <T extends DataRecord$1 = DataRecord$1>({
1084
1097
  editDisabled,
1085
1098
  deleteDisabled,
1086
1099
  gridRef,
1100
+ aboveGrid,
1087
1101
  onOperationChange
1088
1102
  }: CrudPageProps<T>) => React.JSX.Element;
1089
1103
  //#endregion
@@ -1135,6 +1149,8 @@ interface SmartCrudPageProps<T extends DataRecord$1 = DataRecord$1> {
1135
1149
  /** External ref forwarded to the DataGridView — allows the parent to call
1136
1150
  * showLoading / hideLoading / refresh / getSelectedRow imperatively. */
1137
1151
  gridRef?: RefObject<GridHandle | null>;
1152
+ /** Custom UI above the grid table — KPI cards, banners. Overrides `resource.aboveGrid`. */
1153
+ aboveGrid?: ResourceConfig<T>['aboveGrid'];
1138
1154
  }
1139
1155
  /**
1140
1156
  * SmartCrudPage — wraps CrudPage with Hydra auto-discovery and declarative rules.
@@ -1164,7 +1180,8 @@ declare function SmartCrudPage<T extends DataRecord$1 = DataRecord$1>({
1164
1180
  onSelectionChanged,
1165
1181
  editDisabled,
1166
1182
  deleteDisabled,
1167
- gridRef
1183
+ gridRef,
1184
+ aboveGrid
1168
1185
  }: SmartCrudPageProps<T>): React.JSX.Element;
1169
1186
  //#endregion
1170
1187
  //#region packages/crud/crud/SmartCrudRolesContext.d.ts
@@ -1578,6 +1595,8 @@ interface DataGridViewOptions {
1578
1595
  headerFilter?: boolean;
1579
1596
  manualLoad?: boolean;
1580
1597
  beforeToolbar?: () => ReactNode;
1598
+ /** Custom content between the toolbar and the table (KPI cards, banners, filters). */
1599
+ aboveGrid?: ReactNode;
1581
1600
  errorMessage?: string | null;
1582
1601
  onDismissError?: () => void;
1583
1602
  editMode?: 'popup' | 'row' | 'cell' | 'batch';
@@ -2016,4 +2035,4 @@ interface RestQueryDialect {
2016
2035
  */
2017
2036
  declare function createRestResourceStore(dialect?: RestQueryDialect): ResourceStoreFactory;
2018
2037
  //#endregion
2019
- export { type AuditEntry, type AuditFieldLabelResolver, type AuditTrailConfig, AuditTrailPanel, type AuditTrailPanelProps, type BackendAdapter, type BulkAction, type ColSpan, type ColumnPreset, ColumnPresetSelector, type ColumnPresetState, CrudDialogShell, CrudDrawerShell, type CrudDrawerSize, type CrudDrawerViewEvents, type CrudDrawerViewOptions, CrudFormShell, type CrudFormShellProps, CrudPage, CrudPageShell, type CrudPageViewEvents, type CrudPageViewOptions, type CrudViewMode, type CrudViewModeConfig, DATA_GRID_EVENTS, DEFAULT_DRAWER_SIZE, DEFAULT_DRAWER_WIDTH, DRAWER_WIDTHS, type DataGridSelectionChangedEvent, type DataGridSummaryItem, NativeDataGridView as DataGridView, type DataGridViewOptions, type DataRecord, type DetailSummaryOptions, CrudDialogView as DialogView, type DrawerSize, CrudDrawerView as DrawerView, type EnumOption, FORM_EVENTS, type Field, FieldBuilder, type FieldColSpanContext, type FieldDef, type FieldInput, type FieldOverride, FieldType, type FilterRule, type FormHandle, type FormLayout, type FormLayoutHint, type FormOnChangeFn, type FormPresentationContext, type FormPresentationMode, type FormSection, type FormTab, NativeFormView as FormView, type FormViewOptions, type FormatterFn, type GridCellContext, type GridData, type GridHandle, type GridOnChangeFn, HydraAdapter, type ItemFormatterFn, type LoadOption, type OnChangeFn, CrudPageView as PageView, type ResolvedViewMode, type ResourceConfig, type ResourceEmptyState, type ResourceFilterDescriptor, type ResourceFilterRule, type ResourceFormDetail, type ResourceGridDetail, type ResourceLoadOption, type ResourceLoadOptions, type ResourcePermissions, type ResourceRouting, type ResourceRowActions, ResourceSchemaProvider, type ResourceSchemaProviderProps, type ResourceSchemaResolution, type ResourceSchemaResolver, type ResourceSortDescriptor, type ResourceStore, type ResourceStoreFactory, type ResourceStoreOptions, ResourceStoreProvider, type ResourceStoreProviderProps, type ResourceToolbar, type ResourceToolbarAction, type ResourceToolbarActionVariant, type ResourceToolbarContext, type ResourceToolbarItems, RestAdapter, type RestQueryDialect, type SmartCrudFieldContract, type SmartCrudFieldOperation, type SmartCrudFieldPatch, type SmartCrudHydraFieldContract, type SmartCrudHydraFieldDirective, type SmartCrudManualField, type SmartCrudManualFieldContract, type SmartCrudOperation, SmartCrudPage, SmartCrudRolesProvider, type SummaryCalculateContext, type SummaryFormat, type SummaryItem, type SummaryTextContext, type SummaryType, ToolbarSelect, type ToolbarSelectOption, type ToolbarSelectProps, type ValidationRule, buildFieldColSpanContext, buildFields, buildWorkflowRowActions, checkboxField, computeSummaryValue, createCrudEvents, createRestResourceStore, crudRoute, currencyField, dateField, datetimeField, defineFieldContract, defineFields, defineResource, embeddedLinesUrl, entityField, enumField, fileField, formatSummaryValue, identityField, imageField, isLongTextField, isShortField, noneField, numberField, parseDrawerWidthPx, passwordField, resolveDrawerLayoutBucket, resolveDrawerSize, resolveDrawerWidth, resolveFieldColSpan, resolveFieldsColSpans, resolveSummaryText, resolveViewMode, selectField, switchField, textField, textareaField, useColumnPreset, useResourceStoreFactory, useSmartCrudRoles, validateFieldContract };
2038
+ export { type AuditEntry, type AuditFieldLabelResolver, type AuditTrailConfig, AuditTrailPanel, type AuditTrailPanelProps, type BackendAdapter, type BulkAction, type ColSpan, type ColumnPreset, ColumnPresetSelector, type ColumnPresetState, CrudDialogShell, CrudDrawerShell, type CrudDrawerSize, type CrudDrawerViewEvents, type CrudDrawerViewOptions, CrudFormShell, type CrudFormShellProps, type CrudGridSlotContext, CrudPage, CrudPageShell, type CrudPageViewEvents, type CrudPageViewOptions, type CrudViewMode, type CrudViewModeConfig, DATA_GRID_EVENTS, DEFAULT_DRAWER_SIZE, DEFAULT_DRAWER_WIDTH, DRAWER_WIDTHS, type DataGridSelectionChangedEvent, type DataGridSummaryItem, NativeDataGridView as DataGridView, type DataGridViewOptions, type DataRecord, type DetailSummaryOptions, CrudDialogView as DialogView, type DrawerSize, CrudDrawerView as DrawerView, type EnumOption, FORM_EVENTS, type Field, FieldBuilder, type FieldColSpanContext, type FieldDef, type FieldInput, type FieldOverride, FieldType, type FilterRule, type FormHandle, type FormLayout, type FormLayoutHint, type FormOnChangeFn, type FormPresentationContext, type FormPresentationMode, type FormSection, type FormTab, NativeFormView as FormView, type FormViewOptions, type FormatterFn, type GridCellContext, type GridData, type GridHandle, type GridOnChangeFn, HydraAdapter, type ItemFormatterFn, type LoadOption, type OnChangeFn, CrudPageView as PageView, type ResolvedViewMode, type ResourceConfig, type ResourceEmptyState, type ResourceFilterDescriptor, type ResourceFilterRule, type ResourceFormDetail, type ResourceGridDetail, type ResourceLoadOption, type ResourceLoadOptions, type ResourcePermissions, type ResourceRouting, type ResourceRowActions, ResourceSchemaProvider, type ResourceSchemaProviderProps, type ResourceSchemaResolution, type ResourceSchemaResolver, type ResourceSortDescriptor, type ResourceStore, type ResourceStoreFactory, type ResourceStoreOptions, ResourceStoreProvider, type ResourceStoreProviderProps, type ResourceToolbar, type ResourceToolbarAction, type ResourceToolbarActionVariant, type ResourceToolbarContext, type ResourceToolbarItems, RestAdapter, type RestQueryDialect, type SmartCrudFieldContract, type SmartCrudFieldOperation, type SmartCrudFieldPatch, type SmartCrudHydraFieldContract, type SmartCrudHydraFieldDirective, type SmartCrudManualField, type SmartCrudManualFieldContract, type SmartCrudOperation, SmartCrudPage, SmartCrudRolesProvider, type SummaryCalculateContext, type SummaryFormat, type SummaryItem, type SummaryTextContext, type SummaryType, ToolbarSelect, type ToolbarSelectOption, type ToolbarSelectProps, type ValidationRule, buildFieldColSpanContext, buildFields, buildWorkflowRowActions, checkboxField, computeSummaryValue, createCrudEvents, createRestResourceStore, crudRoute, currencyField, dateField, datetimeField, defineFieldContract, defineFields, defineResource, embeddedLinesUrl, entityField, enumField, fileField, formatSummaryValue, identityField, imageField, isLongTextField, isShortField, noneField, numberField, parseDrawerWidthPx, passwordField, resolveDrawerLayoutBucket, resolveDrawerSize, resolveDrawerWidth, resolveFieldColSpan, resolveFieldsColSpans, resolveSummaryText, resolveViewMode, selectField, switchField, textField, textareaField, useColumnPreset, useResourceStoreFactory, useSmartCrudRoles, validateFieldContract };