@digital-ai/dot-components 2.5.2 → 2.5.3
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/CHANGE_LOG.md +19 -3
- package/index.esm.js +117 -112
- package/index.umd.js +153 -145
- package/lib/components/app-switcher/utils/helpers.d.ts +2 -2
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export declare const daiAppsHeaderMenuItem: (count?: number) => {
|
|
|
10
10
|
children: JSX.Element;
|
|
11
11
|
key: string;
|
|
12
12
|
};
|
|
13
|
-
export declare const sectionHeaderMenuItem: (title: string, count: number, showEmpty?: boolean) => {
|
|
13
|
+
export declare const sectionHeaderMenuItem: (title: string, count: number, showEmpty?: boolean, showCount?: boolean) => {
|
|
14
14
|
children: JSX.Element;
|
|
15
15
|
key: string;
|
|
16
16
|
};
|
|
@@ -19,7 +19,7 @@ export declare const createTopLevelMenuItem: (url: string, logo: string, title:
|
|
|
19
19
|
export declare const createAppTypeLabel: (appTypeName: string, logo: string, appProps: MenuItemProps[]) => JSX.Element;
|
|
20
20
|
export declare const getInstanceStateText: (application: {
|
|
21
21
|
instance_state?: number;
|
|
22
|
-
}) => "Production
|
|
22
|
+
}) => "Production" | "Non-production";
|
|
23
23
|
export declare const sortRecentAppInstancesFn: (a: RecentAppInstance, b: RecentAppInstance) => number;
|
|
24
24
|
export declare const sortAppInstancesFn: (a: Partial<ApplicationModel>, b: Partial<ApplicationModel>) => number;
|
|
25
25
|
export declare const RECENT_INSTANCES_KEY = "dot-app-switcher-recent-app-instances";
|