mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-25 11:51:07 +00:00
* Add condition for showing quick start carousel * Show coach mark when carousel is closed * Add condition for showing quick start carousel and other UI changes * Fix compile error * Fix issue with coach mark * Fix test * Add new sample data, fix link url, fix e2e tests * Fix e2e tests
19 lines
485 B
TypeScript
19 lines
485 B
TypeScript
import * as LocalStorageUtility from "./LocalStorageUtility";
|
|
import * as SessionStorageUtility from "./SessionStorageUtility";
|
|
|
|
export { LocalStorageUtility, SessionStorageUtility };
|
|
export enum StorageKey {
|
|
ActualItemPerPage,
|
|
CustomItemPerPage,
|
|
DatabaseAccountId,
|
|
EncryptedKeyToken,
|
|
IsCrossPartitionQueryEnabled,
|
|
MaxDegreeOfParellism,
|
|
IsGraphAutoVizDisabled,
|
|
TenantId,
|
|
MostRecentActivity,
|
|
SetPartitionKeyUndefined,
|
|
GalleryCalloutDismissed,
|
|
VisitedAccounts,
|
|
}
|