box-ui-elements 16.0.0-beta.21 → 16.0.0-beta.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/explorer.css +1 -1
- package/dist/explorer.js +14 -14
- package/dist/openwith.js +5 -5
- package/dist/picker.js +7 -7
- package/dist/preview.css +1 -1
- package/dist/preview.js +14 -14
- package/dist/sharing.js +11 -11
- package/dist/sidebar.css +1 -1
- package/dist/sidebar.js +13 -13
- package/dist/uploader.js +5 -5
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +22 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.flow +28 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +82 -6
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.flow +92 -4
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +68 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.flow +87 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js +55 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js +8 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.flow +10 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.map +1 -1
- package/es/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.d.ts +55 -0
- package/i18n/bn-IN.js +17 -15
- package/i18n/bn-IN.properties +17 -15
- package/i18n/da-DK.js +17 -15
- package/i18n/da-DK.properties +17 -15
- package/i18n/de-DE.js +17 -15
- package/i18n/de-DE.properties +17 -15
- package/i18n/en-AU.js +4 -2
- package/i18n/en-AU.properties +4 -2
- package/i18n/en-CA.js +9 -7
- package/i18n/en-CA.properties +9 -7
- package/i18n/en-GB.js +4 -2
- package/i18n/en-GB.properties +4 -2
- package/i18n/en-US.js +2 -0
- package/i18n/en-US.properties +4 -0
- package/i18n/en-x-pseudo.js +876 -874
- package/i18n/en-x-pseudo.properties +875 -873
- package/i18n/es-419.js +17 -15
- package/i18n/es-419.properties +17 -15
- package/i18n/es-ES.js +17 -15
- package/i18n/es-ES.properties +17 -15
- package/i18n/fi-FI.js +17 -15
- package/i18n/fi-FI.properties +17 -15
- package/i18n/fr-CA.js +17 -15
- package/i18n/fr-CA.properties +17 -15
- package/i18n/fr-FR.js +17 -15
- package/i18n/fr-FR.properties +17 -15
- package/i18n/hi-IN.js +17 -15
- package/i18n/hi-IN.properties +17 -15
- package/i18n/it-IT.js +17 -15
- package/i18n/it-IT.properties +17 -15
- package/i18n/ja-JP.js +2 -0
- package/i18n/ja-JP.properties +2 -0
- package/i18n/ko-KR.js +17 -15
- package/i18n/ko-KR.properties +17 -15
- package/i18n/nb-NO.js +17 -15
- package/i18n/nb-NO.properties +17 -15
- package/i18n/nl-NL.js +17 -15
- package/i18n/nl-NL.properties +17 -15
- package/i18n/pl-PL.js +17 -15
- package/i18n/pl-PL.properties +17 -15
- package/i18n/pt-BR.js +17 -15
- package/i18n/pt-BR.properties +17 -15
- package/i18n/ru-RU.js +17 -15
- package/i18n/ru-RU.properties +17 -15
- package/i18n/sv-SE.js +17 -15
- package/i18n/sv-SE.properties +17 -15
- package/i18n/tr-TR.js +17 -15
- package/i18n/tr-TR.properties +17 -15
- package/i18n/zh-CN.js +17 -15
- package/i18n/zh-CN.properties +17 -15
- package/i18n/zh-TW.js +17 -15
- package/i18n/zh-TW.properties +17 -15
- package/package.json +1 -1
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +28 -2
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +92 -4
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +87 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThread.test.js +57 -11
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThreadReplies.test.js +24 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/__snapshots__/ActiveState.test.js.snap +12 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.ts +56 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/messages.js +10 -0
package/i18n/en-CA.properties
CHANGED
|
@@ -1553,15 +1553,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = Access expires
|
|
|
1553
1553
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1554
1554
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, and {remainingEmailsCount} more
|
|
1555
1555
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1556
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1556
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent because external collaboration is restricted due to the applied security policy.
|
|
1557
1557
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1558
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1558
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent due to a security policy.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Invitations cannot be sent to {email} due to a security policy.
|
|
1561
|
+
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Invitations cannot be sent to {email} because external collaboration is restricted due to the applied security policy.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1564
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Remove
|
|
1566
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Remove to continue
|
|
1565
1567
|
# Error message when more than the maximum number of contacts is entered
|
|
1566
1568
|
boxui.unifiedShare.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
|
|
1567
1569
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1615,13 +1617,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = Collaborators cannot be added
|
|
|
1615
1617
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1616
1618
|
boxui.unifiedShare.inviteFieldLabel = Invite People
|
|
1617
1619
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1618
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice = This content requires a business justification
|
|
1620
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = This content requires a business justification for {count, plural, one {{count} invitation} other {{count} invitations}}. Please select a business justification below.
|
|
1619
1621
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1620
1622
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = This content requires a business justification to invite {email}. Please select a business justification below.
|
|
1621
1623
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1622
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternatively, remove
|
|
1624
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternatively, remove to continue
|
|
1623
1625
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1624
|
-
boxui.unifiedShare.justificationRequiredError = Select a justification or remove
|
|
1626
|
+
boxui.unifiedShare.justificationRequiredError = Select a justification or remove to continue
|
|
1625
1627
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1626
1628
|
boxui.unifiedShare.justificationSelectPlaceholder = Select Justification
|
|
1627
1629
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1677,7 +1679,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = Remove Shared Link
|
|
|
1677
1679
|
# Tooltip description for not having access to remove link
|
|
1678
1680
|
boxui.unifiedShare.removeLinkTooltip = You do not have permission to remove the link.
|
|
1679
1681
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1680
|
-
boxui.unifiedShare.restrictedContactsError = Remove
|
|
1682
|
+
boxui.unifiedShare.restrictedContactsError = Remove to continue
|
|
1681
1683
|
# Tooltip text for email shared link button (title-case)
|
|
1682
1684
|
boxui.unifiedShare.sendSharedLink = Send Shared Link
|
|
1683
1685
|
# Field label for shared link recipient list (title-case)
|
package/i18n/en-GB.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "This comment no longer exists",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "This comment no longer exists",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Error",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "This task no longer exists",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "All Comments",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Unresolved Comments",
|
|
@@ -37,12 +39,12 @@ export default {
|
|
|
37
39
|
"be.contentInsights.contentAnalyticsErrorText": "There was a problem loading content insights. Please try again.",
|
|
38
40
|
"be.contentInsights.contentInsightsTitle": "Content Insights",
|
|
39
41
|
"be.contentInsights.downloadGraphLabel": "Chart displaying the number of downloads over the selected time period",
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Downloads",
|
|
41
43
|
"be.contentInsights.openContentInsightsButton": "See Details",
|
|
42
44
|
"be.contentInsights.peopleGraphLabel": "Chart displaying the number of users over the selected time period",
|
|
43
45
|
"be.contentInsights.peopleTitle": "PEOPLE",
|
|
44
46
|
"be.contentInsights.previewGraphLabel": "Chart displaying the number of previews over the selected time period",
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
47
|
+
"be.contentInsights.previewGraphType": "Previews",
|
|
46
48
|
"be.contentInsights.trendDown": "Trending down",
|
|
47
49
|
"be.contentInsights.trendMonth": "PAST MONTH",
|
|
48
50
|
"be.contentInsights.trendThreeMonths": "PAST 3 MONTHS",
|
package/i18n/en-GB.properties
CHANGED
|
@@ -75,7 +75,7 @@ be.contentInsights.contentInsightsTitle = Content Insights
|
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
76
|
be.contentInsights.downloadGraphLabel = Chart displaying the number of downloads over the selected time period
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Downloads
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
80
|
be.contentInsights.openContentInsightsButton = See Details
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
@@ -85,7 +85,7 @@ be.contentInsights.peopleTitle = PEOPLE
|
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
86
|
be.contentInsights.previewGraphLabel = Chart displaying the number of previews over the selected time period
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Previews
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
90
|
be.contentInsights.trendDown = Trending down
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Invitations cannot be sent to {cou
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Invitations cannot be sent to {count, plural, one {{count} person} other {{count} people}} due to a security policy.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Invitations cannot be sent to {email} due to a security policy.
|
|
1561
|
+
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Invitations cannot be sent to {email} because external collaboration is restricted due to the applied security policy.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/en-US.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "This comment no longer exists",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "This comment no longer exists",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Error",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "This task no longer exists",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "All Comments",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Unresolved Comments",
|
package/i18n/en-US.properties
CHANGED
|
@@ -10,6 +10,10 @@ be.activitySidebar.activityFeed.annotationMissingError = This comment no longer
|
|
|
10
10
|
be.activitySidebar.activityFeed.commentMissingError = This comment no longer exists
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = Error
|
|
13
|
+
# Text to show to hide more replies of comment or annotation
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = Hide replies
|
|
15
|
+
# Text to show to get more replies of comment or annotation
|
|
16
|
+
be.activitySidebar.activityFeed.showReplies = See {repliesToLoadCount, plural, one {# reply} other {# replies}}
|
|
13
17
|
# Text to show when a task no longer exists
|
|
14
18
|
be.activitySidebar.activityFeed.taskMissingError = This task no longer exists
|
|
15
19
|
# One of the dropdown options to select in order to filter comments
|