6843a642b5
Closes #7499 - Modifies context store states to be component states - Introduces the concept of `mainContextStore` which will dictate the available actions inside the command K - Adds contextual actions inside the right drawer - Creates a new type of modal variant
10 lines
501 B
TypeScript
10 lines
501 B
TypeScript
import { ContextStoreComponentInstanceContext } from '@/context-store/states/contexts/ContextStoreComponentInstanceContext';
|
|
import { createComponentStateV2 } from '@/ui/utilities/state/component-state/utils/createComponentStateV2';
|
|
|
|
export const contextStoreCurrentObjectMetadataIdComponentState =
|
|
createComponentStateV2<string | null>({
|
|
key: 'contextStoreCurrentObjectMetadataIdComponentState',
|
|
defaultValue: null,
|
|
componentInstanceContext: ContextStoreComponentInstanceContext,
|
|
});
|