@pitcher/canvas-ui 2026.1.20-125834-beta → 2026.1.20-131745
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/canvas-ui.js
CHANGED
|
@@ -159635,6 +159635,10 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
|
159635
159635
|
"sectionSelectorApps",
|
|
159636
159636
|
computed(() => [])
|
|
159637
159637
|
);
|
|
159638
|
+
const launchDarkly = inject(
|
|
159639
|
+
"launchDarkly",
|
|
159640
|
+
computed(() => ({}))
|
|
159641
|
+
);
|
|
159638
159642
|
const { isCompletionWizardEnabled, retriggerWizard } = useCanvasCompletionWizard();
|
|
159639
159643
|
const isEditable = computed(
|
|
159640
159644
|
() => isImpact.value ? !props.data.selection_strategy || props.data.selection_strategy === "free" || isCompletionWizardEnabled.value && wizardStepSectionListIds.value.includes(props.id) : true
|
|
@@ -159660,6 +159664,7 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
|
159660
159664
|
const attrs = useAttrs();
|
|
159661
159665
|
const contentListRef = ref(null);
|
|
159662
159666
|
const componentName = computed(() => {
|
|
159667
|
+
if (!launchDarkly.value?.display_section_list_name) return;
|
|
159663
159668
|
const node = componentNodesById.value[props.id];
|
|
159664
159669
|
return node.tracking_id !== node.type ? node.tracking_id : "";
|
|
159665
159670
|
});
|