identity-admin-ui 1.11.35 → 1.11.37

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.
@@ -4,4 +4,4 @@ export declare function getReferenceTitlePath(property: any, propertyKey: string
4
4
  }): string | undefined;
5
5
  export declare function getReferenceTitleType(property: any, propertyKey: string, resources: {
6
6
  [key: string]: IResource;
7
- }): import("../../../helpers").FieldTypes | undefined;
7
+ }): import("../../..").FieldTypes | undefined;
@@ -1 +1,2 @@
1
1
  export * from './ListProps';
2
+ export * from './ListUniqueFields';
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  export declare const useAppConfigurations: () => {
3
- textFieldSize: import("../helpers").SizeType;
3
+ textFieldSize: import("..").SizeType;
4
4
  themeLayout?: "horizontal" | "vertical" | "mini" | undefined;
5
5
  defaultRowsPerPage: number;
6
6
  themeStretch: boolean;
@@ -10,3 +10,4 @@ export { NextPreviousButtons } from './components/Buttons/NextPreviousButtons';
10
10
  export * from './components';
11
11
  export * from './sections/dashboard';
12
12
  export * from './actions';
13
+ export * from './helpers';
package/lib/index.d.ts CHANGED
@@ -78,6 +78,12 @@ declare class State<T> {
78
78
  static error<T>(error: any, data?: T): IState<T>;
79
79
  }
80
80
 
81
+ declare enum ActionNames {
82
+ SHOW = "SHOW",
83
+ LIST = "LIST",
84
+ NEW = "NEW",
85
+ EDIT = "EDIT"
86
+ }
81
87
  declare enum ActionTypes {
82
88
  RECORD = "RECORD",
83
89
  Resource = "RESOUCRE"
@@ -105,6 +111,11 @@ declare enum FieldTypes {
105
111
  EXTERNAL_LINK = "EXTERNAL_LINK",
106
112
  MULTIPLE_TEXT = "MULTIPLE_TEXT"
107
113
  }
114
+ declare enum HandlerStrategy {
115
+ NORMAL = "NORMAL",
116
+ FILE_DOWNLOAD = "FILE_DOWNLOAD",
117
+ CUSTOM_COMPONENT = "CUSTOM_COMPONENT"
118
+ }
108
119
 
109
120
  type SizeType = 'small' | 'medium' | undefined;
110
121
  declare enum FileTypes {
@@ -120,6 +131,10 @@ declare enum FileTypes {
120
131
  POWER_POINT = "POWER_POINT",
121
132
  AUDIO = "AUDIO"
122
133
  }
134
+ declare enum ImageOptimizingCategories {
135
+ NORMAL = "NORMAL",
136
+ BANNERS = "BANNERS"
137
+ }
123
138
 
124
139
  interface IResource {
125
140
  filterProperties: string[];
@@ -831,4 +846,20 @@ interface DumpServiceActionProps {
831
846
  */
832
847
  declare function DumpServiceAction({ baseUrl }: DumpServiceActionProps): react_jsx_runtime.JSX.Element;
833
848
 
834
- export { ActionDialog, ActionDialogProps, ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, IAction, IActionMin, IDialogProps, IExtarAction, IExtras, IFilter, IMainProperty, IOptionalResource, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, IdentityClient, DumpServiceAction as IdentityDumpServiceAction, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, IdentityPage, IdentityPageProps, Permissions as IdentityPermissionPage, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, IdentityShow as ShowRecord, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, orderTypes, path, useApi, useAppConfigurations, useCredentials, useDialogs, useNavData, useNotifications, usePaths, useResources, useSnackAlert };
849
+ declare class UniqueFieldHelper {
850
+ private resource;
851
+ private uniqueFields;
852
+ constructor(resource: IResource);
853
+ getUniqueFields(): Set<string>;
854
+ private execute;
855
+ }
856
+
857
+ declare function getUrlFilters(data: any, schema: any, scopeKey: string | undefined): string;
858
+
859
+ declare function getFilterValues(fieldObject: any, field: string, defaultValuesObject: {
860
+ [key: string]: any;
861
+ }, searchParams: any, schema: {
862
+ [key: string]: ISchemaObject;
863
+ }): void;
864
+
865
+ export { ActionDialog, ActionDialogProps, ActionNames, ActionTypes, ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, FieldTypes, FileTypes, HandlerStrategy, IAction, IActionMin, IActionsProps, IDialogProps, IExtarAction, IExtras, IFilter, IListProps, IListRecordsProps, IMainProperty, IOptionalResource, IParent, IProperty, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, IdentityClient, DumpServiceAction as IdentityDumpServiceAction, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, IdentityPage, IdentityPageProps, Permissions as IdentityPermissionPage, DashBoardRouter as IdentityRouter, ShowRecord as IdentityShow, ImageOptimizingCategories, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, SettingsValueProps, Severity, IdentityShow as ShowRecord, SizeType, SnackAlertContext, SnackAlertProvider, State, ThemeProps, ThemeProvider, UniqueFieldHelper, getFilterValues, getUrlFilters, orderTypes, path, useApi, useAppConfigurations, useCredentials, useDialogs, useNavData, useNotifications, usePaths, useResources, useSnackAlert };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.11.35",
3
+ "version": "1.11.37",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",