@atlaskit/share 3.6.1 → 3.7.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.
- package/CHANGELOG.md +12 -0
- package/dist/cjs/components/ShareDialogContainer.js +2 -0
- package/dist/cjs/components/ShareDialogWithTrigger.js +56 -53
- package/dist/cjs/components/analytics/analytics.js +5 -3
- package/dist/cjs/i18n/da.js +1 -1
- package/dist/cjs/i18n/en.js +29 -21
- package/dist/cjs/i18n/en_GB.js +29 -21
- package/dist/cjs/i18n.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/ShareDialogContainer.js +2 -0
- package/dist/es2019/components/ShareDialogWithTrigger.js +5 -1
- package/dist/es2019/components/analytics/analytics.js +4 -2
- package/dist/es2019/i18n/da.js +1 -1
- package/dist/es2019/i18n/en.js +29 -21
- package/dist/es2019/i18n/en_GB.js +29 -21
- package/dist/es2019/i18n.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/ShareDialogContainer.js +2 -0
- package/dist/esm/components/ShareDialogWithTrigger.js +56 -53
- package/dist/esm/components/analytics/analytics.js +5 -3
- package/dist/esm/i18n/da.js +1 -1
- package/dist/esm/i18n/en.js +29 -21
- package/dist/esm/i18n/en_GB.js +29 -21
- package/dist/esm/i18n.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/components/ShareDialogContainer.d.ts +1 -1
- package/dist/types/components/analytics/analytics.d.ts +1 -1
- package/dist/types/i18n/en.d.ts +27 -19
- package/dist/types/i18n/en_GB.d.ts +27 -19
- package/dist/types/types/ShareDialogContainer.d.ts +1 -0
- package/dist/types/types/ShareDialogWithTrigger.d.ts +1 -1
- package/package.json +1 -1
- package/report.api.md +2 -0
- package/tmp/api-report-tmp.d.ts +2 -1
|
@@ -399,6 +399,7 @@ export var ShareDialogContainerInternal = /*#__PURE__*/function (_React$Componen
|
|
|
399
399
|
loadUserOptions = _this$props2.loadUserOptions,
|
|
400
400
|
renderCustomTriggerButton = _this$props2.renderCustomTriggerButton,
|
|
401
401
|
shareContentType = _this$props2.shareContentType,
|
|
402
|
+
isJwmShareToSlackFFEnabled = _this$props2.isJwmShareToSlackFFEnabled,
|
|
402
403
|
shareFormTitle = _this$props2.shareFormTitle,
|
|
403
404
|
shareFormHelperMessage = _this$props2.shareFormHelperMessage,
|
|
404
405
|
shouldCloseOnEscapePress = _this$props2.shouldCloseOnEscapePress,
|
|
@@ -442,6 +443,7 @@ export var ShareDialogContainerInternal = /*#__PURE__*/function (_React$Componen
|
|
|
442
443
|
onShareSubmit: this.handleSubmitShare,
|
|
443
444
|
renderCustomTriggerButton: renderCustomTriggerButton,
|
|
444
445
|
shareContentType: shareContentType,
|
|
446
|
+
isJwmShareToSlackFFEnabled: isJwmShareToSlackFFEnabled,
|
|
445
447
|
shareFormTitle: shareFormTitle,
|
|
446
448
|
shareFormHelperMessage: shareFormHelperMessage,
|
|
447
449
|
copyLinkOrigin: this.getCopyLinkOriginTracing(),
|
|
@@ -121,12 +121,15 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
121
121
|
|
|
122
122
|
_defineProperty(_assertThisInitialized(_this), "onTabChange", function (index) {
|
|
123
123
|
var subjectId = 'shareTab';
|
|
124
|
+
var _this$props3 = _this.props,
|
|
125
|
+
shareContentType = _this$props3.shareContentType,
|
|
126
|
+
isJwmShareToSlackFFEnabled = _this$props3.isJwmShareToSlackFFEnabled;
|
|
124
127
|
|
|
125
128
|
if (index === 1) {
|
|
126
129
|
subjectId = 'shareToSlackTab';
|
|
127
130
|
}
|
|
128
131
|
|
|
129
|
-
_this.createAndFireEvent(shareTabClicked(subjectId));
|
|
132
|
+
_this.createAndFireEvent(shareTabClicked(subjectId, shareContentType, isJwmShareToSlackFFEnabled));
|
|
130
133
|
|
|
131
134
|
_this.setState({
|
|
132
135
|
tabIndex: index
|
|
@@ -217,9 +220,9 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
217
220
|
selectedIntegration: null
|
|
218
221
|
};
|
|
219
222
|
}, function () {
|
|
220
|
-
var _this$
|
|
221
|
-
onDialogOpen = _this$
|
|
222
|
-
isPublicLink = _this$
|
|
223
|
+
var _this$props4 = _this.props,
|
|
224
|
+
onDialogOpen = _this$props4.onDialogOpen,
|
|
225
|
+
isPublicLink = _this$props4.isPublicLink;
|
|
223
226
|
var isDialogOpen = _this.state.isDialogOpen;
|
|
224
227
|
|
|
225
228
|
if (isDialogOpen) {
|
|
@@ -269,12 +272,12 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
269
272
|
});
|
|
270
273
|
|
|
271
274
|
_defineProperty(_assertThisInitialized(_this), "handleShareSubmit", function (data) {
|
|
272
|
-
var _this$
|
|
273
|
-
onShareSubmit = _this$
|
|
274
|
-
shareContentType = _this$
|
|
275
|
-
formShareOrigin = _this$
|
|
276
|
-
showFlags = _this$
|
|
277
|
-
isPublicLink = _this$
|
|
275
|
+
var _this$props5 = _this.props,
|
|
276
|
+
onShareSubmit = _this$props5.onShareSubmit,
|
|
277
|
+
shareContentType = _this$props5.shareContentType,
|
|
278
|
+
formShareOrigin = _this$props5.formShareOrigin,
|
|
279
|
+
showFlags = _this$props5.showFlags,
|
|
280
|
+
isPublicLink = _this$props5.isPublicLink;
|
|
278
281
|
|
|
279
282
|
if (!onShareSubmit) {
|
|
280
283
|
return;
|
|
@@ -319,11 +322,11 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
319
322
|
});
|
|
320
323
|
|
|
321
324
|
_defineProperty(_assertThisInitialized(_this), "handleCopyLink", function () {
|
|
322
|
-
var _this$
|
|
323
|
-
copyLinkOrigin = _this$
|
|
324
|
-
shareContentType = _this$
|
|
325
|
-
isPublicLink = _this$
|
|
326
|
-
shareAri = _this$
|
|
325
|
+
var _this$props6 = _this.props,
|
|
326
|
+
copyLinkOrigin = _this$props6.copyLinkOrigin,
|
|
327
|
+
shareContentType = _this$props6.shareContentType,
|
|
328
|
+
isPublicLink = _this$props6.isPublicLink,
|
|
329
|
+
shareAri = _this$props6.shareAri;
|
|
327
330
|
|
|
328
331
|
_this.createAndFireEvent(copyLinkButtonClicked(_this.start, shareContentType, copyLinkOrigin, isPublicLink, shareAri));
|
|
329
332
|
});
|
|
@@ -341,19 +344,19 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
341
344
|
var _this$state2 = _this.state,
|
|
342
345
|
isDialogOpen = _this$state2.isDialogOpen,
|
|
343
346
|
isUsingSplitButton = _this$state2.isUsingSplitButton;
|
|
344
|
-
var _this$
|
|
345
|
-
formatMessage = _this$
|
|
346
|
-
isDisabled = _this$
|
|
347
|
-
renderCustomTriggerButton = _this$
|
|
348
|
-
triggerButtonIcon = _this$
|
|
349
|
-
triggerButtonTooltipText = _this$
|
|
350
|
-
triggerButtonTooltipPosition = _this$
|
|
351
|
-
triggerButtonAppearance = _this$
|
|
352
|
-
triggerButtonStyle = _this$
|
|
353
|
-
integrationMode = _this$
|
|
354
|
-
shareIntegrations = _this$
|
|
355
|
-
dialogZIndex = _this$
|
|
356
|
-
dialogPlacement = _this$
|
|
347
|
+
var _this$props7 = _this.props,
|
|
348
|
+
formatMessage = _this$props7.intl.formatMessage,
|
|
349
|
+
isDisabled = _this$props7.isDisabled,
|
|
350
|
+
renderCustomTriggerButton = _this$props7.renderCustomTriggerButton,
|
|
351
|
+
triggerButtonIcon = _this$props7.triggerButtonIcon,
|
|
352
|
+
triggerButtonTooltipText = _this$props7.triggerButtonTooltipText,
|
|
353
|
+
triggerButtonTooltipPosition = _this$props7.triggerButtonTooltipPosition,
|
|
354
|
+
triggerButtonAppearance = _this$props7.triggerButtonAppearance,
|
|
355
|
+
triggerButtonStyle = _this$props7.triggerButtonStyle,
|
|
356
|
+
integrationMode = _this$props7.integrationMode,
|
|
357
|
+
shareIntegrations = _this$props7.shareIntegrations,
|
|
358
|
+
dialogZIndex = _this$props7.dialogZIndex,
|
|
359
|
+
dialogPlacement = _this$props7.dialogPlacement;
|
|
357
360
|
var button;
|
|
358
361
|
var ShareButtonIcon = triggerButtonIcon || ShareIcon; // Render a custom or standard button.
|
|
359
362
|
|
|
@@ -452,31 +455,31 @@ export var ShareDialogWithTriggerInternal = /*#__PURE__*/function (_React$PureCo
|
|
|
452
455
|
defaultValue = _this$state3.defaultValue,
|
|
453
456
|
showIntegrationForm = _this$state3.showIntegrationForm,
|
|
454
457
|
selectedIntegration = _this$state3.selectedIntegration;
|
|
455
|
-
var _this$
|
|
456
|
-
copyLink = _this$
|
|
457
|
-
dialogPlacement = _this$
|
|
458
|
-
config = _this$
|
|
459
|
-
isFetchingConfig = _this$
|
|
460
|
-
loadUserOptions = _this$
|
|
461
|
-
shareFormTitle = _this$
|
|
462
|
-
shareFormHelperMessage = _this$
|
|
463
|
-
bottomMessage = _this$
|
|
464
|
-
submitButtonLabel = _this$
|
|
465
|
-
product = _this$
|
|
466
|
-
customFooter = _this$
|
|
467
|
-
enableSmartUserPicker = _this$
|
|
468
|
-
loggedInAccountId = _this$
|
|
469
|
-
cloudId = _this$
|
|
470
|
-
orgId = _this$
|
|
471
|
-
shareFieldsFooter = _this$
|
|
472
|
-
onUserSelectionChange = _this$
|
|
473
|
-
dialogZIndex = _this$
|
|
474
|
-
isPublicLink = _this$
|
|
475
|
-
tabIndex = _this$
|
|
476
|
-
copyTooltipText = _this$
|
|
477
|
-
integrationMode = _this$
|
|
478
|
-
shareIntegrations = _this$
|
|
479
|
-
isBrowseUsersDisabled = _this$
|
|
458
|
+
var _this$props8 = this.props,
|
|
459
|
+
copyLink = _this$props8.copyLink,
|
|
460
|
+
dialogPlacement = _this$props8.dialogPlacement,
|
|
461
|
+
config = _this$props8.config,
|
|
462
|
+
isFetchingConfig = _this$props8.isFetchingConfig,
|
|
463
|
+
loadUserOptions = _this$props8.loadUserOptions,
|
|
464
|
+
shareFormTitle = _this$props8.shareFormTitle,
|
|
465
|
+
shareFormHelperMessage = _this$props8.shareFormHelperMessage,
|
|
466
|
+
bottomMessage = _this$props8.bottomMessage,
|
|
467
|
+
submitButtonLabel = _this$props8.submitButtonLabel,
|
|
468
|
+
product = _this$props8.product,
|
|
469
|
+
customFooter = _this$props8.customFooter,
|
|
470
|
+
enableSmartUserPicker = _this$props8.enableSmartUserPicker,
|
|
471
|
+
loggedInAccountId = _this$props8.loggedInAccountId,
|
|
472
|
+
cloudId = _this$props8.cloudId,
|
|
473
|
+
orgId = _this$props8.orgId,
|
|
474
|
+
shareFieldsFooter = _this$props8.shareFieldsFooter,
|
|
475
|
+
onUserSelectionChange = _this$props8.onUserSelectionChange,
|
|
476
|
+
dialogZIndex = _this$props8.dialogZIndex,
|
|
477
|
+
isPublicLink = _this$props8.isPublicLink,
|
|
478
|
+
tabIndex = _this$props8.tabIndex,
|
|
479
|
+
copyTooltipText = _this$props8.copyTooltipText,
|
|
480
|
+
integrationMode = _this$props8.integrationMode,
|
|
481
|
+
shareIntegrations = _this$props8.shareIntegrations,
|
|
482
|
+
isBrowseUsersDisabled = _this$props8.isBrowseUsersDisabled;
|
|
480
483
|
var style = typeof tabIndex !== 'undefined' && tabIndex >= 0 ? {
|
|
481
484
|
outline: 'none'
|
|
482
485
|
} : undefined;
|
|
@@ -10,7 +10,7 @@ var buildAttributes = function buildAttributes() {
|
|
|
10
10
|
var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
11
11
|
return _objectSpread({
|
|
12
12
|
packageName: "@atlaskit/share",
|
|
13
|
-
packageVersion: "3.
|
|
13
|
+
packageVersion: "3.7.1"
|
|
14
14
|
}, attributes);
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -64,8 +64,10 @@ export var errorEncountered = function errorEncountered(actionSubjectId) {
|
|
|
64
64
|
export var shareTriggerButtonClicked = function shareTriggerButtonClicked() {
|
|
65
65
|
return createEvent('ui', ANALYTICS_SOURCE, 'clicked', 'button', 'share');
|
|
66
66
|
};
|
|
67
|
-
export var shareTabClicked = function shareTabClicked(subjectId) {
|
|
68
|
-
return createEvent('ui', ANALYTICS_SOURCE, 'clicked', 'tab', subjectId || 'shareTab'
|
|
67
|
+
export var shareTabClicked = function shareTabClicked(subjectId, shareContentType, isJwmShareToSlackFFEnabled) {
|
|
68
|
+
return createEvent('ui', ANALYTICS_SOURCE, 'clicked', 'tab', subjectId || 'shareTab', isJwmShareToSlackFFEnabled && {
|
|
69
|
+
shareContentType: shareContentType
|
|
70
|
+
});
|
|
69
71
|
};
|
|
70
72
|
export var cancelShare = function cancelShare(start) {
|
|
71
73
|
return createEvent('ui', ANALYTICS_SOURCE, 'pressed', 'keyboardShortcut', 'cancelShare', {
|
package/dist/esm/i18n/da.js
CHANGED
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.share.in.integration.button': 'Del i {integrationName}',
|
|
35
35
|
'fabric.elements.share.main.tab.text.confluence': 'Del side',
|
|
36
36
|
'fabric.elements.share.main.tab.text.jira': 'Del sag',
|
|
37
|
-
'fabric.elements.share.success.message': '{object, select, blogpost {Blogindlæg blev delt} board {Tavle blev delt} calendar {Kalender blev delt} draft {Kladde blev delt} filter {Filter blev delt} issue {Sag blev delt} media {Medie blev delt} page {Side blev delt} project {Projekt blev delt} pullrequest {Pullanmodning blev delt} question {Spørgsmål blev delt} report {Rapport blev delt} repository {Lager blev delt} request {Anmodning blev delt} roadmap {
|
|
37
|
+
'fabric.elements.share.success.message': '{object, select, blogpost {Blogindlæg blev delt} board {Tavle blev delt} calendar {Kalender blev delt} draft {Kladde blev delt} filter {Filter blev delt} issue {Sag blev delt} media {Medie blev delt} page {Side blev delt} project {Projekt blev delt} pullrequest {Pullanmodning blev delt} question {Spørgsmål blev delt} report {Rapport blev delt} repository {Lager blev delt} request {Anmodning blev delt} roadmap {Køreplan blev delt} site {Side blev delt} space {Område blev delt} other {Link blev delt}}',
|
|
38
38
|
'fabric.elements.share.to.integration.button': 'Del med {integrationName}',
|
|
39
39
|
'fabric.elements.share.trigger.button.icon.label': 'Del ikon',
|
|
40
40
|
'fabric.elements.share.trigger.button.invite.text': 'Invitér',
|
package/dist/esm/i18n/en.js
CHANGED
|
@@ -1,35 +1,43 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file is automatically generated by
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
5
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
6
|
*/
|
|
7
|
-
//
|
|
7
|
+
//
|
|
8
8
|
export default {
|
|
9
|
-
'fabric.elements.share.
|
|
10
|
-
'fabric.elements.share.
|
|
11
|
-
'fabric.elements.share.
|
|
9
|
+
'fabric.elements.share.copied.to.clipboard.message': 'Link copied to clipboard',
|
|
10
|
+
'fabric.elements.share.copylink.button.text': 'Copy link',
|
|
11
|
+
'fabric.elements.share.copypubliclink.button.text': 'Copy public link',
|
|
12
|
+
'fabric.elements.share.failure.icon.label': 'Error icon',
|
|
13
|
+
'fabric.elements.share.failure.message': 'Unable to share',
|
|
12
14
|
'fabric.elements.share.form.comment.placeholder': 'Add a message',
|
|
15
|
+
'fabric.elements.share.form.info.message.no.invite.confluence': 'Recipients will see the name of the page and your message',
|
|
16
|
+
'fabric.elements.share.form.info.message.no.invite.jira': 'Recipients will see the name of the issue and your message',
|
|
17
|
+
'fabric.elements.share.form.public.send': 'Send public link',
|
|
18
|
+
'fabric.elements.share.form.public.share': 'Share public link',
|
|
19
|
+
'fabric.elements.share.form.retry': 'Retry',
|
|
20
|
+
'fabric.elements.share.form.send': 'Send',
|
|
21
|
+
'fabric.elements.share.form.share': 'Share',
|
|
22
|
+
'fabric.elements.share.form.title': 'Share',
|
|
23
|
+
'fabric.elements.share.form.user-picker.add-more': 'Enter more',
|
|
24
|
+
'fabric.elements.share.form.user-picker.no-options.existingUserOnly': 'We couldn’t find any results for "{inputValue}".',
|
|
25
|
+
'fabric.elements.share.form.user-picker.no-options.generic': 'We couldn’t find any results for "{inputValue}". Invite people by using an email address.',
|
|
26
|
+
'fabric.elements.share.form.user-picker.placeholder.existingUserOnly': 'Enter name or team',
|
|
13
27
|
'fabric.elements.share.form.user-picker.placeholder.generic': 'Enter name, group, team or email',
|
|
14
28
|
'fabric.elements.share.form.user-picker.placeholder.jira': 'Enter name, team or email',
|
|
15
|
-
'fabric.elements.share.form.user-picker.
|
|
16
|
-
'fabric.elements.share.form.user-picker.add-more': 'Enter more',
|
|
29
|
+
'fabric.elements.share.form.user-picker.placholder.generic.existingUserOnly': 'Enter name, group or team',
|
|
17
30
|
'fabric.elements.share.form.user-picker.validation.required': 'Select at least one user, group, team or email.',
|
|
31
|
+
'fabric.elements.share.form.user-picker.validation.required.existingUserOnly': 'Select at least one user, group or team.',
|
|
18
32
|
'fabric.elements.share.form.user-picker.validation.required.jira': 'Select at least one user, team or email.',
|
|
19
|
-
'fabric.elements.share.form.user-picker.
|
|
20
|
-
'fabric.elements.share.
|
|
21
|
-
'fabric.elements.share.
|
|
33
|
+
'fabric.elements.share.form.user-picker.validation.required.jira.existingUserOnly': 'Select at least one user or team.',
|
|
34
|
+
'fabric.elements.share.in.integration.button': 'Share in {integrationName}',
|
|
35
|
+
'fabric.elements.share.main.tab.text.confluence': 'Share page',
|
|
36
|
+
'fabric.elements.share.main.tab.text.jira': 'Share issue',
|
|
37
|
+
'fabric.elements.share.success.message': '{object, select,blogpost {Blog post shared}board {Board shared}calendar {Calendar shared}draft {Draft shared}filter {Filter shared}issue {Issue shared}media {Media shared}page {Page shared}project {Project shared}pullrequest {Pull Request shared}question {Question shared}report {Report shared}repository {Repository shared}request {Request shared}roadmap {Roadmap shared}site {Site shared}space {Space shared}other {Link Shared}}',
|
|
38
|
+
'fabric.elements.share.to.integration.button': 'Share to {integrationName}',
|
|
22
39
|
'fabric.elements.share.trigger.button.icon.label': 'Share icon',
|
|
23
|
-
'fabric.elements.share.trigger.button.text': 'Share',
|
|
24
|
-
'fabric.elements.share.trigger.button.tooltip.text': 'Share',
|
|
25
40
|
'fabric.elements.share.trigger.button.invite.text': 'Invite',
|
|
26
|
-
'fabric.elements.share.
|
|
27
|
-
'fabric.elements.share.
|
|
28
|
-
'fabric.elements.share.copied.to.clipboard.icon.label': 'Copy link success icon',
|
|
29
|
-
'fabric.elements.share.copied.to.clipboard.message': 'Link copied to clipboard',
|
|
30
|
-
'fabric.elements.share.form.capabilities.info.message': 'Your invite will be sent to an admin for approval',
|
|
31
|
-
'fabric.elements.share.failure.icon.label': 'Error icon',
|
|
32
|
-
'fabric.elements.share.failure.message': 'Unable to share',
|
|
33
|
-
'fabric.elements.share.success.message': '{object, select, blogpost {Blog post shared} board {Board shared} calendar {Calendar shared} draft {Draft shared} filter {Filter shared} issue {Issue shared} media {Media shared} page {Page shared} project {Project shared} pullrequest {Pull Request shared} question {Question shared} report {Report shared} repository {Repository shared} request {Request shared} roadmap {Roadmap shared} site {Site shared} space {Space shared} other {Link Shared}}',
|
|
34
|
-
'fabric.elements.share.admin.notified.message': 'Your admin has been notified'
|
|
41
|
+
'fabric.elements.share.trigger.button.text': 'Share',
|
|
42
|
+
'fabric.elements.share.trigger.button.tooltip.text': 'Share'
|
|
35
43
|
};
|
package/dist/esm/i18n/en_GB.js
CHANGED
|
@@ -1,35 +1,43 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file is automatically generated by
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
5
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
6
|
*/
|
|
7
|
-
//
|
|
7
|
+
//English (United Kingdom)
|
|
8
8
|
export default {
|
|
9
|
-
'fabric.elements.share.
|
|
10
|
-
'fabric.elements.share.
|
|
11
|
-
'fabric.elements.share.
|
|
9
|
+
'fabric.elements.share.copied.to.clipboard.message': 'Link copied to clipboard',
|
|
10
|
+
'fabric.elements.share.copylink.button.text': 'Copy link',
|
|
11
|
+
'fabric.elements.share.copypubliclink.button.text': 'Copy public link',
|
|
12
|
+
'fabric.elements.share.failure.icon.label': 'Error icon',
|
|
13
|
+
'fabric.elements.share.failure.message': 'Unable to share',
|
|
12
14
|
'fabric.elements.share.form.comment.placeholder': 'Add a message',
|
|
15
|
+
'fabric.elements.share.form.info.message.no.invite.confluence': 'Recipients will see the name of the page and your message',
|
|
16
|
+
'fabric.elements.share.form.info.message.no.invite.jira': 'Recipients will see the name of the issue and your message',
|
|
17
|
+
'fabric.elements.share.form.public.send': 'Send public link',
|
|
18
|
+
'fabric.elements.share.form.public.share': 'Share public link',
|
|
19
|
+
'fabric.elements.share.form.retry': 'Retry',
|
|
20
|
+
'fabric.elements.share.form.send': 'Send',
|
|
21
|
+
'fabric.elements.share.form.share': 'Share',
|
|
22
|
+
'fabric.elements.share.form.title': 'Share',
|
|
23
|
+
'fabric.elements.share.form.user-picker.add-more': 'Enter more',
|
|
24
|
+
'fabric.elements.share.form.user-picker.no-options.existingUserOnly': 'We couldn’t find any results for "{inputValue}".',
|
|
25
|
+
'fabric.elements.share.form.user-picker.no-options.generic': 'We couldn’t find any results for "{inputValue}". Invite people by using an email address.',
|
|
26
|
+
'fabric.elements.share.form.user-picker.placeholder.existingUserOnly': 'Enter name or team',
|
|
13
27
|
'fabric.elements.share.form.user-picker.placeholder.generic': 'Enter name, group, team or email',
|
|
14
28
|
'fabric.elements.share.form.user-picker.placeholder.jira': 'Enter name, team or email',
|
|
15
|
-
'fabric.elements.share.form.user-picker.
|
|
16
|
-
'fabric.elements.share.form.user-picker.add-more': 'Enter more',
|
|
29
|
+
'fabric.elements.share.form.user-picker.placholder.generic.existingUserOnly': 'Enter name, group or team',
|
|
17
30
|
'fabric.elements.share.form.user-picker.validation.required': 'Select at least one user, group, team or email.',
|
|
31
|
+
'fabric.elements.share.form.user-picker.validation.required.existingUserOnly': 'Select at least one user, group or team.',
|
|
18
32
|
'fabric.elements.share.form.user-picker.validation.required.jira': 'Select at least one user, team or email.',
|
|
19
|
-
'fabric.elements.share.form.user-picker.
|
|
20
|
-
'fabric.elements.share.
|
|
21
|
-
'fabric.elements.share.
|
|
33
|
+
'fabric.elements.share.form.user-picker.validation.required.jira.existingUserOnly': 'Select at least one user or team.',
|
|
34
|
+
'fabric.elements.share.in.integration.button': 'Share in {integrationName}',
|
|
35
|
+
'fabric.elements.share.main.tab.text.confluence': 'Share page',
|
|
36
|
+
'fabric.elements.share.main.tab.text.jira': 'Share issue',
|
|
37
|
+
'fabric.elements.share.success.message': '{object, select,blogpost {Blog post shared}board {Board shared}calendar {Calendar shared}draft {Draft shared}filter {Filter shared}issue {Issue shared}media {Media shared}page {Page shared}project {Project shared}pullrequest {Pull Request shared}question {Question shared}report {Report shared}repository {Repository shared}request {Request shared}roadmap {Roadmap shared}site {Site shared}space {Space shared}other {Link Shared}}',
|
|
38
|
+
'fabric.elements.share.to.integration.button': 'Share to {integrationName}',
|
|
22
39
|
'fabric.elements.share.trigger.button.icon.label': 'Share icon',
|
|
23
|
-
'fabric.elements.share.trigger.button.text': 'Share',
|
|
24
|
-
'fabric.elements.share.trigger.button.tooltip.text': 'Share',
|
|
25
40
|
'fabric.elements.share.trigger.button.invite.text': 'Invite',
|
|
26
|
-
'fabric.elements.share.
|
|
27
|
-
'fabric.elements.share.
|
|
28
|
-
'fabric.elements.share.copied.to.clipboard.icon.label': 'Copy link success icon',
|
|
29
|
-
'fabric.elements.share.copied.to.clipboard.message': 'Link copied to clipboard',
|
|
30
|
-
'fabric.elements.share.form.capabilities.info.message': 'Your invite will be sent to an admin for approval',
|
|
31
|
-
'fabric.elements.share.failure.icon.label': 'Error icon',
|
|
32
|
-
'fabric.elements.share.failure.message': 'Unable to share',
|
|
33
|
-
'fabric.elements.share.success.message': '{object, select, blogpost {Blog post shared} board {Board shared} calendar {Calendar shared} draft {Draft shared} filter {Filter shared} issue {Issue shared} media {Media shared} page {Page shared} project {Project shared} pullrequest {Pull Request shared} question {Question shared} report {Report shared} repository {Repository shared} request {Request shared} roadmap {Roadmap shared} site {Site shared} space {Space shared} other {Link Shared}}',
|
|
34
|
-
'fabric.elements.share.admin.notified.message': 'Your admin has been notified'
|
|
41
|
+
'fabric.elements.share.trigger.button.text': 'Share',
|
|
42
|
+
'fabric.elements.share.trigger.button.tooltip.text': 'Share'
|
|
35
43
|
};
|
package/dist/esm/i18n.js
CHANGED
|
@@ -163,7 +163,7 @@ export var messages = defineMessages({
|
|
|
163
163
|
shareSuccessMessage: {
|
|
164
164
|
id: 'fabric.elements.share.success.message',
|
|
165
165
|
defaultMessage: '{object, select,' + 'blogpost {Blog post shared}' + 'board {Board shared}' + 'calendar {Calendar shared}' + 'draft {Draft shared}' + // this is a placeholder for Invite to edit in Confluence
|
|
166
|
-
'filter {Filter shared}' + 'issue {Issue shared}' + 'media {Media shared}' + 'page {Page shared}' + 'project {Project shared}' + 'pullrequest {Pull Request shared}' + 'question {Question shared}' + 'report {Report shared}' + 'repository {Repository shared}' + 'request {Request shared}' + 'roadmap {Roadmap shared}' + 'site {Site shared}' + 'space {Space shared}' + 'other {Link Shared}' + '}',
|
|
166
|
+
'filter {Filter shared}' + 'issue {Issue shared}' + 'summary {Summary shared}' + 'list {List shared}' + 'timeline {Timeline shared}' + 'form {Form shared}' + 'media {Media shared}' + 'page {Page shared}' + 'project {Project shared}' + 'pullrequest {Pull Request shared}' + 'question {Question shared}' + 'report {Report shared}' + 'repository {Repository shared}' + 'request {Request shared}' + 'roadmap {Roadmap shared}' + 'site {Site shared}' + 'space {Space shared}' + 'other {Link Shared}' + '}',
|
|
167
167
|
description: 'Default text for share success message displayed in a flag'
|
|
168
168
|
},
|
|
169
169
|
shareToIntegrationButtonText: {
|
package/dist/esm/version.json
CHANGED
|
@@ -52,7 +52,7 @@ export declare class ShareDialogContainerInternal extends React.Component<WithAn
|
|
|
52
52
|
getFormShareLink: () => string;
|
|
53
53
|
render(): JSX.Element;
|
|
54
54
|
}
|
|
55
|
-
export declare const ShareDialogContainer: React.ForwardRefExoticComponent<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "onTriggerButtonClick" | "isAutoOpenDialog" | "shouldCloseOnEscapePress" | "dialogPlacement" | "loadUserOptions" | "onDialogOpen" | "onDialogClose" | "onUserSelectionChange" | "renderCustomTriggerButton" | "shareContentType" | "shareFormTitle" | "shareFormHelperMessage" | "showFlags" | "loggedInAccountId" | "triggerButtonAppearance" | "triggerButtonIcon" | "triggerButtonStyle" | "triggerButtonTooltipPosition" | "triggerButtonTooltipText" | "cloudId" | "bottomMessage" | "customFooter" | "isCopyDisabled" | "isPublicLink" | "integrationMode" | "shareFieldsFooter" | "shareIntegrations" | "shareAri" | "tabIndex" | "copyTooltipText" | "dialogZIndex" | "orgId" | "isBrowseUsersDisabled" | "shareClient" | "urlShortenerClient" | "shortLinkData" | "formatCopyLink" | "originTracingFactory" | "productId" | "shareLink" | "shareTitle" | "useUrlShortener"> & Partial<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "enableSmartUserPicker" | "product" | "shareeAction">> & Partial<Pick<{
|
|
55
|
+
export declare const ShareDialogContainer: React.ForwardRefExoticComponent<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "onTriggerButtonClick" | "isAutoOpenDialog" | "shouldCloseOnEscapePress" | "dialogPlacement" | "loadUserOptions" | "onDialogOpen" | "onDialogClose" | "onUserSelectionChange" | "renderCustomTriggerButton" | "shareContentType" | "isJwmShareToSlackFFEnabled" | "shareFormTitle" | "shareFormHelperMessage" | "showFlags" | "loggedInAccountId" | "triggerButtonAppearance" | "triggerButtonIcon" | "triggerButtonStyle" | "triggerButtonTooltipPosition" | "triggerButtonTooltipText" | "cloudId" | "bottomMessage" | "customFooter" | "isCopyDisabled" | "isPublicLink" | "integrationMode" | "shareFieldsFooter" | "shareIntegrations" | "shareAri" | "tabIndex" | "copyTooltipText" | "dialogZIndex" | "orgId" | "isBrowseUsersDisabled" | "shareClient" | "urlShortenerClient" | "shortLinkData" | "formatCopyLink" | "originTracingFactory" | "productId" | "shareLink" | "shareTitle" | "useUrlShortener"> & Partial<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "enableSmartUserPicker" | "product" | "shareeAction">> & Partial<Pick<{
|
|
56
56
|
enableSmartUserPicker: boolean;
|
|
57
57
|
shareeAction: "view" | "edit";
|
|
58
58
|
product: string;
|
|
@@ -11,7 +11,7 @@ export declare const shareIntegrationButtonEvent: (type?: string) => AnalyticsEv
|
|
|
11
11
|
export declare const errorEncountered: (actionSubjectId: string | undefined, attributes?: any) => AnalyticsEventPayload;
|
|
12
12
|
export declare const shareTriggerButtonClicked: () => AnalyticsEventPayload;
|
|
13
13
|
export declare type TabSubjectIdType = 'shareTab' | 'shareToSlackTab';
|
|
14
|
-
export declare const shareTabClicked: (subjectId: TabSubjectIdType) => AnalyticsEventPayload;
|
|
14
|
+
export declare const shareTabClicked: (subjectId: TabSubjectIdType, shareContentType?: string | undefined, isJwmShareToSlackFFEnabled?: boolean | undefined) => AnalyticsEventPayload;
|
|
15
15
|
export declare const cancelShare: (start: number) => AnalyticsEventPayload;
|
|
16
16
|
export declare const shortUrlRequested: () => AnalyticsEventPayload;
|
|
17
17
|
export declare const shortUrlGenerated: (start: number, tooSlow: boolean) => AnalyticsEventPayload;
|
package/dist/types/i18n/en.d.ts
CHANGED
|
@@ -1,35 +1,43 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
'fabric.elements.share.
|
|
3
|
-
'fabric.elements.share.
|
|
4
|
-
'fabric.elements.share.
|
|
2
|
+
'fabric.elements.share.copied.to.clipboard.message': string;
|
|
3
|
+
'fabric.elements.share.copylink.button.text': string;
|
|
4
|
+
'fabric.elements.share.copypubliclink.button.text': string;
|
|
5
|
+
'fabric.elements.share.failure.icon.label': string;
|
|
6
|
+
'fabric.elements.share.failure.message': string;
|
|
5
7
|
'fabric.elements.share.form.comment.placeholder': string;
|
|
8
|
+
'fabric.elements.share.form.info.message.no.invite.confluence': string;
|
|
9
|
+
'fabric.elements.share.form.info.message.no.invite.jira': string;
|
|
10
|
+
'fabric.elements.share.form.public.send': string;
|
|
11
|
+
'fabric.elements.share.form.public.share': string;
|
|
12
|
+
'fabric.elements.share.form.retry': string;
|
|
13
|
+
'fabric.elements.share.form.send': string;
|
|
14
|
+
'fabric.elements.share.form.share': string;
|
|
15
|
+
'fabric.elements.share.form.title': string;
|
|
16
|
+
'fabric.elements.share.form.user-picker.add-more': string;
|
|
17
|
+
'fabric.elements.share.form.user-picker.no-options.existingUserOnly': string;
|
|
18
|
+
'fabric.elements.share.form.user-picker.no-options.generic': string;
|
|
19
|
+
'fabric.elements.share.form.user-picker.placeholder.existingUserOnly': string;
|
|
6
20
|
'fabric.elements.share.form.user-picker.placeholder.generic': string;
|
|
7
21
|
'fabric.elements.share.form.user-picker.placeholder.jira': string;
|
|
8
|
-
'fabric.elements.share.form.user-picker.
|
|
9
|
-
'fabric.elements.share.form.user-picker.add-more': string;
|
|
22
|
+
'fabric.elements.share.form.user-picker.placholder.generic.existingUserOnly': string;
|
|
10
23
|
'fabric.elements.share.form.user-picker.validation.required': string;
|
|
24
|
+
'fabric.elements.share.form.user-picker.validation.required.existingUserOnly': string;
|
|
11
25
|
'fabric.elements.share.form.user-picker.validation.required.jira': string;
|
|
12
|
-
'fabric.elements.share.form.user-picker.
|
|
13
|
-
'fabric.elements.share.
|
|
14
|
-
'fabric.elements.share.
|
|
26
|
+
'fabric.elements.share.form.user-picker.validation.required.jira.existingUserOnly': string;
|
|
27
|
+
'fabric.elements.share.in.integration.button': string;
|
|
28
|
+
'fabric.elements.share.main.tab.text.confluence': string;
|
|
29
|
+
'fabric.elements.share.main.tab.text.jira': string;
|
|
30
|
+
'fabric.elements.share.success.message': string;
|
|
31
|
+
'fabric.elements.share.to.integration.button': string;
|
|
15
32
|
'fabric.elements.share.trigger.button.icon.label': string;
|
|
33
|
+
'fabric.elements.share.trigger.button.invite.text': string;
|
|
16
34
|
'fabric.elements.share.trigger.button.text': string;
|
|
17
35
|
'fabric.elements.share.trigger.button.tooltip.text': string;
|
|
18
|
-
'fabric.elements.share.trigger.button.invite.text': string;
|
|
19
|
-
'fabric.elements.share.copylink.button.icon.label': string;
|
|
20
|
-
'fabric.elements.share.copylink.button.text': string;
|
|
21
|
-
'fabric.elements.share.copied.to.clipboard.icon.label': string;
|
|
22
|
-
'fabric.elements.share.copied.to.clipboard.message': string;
|
|
23
|
-
'fabric.elements.share.form.capabilities.info.message': string;
|
|
24
|
-
'fabric.elements.share.failure.icon.label': string;
|
|
25
|
-
'fabric.elements.share.failure.message': string;
|
|
26
|
-
'fabric.elements.share.success.message': string;
|
|
27
|
-
'fabric.elements.share.admin.notified.message': string;
|
|
28
36
|
};
|
|
29
37
|
/**
|
|
30
38
|
* NOTE:
|
|
31
39
|
*
|
|
32
|
-
* This file is automatically generated by
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
33
41
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
34
42
|
*/
|
|
35
43
|
export default _default;
|
|
@@ -1,35 +1,43 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
'fabric.elements.share.
|
|
3
|
-
'fabric.elements.share.
|
|
4
|
-
'fabric.elements.share.
|
|
2
|
+
'fabric.elements.share.copied.to.clipboard.message': string;
|
|
3
|
+
'fabric.elements.share.copylink.button.text': string;
|
|
4
|
+
'fabric.elements.share.copypubliclink.button.text': string;
|
|
5
|
+
'fabric.elements.share.failure.icon.label': string;
|
|
6
|
+
'fabric.elements.share.failure.message': string;
|
|
5
7
|
'fabric.elements.share.form.comment.placeholder': string;
|
|
8
|
+
'fabric.elements.share.form.info.message.no.invite.confluence': string;
|
|
9
|
+
'fabric.elements.share.form.info.message.no.invite.jira': string;
|
|
10
|
+
'fabric.elements.share.form.public.send': string;
|
|
11
|
+
'fabric.elements.share.form.public.share': string;
|
|
12
|
+
'fabric.elements.share.form.retry': string;
|
|
13
|
+
'fabric.elements.share.form.send': string;
|
|
14
|
+
'fabric.elements.share.form.share': string;
|
|
15
|
+
'fabric.elements.share.form.title': string;
|
|
16
|
+
'fabric.elements.share.form.user-picker.add-more': string;
|
|
17
|
+
'fabric.elements.share.form.user-picker.no-options.existingUserOnly': string;
|
|
18
|
+
'fabric.elements.share.form.user-picker.no-options.generic': string;
|
|
19
|
+
'fabric.elements.share.form.user-picker.placeholder.existingUserOnly': string;
|
|
6
20
|
'fabric.elements.share.form.user-picker.placeholder.generic': string;
|
|
7
21
|
'fabric.elements.share.form.user-picker.placeholder.jira': string;
|
|
8
|
-
'fabric.elements.share.form.user-picker.
|
|
9
|
-
'fabric.elements.share.form.user-picker.add-more': string;
|
|
22
|
+
'fabric.elements.share.form.user-picker.placholder.generic.existingUserOnly': string;
|
|
10
23
|
'fabric.elements.share.form.user-picker.validation.required': string;
|
|
24
|
+
'fabric.elements.share.form.user-picker.validation.required.existingUserOnly': string;
|
|
11
25
|
'fabric.elements.share.form.user-picker.validation.required.jira': string;
|
|
12
|
-
'fabric.elements.share.form.user-picker.
|
|
13
|
-
'fabric.elements.share.
|
|
14
|
-
'fabric.elements.share.
|
|
26
|
+
'fabric.elements.share.form.user-picker.validation.required.jira.existingUserOnly': string;
|
|
27
|
+
'fabric.elements.share.in.integration.button': string;
|
|
28
|
+
'fabric.elements.share.main.tab.text.confluence': string;
|
|
29
|
+
'fabric.elements.share.main.tab.text.jira': string;
|
|
30
|
+
'fabric.elements.share.success.message': string;
|
|
31
|
+
'fabric.elements.share.to.integration.button': string;
|
|
15
32
|
'fabric.elements.share.trigger.button.icon.label': string;
|
|
33
|
+
'fabric.elements.share.trigger.button.invite.text': string;
|
|
16
34
|
'fabric.elements.share.trigger.button.text': string;
|
|
17
35
|
'fabric.elements.share.trigger.button.tooltip.text': string;
|
|
18
|
-
'fabric.elements.share.trigger.button.invite.text': string;
|
|
19
|
-
'fabric.elements.share.copylink.button.icon.label': string;
|
|
20
|
-
'fabric.elements.share.copylink.button.text': string;
|
|
21
|
-
'fabric.elements.share.copied.to.clipboard.icon.label': string;
|
|
22
|
-
'fabric.elements.share.copied.to.clipboard.message': string;
|
|
23
|
-
'fabric.elements.share.form.capabilities.info.message': string;
|
|
24
|
-
'fabric.elements.share.failure.icon.label': string;
|
|
25
|
-
'fabric.elements.share.failure.message': string;
|
|
26
|
-
'fabric.elements.share.success.message': string;
|
|
27
|
-
'fabric.elements.share.admin.notified.message': string;
|
|
28
36
|
};
|
|
29
37
|
/**
|
|
30
38
|
* NOTE:
|
|
31
39
|
*
|
|
32
|
-
* This file is automatically generated by
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
33
41
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
34
42
|
*/
|
|
35
43
|
export default _default;
|
|
@@ -19,7 +19,7 @@ export declare type DialogPlacement = Placement;
|
|
|
19
19
|
* with the demo page and clearly visible options on that page.
|
|
20
20
|
*/
|
|
21
21
|
export declare type DialogBoundariesElement = 'viewport' | 'window' | 'scrollParent';
|
|
22
|
-
export declare type ShareDialogWithTriggerProps = Pick<ShareDialogContainerProps, 'onTriggerButtonClick' | 'isAutoOpenDialog' | 'shouldCloseOnEscapePress' | 'dialogPlacement' | 'loadUserOptions' | 'onDialogOpen' | 'onDialogClose' | 'onUserSelectionChange' | 'renderCustomTriggerButton' | 'shareContentType' | 'shareFormTitle' | 'shareFormHelperMessage' | 'showFlags' | 'enableSmartUserPicker' | 'loggedInAccountId' | 'triggerButtonAppearance' | 'triggerButtonIcon' | 'triggerButtonStyle' | 'triggerButtonTooltipPosition' | 'triggerButtonTooltipText' | 'cloudId' | 'bottomMessage' | 'product' | 'customFooter' | 'isCopyDisabled' | 'isPublicLink' | 'integrationMode' | 'shareFieldsFooter' | 'shareIntegrations' | 'shareAri' | 'tabIndex' | 'copyTooltipText' | 'dialogZIndex' | 'orgId' | 'isBrowseUsersDisabled'> & {
|
|
22
|
+
export declare type ShareDialogWithTriggerProps = Pick<ShareDialogContainerProps, 'onTriggerButtonClick' | 'isAutoOpenDialog' | 'shouldCloseOnEscapePress' | 'dialogPlacement' | 'loadUserOptions' | 'onDialogOpen' | 'onDialogClose' | 'onUserSelectionChange' | 'renderCustomTriggerButton' | 'shareContentType' | 'isJwmShareToSlackFFEnabled' | 'shareFormTitle' | 'shareFormHelperMessage' | 'showFlags' | 'enableSmartUserPicker' | 'loggedInAccountId' | 'triggerButtonAppearance' | 'triggerButtonIcon' | 'triggerButtonStyle' | 'triggerButtonTooltipPosition' | 'triggerButtonTooltipText' | 'cloudId' | 'bottomMessage' | 'product' | 'customFooter' | 'isCopyDisabled' | 'isPublicLink' | 'integrationMode' | 'shareFieldsFooter' | 'shareIntegrations' | 'shareAri' | 'tabIndex' | 'copyTooltipText' | 'dialogZIndex' | 'orgId' | 'isBrowseUsersDisabled'> & {
|
|
23
23
|
config?: ConfigResponse;
|
|
24
24
|
isFetchingConfig?: boolean;
|
|
25
25
|
children?: RenderCustomTriggerButton;
|
package/package.json
CHANGED
package/report.api.md
CHANGED
|
@@ -241,6 +241,7 @@ export const ShareDialogContainer: React_2.ForwardRefExoticComponent<
|
|
|
241
241
|
| 'isAutoOpenDialog'
|
|
242
242
|
| 'isBrowseUsersDisabled'
|
|
243
243
|
| 'isCopyDisabled'
|
|
244
|
+
| 'isJwmShareToSlackFFEnabled'
|
|
244
245
|
| 'isPublicLink'
|
|
245
246
|
| 'loadUserOptions'
|
|
246
247
|
| 'loggedInAccountId'
|
|
@@ -342,6 +343,7 @@ export type ShareDialogContainerProps = {
|
|
|
342
343
|
tabIndex?: number;
|
|
343
344
|
copyTooltipText?: string;
|
|
344
345
|
isBrowseUsersDisabled?: boolean;
|
|
346
|
+
isJwmShareToSlackFFEnabled?: boolean;
|
|
345
347
|
};
|
|
346
348
|
|
|
347
349
|
// @public (undocumented)
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -189,7 +189,7 @@ export type ShareContentState = {
|
|
|
189
189
|
};
|
|
190
190
|
|
|
191
191
|
// @public (undocumented)
|
|
192
|
-
export const ShareDialogContainer: React_2.ForwardRefExoticComponent<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "bottomMessage" | "cloudId" | "copyTooltipText" | "customFooter" | "dialogPlacement" | "dialogZIndex" | "formatCopyLink" | "integrationMode" | "isAutoOpenDialog" | "isBrowseUsersDisabled" | "isCopyDisabled" | "isPublicLink" | "loadUserOptions" | "loggedInAccountId" | "onDialogClose" | "onDialogOpen" | "onTriggerButtonClick" | "onUserSelectionChange" | "orgId" | "originTracingFactory" | "productId" | "renderCustomTriggerButton" | "shareAri" | "shareClient" | "shareContentType" | "shareFieldsFooter" | "shareFormHelperMessage" | "shareFormTitle" | "shareIntegrations" | "shareLink" | "shareTitle" | "shortLinkData" | "shouldCloseOnEscapePress" | "showFlags" | "tabIndex" | "triggerButtonAppearance" | "triggerButtonIcon" | "triggerButtonStyle" | "triggerButtonTooltipPosition" | "triggerButtonTooltipText" | "urlShortenerClient" | "useUrlShortener"> & Partial<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "enableSmartUserPicker" | "product" | "shareeAction">> & Partial<Pick<{
|
|
192
|
+
export const ShareDialogContainer: React_2.ForwardRefExoticComponent<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "bottomMessage" | "cloudId" | "copyTooltipText" | "customFooter" | "dialogPlacement" | "dialogZIndex" | "formatCopyLink" | "integrationMode" | "isAutoOpenDialog" | "isBrowseUsersDisabled" | "isCopyDisabled" | "isJwmShareToSlackFFEnabled" | "isPublicLink" | "loadUserOptions" | "loggedInAccountId" | "onDialogClose" | "onDialogOpen" | "onTriggerButtonClick" | "onUserSelectionChange" | "orgId" | "originTracingFactory" | "productId" | "renderCustomTriggerButton" | "shareAri" | "shareClient" | "shareContentType" | "shareFieldsFooter" | "shareFormHelperMessage" | "shareFormTitle" | "shareIntegrations" | "shareLink" | "shareTitle" | "shortLinkData" | "shouldCloseOnEscapePress" | "showFlags" | "tabIndex" | "triggerButtonAppearance" | "triggerButtonIcon" | "triggerButtonStyle" | "triggerButtonTooltipPosition" | "triggerButtonTooltipText" | "urlShortenerClient" | "useUrlShortener"> & Partial<Pick<Omit<WithAnalyticsEventsProps & ShareDialogContainerProps, keyof WithAnalyticsEventsProps>, "enableSmartUserPicker" | "product" | "shareeAction">> & Partial<Pick<{
|
|
193
193
|
enableSmartUserPicker: boolean;
|
|
194
194
|
shareeAction: "edit" | "view";
|
|
195
195
|
product: string;
|
|
@@ -242,6 +242,7 @@ export type ShareDialogContainerProps = {
|
|
|
242
242
|
tabIndex?: number;
|
|
243
243
|
copyTooltipText?: string;
|
|
244
244
|
isBrowseUsersDisabled?: boolean;
|
|
245
|
+
isJwmShareToSlackFFEnabled?: boolean;
|
|
245
246
|
};
|
|
246
247
|
|
|
247
248
|
// @public (undocumented)
|