@pitcher/canvas-ui 2026.1.19-124249 → 2026.1.19-125708
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 +5 -0
- package/canvas-ui.js.map +1 -1
- package/package.json +1 -1
package/canvas-ui.js
CHANGED
|
@@ -159582,6 +159582,10 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
|
159582
159582
|
"sectionSelectorApps",
|
|
159583
159583
|
computed(() => [])
|
|
159584
159584
|
);
|
|
159585
|
+
const launchDarkly = inject(
|
|
159586
|
+
"launchDarkly",
|
|
159587
|
+
computed(() => ({}))
|
|
159588
|
+
);
|
|
159585
159589
|
const { isCompletionWizardEnabled, retriggerWizard } = useCanvasCompletionWizard();
|
|
159586
159590
|
const isEditable = computed(
|
|
159587
159591
|
() => isImpact.value ? !props.data.selection_strategy || props.data.selection_strategy === "free" || isCompletionWizardEnabled.value && wizardStepSectionListIds.value.includes(props.id) : true
|
|
@@ -159607,6 +159611,7 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
|
159607
159611
|
const attrs = useAttrs();
|
|
159608
159612
|
const contentListRef = ref(null);
|
|
159609
159613
|
const componentName = computed(() => {
|
|
159614
|
+
if (!launchDarkly.value?.display_section_list_name) return;
|
|
159610
159615
|
const node = componentNodesById.value[props.id];
|
|
159611
159616
|
return node.tracking_id !== node.type ? node.tracking_id : "";
|
|
159612
159617
|
});
|