@servicetitan/dte-unlayer 0.149.0 → 0.151.0
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/dist/display-conditions/ConditionGroup.d.ts +1 -1
- package/dist/display-conditions/ConditionGroup.d.ts.map +1 -1
- package/dist/display-conditions/ConditionGroupsSection.d.ts +1 -1
- package/dist/display-conditions/ConditionGroupsSection.d.ts.map +1 -1
- package/dist/display-conditions/ConditionRow.d.ts +1 -1
- package/dist/display-conditions/ConditionRow.d.ts.map +1 -1
- package/dist/display-conditions/DisplayConditionModal.d.ts +4 -3
- package/dist/display-conditions/DisplayConditionModal.d.ts.map +1 -1
- package/dist/display-conditions/DisplayConditionModal.js +112 -137
- package/dist/display-conditions/DisplayConditionModal.js.map +1 -1
- package/dist/display-conditions/LookupValueControl.d.ts +1 -1
- package/dist/display-conditions/LookupValueControl.d.ts.map +1 -1
- package/dist/display-conditions/SeparatorWithChip.d.ts +1 -1
- package/dist/display-conditions/SeparatorWithChip.d.ts.map +1 -1
- package/dist/editor-core-source.d.ts +3 -3
- package/dist/editor-core-source.d.ts.map +1 -1
- package/dist/editor-core-source.js +3 -3
- package/dist/editor-core-source.js.map +1 -1
- package/dist/unlayer-interface.d.ts +5 -1
- package/dist/unlayer-interface.d.ts.map +1 -1
- package/dist/unlayer-interface.js.map +1 -1
- package/package.json +1 -1
- package/src/display-conditions/DisplayConditionModal.tsx +110 -156
- package/src/editor-core-source.ts +3 -3
- package/src/unlayer-interface.tsx +5 -1
|
@@ -83,7 +83,11 @@ export interface CreateUnlayerEditorProps {
|
|
|
83
83
|
hideContentControls?: boolean;
|
|
84
84
|
hideBodyMenuItem?: boolean;
|
|
85
85
|
displayConditions?: boolean;
|
|
86
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* Optional portal target for the display-conditions dialog. Prefer unset so the dialog
|
|
88
|
+
* stays under the host `AnvilProvider` (`.anvil2` CSS scope). When set, content is wrapped
|
|
89
|
+
* in `ThemeProvider` so Anvil2 styles still apply after portaling.
|
|
90
|
+
*/
|
|
87
91
|
displayConditionModalPortalContainer?: Element | DocumentFragment | null;
|
|
88
92
|
enableHTMLEditing?: boolean;
|
|
89
93
|
enableHTMLEditingReadonly?: boolean;
|