@pitcher/canvas-ui 2026.1.19-125708 → 2026.1.19-125904-beta

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.
Files changed (57) hide show
  1. package/canvas-ui.css +4 -4
  2. package/canvas-ui.js +238 -172
  3. package/canvas-ui.js.map +1 -1
  4. package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +4 -0
  5. package/lib/apps/browser/stores/api.d.ts +9 -0
  6. package/lib/apps/browser/stores/upload.d.ts +4 -0
  7. package/lib/apps/canvas-builder/composables/useCanvas.d.ts +54 -20
  8. package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +12 -0
  9. package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +12 -0
  10. package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
  11. package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
  12. package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
  13. package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +2 -0
  14. package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +2 -0
  15. package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +1 -0
  16. package/lib/components/CSwitch/CSwitch.vue.d.ts +4 -2
  17. package/lib/types/launchDarkly.types.d.ts +1 -1
  18. package/lib/types/organizationSettings.types.d.ts +0 -4
  19. package/locale/de.json +11 -0
  20. package/locale/el.json +11 -0
  21. package/locale/en.json +11 -0
  22. package/locale/es.json +11 -0
  23. package/locale/fr.json +11 -0
  24. package/locale/it.json +11 -0
  25. package/locale/ja.json +3 -0
  26. package/locale/nl.json +11 -0
  27. package/locale/pl.json +11 -0
  28. package/locale/pt-br.json +11 -0
  29. package/locale/pt.json +11 -0
  30. package/locale/th.json +11 -0
  31. package/locale/tr.json +11 -0
  32. package/locale/zh.json +3 -0
  33. package/package.json +1 -1
  34. package/types/openapi/models/FilePermission.d.ts +1 -0
  35. package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
  36. package/types/openapi/models/PaginatedAppList.d.ts +2 -2
  37. package/types/openapi/models/PaginatedAuthTokenList.d.ts +2 -2
  38. package/types/openapi/models/PaginatedCanvasList.d.ts +2 -2
  39. package/types/openapi/models/PaginatedCollaborationList.d.ts +2 -2
  40. package/types/openapi/models/PaginatedContentDistributionGroupList.d.ts +2 -2
  41. package/types/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +2 -2
  42. package/types/openapi/models/PaginatedEnvironmentList.d.ts +2 -2
  43. package/types/openapi/models/PaginatedEventList.d.ts +2 -2
  44. package/types/openapi/models/PaginatedFavoriteList.d.ts +2 -2
  45. package/types/openapi/models/PaginatedFileList.d.ts +2 -2
  46. package/types/openapi/models/PaginatedFileRevisionList.d.ts +2 -2
  47. package/types/openapi/models/PaginatedFolderList.d.ts +2 -2
  48. package/types/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +2 -2
  49. package/types/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +2 -2
  50. package/types/openapi/models/PaginatedInstanceList.d.ts +2 -2
  51. package/types/openapi/models/PaginatedInstanceMembershipList.d.ts +2 -2
  52. package/types/openapi/models/PaginatedInvitationList.d.ts +2 -2
  53. package/types/openapi/models/PaginatedMetadataTemplateList.d.ts +2 -2
  54. package/types/openapi/models/PaginatedOfflineSyncFolderList.d.ts +2 -2
  55. package/types/openapi/models/PaginatedRegionList.d.ts +2 -2
  56. package/types/openapi/models/PaginatedRevisionList.d.ts +2 -2
  57. package/types/openapi/models/PaginatedUserList.d.ts +2 -2
