We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52bfd63 commit cdaad4eCopy full SHA for cdaad4e
1 file changed
src/views/Settings/PolicyWorkbench/settings/realTypes.ts
@@ -7,13 +7,15 @@ import type { EffectivePolicyValue } from '../../../../types/index'
7
8
export type RealPolicyScope = 'system' | 'group' | 'user'
9
export type RealPolicyResolutionMode = 'precedence' | 'merge' | 'conflict_requires_selection'
10
+export type RealPolicyEditorDialogLayout = 'default' | 'wide'
11
12
export interface RealPolicySettingDefinition {
13
key: string
14
title: string
15
context?: string
16
description: string
17
editor: unknown
18
+ editorDialogLayout?: RealPolicyEditorDialogLayout
19
resolutionMode: RealPolicyResolutionMode
20
createEmptyValue: () => EffectivePolicyValue
21
normalizeDraftValue: (value: EffectivePolicyValue) => EffectivePolicyValue
0 commit comments