@box/unified-share-modal 1.17.1 → 1.18.1

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.
@@ -1,25 +1,62 @@
1
- import { useIntl as l } from "react-intl";
2
- import { Switch as s } from "@box/blueprint-web";
3
- import m from "./messages.js";
4
- import { jsx as a } from "react/jsx-runtime";
5
- function u({
6
- canChange: e,
7
- isAvailable: o,
8
- isChecked: t,
9
- isDisabled: n,
10
- onToggle: r
1
+ import { useIntl as b } from "react-intl";
2
+ import { Tooltip as w, Focusable as y, Switch as m } from "@box/blueprint-web";
3
+ import { CopyInput as B } from "@box/copy-input";
4
+ import e from "./messages.js";
5
+ import { jsx as o, jsxs as C, Fragment as x } from "react/jsx-runtime";
6
+ import { useUnifiedShareModalContext as S } from "../../contexts/unified-share-modal-context.js";
7
+ function D({
8
+ canChange: k,
9
+ isAvailable: f,
10
+ isChecked: n,
11
+ isDisabled: s,
12
+ onToggle: c
11
13
  }) {
12
14
  const {
13
- formatMessage: i
14
- } = l();
15
- return o ? /* @__PURE__ */ a(s.Item, {
16
- checked: t,
17
- disabled: n || !e,
18
- label: i(m.downloadSettingsToggleText),
19
- onCheckedChange: r,
20
- value: "download-link-settings"
21
- }) : null;
15
+ formatMessage: t
16
+ } = b(), {
17
+ item: u,
18
+ sharedLink: g
19
+ } = S(), {
20
+ downloadUrl: l,
21
+ directLinkBlockedReason: a,
22
+ settings: p = {}
23
+ } = g, {
24
+ isDirectLinkAvailable: d
25
+ } = p, {
26
+ classification: h
27
+ } = u, r = /* @__PURE__ */ o(B, {
28
+ disabled: s,
29
+ label: t(e.directLinkLabel),
30
+ value: l
31
+ });
32
+ if (!f)
33
+ return l && d ? r : null;
34
+ let i;
35
+ a === "malicious_content" ? i = t(e.directLinkBlockedByMaliciousContent) : a === "access_policy" && (i = t(h ? e.directLinkBlockedByAccessPolicyWithClassification : e.directLinkBlockedByAccessPolicyWithoutClassification));
36
+ const L = n && !!l && d && !i;
37
+ return /* @__PURE__ */ C(x, {
38
+ children: [i ? /* @__PURE__ */ o(w, {
39
+ content: i,
40
+ "data-testid": "download-settings-tooltip",
41
+ side: "left",
42
+ children: /* @__PURE__ */ o(y, {
43
+ children: /* @__PURE__ */ o(m.Item, {
44
+ checked: n,
45
+ disabled: !0,
46
+ label: t(e.downloadSettingsToggleText),
47
+ onCheckedChange: c,
48
+ value: "download-link-settings"
49
+ })
50
+ })
51
+ }) : /* @__PURE__ */ o(m.Item, {
52
+ checked: n,
53
+ disabled: s || !k,
54
+ label: t(e.downloadSettingsToggleText),
55
+ onCheckedChange: c,
56
+ value: "download-link-settings"
57
+ }), L && r]
58
+ });
22
59
  }
23
60
  export {
24
- u as DownloadSection
61
+ D as DownloadSection
25
62
  };
@@ -83,6 +83,22 @@ const t = e({
83
83
  id: "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText",
84
84
  defaultMessage: "Allow users with the shared link to download this item"
85
85
  },
86
+ directLinkLabel: {
87
+ id: "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel",
88
+ defaultMessage: "Direct link"
89
+ },
90
+ directLinkBlockedByMaliciousContent: {
91
+ id: "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent",
92
+ defaultMessage: "Download for this content has been disabled due to a security policy."
93
+ },
94
+ directLinkBlockedByAccessPolicyWithClassification: {
95
+ id: "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification",
96
+ defaultMessage: "Download has been disabled for content due to the classification."
97
+ },
98
+ directLinkBlockedByAccessPolicyWithoutClassification: {
99
+ id: "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification",
100
+ defaultMessage: "Download has been disabled for content without classification."
101
+ },
86
102
  // Password Settings
87
103
  passwordToggleText: {
88
104
  id: "groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText",
@@ -1,4 +1,4 @@
1
- import { useMemo as U } from "react";
1
+ import { useMemo as z } from "react";
2
2
  import { useIntl as H } from "react-intl";
3
3
  import { Modal as i, Text as R, Link as q } from "@box/blueprint-web";
4
4
  import { DownloadSection as G } from "./download-section.js";
@@ -11,7 +11,7 @@ import { useAccessLevels as W } from "../../hooks/use-access-levels.js";
11
11
  import { formatDateFromTimestampToCalendarDate as X } from "../../utils/date.js";
12
12
  import { useLinkSettingsForm as Y } from "../../hooks/use-link-settings-form.js";
13
13
  import { useUnifiedShareModalContext as Z } from "../../contexts/unified-share-modal-context.js";
14
- import '../../../../styles/shared-link-settings-modal.css';const $ = "_content_149ez_1", ee = "_body_149ez_5", C = {
14
+ import '../../../../styles/shared-link-settings-modal.css';const $ = "_content_1wiic_1", ee = "_body_1wiic_5", C = {
15
15
  content: $,
16
16
  body: ee
17
17
  };
@@ -34,7 +34,7 @@ function pe({
34
34
  onSharedLinkSettingsClose: w
35
35
  } = S, {
36
36
  selectedAccess: g
37
- } = W(), h = U(() => ({
37
+ } = W(), h = z(() => ({
38
38
  expiration: c ? X(c) : null,
39
39
  isDownloadEnabled: !!n.isDownloadEnabled,
40
40
  isExpirationEnabled: !!c,
@@ -66,14 +66,14 @@ function pe({
66
66
  s("vanityName", void 0), r("vanityName", e.target.value);
67
67
  }, _ = (e) => {
68
68
  s("password", void 0), r("isPasswordEnabled", e);
69
- }, z = (e) => {
70
- s("password", void 0), r("password", e.target.value);
71
69
  }, I = (e) => {
72
- r("isDownloadEnabled", e);
70
+ s("password", void 0), r("password", e.target.value);
73
71
  }, j = (e) => {
72
+ r("isDownloadEnabled", e);
73
+ }, O = (e) => {
74
74
  var y;
75
- const O = (y = document.getElementById("usm-SharedLinkSettingsModal-primaryButton")) == null ? void 0 : y.contains(e.relatedTarget);
76
- h.isPasswordEnabled && !o.password || O || F(o.password);
75
+ const U = (y = document.getElementById("usm-SharedLinkSettingsModal-primaryButton")) == null ? void 0 : y.contains(e.relatedTarget);
76
+ h.isPasswordEnabled && !o.password || U || F(o.password);
77
77
  }, l = E || N;
78
78
  return /* @__PURE__ */ a(i, {
79
79
  onOpenChange: v,
@@ -111,8 +111,8 @@ function pe({
111
111
  isChecked: o.isPasswordEnabled,
112
112
  isDefaultChecked: h.isPasswordEnabled,
113
113
  isDisabled: l,
114
- onBlur: j,
115
- onChange: z,
114
+ onBlur: O,
115
+ onChange: I,
116
116
  onFocus: () => s("password", void 0),
117
117
  onToggle: _,
118
118
  password: o.password
@@ -131,7 +131,7 @@ function pe({
131
131
  isAvailable: !!n.isDownloadAvailable,
132
132
  isChecked: o.isDownloadEnabled,
133
133
  isDisabled: l,
134
- onToggle: I
134
+ onToggle: j
135
135
  })]
136
136
  }), /* @__PURE__ */ b(i.Footer, {
137
137
  children: [/* @__PURE__ */ a(i.Footer.SecondaryButton, {
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "শেয়ারকৃত লিঙ্ক অপসারণ করুন",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "বাতিল করুন",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "বন্ধ করুন",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "শেয়ার করা লিঙ্ক সহ ব্যবহারকারীদের এই আইটেমটি ডাউনলোড করার অনুমতি দিন",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "শেয়ার করা লিঙ্ক সেটিংস সম্পর্কে আরও জানুন।",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "একটি মেয়াদউত্তীর্ণ হওয়ার তারিখ নির্বাচন করুন",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Fjern delt link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Annuller",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Luk",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Tillad brugere med det delt link at downloade dette element",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Få mere at vide om delt link-indstillinger.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Vælge en udløbsdato",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Freigabe-Link entfernen",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Abbrechen",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Schließen",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Benutzern mit dem Freigabe-Link das Herunterladen dieses Elements gestatten",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Erfahren Sie mehr über die Einstellungen für Freigabe-Links.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Wählen Sie ein Ablaufdatum aus",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Remove Shared Link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Cancel",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Close",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Allow users with the shared link to download this item",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Learn more about shared link settings.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Select an expiration date",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Remove Shared Link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Cancel",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Close",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Allow users with the shared link to download this item",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Learn more about shared link settings.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Select an expiration date",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Remove Shared Link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Cancel",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Close",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Allow users with the shared link to download this item",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Learn more about shared link settings.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Select an expiration date",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Remove Shared Link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Cancel",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Close",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Allow users with the shared link to download this item",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Learn more about shared link settings.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Select an expiration date",
@@ -48,6 +48,14 @@ groupSharedFeatures.usm.removeSharedLinkModal.title = Remove Shared Link
48
48
  groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = Cancel
49
49
  # Aria label for the button to close the Shared Link Settings modal
50
50
  groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton = Close
51
+ # Tooltip message when the direct link is blocked due to access policy with classification
52
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification = Download has been disabled for content due to the classification.
53
+ # Tooltip message when the direct link is blocked due to access policy without classification
54
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification = Download has been disabled for content without classification.
55
+ # Tooltip message when the direct link is blocked due to malicious content
56
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent = Download for this content has been disabled due to a security policy.
57
+ # Label for the direct link to download the shared item
58
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = Direct link
51
59
  # Label for the download settings toggle
52
60
  groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = Allow users with the shared link to download this item
53
61
  # Link to learn more about shared link settings
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "⟦萬萬萬萬萬 Ŕémōνě Ѕнåѓèď Ĺιπк 國國國國國⟧",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "⟦萬 Čåňсєĺ 國⟧",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "⟦萬 Ĉļõśє 國⟧",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ąĺľõш ūŝёŗş ẃιţĥ ťĥé ŝĥąŗëď ľīик ŧό ďòώиľοâď ŧħїş įτέm 國國國國國國國國國國國國國國國國⟧",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ŀеαŗη møгĕ āьσűť ѕнåяēď ĺìʼnк ŝεťťīпġś. 國國國國國國國國國國國⟧",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "⟦萬萬萬萬萬萬萬 Śëļēčτ αň ëхΡιŗāŧĭσŋ ďăŧě 國國國國國國國⟧",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Eliminar enlace compartido",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Anular",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Cerrar",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Permitir que los usuarios con el enlace compartido descarguen este elemento",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Más información sobre la configuración de enlace compartido.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Seleccionar una fecha de vencimiento",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Eliminar enlace compartido",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Anular",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Cerrar",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Permitir que los usuarios con el enlace compartido descarguen este elemento",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Más información sobre la configuración de enlace compartido.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Seleccionar una fecha de vencimiento",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Poista jaettu linkki",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Peruuta",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Sulje",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Salli käyttäjät, joilla on jaettu linkki, ladata tämä kohde",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Lisätietoja jaettujen linkkiasetuksista.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Valitse vanhentumispäiväys",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Supprimer le lien partagé",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Annuler",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Fermer",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Autoriser les utilisateurs avec le lien partagé à télécharger cet élément plus plus",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "En savoir plus sur les paramètres des liens partagés. plus plus",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Sélectionner une date d'expiration",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Supprimer le lien partagé",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Annuler",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Fermer",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Autoriser les utilisateurs avec le lien partagé à télécharger cet élément plus plus",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "En savoir plus sur les paramètres des liens partagés. plus plus",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Sélectionner une date d'expiration",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "शेयर्ड लिंक निकालें",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "रद्द करें",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "बंद करें",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "शेयर्ड लिंक वाले उपयोगकर्ताओं को इस आइटम को डाउनलोड करने की अनुमति दें",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "शेयर्ड लिंक सेटिंग के बारे में और जानें।",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "एक समापन तारीख़ चुनें",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Rimuovi collegamento condiviso",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Annulla",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Chiudi",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Consenti alle persone che dispongono del collegamento condiviso di scaricare questo elemento",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Ulteriori informazioni sulle impostazioni del collegamento condiviso.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Seleziona una data di scadenza",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "共有リンクの削除",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "キャンセル",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "閉じる",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "共有リンクを知っているユーザーにこの項目のダウンロードを許可する",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "共有リンクの設定について詳細を表示。",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "有効期限を選択",
@@ -1 +1 @@
1
- [{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.title","description":"Title of the Shared Link Settings modal","defaultMessage":"Shared Link Settings"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle","description":"subtitle of the Shared Link settings modal","defaultMessage":"This content is available to anyone within your company with the link, and can be viewed or downloaded. {learnSharedLinkSettingsLink}"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton","description":"Button text to cancel updating the shared link settings","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton","description":"Aria label for the button to close the Shared Link Settings modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel","description":"Button aria label when the shared link settings are being updated","defaultMessage":"Loading"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton","description":"Button text to confirm saving the shared link settings","defaultMessage":"Save"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink","description":"Link to learn more about shared link settings","defaultMessage":"Learn more about shared link settings."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel","description":"Aria label for the calendar in the link expiration settings","defaultMessage":"Select an expiration date"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel","description":"Aria label for the clear date picker button in the link expiration settings","defaultMessage":"Clear date picker"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel","description":"Aria label for the next month button in the link expiration settings","defaultMessage":"Switch to next month"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel","description":"Aria label for the open calendar dropdown button in the link expiration settings","defaultMessage":"Open calendar"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel","description":"Aria label for the previous month button in the link expiration settings","defaultMessage":"Switch to previous month"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel","description":"Label for the date picker in the link expiration settings","defaultMessage":"Expiration date"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText","description":"Label for the link expiration toggle","defaultMessage":"Link expiration"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText","description":"Label for the vanity name toggle","defaultMessage":"Publish content broadly with a custom, non-private URL"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel","description":"Label for the warning notification icon","defaultMessage":"Warning"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText","description":"Text for the vanity domain settings warning","defaultMessage":"Custom URLs should not be used when sharing sensitive content."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel","description":"Label for the vanity name input","defaultMessage":"Custom path"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder","description":"Placeholder text for the vanity name input","defaultMessage":"Enter a custom path (12 or more characters)"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText","description":"Label for the download settings toggle","defaultMessage":"Allow users with the shared link to download this item"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText","description":"Label for the password protection toggle","defaultMessage":"Password protection"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordInputPlaceholder","description":"Placeholder text for the password input","defaultMessage":"Enter a password"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText","description":"Text for the password settings warning","defaultMessage":"Passwords must include at least 8 characters, and must contain at least one upper case letter, number, or special character."}]
1
+ [{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.title","description":"Title of the Shared Link Settings modal","defaultMessage":"Shared Link Settings"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle","description":"subtitle of the Shared Link settings modal","defaultMessage":"This content is available to anyone within your company with the link, and can be viewed or downloaded. {learnSharedLinkSettingsLink}"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton","description":"Button text to cancel updating the shared link settings","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton","description":"Aria label for the button to close the Shared Link Settings modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel","description":"Button aria label when the shared link settings are being updated","defaultMessage":"Loading"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton","description":"Button text to confirm saving the shared link settings","defaultMessage":"Save"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink","description":"Link to learn more about shared link settings","defaultMessage":"Learn more about shared link settings."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel","description":"Aria label for the calendar in the link expiration settings","defaultMessage":"Select an expiration date"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel","description":"Aria label for the clear date picker button in the link expiration settings","defaultMessage":"Clear date picker"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel","description":"Aria label for the next month button in the link expiration settings","defaultMessage":"Switch to next month"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel","description":"Aria label for the open calendar dropdown button in the link expiration settings","defaultMessage":"Open calendar"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel","description":"Aria label for the previous month button in the link expiration settings","defaultMessage":"Switch to previous month"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel","description":"Label for the date picker in the link expiration settings","defaultMessage":"Expiration date"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText","description":"Label for the link expiration toggle","defaultMessage":"Link expiration"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText","description":"Label for the vanity name toggle","defaultMessage":"Publish content broadly with a custom, non-private URL"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel","description":"Label for the warning notification icon","defaultMessage":"Warning"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText","description":"Text for the vanity domain settings warning","defaultMessage":"Custom URLs should not be used when sharing sensitive content."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel","description":"Label for the vanity name input","defaultMessage":"Custom path"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder","description":"Placeholder text for the vanity name input","defaultMessage":"Enter a custom path (12 or more characters)"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText","description":"Label for the download settings toggle","defaultMessage":"Allow users with the shared link to download this item"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel","description":"Label for the direct link to download the shared item","defaultMessage":"Direct link"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent","description":"Tooltip message when the direct link is blocked due to malicious content","defaultMessage":"Download for this content has been disabled due to a security policy."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification","description":"Tooltip message when the direct link is blocked due to access policy with classification","defaultMessage":"Download has been disabled for content due to the classification."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification","description":"Tooltip message when the direct link is blocked due to access policy without classification","defaultMessage":"Download has been disabled for content without classification."},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText","description":"Label for the password protection toggle","defaultMessage":"Password protection"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordInputPlaceholder","description":"Placeholder text for the password input","defaultMessage":"Enter a password"},{"id":"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText","description":"Text for the password settings warning","defaultMessage":"Passwords must include at least 8 characters, and must contain at least one upper case letter, number, or special character."}]
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "공유 링크 제거",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "취소",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "닫기",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "공유 링크를 가진 사용자가 이 항목을 다운로드할 수 있도록 허용",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "공유 링크 설정에 대해 자세히 알아보세요.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "만료 날짜 선택",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Fjern delt kobling",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Avbryt",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Lukk",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Tillat brukere med den delte koblingen til å laste ned dette elementet",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Lær mer om innstillinger for delte koblinger.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Velge en utløpsdato",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Verwijder gedeelde link",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Annuleren",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Sluiten",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Sta gebruikers met de gedeelde link toe om dit item te downloaden",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Meer informatie over instellingen voor gedeelde links.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Selecteer een vervaldatum",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Usuń łącze udostępnione",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Anuluj",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Zamknij",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Zezwól użytkownikom z łączem udostępnionym na pobranie tego elementu",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Więcej informacji o ustawieniach łącza udostępnionego.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Wybierać datę wygasanie",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Remover link compartilhado",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Cancelar",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Fechar",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Permitir que os usuários com o link compartilhado baixem esse item",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Saiba mais sobre as configurações de links compartilhados.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Selecionar uma data de vencimento",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Удалить общую ссылку",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Отмена",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Закрыть",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Разрешить пользователям с общей ссылкой скачивать этот элемент",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Узнайте больше о настройках общей ссылки.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Выберите дату истечения срока действия",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Ta bort delad länk",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Avbryt",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Stäng",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Tillåt användare med den delade länken att hämta det här objektet",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Läs mer om inställningar för delade länkar.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Välj ett utgångsdatum",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Paylaşılmış Bağlantıyı Kaldır",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "İptal Et",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Kapat",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Paylaşılmış bağlantıya sahip kullanıcıların bu öğeyi indirmesine izin ver",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Paylaşılmış bağlantı ayarları hakkında daha fazla bilgi alın.",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Bir sona erme tarihi seçin",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "移除共享链接",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "取消",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "关闭",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "允许拥有共享链接的用户下载该项目",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "了解有关共享链接设置的更多信息。",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "选择过期日期",
@@ -24,6 +24,10 @@ export default {
24
24
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "移除共用的連結",
25
25
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "取消",
26
26
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "關閉",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
27
31
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "允許擁有共用連結的使用者下載此項目",
28
32
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "深入瞭解共用的連結設定。",
29
33
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "選取到期日期",
@@ -1 +1 @@
1
- ._content_149ez_1._content_149ez_1{max-width:480px}._body_149ez_5._body_149ez_5{display:flex;flex-direction:column;gap:var(--space-4);padding-top:0;padding-bottom:0;overflow:auto}
1
+ ._content_1wiic_1._content_1wiic_1{max-width:480px}._body_1wiic_5._body_1wiic_5{display:flex;flex-direction:column;gap:var(--space-4);padding-top:0;padding-bottom:0}
@@ -99,6 +99,26 @@ declare const messages: {
99
99
  description: string;
100
100
  id: string;
101
101
  };
102
+ directLinkLabel: {
103
+ defaultMessage: string;
104
+ description: string;
105
+ id: string;
106
+ };
107
+ directLinkBlockedByMaliciousContent: {
108
+ defaultMessage: string;
109
+ description: string;
110
+ id: string;
111
+ };
112
+ directLinkBlockedByAccessPolicyWithClassification: {
113
+ defaultMessage: string;
114
+ description: string;
115
+ id: string;
116
+ };
117
+ directLinkBlockedByAccessPolicyWithoutClassification: {
118
+ defaultMessage: string;
119
+ description: string;
120
+ id: string;
121
+ };
102
122
  passwordToggleText: {
103
123
  defaultMessage: string;
104
124
  description: string;
@@ -122,6 +122,14 @@ export interface SharedLink {
122
122
  * The available access levels for the shared link. The allowed levels are dependent on the Enterprise settings.
123
123
  */
124
124
  accessLevels?: (AccessLevel | AccessLevelType)[];
125
+ /**
126
+ * The reason the direct link to download the shared item is blocked.
127
+ */
128
+ directLinkBlockedReason?: ShieldPolicyType;
129
+ /**
130
+ * The URL that can be used to download the shared item.
131
+ */
132
+ downloadUrl?: string;
125
133
  /**
126
134
  * The expiration timestamp of the shared link to indicate when the item will be unshared.
127
135
  */
@@ -168,6 +176,10 @@ export interface SharedLinkSettings {
168
176
  * When `true`, the user can update the custom URL settings of the shared link.
169
177
  */
170
178
  canChangeVanityName?: boolean;
179
+ /**
180
+ * When `true`, the direct link is available to the user.
181
+ */
182
+ isDirectLinkAvailable?: boolean;
171
183
  /**
172
184
  * When `true`, the download settings of the shared link are visible to the user.
173
185
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/unified-share-modal",
3
- "version": "1.17.1",
3
+ "version": "1.18.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@box/blueprint-web": "^9.18.13",
@@ -13,9 +13,9 @@
13
13
  "react-intl": "^6.4.2"
14
14
  },
15
15
  "devDependencies": {
16
- "@box/blueprint-web": "^12.103.1",
16
+ "@box/blueprint-web": "^12.103.2",
17
17
  "@box/blueprint-web-assets": "^4.86.0",
18
- "@box/copy-input": "^1.15.3",
18
+ "@box/copy-input": "^1.15.4",
19
19
  "@box/storybook-utils": "0.14.23",
20
20
  "@box/eslint-plugin-blueprint": "1.0.5",
21
21
  "react-intl": "^6.4.2"