@box/unified-share-modal 2.6.7 → 2.6.9
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/esm/lib/components/remove-collaborator-modal/remove-collaborator-modal.js +3 -2
- package/dist/esm/lib/components/remove-shared-link-modal/remove-shared-link-modal.js +3 -2
- package/dist/esm/lib/components/shared-link-settings-modal/shared-link-settings-modal.js +3 -2
- package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/collaboration-section.js +3 -2
- package/dist/esm/lib/components/unified-share-form-modal/collaborator-list/collaborator-list.js +7 -6
- package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +105 -112
- package/dist/esm/lib/components/unified-share-form-modal/unified-share-form-modal.js +3 -2
- package/dist/esm/lib/constants.js +1 -1
- package/dist/esm/lib/contexts/unified-share-form-context.js +27 -25
- package/dist/esm/lib/hooks/use-sharing-action.js +45 -56
- package/dist/esm/lib/messages.js +0 -4
- package/dist/esm/lib/utils/index.js +25 -22
- package/dist/esm/lib/utils/notification.js +17 -0
- package/dist/i18n/bn-IN.js +2 -2
- package/dist/i18n/da-DK.js +2 -2
- package/dist/i18n/de-DE.js +2 -2
- package/dist/i18n/en-AU.js +2 -2
- package/dist/i18n/en-CA.js +2 -2
- package/dist/i18n/en-GB.js +2 -2
- package/dist/i18n/en-US.js +0 -1
- package/dist/i18n/en-US.properties +0 -2
- package/dist/i18n/en-x-pseudo.js +2 -2
- package/dist/i18n/es-419.js +2 -2
- package/dist/i18n/es-ES.js +2 -2
- package/dist/i18n/fi-FI.js +2 -2
- package/dist/i18n/fr-CA.js +2 -2
- package/dist/i18n/fr-FR.js +2 -2
- package/dist/i18n/hi-IN.js +2 -2
- package/dist/i18n/it-IT.js +2 -2
- package/dist/i18n/ja-JP.js +2 -2
- package/dist/i18n/json/src/lib/messages.json +1 -1
- package/dist/i18n/ko-KR.js +2 -2
- package/dist/i18n/nb-NO.js +2 -2
- package/dist/i18n/nl-NL.js +2 -2
- package/dist/i18n/pl-PL.js +2 -2
- package/dist/i18n/pt-BR.js +2 -2
- package/dist/i18n/ru-RU.js +2 -2
- package/dist/i18n/sv-SE.js +2 -2
- package/dist/i18n/tr-TR.js +2 -2
- package/dist/i18n/zh-CN.js +2 -2
- package/dist/i18n/zh-TW.js +2 -2
- package/dist/types/lib/contexts/unified-share-form-context.d.ts +2 -0
- package/dist/types/lib/messages.d.ts +0 -5
- package/dist/types/lib/types.d.ts +1 -1
- package/dist/types/lib/utils/index.d.ts +1 -0
- package/dist/types/lib/utils/notification.d.ts +9 -0
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/unified-share-modal",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.9",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@box/blueprint-web": "^13.5.
|
|
7
|
-
"@box/blueprint-web-assets": "^4.101.
|
|
8
|
-
"@box/copy-input": "^1.39.
|
|
9
|
-
"@box/user-selector": "^1.73.
|
|
6
|
+
"@box/blueprint-web": "^13.5.2",
|
|
7
|
+
"@box/blueprint-web-assets": "^4.101.21",
|
|
8
|
+
"@box/copy-input": "^1.39.7",
|
|
9
|
+
"@box/user-selector": "^1.73.8",
|
|
10
10
|
"lodash": "^4.17.15",
|
|
11
11
|
"react": "^18.0.0",
|
|
12
12
|
"react-dom": "^18.0.0",
|
|
13
13
|
"react-intl": "^6.4.2"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@box/blueprint-web": "^13.5.
|
|
17
|
-
"@box/blueprint-web-assets": "^4.101.
|
|
18
|
-
"@box/copy-input": "^1.39.
|
|
19
|
-
"@box/storybook-utils": "0.16.
|
|
16
|
+
"@box/blueprint-web": "^13.5.2",
|
|
17
|
+
"@box/blueprint-web-assets": "^4.101.21",
|
|
18
|
+
"@box/copy-input": "^1.39.7",
|
|
19
|
+
"@box/storybook-utils": "0.16.58",
|
|
20
20
|
"@box/eslint-plugin-blueprint": "1.1.1",
|
|
21
21
|
"react-intl": "^6.4.2"
|
|
22
22
|
},
|