package/canvas-ui.js CHANGED
@@ -79001,6 +79001,41 @@ const _sfc_main$6G = /* @__PURE__ */ defineComponent({
79001
79001
  const CSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6G, [["__scopeId", "data-v-de7c987d"]]);
79002
79002
 
79003
79003
  const _sfc_main$6F = /* @__PURE__ */ defineComponent({
79004
+ __name: "CSwitch",
79005
+ props: {
79006
+ checked: { type: Boolean },
79007
+ disabled: { type: Boolean },
79008
+ themeOverrides: {},
79009
+ size: { default: "medium" }
79010
+ },
79011
+ emits: ["update:checked", "change"],
79012
+ setup(__props) {
79013
+ return (_ctx, _cache) => {
79014
+ return openBlock(), createBlock(unref(NSwitch), {
79015
+ class: "c-switch",
79016
+ disabled: _ctx.disabled,
79017
+ size: _ctx.size,
79018
+ "theme-overrides": _ctx.themeOverrides,
79019
+ value: _ctx.checked,
79020
+ "onUpdate:value": _cache[0] || (_cache[0] = (val) => {
79021
+ _ctx.$emit("update:checked", val);
79022
+ _ctx.$emit("change", val);
79023
+ })
79024
+ }, createSlots({ _: 2 }, [
79025
+ renderList(_ctx.$slots, (_, name) => {
79026
+ return {
79027
+ name,
79028
+ fn: withCtx((slotProps) => [
79029
+ renderSlot(_ctx.$slots, name, normalizeProps(guardReactiveProps(slotProps || {})))
79030
+ ])
79031
+ };
79032
+ })
79033
+ ]), 1032, ["disabled", "size", "theme-overrides", "value"]);
79034
+ };
79035
+ }
79036
+ });
79037
+
79038
+ const _sfc_main$6E = /* @__PURE__ */ defineComponent({
79004
79039
  __name: "CTag",
79005
79040
  setup(__props) {
79006
79041
  return (_ctx, _cache) => {
@@ -79027,7 +79062,7 @@ const _hoisted_1$57 = {
79027
79062
  };
79028
79063
  const _hoisted_2$3K = { key: 0 };
79029
79064
  const _hoisted_3$2$ = { class: "flex flex-wrap gap-1" };
79030
- const _sfc_main$6E = /* @__PURE__ */ defineComponent({
79065
+ const _sfc_main$6D = /* @__PURE__ */ defineComponent({
79031
79066
  __name: "CTags",
79032
79067
  props: {
79033
79068
  value: { default: () => [] },
@@ -79214,7 +79249,7 @@ const _sfc_main$6E = /* @__PURE__ */ defineComponent({
79214
79249
  _ctx.suggestedTagsTitle ? (openBlock(), createElementBlock("div", _hoisted_2$3K, toDisplayString(_ctx.suggestedTagsTitle), 1)) : createCommentVNode("", true),
79215
79250
  createElementVNode("div", _hoisted_3$2$, [
79216
79251
  (openBlock(true), createElementBlock(Fragment, null, renderList(options.value, (option) => {
79217
- return openBlock(), createBlock(_sfc_main$6F, {
79252
+ return openBlock(), createBlock(_sfc_main$6E, {
79218
79253
  key: option.value,
79219
79254
  class: "cursor-pointer",
79220
79255
  round: false,
@@ -79233,9 +79268,9 @@ const _sfc_main$6E = /* @__PURE__ */ defineComponent({
79233
79268
  }
79234
79269
  });
79235
79270
 
79236
- const CTags = /* @__PURE__ */ _export_sfc(_sfc_main$6E, [["__scopeId", "data-v-a1b19ddf"]]);
79271
+ const CTags = /* @__PURE__ */ _export_sfc(_sfc_main$6D, [["__scopeId", "data-v-a1b19ddf"]]);
79237
79272
 
79238
- const _sfc_main$6D = /* @__PURE__ */ defineComponent({
79273
+ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79239
79274
  __name: "CTagsPlaceholder",
79240
79275
  emits: ["select"],
79241
79276
  setup(__props, { emit: __emit }) {
@@ -79725,7 +79760,7 @@ const _hoisted_3$2_ = {
79725
79760
  key: 1,
79726
79761
  class: "flex gap-4 w-full"
79727
79762
  };
79728
- const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79763
+ const _sfc_main$6B = /* @__PURE__ */ defineComponent({
79729
79764
  __name: "CFileAttributes",
79730
79765
  props: {
79731
79766
  modelValue: {},
@@ -79749,11 +79784,16 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79749
79784
  "pitcherSettings",
79750
79785
  computed(() => ({}))
79751
79786
  );
79787
+ const launchDarkly = inject(
79788
+ "launchDarkly",
79789
+ computed(() => ({}))
79790
+ );
79752
79791
  const editingField = ref(null);
79753
79792
  const showTagsComponent = ref(!props.showKeepAsIsPlaceholder);
79754
79793
  const initialExpiresAtOption = ref(props.modelValue.expiresAtOption);
79755
79794
  const labels = {
79756
79795
  sharing: t("canvasUI.browserApp.uploadFilesModal.sharing.label"),
79796
+ divisible: t("canvasUI.browserApp.uploadFilesModal.divisible.label"),
79757
79797
  tags: t("canvasUI.browserApp.uploadFilesModal.tags.label"),
79758
79798
  expiresAtDateTime: t("canvasUI.browserApp.uploadFilesModal.expiresAt.label"),
79759
79799
  accessType: t("canvasUI.browserApp.uploadFilesModal.access.label")
@@ -79788,7 +79828,18 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79788
79828
  }
79789
79829
  function onChangeSharing(value) {
79790
79830
  updateForm({
79791
- permissions: value === null ? { can_share: void 0 } : { can_share: value === "allowed" }
79831
+ permissions: {
79832
+ ...form.value.permissions,
79833
+ can_share: value === null ? void 0 : value === "allowed"
79834
+ }
79835
+ });
79836
+ }
79837
+ function onChangeDivisible(value) {
79838
+ updateForm({
79839
+ permissions: {
79840
+ ...form.value.permissions,
79841
+ can_be_divided: value
79842
+ }
79792
79843
  });
79793
79844
  }
79794
79845
  function onChangeAccessType(value) {
@@ -79852,9 +79903,22 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79852
79903
  }
79853
79904
  }
79854
79905
  });
79906
+ const divisibleValueAsBoolean = computed({
79907
+ get: () => {
79908
+ return form.value.permissions?.can_be_divided ?? true;
79909
+ },
79910
+ set: (value) => {
79911
+ if (!form.value.permissions) {
79912
+ form.value.permissions = {};
79913
+ }
79914
+ form.value.permissions.can_be_divided = value;
79915
+ }
79916
+ });
79855
79917
  function isEditingFieldOrNonEmpty(fieldName) {
79856
79918
  if (fieldName === "permissions") {
79857
79919
  return form.value.permissions?.can_share !== void 0 || editingField.value === fieldName;
79920
+ } else if (fieldName === "divisiblePermission") {
79921
+ return form.value.permissions?.can_be_divided !== void 0 || editingField.value === fieldName;
79858
79922
  } else if (fieldName === "tags") {
79859
79923
  return editingField.value === fieldName || Array.isArray(form.value.tags) && form.value.tags.length > 0;
79860
79924
  }
@@ -79866,6 +79930,10 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79866
79930
  editingField.value = null;
79867
79931
  return;
79868
79932
  }
79933
+ if (fieldName === "divisiblePermission" && form.value.permissions?.can_be_divided === void 0) {
79934
+ editingField.value = null;
79935
+ return;
79936
+ }
79869
79937
  if (fieldName === "tags") {
79870
79938
  if (!Array.isArray(form.value.tags) || form.value.tags.length === 0) {
79871
79939
  editingField.value = null;
@@ -79882,8 +79950,11 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79882
79950
  editingField.value = fieldName;
79883
79951
  if (fieldName === "permissions") {
79884
79952
  if (form.value.permissions?.can_share === void 0) {
79885
- form.value.permissions = { can_share: true };
79886
- sharingValueAsText.value = "allowed";
79953
+ form.value.permissions = { ...form.value.permissions, can_share: true };
79954
+ }
79955
+ } else if (fieldName === "divisiblePermission") {
79956
+ if (form.value.permissions?.can_be_divided === void 0) {
79957
+ form.value.permissions = { ...form.value.permissions, can_be_divided: true };
79887
79958
  }
79888
79959
  }
79889
79960
  nextTick(() => {
@@ -79953,7 +80024,7 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
79953
80024
  }, {
79954
80025
  default: withCtx(() => [
79955
80026
  createElementVNode("div", _hoisted_1$56, [
79956
- _ctx.showKeepAsIsPlaceholder ? (openBlock(), createBlock(_sfc_main$6D, {
80027
+ _ctx.showKeepAsIsPlaceholder ? (openBlock(), createBlock(_sfc_main$6C, {
79957
80028
  key: 0,
79958
80029
  onSelect: handleTagsAction
79959
80030
  })) : createCommentVNode("", true),
@@ -80071,7 +80142,26 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
80071
80142
  ]))
80072
80143
  ]),
80073
80144
  _: 1
80074
- })) : createCommentVNode("", true)
80145
+ })) : createCommentVNode("", true),
80146
+ _ctx.showPermissionSettings && unref(launchDarkly).enable_file_divisible_permission ? (openBlock(), createBlock(unref(NFormItemGridItem), {
80147
+ key: 3,
80148
+ label: labels.divisible
80149
+ }, {
80150
+ default: withCtx(() => [
80151
+ _ctx.showKeepAsIsPlaceholder && !isEditingFieldOrNonEmpty("divisiblePermission") ? (openBlock(), createBlock(CInputPlaceholder, {
80152
+ key: 0,
80153
+ onClick: _cache[9] || (_cache[9] = ($event) => enableEditing("divisiblePermission", unref(MetadataTemplateFieldTypeEnum).SELECT))
80154
+ })) : (openBlock(), createBlock(_sfc_main$6F, {
80155
+ key: 1,
80156
+ checked: divisibleValueAsBoolean.value,
80157
+ class: "mx-1",
80158
+ "data-field": "divisiblePermission",
80159
+ onBlur: _cache[10] || (_cache[10] = ($event) => handleBlur("divisiblePermission")),
80160
+ "onUpdate:checked": onChangeDivisible
80161
+ }, null, 8, ["checked"]))
80162
+ ]),
80163
+ _: 1
80164
+ }, 8, ["label"])) : createCommentVNode("", true)
80075
80165
  ]),
80076
80166
  _: 1
80077
80167
  })
@@ -80085,7 +80175,7 @@ const _sfc_main$6C = /* @__PURE__ */ defineComponent({
80085
80175
  const __default__$3 = {
80086
80176
  name: "CInput"
80087
80177
  };
80088
- const _sfc_main$6B = /* @__PURE__ */ defineComponent({
80178
+ const _sfc_main$6A = /* @__PURE__ */ defineComponent({
80089
80179
  ...__default__$3,
80090
80180
  setup(__props, { expose: __expose }) {
80091
80181
  const inputRef = ref(null);
@@ -80111,7 +80201,7 @@ const _sfc_main$6B = /* @__PURE__ */ defineComponent({
80111
80201
  }
80112
80202
  });
80113
80203
 
80114
- const _sfc_main$6A = /* @__PURE__ */ defineComponent({
80204
+ const _sfc_main$6z = /* @__PURE__ */ defineComponent({
80115
80205
  __name: "CModal",
80116
80206
  setup(__props) {
80117
80207
  return (_ctx, _cache) => {
@@ -80129,7 +80219,7 @@ const _sfc_main$6A = /* @__PURE__ */ defineComponent({
80129
80219
  }
80130
80220
  });
80131
80221
 
80132
- const _sfc_main$6z = /* @__PURE__ */ defineComponent({
80222
+ const _sfc_main$6y = /* @__PURE__ */ defineComponent({
80133
80223
  __name: "CPopover",
80134
80224
  setup(__props) {
80135
80225
  return (_ctx, _cache) => {
@@ -80150,7 +80240,7 @@ const _sfc_main$6z = /* @__PURE__ */ defineComponent({
80150
80240
  }
80151
80241
  });
80152
80242
 
80153
- const _sfc_main$6y = /* @__PURE__ */ defineComponent({
80243
+ const _sfc_main$6x = /* @__PURE__ */ defineComponent({
80154
80244
  __name: "CSearch",
80155
80245
  props: {
80156
80246
  autofocus: { type: Boolean, default: false },
@@ -80167,7 +80257,7 @@ const _sfc_main$6y = /* @__PURE__ */ defineComponent({
80167
80257
  const emit = __emit;
80168
80258
  const { t } = useI18n();
80169
80259
  return (_ctx, _cache) => {
80170
- return openBlock(), createBlock(_sfc_main$6B, {
80260
+ return openBlock(), createBlock(_sfc_main$6A, {
80171
80261
  autofocus: _ctx.autofocus,
80172
80262
  class: normalizeClass(["c-search flex items-center justify-center", {
80173
80263
  "c-search--no-border": _ctx.hideBorder,
@@ -80206,10 +80296,10 @@ const _sfc_main$6y = /* @__PURE__ */ defineComponent({
80206
80296
  }
80207
80297
  });
80208
80298
 
80209
- const CSearch = /* @__PURE__ */ _export_sfc(_sfc_main$6y, [["__scopeId", "data-v-11dbab78"]]);
80299
+ const CSearch = /* @__PURE__ */ _export_sfc(_sfc_main$6x, [["__scopeId", "data-v-11dbab78"]]);
80210
80300
 
80211
80301
  const _hoisted_1$55 = { class: "c-search-on-click relative" };
80212
- const _sfc_main$6x = /* @__PURE__ */ defineComponent({
80302
+ const _sfc_main$6w = /* @__PURE__ */ defineComponent({
80213
80303
  __name: "CSearchOnClick",
80214
80304
  props: {
80215
80305
  disabled: { type: Boolean },
@@ -80266,7 +80356,7 @@ const _sfc_main$6x = /* @__PURE__ */ defineComponent({
80266
80356
  }, 8, ["disabled"])) : createCommentVNode("", true),
80267
80357
  createVNode(unref(NInputGroup), null, {
80268
80358
  default: withCtx(() => [
80269
- createVNode(_sfc_main$6B, {
80359
+ createVNode(_sfc_main$6A, {
80270
80360
  value: searchValue.value,
80271
80361
  "onUpdate:value": _cache[1] || (_cache[1] = ($event) => searchValue.value = $event),
80272
80362
  class: normalizeClass({ "max-w-[320px] min-w-[280px]": !_ctx.fullWidth, "w-full": _ctx.fullWidth, "pl-8": inputFocused.value || searchValue.value }),
@@ -80454,7 +80544,7 @@ function useMetadataSearch(options = {}) {
80454
80544
  const _hoisted_1$54 = {
80455
80545
  class: "c-search-on-click-with-suggestions relative"
80456
80546
  };
80457
- const _sfc_main$6w = /*@__PURE__*/defineComponent({
80547
+ const _sfc_main$6v = /*@__PURE__*/defineComponent({
80458
80548
  __name: 'CSearchOnClickWithSuggestions',
80459
80549
  props: {
80460
80550
  disabled: {
@@ -80669,9 +80759,9 @@ const _sfc_main$6w = /*@__PURE__*/defineComponent({
80669
80759
  }
80670
80760
  });
80671
80761
 
80672
- const CSearchOnClickWithSuggestions = /* @__PURE__ */ _export_sfc(_sfc_main$6w, [["__scopeId", "data-v-ba9e794b"]]);
80762
+ const CSearchOnClickWithSuggestions = /* @__PURE__ */ _export_sfc(_sfc_main$6v, [["__scopeId", "data-v-ba9e794b"]]);
80673
80763
 
80674
- const _sfc_main$6v = /* @__PURE__ */ defineComponent({
80764
+ const _sfc_main$6u = /* @__PURE__ */ defineComponent({
80675
80765
  __name: "CThemeEditor",
80676
80766
  setup(__props) {
80677
80767
  const showForm = ref(false);
@@ -80807,7 +80897,7 @@ const _sfc_main$6v = /* @__PURE__ */ defineComponent({
80807
80897
  const __default__$2 = {
80808
80898
  name: "CToolbar"
80809
80899
  };
80810
- const _sfc_main$6u = /* @__PURE__ */ defineComponent({
80900
+ const _sfc_main$6t = /* @__PURE__ */ defineComponent({
80811
80901
  ...__default__$2,
80812
80902
  props: {
80813
80903
  search: {},
@@ -80842,9 +80932,9 @@ const _sfc_main$6u = /* @__PURE__ */ defineComponent({
80842
80932
  }
80843
80933
  });
80844
80934
 
80845
- const CToolbar = /* @__PURE__ */ _export_sfc(_sfc_main$6u, [["__scopeId", "data-v-50c62c45"]]);
80935
+ const CToolbar = /* @__PURE__ */ _export_sfc(_sfc_main$6t, [["__scopeId", "data-v-50c62c45"]]);
80846
80936
 
80847
- const _sfc_main$6t = /* @__PURE__ */ defineComponent({
80937
+ const _sfc_main$6s = /* @__PURE__ */ defineComponent({
80848
80938
  __name: "CTooltip",
80849
80939
  setup(__props) {
80850
80940
  const isSSR = typeof window === "undefined";
@@ -80868,7 +80958,7 @@ const _sfc_main$6t = /* @__PURE__ */ defineComponent({
80868
80958
  }
80869
80959
  });
80870
80960
 
80871
- const _sfc_main$6s = /* @__PURE__ */ defineComponent({
80961
+ const _sfc_main$6r = /* @__PURE__ */ defineComponent({
80872
80962
  __name: "CAvatar",
80873
80963
  setup(__props) {
80874
80964
  const attrs = useAttrs();
@@ -80892,7 +80982,7 @@ const _sfc_main$6s = /* @__PURE__ */ defineComponent({
80892
80982
  }
80893
80983
  });
80894
80984
 
80895
- const _sfc_main$6r = /* @__PURE__ */ defineComponent({
80985
+ const _sfc_main$6q = /* @__PURE__ */ defineComponent({
80896
80986
  __name: "CCollapseTransition",
80897
80987
  setup(__props) {
80898
80988
  const attrs = useAttrs();
@@ -80909,7 +80999,7 @@ const _sfc_main$6r = /* @__PURE__ */ defineComponent({
80909
80999
  }
80910
81000
  });
80911
81001
 
80912
- const _sfc_main$6q = /* @__PURE__ */ defineComponent({
81002
+ const _sfc_main$6p = /* @__PURE__ */ defineComponent({
80913
81003
  __name: "CSpin",
80914
81004
  setup(__props) {
80915
81005
  return (_ctx, _cache) => {
@@ -80927,7 +81017,7 @@ const _sfc_main$6q = /* @__PURE__ */ defineComponent({
80927
81017
  }
80928
81018
  });
80929
81019
 
80930
- const _sfc_main$6p = /* @__PURE__ */ defineComponent({
81020
+ const _sfc_main$6o = /* @__PURE__ */ defineComponent({
80931
81021
  __name: "CEmpty",
80932
81022
  setup(__props) {
80933
81023
  return (_ctx, _cache) => {
@@ -80945,40 +81035,6 @@ const _sfc_main$6p = /* @__PURE__ */ defineComponent({
80945
81035
  }
80946
81036
  });
80947
81037
 
80948
- const _sfc_main$6o = /* @__PURE__ */ defineComponent({
80949
- __name: "CSwitch",
80950
- props: {
80951
- checked: { type: Boolean },
80952
- disabled: { type: Boolean },
80953
- themeOverrides: {},
80954
- size: {}
80955
- },
80956
- emits: ["update:checked", "change"],
80957
- setup(__props) {
80958
- return (_ctx, _cache) => {
80959
- return openBlock(), createBlock(unref(NSwitch), {
80960
- class: "c-switch",
80961
- disabled: _ctx.disabled,
80962
- "theme-overrides": _ctx.themeOverrides,
80963
- value: _ctx.checked,
80964
- "onUpdate:value": _cache[0] || (_cache[0] = (val) => {
80965
- _ctx.$emit("update:checked", val);
80966
- _ctx.$emit("change", val);
80967
- })
80968
- }, createSlots({ _: 2 }, [
80969
- renderList(_ctx.$slots, (_, name) => {
80970
- return {
80971
- name,
80972
- fn: withCtx((slotProps) => [
80973
- renderSlot(_ctx.$slots, name, normalizeProps(guardReactiveProps(slotProps || {})))
80974
- ])
80975
- };
80976
- })
80977
- ]), 1032, ["disabled", "theme-overrides", "value"]);
80978
- };
80979
- }
80980
- });
80981
-
80982
81038
  let disableCustomTooltips = false;
80983
81039
  const tooltipDirective = {
80984
81040
  created() {
@@ -81322,7 +81378,7 @@ const _sfc_main$6n = /* @__PURE__ */ defineComponent({
81322
81378
  __expose({ hidePopup });
81323
81379
  return (_ctx, _cache) => {
81324
81380
  return withDirectives((openBlock(), createElementBlock("div", null, [
81325
- createVNode(_sfc_main$6z, {
81381
+ createVNode(_sfc_main$6y, {
81326
81382
  show: show.value,
81327
81383
  "onUpdate:show": _cache[2] || (_cache[2] = ($event) => show.value = $event),
81328
81384
  "content-class": "pa-2",
@@ -81820,7 +81876,7 @@ const _sfc_main$6e = /* @__PURE__ */ defineComponent({
81820
81876
  }, null, 8, ["active-canvas-id", "canvas"])) : createCommentVNode("", true),
81821
81877
  createElementVNode("div", _hoisted_3$2V, [
81822
81878
  _ctx.canvases?.length ? (openBlock(), createElementBlock("div", _hoisted_4$2k, toDisplayString(unref(t)("canvasUI.CCanvasSelector.lastUsed")), 1)) : createCommentVNode("", true),
81823
- createVNode(_sfc_main$6q, {
81879
+ createVNode(_sfc_main$6p, {
81824
81880
  class: "h-full",
81825
81881
  show: _ctx.isLoading
81826
81882
  }, {
@@ -83001,7 +83057,7 @@ const _sfc_main$69 = /* @__PURE__ */ defineComponent({
83001
83057
  class: normalizeClass(["c-contact-selector h-full flex", { "flex-col": _ctx.singleColumnView }])
83002
83058
  }, [
83003
83059
  createElementVNode("div", _hoisted_1$4Q, [
83004
- createVNode(_sfc_main$6x, {
83060
+ createVNode(_sfc_main$6w, {
83005
83061
  disabled: !!_ctx.loading,
83006
83062
  "full-width": "",
83007
83063
  "initial-search-value": _ctx.search,
@@ -83320,7 +83376,7 @@ const _sfc_main$66 = /* @__PURE__ */ defineComponent({
83320
83376
  index < tags.value.length - 1 ? (openBlock(), createElementBlock("span", _hoisted_5$1V, ", ")) : createCommentVNode("", true)
83321
83377
  ]);
83322
83378
  }), 128)),
83323
- remainingTags.value.length ? (openBlock(), createBlock(_sfc_main$6z, {
83379
+ remainingTags.value.length ? (openBlock(), createBlock(_sfc_main$6y, {
83324
83380
  key: 0,
83325
83381
  "keep-alive-on-hover": false,
83326
83382
  placement: _ctx.option.index === 0 ? "bottom" : "top",
@@ -85965,7 +86021,7 @@ const _sfc_main$5Z = /* @__PURE__ */ defineComponent({
85965
86021
  ]),
85966
86022
  _: 1
85967
86023
  }, 8, ["label"]),
85968
- createVNode(_sfc_main$6B, {
86024
+ createVNode(_sfc_main$6A, {
85969
86025
  placeholder: unref(t)("canvasUI.CTypographyConfiguratorItem.lineHeightLabel"),
85970
86026
  style: { "--n-color": "transparent" },
85971
86027
  value: _ctx.item.line_height,
@@ -85981,7 +86037,7 @@ const _sfc_main$5Z = /* @__PURE__ */ defineComponent({
85981
86037
  ]),
85982
86038
  _: 1
85983
86039
  }, 8, ["label"]),
85984
- createVNode(_sfc_main$6B, {
86040
+ createVNode(_sfc_main$6A, {
85985
86041
  placeholder: unref(t)("canvasUI.CTypographyConfiguratorItem.letterSpacingLabel"),
85986
86042
  style: { "--n-color": "transparent" },
85987
86043
  value: _ctx.item.letter_spacing,
@@ -87193,7 +87249,7 @@ const _sfc_main$5N = /* @__PURE__ */ defineComponent({
87193
87249
  emit("cancel");
87194
87250
  }
87195
87251
  return (_ctx, _cache) => {
87196
- return openBlock(), createBlock(_sfc_main$6A, {
87252
+ return openBlock(), createBlock(_sfc_main$6z, {
87197
87253
  onEsc: onCancel,
87198
87254
  show: ""
87199
87255
  }, {
@@ -95551,7 +95607,7 @@ const _sfc_main$5L = /* @__PURE__ */ defineComponent({
95551
95607
  });
95552
95608
  return (_ctx, _cache) => {
95553
95609
  return _ctx.value !== null && _ctx.value !== void 0 ? (openBlock(), createElementBlock("div", _hoisted_1$4x, [
95554
- createVNode(_sfc_main$6F, {
95610
+ createVNode(_sfc_main$6E, {
95555
95611
  class: "flex gap-1 bg-primary6 color-text",
95556
95612
  size: "small"
95557
95613
  }, {
@@ -101768,11 +101824,11 @@ const _sfc_main$5p = /* @__PURE__ */ defineComponent({
101768
101824
  }
101769
101825
  });
101770
101826
  return (_ctx, _cache) => {
101771
- return isValidPicture.value ? (openBlock(), createBlock(_sfc_main$6s, {
101827
+ return isValidPicture.value ? (openBlock(), createBlock(_sfc_main$6r, {
101772
101828
  key: 0,
101773
101829
  size: _ctx.size,
101774
101830
  src: _ctx.picture
101775
- }, null, 8, ["size", "src"])) : (openBlock(), createBlock(_sfc_main$6s, {
101831
+ }, null, 8, ["size", "src"])) : (openBlock(), createBlock(_sfc_main$6r, {
101776
101832
  key: 1,
101777
101833
  color: color.value,
101778
101834
  size: _ctx.size
@@ -102573,7 +102629,7 @@ const _sfc_main$5j = /* @__PURE__ */ defineComponent({
102573
102629
  "suggestions-fetcher": fetchDistinctValueSuggestions,
102574
102630
  onSearch
102575
102631
  }, null, 8, ["disabled", "initial-search-value", "min-search-length", "placeholder"]))
102576
- ], 64)) : (openBlock(), createBlock(_sfc_main$6x, {
102632
+ ], 64)) : (openBlock(), createBlock(_sfc_main$6w, {
102577
102633
  key: 1,
102578
102634
  ref_key: "searchOnClickRef",
102579
102635
  ref: searchOnClickRef,
@@ -102645,7 +102701,7 @@ const _sfc_main$5j = /* @__PURE__ */ defineComponent({
102645
102701
  "suggestions-fetcher": fetchDistinctValueSuggestions,
102646
102702
  onSearch
102647
102703
  }, null, 8, ["disabled", "initial-search-value", "min-search-length", "placeholder"]))
102648
- ], 64)) : (openBlock(), createBlock(_sfc_main$6x, {
102704
+ ], 64)) : (openBlock(), createBlock(_sfc_main$6w, {
102649
102705
  key: 1,
102650
102706
  ref_key: "searchOnClickRef",
102651
102707
  ref: searchOnClickRef,
@@ -104223,7 +104279,7 @@ const _sfc_main$5b = /* @__PURE__ */ defineComponent({
104223
104279
  innerHTML: unref(highlight)(tags.value.join(", "), _ctx.search)
104224
104280
  }, null, 8, _hoisted_5$1G)
104225
104281
  ])) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(tags.value, (tag, index) => {
104226
- return withDirectives((openBlock(), createBlock(_sfc_main$6F, {
104282
+ return withDirectives((openBlock(), createBlock(_sfc_main$6E, {
104227
104283
  key: index,
104228
104284
  class: normalizeClass(_ctx.tagsClass),
104229
104285
  size: "small"
@@ -104236,7 +104292,7 @@ const _sfc_main$5b = /* @__PURE__ */ defineComponent({
104236
104292
  [_directive_tooltip, shouldShowTagTooltip(tag) ? tag : null]
104237
104293
  ]);
104238
104294
  }), 128)),
104239
- remainingTags.value.length ? (openBlock(), createBlock(_sfc_main$6z, {
104295
+ remainingTags.value.length ? (openBlock(), createBlock(_sfc_main$6y, {
104240
104296
  key: 2,
104241
104297
  class: "c-table-tag__popover max-w-[600px]",
104242
104298
  placement: _ctx.rowIndex === 0 ? "bottom" : "top",
@@ -104261,7 +104317,7 @@ const _sfc_main$5b = /* @__PURE__ */ defineComponent({
104261
104317
  default: withCtx(() => [
104262
104318
  createElementVNode("div", _hoisted_6$1s, [
104263
104319
  _ctx.displayAsText ? (openBlock(), createElementBlock("div", _hoisted_7$14, toDisplayString(remainingTags.value.join(", ")), 1)) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(remainingTags.value, (tag, index) => {
104264
- return openBlock(), createBlock(_sfc_main$6F, {
104320
+ return openBlock(), createBlock(_sfc_main$6E, {
104265
104321
  key: index,
104266
104322
  class: normalizeClass(_ctx.moreTagsClass),
104267
104323
  size: "small"
@@ -104364,7 +104420,7 @@ const _sfc_main$5a = /* @__PURE__ */ defineComponent({
104364
104420
  };
104365
104421
  return (_ctx, _cache) => {
104366
104422
  const _directive_tooltip = resolveDirective("tooltip");
104367
- return openBlock(), createBlock(_sfc_main$6z, {
104423
+ return openBlock(), createBlock(_sfc_main$6y, {
104368
104424
  placement: "bottom-end",
104369
104425
  "show-arrow": false,
104370
104426
  trigger: "click"
@@ -104835,7 +104891,7 @@ const _sfc_main$59 = /* @__PURE__ */ defineComponent({
104835
104891
  placeholder: _ctx.placeholder,
104836
104892
  "suggestions-fetcher": fetchSuggestions,
104837
104893
  onSearch: _cache[0] || (_cache[0] = ($event) => emit("update:search", $event, _ctx.filters))
104838
- }, null, 8, ["disabled", "initial-search-value", "placeholder"])) : (openBlock(), createBlock(_sfc_main$6x, {
104894
+ }, null, 8, ["disabled", "initial-search-value", "placeholder"])) : (openBlock(), createBlock(_sfc_main$6w, {
104839
104895
  key: 1,
104840
104896
  ref_key: "searchOnClickRef",
104841
104897
  ref: searchOnClickRef,
@@ -104933,7 +104989,7 @@ const _sfc_main$59 = /* @__PURE__ */ defineComponent({
104933
104989
  }), 128))
104934
104990
  ], 64))
104935
104991
  ], 64)) : createCommentVNode("", true),
104936
- unref(pitcherSettings).display_metadata_filters_in_modal && hasAnyFilter.value ? (openBlock(), createBlock(_sfc_main$6z, {
104992
+ unref(pitcherSettings).display_metadata_filters_in_modal && hasAnyFilter.value ? (openBlock(), createBlock(_sfc_main$6y, {
104937
104993
  key: 1,
104938
104994
  class: "min-w-[500px] max-w-[700px] max-h-[400px] overflow-y-auto",
104939
104995
  placement: "bottom",
@@ -107481,7 +107537,7 @@ function useCanvasesManagementBulk() {
107481
107537
  "name": "properties",
107482
107538
  "title": t('canvasUI.browserApp.uploadFilesModal.properties')
107483
107539
  }, {
107484
- default: () => [createVNode(_sfc_main$6C, {
107540
+ default: () => [createVNode(_sfc_main$6B, {
107485
107541
  "showExpirationSettings": false,
107486
107542
  "showPermissionSettings": false,
107487
107543
  "showAccessTypeSettings": false,
@@ -109377,7 +109433,7 @@ const _sfc_main$4W = /* @__PURE__ */ defineComponent({
109377
109433
  "w-fit": _ctx.fitContent
109378
109434
  }])
109379
109435
  }, [
109380
- _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6F, {
109436
+ _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6E, {
109381
109437
  key: 0,
109382
109438
  class: "flex",
109383
109439
  size: "small",
@@ -109601,7 +109657,7 @@ const _sfc_main$4U = /* @__PURE__ */ defineComponent({
109601
109657
  onClick: _cache[0] || (_cache[0] = withModifiers(() => {
109602
109658
  }, ["stop"]))
109603
109659
  }, [
109604
- _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6F, {
109660
+ _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6E, {
109605
109661
  key: 0,
109606
109662
  class: normalizeClass(`flex gap-1 ${getPopularityClass()}`),
109607
109663
  size: "small",
@@ -109654,7 +109710,7 @@ const _sfc_main$4U = /* @__PURE__ */ defineComponent({
109654
109710
  onClick: _cache[1] || (_cache[1] = withModifiers(() => {
109655
109711
  }, ["stop"]))
109656
109712
  }, [
109657
- _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6F, {
109713
+ _ctx.variation !== "minimal" ? (openBlock(), createBlock(_sfc_main$6E, {
109658
109714
  key: 0,
109659
109715
  class: normalizeClass(`flex gap-1 ${getEngagementClass()}`),
109660
109716
  size: "small",
@@ -111139,7 +111195,7 @@ const _sfc_main$4T = /* @__PURE__ */ defineComponent({
111139
111195
  ])) : createCommentVNode("", true)
111140
111196
  ], 4),
111141
111197
  _ctx.item.type !== "smart_folder" ? (openBlock(), createElementBlock("div", _hoisted_10$z, [
111142
- createVNode(_sfc_main$6F, {
111198
+ createVNode(_sfc_main$6E, {
111143
111199
  size: "small",
111144
111200
  style: normalizeStyle({
111145
111201
  ...getStatusStyle(),
@@ -112072,7 +112128,7 @@ const _sfc_main$4R = /*@__PURE__*/defineComponent({
112072
112128
  id: 'is_draft',
112073
112129
  cell: cellCtx => createVNode("div", {
112074
112130
  "class": "flex items-center"
112075
- }, [createVNode(_sfc_main$6o, {
112131
+ }, [createVNode(_sfc_main$6F, {
112076
112132
  "checked": !cellCtx.getValue(),
112077
112133
  "disabled": isReadonly(cellCtx.row.original),
112078
112134
  "onChange": async newValue => await updateProperty(cellCtx.row.original, 'is_draft', !newValue),
@@ -112755,7 +112811,7 @@ const _sfc_main$4O = /*@__PURE__*/defineComponent({
112755
112811
  id: 'status',
112756
112812
  cell: cellCtx => createVNode("div", {
112757
112813
  "class": "flex items-center"
112758
- }, [createVNode(_sfc_main$6o, {
112814
+ }, [createVNode(_sfc_main$6F, {
112759
112815
  "checked": !cellCtx.getValue(),
112760
112816
  "disabled": isReadonly(cellCtx.row.original),
112761
112817
  "onChange": async newValue => await updateProperty(cellCtx.row.original, 'is_draft', !newValue),
@@ -113084,7 +113140,7 @@ const _sfc_main$4N = /* @__PURE__ */ defineComponent({
113084
113140
  fetchLevel(props.currentFolder.id);
113085
113141
  });
113086
113142
  return (_ctx, _cache) => {
113087
- return openBlock(), createBlock(_sfc_main$6A, {
113143
+ return openBlock(), createBlock(_sfc_main$6z, {
113088
113144
  "on-update:show": () => emit("update:show", false),
113089
113145
  show: _ctx.show,
113090
113146
  style: normalizeStyle({ backgroundColor: unref(themeVars).base })
@@ -114281,7 +114337,7 @@ const _sfc_main$4J = /* @__PURE__ */ defineComponent({
114281
114337
  _cache[6] || (_cache[6] = createElementVNode("span", { class: "inline-block h-1 w-1 bg-text3 rounded-full" }, null, -1))
114282
114338
  ])
114283
114339
  ])) : (openBlock(), createElementBlock("div", _hoisted_12$m, [
114284
- !isFolder(unref(item)) ? (openBlock(), createBlock(_sfc_main$6F, {
114340
+ !isFolder(unref(item)) ? (openBlock(), createBlock(_sfc_main$6E, {
114285
114341
  key: 0,
114286
114342
  size: "small",
114287
114343
  style: normalizeStyle({
@@ -114409,7 +114465,7 @@ const _sfc_main$4H = /* @__PURE__ */ defineComponent({
114409
114465
  }
114410
114466
  const themeVars = useThemeVars();
114411
114467
  return (_ctx, _cache) => {
114412
- return openBlock(), createBlock(_sfc_main$6A, {
114468
+ return openBlock(), createBlock(_sfc_main$6z, {
114413
114469
  "on-update:show": (val) => emit("update:show", val),
114414
114470
  show: "",
114415
114471
  style: normalizeStyle({ backgroundColor: unref(themeVars).base })
@@ -115188,7 +115244,7 @@ const _sfc_main$4G = /*@__PURE__*/defineComponent({
115188
115244
  id: 'is_draft',
115189
115245
  cell: cellCtx => createVNode("div", {
115190
115246
  "class": "flex items-center"
115191
- }, [createVNode(_sfc_main$6o, {
115247
+ }, [createVNode(_sfc_main$6F, {
115192
115248
  "checked": !cellCtx.getValue(),
115193
115249
  "disabled": isReadonly(cellCtx.row.original),
115194
115250
  "onChange": async newValue => await onUpdateStatus(cellCtx.row.original, newValue ? CanvasStatus.READY : CanvasStatus.DRAFT),
@@ -116381,7 +116437,7 @@ const _sfc_main$4B = /*@__PURE__*/defineComponent({
116381
116437
  id: 'status',
116382
116438
  cell: cellCtx => createVNode("div", {
116383
116439
  "class": "flex items-center"
116384
- }, [createVNode(_sfc_main$6o, {
116440
+ }, [createVNode(_sfc_main$6F, {
116385
116441
  "checked": cellCtx.getValue() === CanvasThemeStatus.READY,
116386
116442
  "onChange": async newValue => await onUpdateStatus(cellCtx.row.original, !newValue ? CanvasThemeStatus.DRAFT : CanvasThemeStatus.READY),
116387
116443
  "themeOverrides": {
@@ -116755,7 +116811,7 @@ const _sfc_main$4A = /* @__PURE__ */ defineComponent({
116755
116811
  onClick: ($event) => emit("click", item.key)
116756
116812
  }, toDisplayString(item.label), 9, _hoisted_3$2b);
116757
116813
  }), 128)),
116758
- remainingItems.value.length ? (openBlock(), createBlock(_sfc_main$6z, {
116814
+ remainingItems.value.length ? (openBlock(), createBlock(_sfc_main$6y, {
116759
116815
  key: 0,
116760
116816
  placement: _ctx.rowIndex === 0 ? "bottom" : "top",
116761
116817
  trigger: "click"
@@ -116768,7 +116824,7 @@ const _sfc_main$4A = /* @__PURE__ */ defineComponent({
116768
116824
  default: withCtx(() => [
116769
116825
  createElementVNode("div", null, [
116770
116826
  (openBlock(true), createElementBlock(Fragment, null, renderList(remainingItems.value, (item, index) => {
116771
- return openBlock(), createBlock(_sfc_main$6F, {
116827
+ return openBlock(), createBlock(_sfc_main$6E, {
116772
116828
  key: index,
116773
116829
  class: normalizeClass(["mr-1 c-table-more__more-items", { "c-table-more__clickable": _ctx.isClickable, underline: _ctx.isClickable }]),
116774
116830
  round: false,
@@ -118236,7 +118292,7 @@ const _sfc_main$4u = /* @__PURE__ */ defineComponent({
118236
118292
  ref_for: true
118237
118293
  }, getIconDataForInfoBadge(indicator.icon)), null, 16, ["background-color", "color", "text", "variation"])), [
118238
118294
  [_directive_tooltip, indicator.tooltip_text]
118239
- ]) : indicator.type ? withDirectives((openBlock(), createBlock(_sfc_main$6F, {
118295
+ ]) : indicator.type ? withDirectives((openBlock(), createBlock(_sfc_main$6E, {
118240
118296
  key: 1,
118241
118297
  class: "mr-2",
118242
118298
  type: indicator.type
@@ -118695,7 +118751,7 @@ const _sfc_main$4r = /* @__PURE__ */ defineComponent({
118695
118751
  emit("search", value);
118696
118752
  }
118697
118753
  return (_ctx, _cache) => {
118698
- return openBlock(), createBlock(_sfc_main$6A, {
118754
+ return openBlock(), createBlock(_sfc_main$6z, {
118699
118755
  onEsc: handleClose,
118700
118756
  persistent: "",
118701
118757
  show: "",
@@ -119176,7 +119232,7 @@ const _sfc_main$4q = /*@__PURE__*/defineComponent({
119176
119232
  id: 'is_draft',
119177
119233
  cell: cellCtx => createVNode("div", {
119178
119234
  "class": "flex items-center"
119179
- }, [createVNode(_sfc_main$6o, {
119235
+ }, [createVNode(_sfc_main$6F, {
119180
119236
  "disabled": !!editingColumn.value?.id || isCanvasLocked(cellCtx.row.original.id),
119181
119237
  "checked": !cellCtx.getValue(),
119182
119238
  "onChange": async newValue => await updateProperty(cellCtx.row.original, 'is_draft', !newValue),
@@ -120125,7 +120181,7 @@ const _sfc_main$4o = /*@__PURE__*/defineComponent({
120125
120181
  id: 'is_draft',
120126
120182
  cell: cellCtx => createVNode("div", {
120127
120183
  "class": "flex items-center"
120128
- }, [createVNode(_sfc_main$6o, {
120184
+ }, [createVNode(_sfc_main$6F, {
120129
120185
  "disabled": true,
120130
120186
  "checked": !cellCtx.getValue(),
120131
120187
  "themeOverrides": {
@@ -120500,7 +120556,7 @@ const _sfc_main$4m = /* @__PURE__ */ defineComponent({
120500
120556
  });
120501
120557
  };
120502
120558
  return (_ctx, _cache) => {
120503
- return openBlock(), createBlock(_sfc_main$6z, {
120559
+ return openBlock(), createBlock(_sfc_main$6y, {
120504
120560
  class: "c-entity-selector",
120505
120561
  overlap: _ctx.overlap,
120506
120562
  placement: "top-start",
@@ -121756,8 +121812,8 @@ const _sfc_main$4g = /* @__PURE__ */ defineComponent({
121756
121812
  ],
121757
121813
  setup(__props, { emit: __emit }) {
121758
121814
  useCssVars((_ctx) => ({
121759
- "3da35b40": unref(themeVars).base,
121760
- "49a7913e": unref(themeVars).primary4
121815
+ "340c455c": unref(themeVars).base,
121816
+ "409ab37d": unref(themeVars).primary4
121761
121817
  }));
121762
121818
  const props = __props;
121763
121819
  const myUser = inject(
@@ -121768,6 +121824,10 @@ const _sfc_main$4g = /* @__PURE__ */ defineComponent({
121768
121824
  "pitcherInfo",
121769
121825
  computed(() => null)
121770
121826
  );
121827
+ const launchDarkly = inject(
121828
+ "launchDarkly",
121829
+ computed(() => ({}))
121830
+ );
121771
121831
  const emit = __emit;
121772
121832
  const appProps = inject("appProps");
121773
121833
  const vTooltip = tooltipDirective;
@@ -121881,10 +121941,10 @@ const _sfc_main$4g = /* @__PURE__ */ defineComponent({
121881
121941
  }, 8, ["color", "disabled", "text-color"])
121882
121942
  ]),
121883
121943
  _ctx.item.type === "file" ? (openBlock(), createElementBlock("div", _hoisted_3$20, [
121884
- createVNode(CButton, {
121944
+ withDirectives((openBlock(), createBlock(CButton, {
121885
121945
  circle: "",
121886
121946
  color: unref(themeVars).primary6,
121887
- disabled: unref(appProps)?.contentType.value === "file" || _ctx.item.content_type !== "pdf",
121947
+ disabled: unref(appProps)?.contentType.value === "file" || _ctx.item.content_type !== "pdf" || unref(launchDarkly).enable_file_divisible_permission && _ctx.item.permissions?.can_be_divided === false,
121888
121948
  "text-color": unref(themeVars).primary,
121889
121949
  onClick: _cache[1] || (_cache[1] = withModifiers(($event) => emit("itemExpanded", _ctx.item), ["stop"]))
121890
121950
  }, {
@@ -121892,7 +121952,12 @@ const _sfc_main$4g = /* @__PURE__ */ defineComponent({
121892
121952
  createVNode(CIcon, { icon: "angle-right" })
121893
121953
  ]),
121894
121954
  _: 1
121895
- }, 8, ["color", "disabled", "text-color"])
121955
+ }, 8, ["color", "disabled", "text-color"])), [
121956
+ [
121957
+ unref(vTooltip),
121958
+ unref(launchDarkly).enable_file_divisible_permission && _ctx.item.permissions?.can_be_divided === false ? unref(t)("canvasUI.files.notDivisibleExpanded") : void 0
121959
+ ]
121960
+ ])
121896
121961
  ])) : createCommentVNode("", true),
121897
121962
  createVNode(_sfc_main$6K, {
121898
121963
  class: "rounded-2",
@@ -122023,7 +122088,7 @@ const _sfc_main$4g = /* @__PURE__ */ defineComponent({
122023
122088
  }
122024
122089
  });
122025
122090
 
122026
- const GridItem = /* @__PURE__ */ _export_sfc(_sfc_main$4g, [["__scopeId", "data-v-bd0629a2"]]);
122091
+ const GridItem = /* @__PURE__ */ _export_sfc(_sfc_main$4g, [["__scopeId", "data-v-7c4db1d5"]]);
122027
122092
 
122028
122093
  const _hoisted_1$3o = { class: "folders-files-pages-grid py-2 h-full" };
122029
122094
  const _hoisted_2$2x = {
@@ -122343,6 +122408,9 @@ const _sfc_main$4e = /* @__PURE__ */ defineComponent({
122343
122408
  // Not used here
122344
122409
  hasFile: computed(() => props.item.type === "file")
122345
122410
  });
122411
+ const isExpandFileDisabled = computed(() => {
122412
+ return props.isDisabled || appProps?.contentType.value === "file" || props.item.content_type !== "pdf" || launchDarkly.value.enable_file_divisible_permission && props.item.permissions?.can_be_divided === false;
122413
+ });
122346
122414
  return (_ctx, _cache) => {
122347
122415
  const _directive_tooltip = resolveDirective("tooltip");
122348
122416
  return openBlock(), createElementBlock("div", {
@@ -122536,7 +122604,7 @@ const _sfc_main$4e = /* @__PURE__ */ defineComponent({
122536
122604
  key: 2,
122537
122605
  circle: "",
122538
122606
  class: "h-9 w-9",
122539
- disabled: _ctx.isDisabled || unref(appProps)?.contentType.value === "file" || _ctx.item.content_type !== "pdf",
122607
+ disabled: isExpandFileDisabled.value,
122540
122608
  secondary: "",
122541
122609
  type: "default",
122542
122610
  onClick: _cache[3] || (_cache[3] = withModifiers(($event) => emit("expand-file", _ctx.item), ["stop"]))
@@ -122550,7 +122618,10 @@ const _sfc_main$4e = /* @__PURE__ */ defineComponent({
122550
122618
  ]),
122551
122619
  _: 1
122552
122620
  }, 8, ["disabled"])), [
122553
- [_directive_tooltip, unref(t)("canvasUI.contentSelectorApp.contextMenu.expandFile")]
122621
+ [
122622
+ _directive_tooltip,
122623
+ unref(launchDarkly).enable_file_divisible_permission && _ctx.item.permissions?.can_be_divided === false ? unref(t)("canvasUI.files.notDivisibleExpanded") : unref(t)("canvasUI.contentSelectorApp.contextMenu.expandFile")
122624
+ ]
122554
122625
  ]) : createCommentVNode("", true),
122555
122626
  unref(isDragNDropEnabled) && _ctx.item?.type !== "folder" ? (openBlock(), createElementBlock(Fragment, { key: 3 }, [
122556
122627
  _ctx.isSelected ? (openBlock(), createBlock(CButton, {
@@ -127318,7 +127389,7 @@ const _sfc_main$3Q = /* @__PURE__ */ defineComponent({
127318
127389
  }),
127319
127390
  linkType.value === "web" ? (openBlock(), createElementBlock("div", _hoisted_5$1b, [
127320
127391
  createElementVNode("label", null, toDisplayString(unref(t)("canvasUI.components.fileViewer.linkAnnotation.urlInput")), 1),
127321
- createVNode(_sfc_main$6B, {
127392
+ createVNode(_sfc_main$6A, {
127322
127393
  value: urlInput.value,
127323
127394
  "onUpdate:value": _cache[1] || (_cache[1] = ($event) => urlInput.value = $event),
127324
127395
  placeholder: "https://www.example.com",
@@ -127385,7 +127456,7 @@ const _sfc_main$3Q = /* @__PURE__ */ defineComponent({
127385
127456
  createElementVNode("div", _hoisted_8$D, [
127386
127457
  createElementVNode("div", _hoisted_9$w, [
127387
127458
  createElementVNode("label", null, toDisplayString(unref(t)("canvasUI.components.fileViewer.linkAnnotation.trackingId")), 1),
127388
- createVNode(_sfc_main$6B, {
127459
+ createVNode(_sfc_main$6A, {
127389
127460
  value: trackingId.value,
127390
127461
  "onUpdate:value": _cache[5] || (_cache[5] = ($event) => trackingId.value = $event)
127391
127462
  }, null, 8, ["value"])
@@ -127485,7 +127556,7 @@ const _sfc_main$3P = /* @__PURE__ */ defineComponent({
127485
127556
  class: "c-file-viewer-copy-pages-metadata w-full",
127486
127557
  onKeydown: withKeys(closePopover, ["esc"])
127487
127558
  }, [
127488
- createVNode(_sfc_main$6z, {
127559
+ createVNode(_sfc_main$6y, {
127489
127560
  class: "min-w[400px]",
127490
127561
  placement: "bottom-end",
127491
127562
  scrollable: "",
@@ -127879,7 +127950,7 @@ const _sfc_main$3N = /* @__PURE__ */ defineComponent({
127879
127950
  }, 8, ["disabled", "style"]),
127880
127951
  createVNode(_sfc_main$6N, { closable: false }, createSlots({
127881
127952
  default: withCtx(() => [
127882
- _ctx.isLoadingInstanceMetadataTemplate ? (openBlock(), createBlock(_sfc_main$6q, {
127953
+ _ctx.isLoadingInstanceMetadataTemplate ? (openBlock(), createBlock(_sfc_main$6p, {
127883
127954
  key: 0,
127884
127955
  class: "flex h-full"
127885
127956
  })) : createCommentVNode("", true),
@@ -129770,7 +129841,7 @@ const _sfc_main$3L = /* @__PURE__ */ defineComponent({
129770
129841
  { immediate: true }
129771
129842
  );
129772
129843
  return (_ctx, _cache) => {
129773
- return openBlock(), createBlock(_sfc_main$6A, {
129844
+ return openBlock(), createBlock(_sfc_main$6z, {
129774
129845
  onEsc: onCloseFile,
129775
129846
  show: "",
129776
129847
  to: unref(appElem),
@@ -129847,7 +129918,7 @@ const _sfc_main$3L = /* @__PURE__ */ defineComponent({
129847
129918
  _: 3
129848
129919
  }, 8, ["style"])) : createCommentVNode("", true),
129849
129920
  !_ctx.file ? (openBlock(), createElementBlock("div", _hoisted_1$2V, [
129850
- createVNode(_sfc_main$6q, {
129921
+ createVNode(_sfc_main$6p, {
129851
129922
  color: unref(themeVars).primary,
129852
129923
  size: "large"
129853
129924
  }, null, 8, ["color"])
@@ -132215,7 +132286,7 @@ const _sfc_main$3t = /* @__PURE__ */ defineComponent({
132215
132286
  ]),
132216
132287
  createElementVNode("div", _hoisted_5$12, [
132217
132288
  createElementVNode("p", _hoisted_6$U, toDisplayString(unref(t)("canvasUI.components.CRatingFeedback.review")), 1),
132218
- createVNode(_sfc_main$6B, {
132289
+ createVNode(_sfc_main$6A, {
132219
132290
  autosize: { minRows: 3, maxRows: 3 },
132220
132291
  class: "rounded-1 border-primary6 text-sm",
132221
132292
  placeholder: unref(t)("canvasUI.components.CRatingFeedback.reviewPlaceholder"),
@@ -132633,7 +132704,7 @@ const _sfc_main$3q = /* @__PURE__ */ defineComponent({
132633
132704
  ])) : createCommentVNode("", true),
132634
132705
  createElementVNode("div", _hoisted_3$1u, [
132635
132706
  (openBlock(true), createElementBlock(Fragment, null, renderList(tagsToRender.value, (tag, index) => {
132636
- return openBlock(), createBlock(_sfc_main$6F, {
132707
+ return openBlock(), createBlock(_sfc_main$6E, {
132637
132708
  key: index,
132638
132709
  class: "truncate",
132639
132710
  round: ""
@@ -132860,7 +132931,7 @@ const _sfc_main$3o = /* @__PURE__ */ defineComponent({
132860
132931
  })) : createCommentVNode("", true)
132861
132932
  ]),
132862
132933
  isLoading.value ? (openBlock(), createElementBlock("div", _hoisted_3$1t, [
132863
- createVNode(_sfc_main$6q)
132934
+ createVNode(_sfc_main$6p)
132864
132935
  ])) : isEditing.value ? (openBlock(), createElementBlock("div", _hoisted_4$1b, [
132865
132936
  allowUsersInDistribution.value ? (openBlock(), createBlock(CUsersGroupsAccessManage, {
132866
132937
  key: 0,
@@ -133384,7 +133455,7 @@ const _sfc_main$3n = /* @__PURE__ */ defineComponent({
133384
133455
  _: 1
133385
133456
  }, 8, ["value", "placeholder"]),
133386
133457
  !hideApps.value || shouldShowBlocksTab.value ? (openBlock(), createElementBlock("div", _hoisted_1$2D, [
133387
- createVNode(_sfc_main$6F, {
133458
+ createVNode(_sfc_main$6E, {
133388
133459
  bordered: activeFilter.value === "basic" /* Basic */,
133389
133460
  class: "text-xs cursor-pointer",
133390
133461
  closable: activeFilter.value === "basic" /* Basic */,
@@ -133398,7 +133469,7 @@ const _sfc_main$3n = /* @__PURE__ */ defineComponent({
133398
133469
  ]),
133399
133470
  _: 1
133400
133471
  }, 8, ["bordered", "closable"]),
133401
- !hideApps.value ? (openBlock(), createBlock(_sfc_main$6F, {
133472
+ !hideApps.value ? (openBlock(), createBlock(_sfc_main$6E, {
133402
133473
  key: 0,
133403
133474
  bordered: activeFilter.value === "apps" /* Apps */,
133404
133475
  class: "text-xs cursor-pointer",
@@ -133413,7 +133484,7 @@ const _sfc_main$3n = /* @__PURE__ */ defineComponent({
133413
133484
  ]),
133414
133485
  _: 1
133415
133486
  }, 8, ["bordered", "closable"])) : createCommentVNode("", true),
133416
- shouldShowBlocksTab.value ? (openBlock(), createBlock(_sfc_main$6F, {
133487
+ shouldShowBlocksTab.value ? (openBlock(), createBlock(_sfc_main$6E, {
133417
133488
  key: 1,
133418
133489
  bordered: activeFilter.value === "blocks" /* Blocks */,
133419
133490
  class: "text-xs cursor-pointer",
@@ -134428,7 +134499,7 @@ const _sfc_main$3l = /* @__PURE__ */ defineComponent({
134428
134499
  })
134429
134500
  ]),
134430
134501
  createElementVNode("div", _hoisted_6$Q, [
134431
- createVNode(_sfc_main$6B, {
134502
+ createVNode(_sfc_main$6A, {
134432
134503
  ref_key: "searchRef",
134433
134504
  ref: searchRef,
134434
134505
  value: search.value,
@@ -134622,7 +134693,7 @@ const _sfc_main$3k = /* @__PURE__ */ defineComponent({
134622
134693
  }, 1032, ["circle", "onClick"])), [
134623
134694
  [_directive_tooltip, shortcut.tooltip || shortcut.displayName]
134624
134695
  ]);
134625
- }), 128)) : (openBlock(), createBlock(_sfc_main$6z, {
134696
+ }), 128)) : (openBlock(), createBlock(_sfc_main$6y, {
134626
134697
  key: 1,
134627
134698
  show: isPopoverVisible.value,
134628
134699
  "onUpdate:show": _cache[1] || (_cache[1] = ($event) => isPopoverVisible.value = $event),
@@ -135001,7 +135072,7 @@ const _sfc_main$3i = /* @__PURE__ */ defineComponent({
135001
135072
  ]);
135002
135073
  }), 128))
135003
135074
  ], 64)) : unref(shouldShowPopupApps) && !_ctx.inline ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
135004
- unref(hasMultipleApps) ? (openBlock(), createBlock(_sfc_main$6z, {
135075
+ unref(hasMultipleApps) ? (openBlock(), createBlock(_sfc_main$6y, {
135005
135076
  key: 0,
135006
135077
  placement: _ctx.placement,
135007
135078
  showArrow: true,
@@ -136532,7 +136603,7 @@ const _sfc_main$38 = /* @__PURE__ */ defineComponent({
136532
136603
  });
136533
136604
  return (_ctx, _cache) => {
136534
136605
  const _directive_tooltip = resolveDirective("tooltip");
136535
- return _ctx.selected ? (openBlock(), createBlock(_sfc_main$6z, {
136606
+ return _ctx.selected ? (openBlock(), createBlock(_sfc_main$6y, {
136536
136607
  key: 0,
136537
136608
  class: normalizeClass({
136538
136609
  "-top-1": _ctx.placement.includes("top"),
@@ -139281,7 +139352,7 @@ const _sfc_main$2Y = /* @__PURE__ */ defineComponent({
139281
139352
  src: _ctx.item.file.content_url ?? void 0,
139282
139353
  title: unref(t)("canvasUI.collectionPlayer.webSlide")
139283
139354
  }, null, 8, _hoisted_2$1F)) : !_ctx.item.file || !_ctx.item.file.content_type ? (openBlock(), createElementBlock("div", _hoisted_3$1i, [
139284
- createVNode(_sfc_main$6q, {
139355
+ createVNode(_sfc_main$6p, {
139285
139356
  color: unref(themeVars).primary,
139286
139357
  size: "small"
139287
139358
  }, null, 8, ["color"])
@@ -139916,7 +139987,7 @@ const _sfc_main$2T = /* @__PURE__ */ defineComponent({
139916
139987
  setup(__props) {
139917
139988
  const { closeApp, inModal } = useAppStore$3();
139918
139989
  return (_ctx, _cache) => {
139919
- return unref(inModal) ? (openBlock(), createBlock(_sfc_main$6A, {
139990
+ return unref(inModal) ? (openBlock(), createBlock(_sfc_main$6z, {
139920
139991
  key: 0,
139921
139992
  class: "h-[100vh] w-[100vw]",
139922
139993
  show: "",
@@ -140107,7 +140178,7 @@ const _sfc_main$2S = /* @__PURE__ */ defineComponent({
140107
140178
  style: normalizeStyle({ aspectRatio: _ctx.aspectRatio })
140108
140179
  }, [
140109
140180
  unref(isOpenTableOfContents) ? (openBlock(), createBlock(_sfc_main$2W, { key: 0 })) : createCommentVNode("", true),
140110
- isLoading.value ? (openBlock(), createBlock(_sfc_main$6q, {
140181
+ isLoading.value ? (openBlock(), createBlock(_sfc_main$6p, {
140111
140182
  key: 1,
140112
140183
  color: unref(themeVars).primary,
140113
140184
  size: "large"
@@ -140661,7 +140732,7 @@ const _sfc_main$2R = /* @__PURE__ */ defineComponent({
140661
140732
  key: 0,
140662
140733
  onSelectCollectionContent: _cache[0] || (_cache[0] = ($event) => unref(selectContent)({ id: unref(id), initialData: unref(data) }))
140663
140734
  })) : needsFileResolution.value ? (openBlock(), createElementBlock("div", _hoisted_1$2d, [
140664
- createVNode(_sfc_main$6q, {
140735
+ createVNode(_sfc_main$6p, {
140665
140736
  color: unref(themeVars).primary,
140666
140737
  size: "large"
140667
140738
  }, null, 8, ["color"])
@@ -140705,7 +140776,7 @@ const _sfc_main$2R = /* @__PURE__ */ defineComponent({
140705
140776
  ]);
140706
140777
  }), 128))
140707
140778
  ])) : needsFileResolution.value ? (openBlock(), createElementBlock("div", _hoisted_6$K, [
140708
- createVNode(_sfc_main$6q, {
140779
+ createVNode(_sfc_main$6p, {
140709
140780
  color: unref(themeVars).primary,
140710
140781
  size: "large"
140711
140782
  }, null, 8, ["color"])
@@ -148434,7 +148505,7 @@ const _sfc_main$2i = /* @__PURE__ */ defineComponent({
148434
148505
  unref(computedMultimediaProps).data.type === "video" && !unref(isIosDevice) ? {
148435
148506
  name: "toolbar-slot",
148436
148507
  fn: withCtx(() => [
148437
- createVNode(_sfc_main$6z, {
148508
+ createVNode(_sfc_main$6y, {
148438
148509
  placement: "bottom",
148439
148510
  trigger: "click",
148440
148511
  width: 280
@@ -149427,7 +149498,7 @@ const _sfc_main$2g = /* @__PURE__ */ defineComponent({
149427
149498
  createElementVNode("span", _hoisted_3$13, toDisplayString(unref(t)("canvasUI.canvasBuilder.linkableComponent.unlink")), 1)
149428
149499
  ])) : createCommentVNode("", true)
149429
149500
  ]),
149430
- showLinkModal.value ? (openBlock(), createBlock(_sfc_main$6A, {
149501
+ showLinkModal.value ? (openBlock(), createBlock(_sfc_main$6z, {
149431
149502
  key: 0,
149432
149503
  bordered: false,
149433
149504
  class: "cb-linkable-settings",
@@ -154810,7 +154881,7 @@ const _sfc_main$1X = /* @__PURE__ */ defineComponent({
154810
154881
  _: 1
154811
154882
  }))
154812
154883
  ], 64)),
154813
- createVNode(_sfc_main$6A, {
154884
+ createVNode(_sfc_main$6z, {
154814
154885
  show: showModal.value,
154815
154886
  "onUpdate:show": _cache[6] || (_cache[6] = ($event) => showModal.value = $event),
154816
154887
  "mask-closable": !isEnhancedStatesEnabled.value,
@@ -155232,7 +155303,7 @@ const _sfc_main$1V = /* @__PURE__ */ defineComponent({
155232
155303
  const emit = __emit;
155233
155304
  const { t } = useI18n();
155234
155305
  return (_ctx, _cache) => {
155235
- return openBlock(), createBlock(_sfc_main$6B, {
155306
+ return openBlock(), createBlock(_sfc_main$6A, {
155236
155307
  autofocus: _ctx.autofocus,
155237
155308
  class: "c-search flex items-center justify-center border-primary5",
155238
155309
  clearable: "",
@@ -155454,7 +155525,7 @@ const _sfc_main$1U = /*@__PURE__*/defineComponent({
155454
155525
  "onUpdate:search": _cache[0] || (_cache[0] = $event => search.value = $event),
155455
155526
  class: "w-full max-w-[300px] min-w-[150px]",
155456
155527
  placeholder: unref(t)('canvasUI.canvasBuilder.sectionListRaw.searchPlaceholder')
155457
- }, null, 8, ["search", "placeholder"]), createVNode(_sfc_main$6z, {
155528
+ }, null, 8, ["search", "placeholder"]), createVNode(_sfc_main$6y, {
155458
155529
  class: "max-w-[220px] max-h-[400px] overflow-y-auto",
155459
155530
  placement: "bottom-end",
155460
155531
  "show-arrow": false,
@@ -155836,7 +155907,7 @@ const _sfc_main$1S = /* @__PURE__ */ defineComponent({
155836
155907
  computed(() => rootRef.value)
155837
155908
  );
155838
155909
  return (_ctx, _cache) => {
155839
- return openBlock(), createBlock(_sfc_main$6A, {
155910
+ return openBlock(), createBlock(_sfc_main$6z, {
155840
155911
  "auto-focus": true,
155841
155912
  class: "c-section-item-modal",
155842
155913
  show: "",
@@ -159582,10 +159653,6 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
159582
159653
  "sectionSelectorApps",
159583
159654
  computed(() => [])
159584
159655
  );
159585
- const launchDarkly = inject(
159586
- "launchDarkly",
159587
- computed(() => ({}))
159588
- );
159589
159656
  const { isCompletionWizardEnabled, retriggerWizard } = useCanvasCompletionWizard();
159590
159657
  const isEditable = computed(
159591
159658
  () => isImpact.value ? !props.data.selection_strategy || props.data.selection_strategy === "free" || isCompletionWizardEnabled.value && wizardStepSectionListIds.value.includes(props.id) : true
@@ -159611,7 +159678,6 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
159611
159678
  const attrs = useAttrs();
159612
159679
  const contentListRef = ref(null);
159613
159680
  const componentName = computed(() => {
159614
- if (!launchDarkly.value?.display_section_list_name) return;
159615
159681
  const node = componentNodesById.value[props.id];
159616
159682
  return node.tracking_id !== node.type ? node.tracking_id : "";
159617
159683
  });
@@ -161002,7 +161068,7 @@ const _sfc_main$1B = /* @__PURE__ */ defineComponent({
161002
161068
  showCustomSize.value ? (openBlock(), createElementBlock("div", _hoisted_3$N, [
161003
161069
  createElementVNode("div", _hoisted_4$F, [
161004
161070
  createElementVNode("label", _hoisted_5$y, toDisplayString(unref(t)("canvasUI.components.CPdfDimensionsSelector.width")), 1),
161005
- createVNode(_sfc_main$6B, {
161071
+ createVNode(_sfc_main$6A, {
161006
161072
  value: localWidthValue.value,
161007
161073
  "onUpdate:value": [
161008
161074
  _cache[0] || (_cache[0] = ($event) => localWidthValue.value = $event),
@@ -161015,7 +161081,7 @@ const _sfc_main$1B = /* @__PURE__ */ defineComponent({
161015
161081
  ]),
161016
161082
  createElementVNode("div", _hoisted_6$u, [
161017
161083
  createElementVNode("label", _hoisted_7$j, toDisplayString(unref(t)("canvasUI.components.CPdfDimensionsSelector.height")), 1),
161018
- createVNode(_sfc_main$6B, {
161084
+ createVNode(_sfc_main$6A, {
161019
161085
  value: localHeightValue.value,
161020
161086
  "onUpdate:value": [
161021
161087
  _cache[1] || (_cache[1] = ($event) => localHeightValue.value = $event),
@@ -161703,7 +161769,7 @@ const _sfc_main$1A = /* @__PURE__ */ defineComponent({
161703
161769
  ]),
161704
161770
  _: 1
161705
161771
  }, 8, ["label"]),
161706
- createVNode(_sfc_main$6B, {
161772
+ createVNode(_sfc_main$6A, {
161707
161773
  value: unref(backgroundVideoUrl),
161708
161774
  "onUpdate:value": _cache[6] || (_cache[6] = ($event) => isRef(backgroundVideoUrl) ? backgroundVideoUrl.value = $event : null),
161709
161775
  placeholder: unref(t)("canvasUI.canvasBuilder.canvasDrawerTheme.backgroundVideoLabel"),
@@ -161911,7 +161977,7 @@ const _sfc_main$1A = /* @__PURE__ */ defineComponent({
161911
161977
  ]),
161912
161978
  _: 1
161913
161979
  }, 8, ["label"]),
161914
- createVNode(_sfc_main$6B, {
161980
+ createVNode(_sfc_main$6A, {
161915
161981
  value: unref(backgroundVideoUrl),
161916
161982
  "onUpdate:value": _cache[18] || (_cache[18] = ($event) => isRef(backgroundVideoUrl) ? backgroundVideoUrl.value = $event : null),
161917
161983
  placeholder: unref(t)("canvasUI.canvasBuilder.canvasDrawerTheme.backgroundVideoLabel"),
@@ -164453,7 +164519,7 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
164453
164519
  createElementVNode("div", _hoisted_23$1, [
164454
164520
  createElementVNode("div", _hoisted_24$1, toDisplayString(prop.key), 1),
164455
164521
  createElementVNode("div", _hoisted_25$1, [
164456
- createVNode(_sfc_main$6B, {
164522
+ createVNode(_sfc_main$6A, {
164457
164523
  value: prop.display_name,
164458
164524
  "onUpdate:value": ($event) => prop.display_name = $event,
164459
164525
  class: "bg-primary6 border-primary6 flex-1 max-w-[400px]",
@@ -165155,7 +165221,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165155
165221
  createElementVNode("div", _hoisted_9$a, [
165156
165222
  createElementVNode("div", _hoisted_10$6, [
165157
165223
  createElementVNode("div", _hoisted_11$6, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.path")), 1),
165158
- createVNode(_sfc_main$6B, {
165224
+ createVNode(_sfc_main$6A, {
165159
165225
  value: level.path,
165160
165226
  "onUpdate:value": ($event) => level.path = $event,
165161
165227
  placeholder: unref(t)("canvasUI.canvasBuilder.customDataTable.pathPlaceholder")
@@ -165163,7 +165229,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165163
165229
  ]),
165164
165230
  level.type === "group" ? (openBlock(), createElementBlock("div", _hoisted_12$3, [
165165
165231
  createElementVNode("div", _hoisted_13$3, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.groupByKey")), 1),
165166
- createVNode(_sfc_main$6B, {
165232
+ createVNode(_sfc_main$6A, {
165167
165233
  value: level.group_by_key,
165168
165234
  "onUpdate:value": ($event) => level.group_by_key = $event,
165169
165235
  placeholder: unref(t)("canvasUI.canvasBuilder.customDataTable.groupByKeyPlaceholder")
@@ -165238,7 +165304,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165238
165304
  createElementVNode("div", _hoisted_18$1, [
165239
165305
  createElementVNode("div", _hoisted_19$1, toDisplayString(col.key), 1),
165240
165306
  createElementVNode("div", _hoisted_20$1, [
165241
- createVNode(_sfc_main$6B, {
165307
+ createVNode(_sfc_main$6A, {
165242
165308
  value: col.display_name,
165243
165309
  "onUpdate:value": ($event) => col.display_name = $event,
165244
165310
  class: "bg-primary6 border-primary6 flex-1 max-w-[400px]",
@@ -165419,7 +165485,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165419
165485
  _: 1
165420
165486
  }),
165421
165487
  createElementVNode("div", _hoisted_28, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.addColumn")), 1),
165422
- createVNode(_sfc_main$6B, {
165488
+ createVNode(_sfc_main$6A, {
165423
165489
  value: newColumnKey.value,
165424
165490
  "onUpdate:value": _cache[3] || (_cache[3] = ($event) => newColumnKey.value = $event),
165425
165491
  placeholder: unref(t)("canvasUI.canvasBuilder.customDataTable.addColumnPlaceholder"),
@@ -165449,7 +165515,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165449
165515
  createElementVNode("div", _hoisted_30, [
165450
165516
  createElementVNode("div", _hoisted_31, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.header")), 1),
165451
165517
  createElementVNode("div", _hoisted_32, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.headerHelp")), 1),
165452
- createVNode(_sfc_main$6B, {
165518
+ createVNode(_sfc_main$6A, {
165453
165519
  value: headerPath.value,
165454
165520
  "onUpdate:value": _cache[4] || (_cache[4] = ($event) => headerPath.value = $event),
165455
165521
  placeholder: unref(t)("canvasUI.canvasBuilder.customDataTable.headerPathPlaceholder"),
@@ -165459,7 +165525,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
165459
165525
  createElementVNode("div", null, [
165460
165526
  createElementVNode("div", _hoisted_33, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.footer")), 1),
165461
165527
  createElementVNode("div", _hoisted_34, toDisplayString(unref(t)("canvasUI.canvasBuilder.customDataTable.footerHelp")), 1),
165462
- createVNode(_sfc_main$6B, {
165528
+ createVNode(_sfc_main$6A, {
165463
165529
  value: footerPath.value,
165464
165530
  "onUpdate:value": _cache[5] || (_cache[5] = ($event) => footerPath.value = $event),
165465
165531
  placeholder: unref(t)("canvasUI.canvasBuilder.customDataTable.footerPathPlaceholder"),
@@ -166910,7 +166976,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
166910
166976
  label: labels.name
166911
166977
  }, unref(bindValidation)("name"), { required: "" }), {
166912
166978
  default: withCtx(() => [
166913
- createVNode(_sfc_main$6B, {
166979
+ createVNode(_sfc_main$6A, {
166914
166980
  value: form.name,
166915
166981
  "onUpdate:value": _cache[0] || (_cache[0] = ($event) => form.name = $event),
166916
166982
  disabled: isCanvasLocked.value,
@@ -166977,7 +167043,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
166977
167043
  label: labels.thumbnailUrl
166978
167044
  }, {
166979
167045
  default: withCtx(() => [
166980
- createVNode(_sfc_main$6B, {
167046
+ createVNode(_sfc_main$6A, {
166981
167047
  value: form.thumbnailUrl,
166982
167048
  "onUpdate:value": _cache[6] || (_cache[6] = ($event) => form.thumbnailUrl = $event),
166983
167049
  disabled: isCanvasLocked.value,
@@ -167312,7 +167378,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
167312
167378
  }
167313
167379
  }
167314
167380
  return (_ctx, _cache) => {
167315
- return openBlock(), createBlock(_sfc_main$6A, {
167381
+ return openBlock(), createBlock(_sfc_main$6z, {
167316
167382
  class: "min-w-[720px] bg-base rounded-2",
167317
167383
  show: "",
167318
167384
  "z-index": 1200
@@ -167323,7 +167389,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
167323
167389
  createElementVNode("div", _hoisted_3$D, toDisplayString(unref(t)("canvasUI.canvasBuilder.components.aiPrompt.title")) + " (PIA) ", 1)
167324
167390
  ]),
167325
167391
  createElementVNode("div", _hoisted_4$x, [
167326
- createVNode(_sfc_main$6B, {
167392
+ createVNode(_sfc_main$6A, {
167327
167393
  value: prompt.value,
167328
167394
  "onUpdate:value": _cache[0] || (_cache[0] = ($event) => prompt.value = $event),
167329
167395
  class: "w-full rounded-lg min-h-[250px] text-base z-5",
@@ -167760,7 +167826,7 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
167760
167826
  [unref(vTooltip), app.app_metadata?.display_name || app.name]
167761
167827
  ]);
167762
167828
  }), 128)),
167763
- shouldShowPopover.value ? (openBlock(), createBlock(_sfc_main$6z, {
167829
+ shouldShowPopover.value ? (openBlock(), createBlock(_sfc_main$6y, {
167764
167830
  key: 0,
167765
167831
  placement: _ctx.placement,
167766
167832
  showArrow: true,
@@ -169636,7 +169702,7 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
169636
169702
  ])
169637
169703
  ])
169638
169704
  ]),
169639
- createVNode(_sfc_main$6A, {
169705
+ createVNode(_sfc_main$6z, {
169640
169706
  show: showCancelConfirmation.value,
169641
169707
  "onUpdate:show": [
169642
169708
  _cache[1] || (_cache[1] = ($event) => showCancelConfirmation.value = $event),
@@ -171990,7 +172056,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
171990
172056
  }
171991
172057
  });
171992
172058
  return (_ctx, _cache) => {
171993
- return openBlock(), createBlock(_sfc_main$6A, {
172059
+ return openBlock(), createBlock(_sfc_main$6z, {
171994
172060
  "on-esc": close,
171995
172061
  show: "",
171996
172062
  "z-index": _ctx.zIndex
@@ -172116,7 +172182,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
172116
172182
  });
172117
172183
  return (_ctx, _cache) => {
172118
172184
  return openBlock(), createElementBlock(Fragment, null, [
172119
- createVNode(_sfc_main$6A, {
172185
+ createVNode(_sfc_main$6z, {
172120
172186
  "auto-focus": false,
172121
172187
  show: "",
172122
172188
  to: _ctx.attachTo,
@@ -172161,7 +172227,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
172161
172227
  _: 1
172162
172228
  }, 16, ["model-value", "onUpdate:modelValue"]),
172163
172229
  unref(isLoadingFiles) || !unref(areRequiredFilesLoaded) ? (openBlock(), createElementBlock("div", _hoisted_3$t, [
172164
- createVNode(_sfc_main$6q, {
172230
+ createVNode(_sfc_main$6p, {
172165
172231
  color: unref(themeVars).primary,
172166
172232
  size: "large"
172167
172233
  }, null, 8, ["color"])
@@ -173255,7 +173321,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
173255
173321
  }
173256
173322
  });
173257
173323
  return (_ctx, _cache) => {
173258
- return openBlock(), createBlock(_sfc_main$6A, {
173324
+ return openBlock(), createBlock(_sfc_main$6z, {
173259
173325
  "on-esc": close,
173260
173326
  show: "",
173261
173327
  "z-index": _ctx.zIndex
@@ -173344,7 +173410,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
173344
173410
  });
173345
173411
  return (_ctx, _cache) => {
173346
173412
  return openBlock(), createElementBlock(Fragment, null, [
173347
- createVNode(_sfc_main$6A, {
173413
+ createVNode(_sfc_main$6z, {
173348
173414
  "auto-focus": false,
173349
173415
  show: "",
173350
173416
  to: _ctx.attachTo,
@@ -174501,7 +174567,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
174501
174567
  }
174502
174568
  });
174503
174569
  return (_ctx, _cache) => {
174504
- return openBlock(), createBlock(_sfc_main$6A, {
174570
+ return openBlock(), createBlock(_sfc_main$6z, {
174505
174571
  "on-esc": close,
174506
174572
  show: "",
174507
174573
  "z-index": _ctx.zIndex
@@ -174603,7 +174669,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
174603
174669
  initialize();
174604
174670
  return (_ctx, _cache) => {
174605
174671
  return openBlock(), createElementBlock(Fragment, null, [
174606
- createVNode(_sfc_main$6A, {
174672
+ createVNode(_sfc_main$6z, {
174607
174673
  "auto-focus": false,
174608
174674
  show: "",
174609
174675
  to: _ctx.attachTo,
@@ -174637,7 +174703,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
174637
174703
  _: 1
174638
174704
  }, 16, ["disabled", "model-value", "onUpdate:modelValue"])
174639
174705
  ], 64)) : (openBlock(), createElementBlock("div", _hoisted_3$l, [
174640
- createVNode(_sfc_main$6q, {
174706
+ createVNode(_sfc_main$6p, {
174641
174707
  color: unref(themeVars).primary,
174642
174708
  size: "large"
174643
174709
  }, null, 8, ["color"])
@@ -175086,7 +175152,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
175086
175152
  default: withCtx(() => [
175087
175153
  createElementVNode("div", _hoisted_1$v, [
175088
175154
  createElementVNode("div", _hoisted_2$m, toDisplayString(unref(t)("canvasUI.browserApp.panel.title")), 1),
175089
- unref(apiGetters).isLoading ? (openBlock(), createBlock(_sfc_main$6q, {
175155
+ unref(apiGetters).isLoading ? (openBlock(), createBlock(_sfc_main$6p, {
175090
175156
  key: 0,
175091
175157
  class: "m-a"
175092
175158
  })) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
@@ -175147,7 +175213,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
175147
175213
  })
175148
175214
  ]),
175149
175215
  createElementVNode("div", _hoisted_3$h, [
175150
- _ctx.isLoading ? (openBlock(), createBlock(_sfc_main$6q, {
175216
+ _ctx.isLoading ? (openBlock(), createBlock(_sfc_main$6p, {
175151
175217
  key: 0,
175152
175218
  class: "m-a"
175153
175219
  })) : renderSlot(_ctx.$slots, "default", { key: 1 }, void 0, true)
@@ -176937,7 +177003,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
176937
177003
  const { selectedItemIds, isContentPanelOpen, displayedFavorites } = useAppStore$4();
176938
177004
  const getTypedItem = (item) => item;
176939
177005
  return (_ctx, _cache) => {
176940
- return unref(apiState).isFetchingFavorites ? (openBlock(), createBlock(_sfc_main$6q, {
177006
+ return unref(apiState).isFetchingFavorites ? (openBlock(), createBlock(_sfc_main$6p, {
176941
177007
  key: 0,
176942
177008
  class: "flex h-full"
176943
177009
  })) : (openBlock(), createElementBlock("div", {
@@ -176993,7 +177059,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
176993
177059
  await fetchTemplate();
176994
177060
  });
176995
177061
  return (_ctx, _cache) => {
176996
- return unref(apiState).isFetchingRecentFiles ? (openBlock(), createBlock(_sfc_main$6q, {
177062
+ return unref(apiState).isFetchingRecentFiles ? (openBlock(), createBlock(_sfc_main$6p, {
176997
177063
  key: 0,
176998
177064
  class: "flex h-full"
176999
177065
  })) : (openBlock(), createElementBlock("div", {
@@ -178149,7 +178215,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
178149
178215
  const { appName } = useAppStore$4();
178150
178216
  return (_ctx, _cache) => {
178151
178217
  return openBlock(), createElementBlock("div", _hoisted_1$f, [
178152
- createVNode(_sfc_main$6C, {
178218
+ createVNode(_sfc_main$6B, {
178153
178219
  modelValue: form.value,
178154
178220
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => form.value = $event),
178155
178221
  "app-name": unref(appName)
@@ -178367,7 +178433,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
178367
178433
  });
178368
178434
  return (_ctx, _cache) => {
178369
178435
  return openBlock(), createElementBlock(Fragment, null, [
178370
- createVNode(_sfc_main$6A, {
178436
+ createVNode(_sfc_main$6z, {
178371
178437
  class: "max-h-[calc(100vh-48px)]",
178372
178438
  show: true
178373
178439
  }, {
@@ -178657,7 +178723,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
178657
178723
  ]),
178658
178724
  createElementVNode("div", _hoisted_11, [
178659
178725
  upload.uploadStatus === "transferring" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
178660
- createVNode(_sfc_main$6q, {
178726
+ createVNode(_sfc_main$6p, {
178661
178727
  class: "mr-1",
178662
178728
  size: "small"
178663
178729
  }),
@@ -184391,5 +184457,5 @@ const localeNames = {
184391
184457
  };
184392
184458
  const localeDropdownOptions = supportedLocales.map((locale) => ({ key: locale, name: localeNames[locale] }));
184393
184459
 
184394
- export { ADMIN_API_METHOD_TYPES, ADMIN_API_TYPES, ADMIN_MESSAGE, ADMIN_MESSAGE_TYPES, APPS_DB, AccessTypeEnum, App$3 as AgendaSelectorApp, AppTypeEnum, _sfc_main as AssetsManagerApp, App$1 as Browser, BulkUpdateMetadataOperationEnum, BulkUpdateTagsOperationEnum, CALL_STORAGE_KEY, CANVASES, CANVAS_HOOKS, CANVAS_TYPOGRAPHY_CSS_PROPERTIES, CANVAS_TYPOGRAPHY_PRESETS, CAlgoliaSearch, CAssignedCanvasesManagement, _sfc_main$4p as CAssignedCanvasesManagementToolbar, _sfc_main$6s as CAvatar, _sfc_main$4O as CBlockManagement, CButton, _sfc_main$5f as CCanvasDeleteDialogContent, _sfc_main$5g as CCanvasMetadataFilters, CCanvasSelector, _sfc_main$6V as CCard, CCarousel, _sfc_main$3G as CCatalogIqSwitcher, _sfc_main$6U as CCheckbox, _sfc_main$3A as CChip, CCollapse, _sfc_main$6R as CCollapseItem, _sfc_main$6r as CCollapseTransition, NColorPicker as CColorPicker, CComponentListItem, CConfigEditor, NConfigProvider as CConfigProvider, _sfc_main$6h as CConfirmationAction, CConfirmationContent, CConfirmationHeader, CConfirmationModal, CContactSelector, CContactSelectorSelected, _sfc_main$68 as CContentError, _sfc_main$65 as CCreateCanvasModal, _sfc_main$64 as CCreateTemplateSectionBlockModal, _sfc_main$5V as CCreateThemeModal, CDP_EVENT_TYPE, CDataTable, NDatePicker as CDatePicker, CDateRangeFilter, CDetailPageSectionButtons, NDialogProvider as CDialogProvider, _sfc_main$6P as CDivider, _sfc_main$6O as CDrawer, _sfc_main$6N as CDrawerContent, _sfc_main$6M as CDropdown, _sfc_main$6p as CEmpty, _sfc_main$4m as CEntitySelector, _sfc_main$6L as CErrorFullScreen, _sfc_main$6n as CFeedback, _sfc_main$3o as CFileAccessManagement, _sfc_main$6C as CFileAttributes, _sfc_main$3p as CFilePanel, _sfc_main$6I as CFileThumbnail, CFileViewer, CFilesAccessInfo, _sfc_main$3$ as CFilesAccessManage, _sfc_main$3I as CFilesFolderDeleteDialogContent, NForm as CForm, NFormItem as CFormItem, NFormItemCol as CFormItemCol, NFormItemGridItem as CFormItemGi, NFormItemGridItem as CFormItemGridItem, FormItemRow as CFormItemRow, _sfc_main$4h as CFullScreenLoader, NGridItem as CGi, CGlobalLoader, _sfc_main$5O as CGlobalSearch, GlobalStyle as CGlobalStyle, NGrid as CGrid, NGridItem as CGridItem, CGroupsAccessInfo, NH1 as CH1, NH2 as CH2, NH3 as CH3, NH4 as CH4, NH5 as CH5, NH6 as CH6, _sfc_main$6m as CHelpText, CIcon, _sfc_main$6K as CImage, _sfc_main$4W as CInfoBadge, _sfc_main$6B as CInput, NInputNumber as CInputNumber, _sfc_main$3y as CKnockNotificationsAppWrapper, CLIENT_TYPE, NLayout as CLayout, NLayoutContent as CLayoutContent, LayoutFooter as CLayoutFooter, LayoutHeader as CLayoutHeader, LayoutSider as CLayoutSider, _sfc_main$4X as CList, NMessageProvider as CMessageProvider, _sfc_main$5L as CMetaDataBadge, _sfc_main$6A as CModal, CMonacoEditor, CMovableWidget, CMultiSelect, NNotificationProvider as CNotificationProvider, NPagination as CPagination, _sfc_main$6l as CPillSelect, _sfc_main$6z as CPopover, _sfc_main$6J as CProcessingOverlay, NProgress as CProgress, _sfc_main$5s as CRichTextEditor, _sfc_main$4q as CSavedCanvasesManagement, CSearch, _sfc_main$6x as CSearchOnClick, CSearchOnClickWithSuggestions, CSecondaryNav, _sfc_main$4R as CSectionManagement, CSelect, CSelectFilter, _sfc_main$3x as CSettingsEditor, CShortcut, CSingleSelect, NSkeleton as CSkeleton, _sfc_main$3C as CSlideViewer, NSpace as CSpace, _sfc_main$6q as CSpin, _sfc_main$6o as CSwitch, CTable, _sfc_main$5c as CTableInput, CTableMore, CTableSelect, CTableTag, _sfc_main$6F as CTag, CTags, CTemplateAccessInfo, _sfc_main$3_ as CTemplateAccessManage, _sfc_main$4G as CTemplateManagement, text as CText, _sfc_main$6v as CThemeEditor, _sfc_main$4B as CThemeManagement, _sfc_main$5l as CToastProvider, CToolbar, _sfc_main$6t as CTooltip, CUpsertFolderModal, _sfc_main$5p as CUserAvatar, CUserMenu, CUsersAccessInfo, CUsersGroupsAccessManage, _sfc_main$5m as CVirtualTable, _sfc_main$48 as CWarningAlert, CallState, CanvasActions, _sfc_main$15 as CanvasBuilderApp, CanvasBuilderMode, CanvasExcludedComponentTypesEnum, CanvasHistoryAction, App as CanvasSelector, CanvasStatus, CanvasThemeStatus, CanvasesViewsTypes, CollaborationRoleEnum, CollectionPlayerApp, App$4 as CollectionSelectorApp, ComponentIcon, ComponentTypes, ContactSelectorQuickFilterType, ContentGridLayoutTypes, ContentSelector, CoreFolderEntityType, DATE_TIME_FORMAT, DEFAULT_ADMIN_TABLE_HEIGHT, DEFAULT_ADMIN_TABLE_WITH_PAGINATION_HEIGHT, DEFAULT_GLOBAL_COMPONENT_SPACING, DEFAULT_GLOBAL_COMPONENT_SPACING_INTERVAL, DEFAULT_ITEMS_PER_PAGE, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PEER_CONNECTIVITY_VERSION, DEFAULT_PITCHER_SETTINGS, DSR_API_METHOD_TYPES, DSR_API_TYPES, DSR_MESSAGE, DSR_MESSAGE_TYPES, DSR_TYPE, DefaultExpiresAtEnum, DownloadTypeEnum, EMBED_TYPE, EventAction, EventExternalObjectContentTypeEnum, EventStatusEnum, FileContentTypeEnum, FileStatusEnum, FileTypeEnum, GlobalSearchResultType, GridLayoutTypes, HIDE_IF_EMPTY_COMPONENT_ID_TAG_PREFIX, HIDE_IF_EMPTY_COMPONENT_TRACKING_ID_TAG_PREFIX, HIDE_TAGS_WITH_PREFIX, HtmlLayoutTypes, IFRAME_ACTION_TYPES, IFRAME_DATA_MESSAGE, INITIAL_CALL_STATE, IS_DEV_ORG, IS_LOCALHOST, InstanceMembershipRoleEnum, InstanceMembershipUserStatusEnum, InvitationStatusEnum, LanguageEnum, LinkAlignmentTypes, LinkAnchorTypes, LinkPreviewTypes, MAX_LUMINANCE_FOR_LIGHT_TEXT, MAX_UPLOAD_SIZE, MIN_DIFFERENCE_IN_MINUTES, MetadataTemplateFieldTypeEnum, MultimediaHorizontalAlignmentOptions, NON_MEMBER_ROLES, NotesApp, OperatorEnum, PAPER_SIZE_PRESETS, PEER_CONNECTIVITY_EVENT, PEER_CONNECTIVITY_HANDLER_MATCH_ALL, PITCHER_EVENT, PITCHER_SETTINGS_KEY, PLATFORM_TYPE, PRINT_SCALE_FACTOR, PeerConnectivityActions, PitcherBroadcastedEventName, PitcherEventName, PitcherExternalEventName, PitcherMessageType, PitcherResponseStatus, PostAction, App$2 as PptConversionSelectorApp, REQUEST_DEFAULT_CANCEL_TIMEOUT, SEARCH_DEBOUNCE_TIME, SUPPORTED_FONT_EXTENSIONS, SUPPORTED_FONT_TYPES, SUPPORTED_IMAGE_EXTENSIONS, SUPPORTED_IMAGE_TYPES, SUPPORTED_UPLOAD_FILE_EXTENSIONS, SUPPORTED_VIDEO_EXTENSIONS, SUPPORTED_VIDEO_TYPES, SfEventColors, SfEventColorsLight, StorageRegionEnum, TRACKING_EVENTS_STORAGE_KEY, UI_API_METHOD_TYPES, UI_MESSAGE, UI_MESSAGE_TYPES, UI_NATIVE_MESSAGE_TYPES, UserRoleEnum, ViewCompactItemType, addCanvasComponent, _export as agendaSelector, appRequiresCrm, applyCanvasThemeAssetsToNode, applyFont, applyToTreeBy, autofocus as autofocusDirective, camelCaseKeys, canvasUiUnoPreset, clearLocalStorageIfNeeded, ClickOutsideDirective as clickOutsideDirective, collectAllNodesByCondition, _export$3 as collectionPlayer, _export$2 as collectionSelector, componentIconType, computeLocalStorageBytes, convertSecondsToMinutes, convertSoqlToSmartQuery, convertToPixels, convertToSosl, createNodeId, createPitcherSettings, dayjs, deepDiff, deepToRaw, derivePatchRequestFields, determineUserRole, discardSectionComponentOverride, displayBytesWithMUnit, displayIntegerWithMunit, doesLocalOverrideExist, doesNotHaveAnyModuleOrHookSpecified, downloadFile, draggable as draggableDirective, elementMounted as elementMountedDirective, escapeSoqlString, evaluateAccessor, evaluateIsExecutedCondition, evaluateIsExecutedForPascalCaseEvent, executeWithDoublingTime, exitFullscreen, extractFieldNamesFromCondition, fallbackLocale, fetchAll, fetchAllWithOffset, fetchFirstChunkAndRemainingAsync, filterSidebarApps, filterTreeBy, findAllEmbeddableTypesInCanvasContent, findAllEmbeddableTypesInSectionsContent, findEmbeddableInCanvasContent, findEmbeddableInSectionsContent, findNodeInTreeByCondition, findNodeInTreeById, findNodeInTreeByType, findParentByNodeId, formatDate, formatDateDetailed, formatDateTime, formatDateTimeAgo, formatDayMonthBasedOnBrowserLang, formatDimensionForGotenberg, generateAIThumbnailUrl, getAllPages, getAppConfigFromAppSource, getAvailableApis, getComponentDescription, getComponentKeywords, getComponentTitle, getContrastTextColor, getDefinedProps, getEventColor, getExcessItemsIndexes, getFontAwesomeIconNameAndType, getImageSize, getLocalOverrideUrl, getLuminance, getNextPageParam, getNodeDisplayNameByComponentType, getNumberWithRegex, getPageQuantity, getPageRange, getPreviewUrl, getRoleIcon, getSectionGlobalComponentSpacing, handleThemeAssetComparison, hasAppTypeDefined, highLevelApi, indirectEval, insertItemSorted, isAfter, isBefore, isBeforeMinDate, isCanvasDrawerApp, isCanvasSectionExecution, isEmbeddableWithZeroHeight, isFileViewerReplacement, isFirefox, isFullscreen, isHeadlessOrNotAvailableApp, isImageAccessible, isIosDevice, isMac, isMobile, isModifierClick, isNonMemberRole, isOriginValid, isPastMaxDate, isPitcherOrIosDevice, isPitcherWkWebView, isPostcallApp, isQueryParamTruthy, isSafari, isSafariOnIosDevice, isSameOrAfter, isSameOrBefore, isTextComponentEmpty, isTheUiItself, isTouchScreen, isValidHex, isWindows, lightThemeOverrides, loadCustomHelpersFromApps, loadRemoteScriptWithCtx, loadScript, loadScriptStyle, loadStyle, localeDropdownOptions, localeNames, locales, minFutureDate, minPastDate, moveNodeTo, msToSeconds, navigateTo, normalizeFilterParams, normalizeNetworkFilterParams, openUsdz, parseCollectionPlayerSlidesToContentSelector, parseContentSelectorToCollectionPlayerSlides, parseFileToCollectionPlayer, parsePdfFileToCollectionPlayer, parsePptxFileToCollectionPlayer, pascalCaseKeys, _export$1 as pptConversionSelector, processCanvasForSectionThemeOverride, regenerateTreeIds, registerCustomHelper, registerCustomHelpers, registerPeerConnectivityHandler, renderTemplate, replaceThemePresetsWithInlineStyles, replaceTranslationMessagesWithOverrides, requestFullscreen, requestStream, scrollCanvasToTop, scrollToComponentById, secondsToHumanReadable, sendPeerConnectivityEvent, setDateTime, shouldDisplayPlaceholderComponent, shouldOpenInCollectionPlayerViewer, shouldShowEmbeddable, shouldShowInSidebar, skipElementsInTree, snakeCaseKeys, someNodeInTree, sortCollectionByString, splitUserName, stringToHslColor, supportedLocales, tapDirective, titleCase, toggleFullscreen, tooltipDirective, transformFilesToCollectionPlayer, transformFilesToContentGrid, updateFirstCollectionPlayerWithShareboxItems, updateFirstContentGridWithShareboxItems, urlSafeFetchInChunks, useAdmin, useAdminAndDsrState, useApi, useAppsDb, useBindValidation, useBroadcastRouteChange, useCanvasById, useCanvasLocks, useCanvasOverlay, useCanvasVisibility, useCanvasesAsInfinity, useCollectionPlayerOverlay, useCommentTracking, useConfirmation, useCreateEvent, useDeleteEvent, useDsr, useFetchCanvases, useFetchEvents, useFetchUsers, useFileDisplayHelpers, useFolderNameDescription, useGlobalSearch, useInfiniteScroll, useLocation, useMetadataSearch, useMetadataTemplates, useNotesApp, useNotification, useOpenFileStack, usePitcherApi, usePolling, usePresentationHistory, useRecentFiles, useShareCanvas, useSharedCommentsStorage, useSmartStore, useSuggestedTags, useTheme, useThemeVars, useToast, useUi, useUpdateEvent, useWindowEvents, vueQueryPluginOptions, wait, waitForIframeInitialize, waitForValue };
184460
+ export { ADMIN_API_METHOD_TYPES, ADMIN_API_TYPES, ADMIN_MESSAGE, ADMIN_MESSAGE_TYPES, APPS_DB, AccessTypeEnum, App$3 as AgendaSelectorApp, AppTypeEnum, _sfc_main as AssetsManagerApp, App$1 as Browser, BulkUpdateMetadataOperationEnum, BulkUpdateTagsOperationEnum, CALL_STORAGE_KEY, CANVASES, CANVAS_HOOKS, CANVAS_TYPOGRAPHY_CSS_PROPERTIES, CANVAS_TYPOGRAPHY_PRESETS, CAlgoliaSearch, CAssignedCanvasesManagement, _sfc_main$4p as CAssignedCanvasesManagementToolbar, _sfc_main$6r as CAvatar, _sfc_main$4O as CBlockManagement, CButton, _sfc_main$5f as CCanvasDeleteDialogContent, _sfc_main$5g as CCanvasMetadataFilters, CCanvasSelector, _sfc_main$6V as CCard, CCarousel, _sfc_main$3G as CCatalogIqSwitcher, _sfc_main$6U as CCheckbox, _sfc_main$3A as CChip, CCollapse, _sfc_main$6R as CCollapseItem, _sfc_main$6q as CCollapseTransition, NColorPicker as CColorPicker, CComponentListItem, CConfigEditor, NConfigProvider as CConfigProvider, _sfc_main$6h as CConfirmationAction, CConfirmationContent, CConfirmationHeader, CConfirmationModal, CContactSelector, CContactSelectorSelected, _sfc_main$68 as CContentError, _sfc_main$65 as CCreateCanvasModal, _sfc_main$64 as CCreateTemplateSectionBlockModal, _sfc_main$5V as CCreateThemeModal, CDP_EVENT_TYPE, CDataTable, NDatePicker as CDatePicker, CDateRangeFilter, CDetailPageSectionButtons, NDialogProvider as CDialogProvider, _sfc_main$6P as CDivider, _sfc_main$6O as CDrawer, _sfc_main$6N as CDrawerContent, _sfc_main$6M as CDropdown, _sfc_main$6o as CEmpty, _sfc_main$4m as CEntitySelector, _sfc_main$6L as CErrorFullScreen, _sfc_main$6n as CFeedback, _sfc_main$3o as CFileAccessManagement, _sfc_main$6B as CFileAttributes, _sfc_main$3p as CFilePanel, _sfc_main$6I as CFileThumbnail, CFileViewer, CFilesAccessInfo, _sfc_main$3$ as CFilesAccessManage, _sfc_main$3I as CFilesFolderDeleteDialogContent, NForm as CForm, NFormItem as CFormItem, NFormItemCol as CFormItemCol, NFormItemGridItem as CFormItemGi, NFormItemGridItem as CFormItemGridItem, FormItemRow as CFormItemRow, _sfc_main$4h as CFullScreenLoader, NGridItem as CGi, CGlobalLoader, _sfc_main$5O as CGlobalSearch, GlobalStyle as CGlobalStyle, NGrid as CGrid, NGridItem as CGridItem, CGroupsAccessInfo, NH1 as CH1, NH2 as CH2, NH3 as CH3, NH4 as CH4, NH5 as CH5, NH6 as CH6, _sfc_main$6m as CHelpText, CIcon, _sfc_main$6K as CImage, _sfc_main$4W as CInfoBadge, _sfc_main$6A as CInput, NInputNumber as CInputNumber, _sfc_main$3y as CKnockNotificationsAppWrapper, CLIENT_TYPE, NLayout as CLayout, NLayoutContent as CLayoutContent, LayoutFooter as CLayoutFooter, LayoutHeader as CLayoutHeader, LayoutSider as CLayoutSider, _sfc_main$4X as CList, NMessageProvider as CMessageProvider, _sfc_main$5L as CMetaDataBadge, _sfc_main$6z as CModal, CMonacoEditor, CMovableWidget, CMultiSelect, NNotificationProvider as CNotificationProvider, NPagination as CPagination, _sfc_main$6l as CPillSelect, _sfc_main$6y as CPopover, _sfc_main$6J as CProcessingOverlay, NProgress as CProgress, _sfc_main$5s as CRichTextEditor, _sfc_main$4q as CSavedCanvasesManagement, CSearch, _sfc_main$6w as CSearchOnClick, CSearchOnClickWithSuggestions, CSecondaryNav, _sfc_main$4R as CSectionManagement, CSelect, CSelectFilter, _sfc_main$3x as CSettingsEditor, CShortcut, CSingleSelect, NSkeleton as CSkeleton, _sfc_main$3C as CSlideViewer, NSpace as CSpace, _sfc_main$6p as CSpin, _sfc_main$6F as CSwitch, CTable, _sfc_main$5c as CTableInput, CTableMore, CTableSelect, CTableTag, _sfc_main$6E as CTag, CTags, CTemplateAccessInfo, _sfc_main$3_ as CTemplateAccessManage, _sfc_main$4G as CTemplateManagement, text as CText, _sfc_main$6u as CThemeEditor, _sfc_main$4B as CThemeManagement, _sfc_main$5l as CToastProvider, CToolbar, _sfc_main$6s as CTooltip, CUpsertFolderModal, _sfc_main$5p as CUserAvatar, CUserMenu, CUsersAccessInfo, CUsersGroupsAccessManage, _sfc_main$5m as CVirtualTable, _sfc_main$48 as CWarningAlert, CallState, CanvasActions, _sfc_main$15 as CanvasBuilderApp, CanvasBuilderMode, CanvasExcludedComponentTypesEnum, CanvasHistoryAction, App as CanvasSelector, CanvasStatus, CanvasThemeStatus, CanvasesViewsTypes, CollaborationRoleEnum, CollectionPlayerApp, App$4 as CollectionSelectorApp, ComponentIcon, ComponentTypes, ContactSelectorQuickFilterType, ContentGridLayoutTypes, ContentSelector, CoreFolderEntityType, DATE_TIME_FORMAT, DEFAULT_ADMIN_TABLE_HEIGHT, DEFAULT_ADMIN_TABLE_WITH_PAGINATION_HEIGHT, DEFAULT_GLOBAL_COMPONENT_SPACING, DEFAULT_GLOBAL_COMPONENT_SPACING_INTERVAL, DEFAULT_ITEMS_PER_PAGE, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PEER_CONNECTIVITY_VERSION, DEFAULT_PITCHER_SETTINGS, DSR_API_METHOD_TYPES, DSR_API_TYPES, DSR_MESSAGE, DSR_MESSAGE_TYPES, DSR_TYPE, DefaultExpiresAtEnum, DownloadTypeEnum, EMBED_TYPE, EventAction, EventExternalObjectContentTypeEnum, EventStatusEnum, FileContentTypeEnum, FileStatusEnum, FileTypeEnum, GlobalSearchResultType, GridLayoutTypes, HIDE_IF_EMPTY_COMPONENT_ID_TAG_PREFIX, HIDE_IF_EMPTY_COMPONENT_TRACKING_ID_TAG_PREFIX, HIDE_TAGS_WITH_PREFIX, HtmlLayoutTypes, IFRAME_ACTION_TYPES, IFRAME_DATA_MESSAGE, INITIAL_CALL_STATE, IS_DEV_ORG, IS_LOCALHOST, InstanceMembershipRoleEnum, InstanceMembershipUserStatusEnum, InvitationStatusEnum, LanguageEnum, LinkAlignmentTypes, LinkAnchorTypes, LinkPreviewTypes, MAX_LUMINANCE_FOR_LIGHT_TEXT, MAX_UPLOAD_SIZE, MIN_DIFFERENCE_IN_MINUTES, MetadataTemplateFieldTypeEnum, MultimediaHorizontalAlignmentOptions, NON_MEMBER_ROLES, NotesApp, OperatorEnum, PAPER_SIZE_PRESETS, PEER_CONNECTIVITY_EVENT, PEER_CONNECTIVITY_HANDLER_MATCH_ALL, PITCHER_EVENT, PITCHER_SETTINGS_KEY, PLATFORM_TYPE, PRINT_SCALE_FACTOR, PeerConnectivityActions, PitcherBroadcastedEventName, PitcherEventName, PitcherExternalEventName, PitcherMessageType, PitcherResponseStatus, PostAction, App$2 as PptConversionSelectorApp, REQUEST_DEFAULT_CANCEL_TIMEOUT, SEARCH_DEBOUNCE_TIME, SUPPORTED_FONT_EXTENSIONS, SUPPORTED_FONT_TYPES, SUPPORTED_IMAGE_EXTENSIONS, SUPPORTED_IMAGE_TYPES, SUPPORTED_UPLOAD_FILE_EXTENSIONS, SUPPORTED_VIDEO_EXTENSIONS, SUPPORTED_VIDEO_TYPES, SfEventColors, SfEventColorsLight, StorageRegionEnum, TRACKING_EVENTS_STORAGE_KEY, UI_API_METHOD_TYPES, UI_MESSAGE, UI_MESSAGE_TYPES, UI_NATIVE_MESSAGE_TYPES, UserRoleEnum, ViewCompactItemType, addCanvasComponent, _export as agendaSelector, appRequiresCrm, applyCanvasThemeAssetsToNode, applyFont, applyToTreeBy, autofocus as autofocusDirective, camelCaseKeys, canvasUiUnoPreset, clearLocalStorageIfNeeded, ClickOutsideDirective as clickOutsideDirective, collectAllNodesByCondition, _export$3 as collectionPlayer, _export$2 as collectionSelector, componentIconType, computeLocalStorageBytes, convertSecondsToMinutes, convertSoqlToSmartQuery, convertToPixels, convertToSosl, createNodeId, createPitcherSettings, dayjs, deepDiff, deepToRaw, derivePatchRequestFields, determineUserRole, discardSectionComponentOverride, displayBytesWithMUnit, displayIntegerWithMunit, doesLocalOverrideExist, doesNotHaveAnyModuleOrHookSpecified, downloadFile, draggable as draggableDirective, elementMounted as elementMountedDirective, escapeSoqlString, evaluateAccessor, evaluateIsExecutedCondition, evaluateIsExecutedForPascalCaseEvent, executeWithDoublingTime, exitFullscreen, extractFieldNamesFromCondition, fallbackLocale, fetchAll, fetchAllWithOffset, fetchFirstChunkAndRemainingAsync, filterSidebarApps, filterTreeBy, findAllEmbeddableTypesInCanvasContent, findAllEmbeddableTypesInSectionsContent, findEmbeddableInCanvasContent, findEmbeddableInSectionsContent, findNodeInTreeByCondition, findNodeInTreeById, findNodeInTreeByType, findParentByNodeId, formatDate, formatDateDetailed, formatDateTime, formatDateTimeAgo, formatDayMonthBasedOnBrowserLang, formatDimensionForGotenberg, generateAIThumbnailUrl, getAllPages, getAppConfigFromAppSource, getAvailableApis, getComponentDescription, getComponentKeywords, getComponentTitle, getContrastTextColor, getDefinedProps, getEventColor, getExcessItemsIndexes, getFontAwesomeIconNameAndType, getImageSize, getLocalOverrideUrl, getLuminance, getNextPageParam, getNodeDisplayNameByComponentType, getNumberWithRegex, getPageQuantity, getPageRange, getPreviewUrl, getRoleIcon, getSectionGlobalComponentSpacing, handleThemeAssetComparison, hasAppTypeDefined, highLevelApi, indirectEval, insertItemSorted, isAfter, isBefore, isBeforeMinDate, isCanvasDrawerApp, isCanvasSectionExecution, isEmbeddableWithZeroHeight, isFileViewerReplacement, isFirefox, isFullscreen, isHeadlessOrNotAvailableApp, isImageAccessible, isIosDevice, isMac, isMobile, isModifierClick, isNonMemberRole, isOriginValid, isPastMaxDate, isPitcherOrIosDevice, isPitcherWkWebView, isPostcallApp, isQueryParamTruthy, isSafari, isSafariOnIosDevice, isSameOrAfter, isSameOrBefore, isTextComponentEmpty, isTheUiItself, isTouchScreen, isValidHex, isWindows, lightThemeOverrides, loadCustomHelpersFromApps, loadRemoteScriptWithCtx, loadScript, loadScriptStyle, loadStyle, localeDropdownOptions, localeNames, locales, minFutureDate, minPastDate, moveNodeTo, msToSeconds, navigateTo, normalizeFilterParams, normalizeNetworkFilterParams, openUsdz, parseCollectionPlayerSlidesToContentSelector, parseContentSelectorToCollectionPlayerSlides, parseFileToCollectionPlayer, parsePdfFileToCollectionPlayer, parsePptxFileToCollectionPlayer, pascalCaseKeys, _export$1 as pptConversionSelector, processCanvasForSectionThemeOverride, regenerateTreeIds, registerCustomHelper, registerCustomHelpers, registerPeerConnectivityHandler, renderTemplate, replaceThemePresetsWithInlineStyles, replaceTranslationMessagesWithOverrides, requestFullscreen, requestStream, scrollCanvasToTop, scrollToComponentById, secondsToHumanReadable, sendPeerConnectivityEvent, setDateTime, shouldDisplayPlaceholderComponent, shouldOpenInCollectionPlayerViewer, shouldShowEmbeddable, shouldShowInSidebar, skipElementsInTree, snakeCaseKeys, someNodeInTree, sortCollectionByString, splitUserName, stringToHslColor, supportedLocales, tapDirective, titleCase, toggleFullscreen, tooltipDirective, transformFilesToCollectionPlayer, transformFilesToContentGrid, updateFirstCollectionPlayerWithShareboxItems, updateFirstContentGridWithShareboxItems, urlSafeFetchInChunks, useAdmin, useAdminAndDsrState, useApi, useAppsDb, useBindValidation, useBroadcastRouteChange, useCanvasById, useCanvasLocks, useCanvasOverlay, useCanvasVisibility, useCanvasesAsInfinity, useCollectionPlayerOverlay, useCommentTracking, useConfirmation, useCreateEvent, useDeleteEvent, useDsr, useFetchCanvases, useFetchEvents, useFetchUsers, useFileDisplayHelpers, useFolderNameDescription, useGlobalSearch, useInfiniteScroll, useLocation, useMetadataSearch, useMetadataTemplates, useNotesApp, useNotification, useOpenFileStack, usePitcherApi, usePolling, usePresentationHistory, useRecentFiles, useShareCanvas, useSharedCommentsStorage, useSmartStore, useSuggestedTags, useTheme, useThemeVars, useToast, useUi, useUpdateEvent, useWindowEvents, vueQueryPluginOptions, wait, waitForIframeInitialize, waitForValue };
184395
184461
  //# sourceMappingURL=canvas-ui.js.map