@atlaskit/share 4.18.6 → 4.18.8

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/share
2
2
 
3
+ ## 4.18.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 4.18.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 4.18.6
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,84 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.jira.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../tsDist/@atlaskit__share/app",
7
+ "composite": true,
8
+ "rootDir": "../"
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-next/afm-jira/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../design-system/button/afm-jira/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/dropdown-menu/afm-jira/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/form/afm-jira/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/icon/afm-jira/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/menu/afm-jira/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../../platform/feature-flags/afm-jira/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../design-system/popper/afm-jira/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/popup/afm-jira/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../design-system/portal/afm-jira/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../design-system/primitives/afm-jira/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../smart-experiences/smart-user-picker/afm-jira/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/spinner/afm-jira/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../design-system/tabs/afm-jira/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../../design-system/textarea/afm-jira/tsconfig.json"
64
+ },
65
+ {
66
+ "path": "../../../design-system/theme/afm-jira/tsconfig.json"
67
+ },
68
+ {
69
+ "path": "../../../design-system/tokens/afm-jira/tsconfig.json"
70
+ },
71
+ {
72
+ "path": "../../../design-system/tooltip/afm-jira/tsconfig.json"
73
+ },
74
+ {
75
+ "path": "../../../data/ufo-external/afm-jira/tsconfig.json"
76
+ },
77
+ {
78
+ "path": "../../user-picker/afm-jira/tsconfig.json"
79
+ },
80
+ {
81
+ "path": "../../util-service-support/afm-jira/tsconfig.json"
82
+ }
83
+ ]
84
+ }
@@ -28,14 +28,15 @@ var InlineDialogFormWrapper = exports.InlineDialogFormWrapper = function InlineD
28
28
  var children = _ref2.children,
29
29
  integrationMode = _ref2.integrationMode,
30
30
  isMenuItemSelected = _ref2.isMenuItemSelected;
31
+ var styles = {
32
+ width: calculateFormWrapperWidth({
33
+ integrationMode: integrationMode,
34
+ isMenuItemSelected: isMenuItemSelected
35
+ })
36
+ };
31
37
  return (0, _react.jsx)("div", {
32
38
  // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
33
- css: {
34
- width: calculateFormWrapperWidth({
35
- integrationMode: integrationMode,
36
- isMenuItemSelected: isMenuItemSelected
37
- })
38
- }
39
+ css: styles
39
40
  }, children);
40
41
  };
41
42
  var inlineDialogContentWrapperStyles = (0, _react.css)({
@@ -13,7 +13,7 @@ var buildAttributes = function buildAttributes() {
13
13
  var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
14
  return _objectSpread({
15
15
  packageName: "@atlaskit/share",
16
- packageVersion: "4.18.6"
16
+ packageVersion: "4.18.8"
17
17
  }, attributes);
18
18
  };
19
19
  var createEvent = function createEvent(eventType, source, action, actionSubject, actionSubjectId) {
@@ -24,14 +24,15 @@ export const InlineDialogFormWrapper = ({
24
24
  integrationMode,
25
25
  isMenuItemSelected
26
26
  }) => {
27
+ const styles = {
28
+ width: calculateFormWrapperWidth({
29
+ integrationMode,
30
+ isMenuItemSelected
31
+ })
32
+ };
27
33
  return jsx("div", {
28
34
  // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
29
- css: {
30
- width: calculateFormWrapperWidth({
31
- integrationMode,
32
- isMenuItemSelected
33
- })
34
- }
35
+ css: styles
35
36
  }, children);
36
37
  };
37
38
  const inlineDialogContentWrapperStyles = css({
@@ -1,7 +1,7 @@
1
1
  import { isEmail, isExternalUser, isTeam, isUser } from '@atlaskit/smart-user-picker';
2
2
  const buildAttributes = (attributes = {}) => ({
3
3
  packageName: "@atlaskit/share",
4
- packageVersion: "4.18.6",
4
+ packageVersion: "4.18.8",
5
5
  ...attributes
6
6
  });
7
7
  const createEvent = (eventType, source, action, actionSubject, actionSubjectId, attributes = {}) => ({
@@ -22,14 +22,15 @@ export var InlineDialogFormWrapper = function InlineDialogFormWrapper(_ref2) {
22
22
  var children = _ref2.children,
23
23
  integrationMode = _ref2.integrationMode,
24
24
  isMenuItemSelected = _ref2.isMenuItemSelected;
25
+ var styles = {
26
+ width: calculateFormWrapperWidth({
27
+ integrationMode: integrationMode,
28
+ isMenuItemSelected: isMenuItemSelected
29
+ })
30
+ };
25
31
  return jsx("div", {
26
32
  // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
27
- css: {
28
- width: calculateFormWrapperWidth({
29
- integrationMode: integrationMode,
30
- isMenuItemSelected: isMenuItemSelected
31
- })
32
- }
33
+ css: styles
33
34
  }, children);
34
35
  };
35
36
  var inlineDialogContentWrapperStyles = css({
@@ -6,7 +6,7 @@ var buildAttributes = function buildAttributes() {
6
6
  var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
7
  return _objectSpread({
8
8
  packageName: "@atlaskit/share",
9
- packageVersion: "4.18.6"
9
+ packageVersion: "4.18.8"
10
10
  }, attributes);
11
11
  };
12
12
  var createEvent = function createEvent(eventType, source, action, actionSubject, actionSubjectId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/share",
3
- "version": "4.18.6",
3
+ "version": "4.18.8",
4
4
  "description": "Fabric Share Element",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -45,19 +45,19 @@
45
45
  "@atlaskit/button": "^18.0.0",
46
46
  "@atlaskit/dropdown-menu": "^12.13.0",
47
47
  "@atlaskit/form": "^10.4.0",
48
- "@atlaskit/icon": "^22.4.0",
49
- "@atlaskit/menu": "^2.5.0",
50
- "@atlaskit/platform-feature-flags": "^0.2.4",
48
+ "@atlaskit/icon": "^22.5.0",
49
+ "@atlaskit/menu": "^2.6.0",
50
+ "@atlaskit/platform-feature-flags": "^0.3.0",
51
51
  "@atlaskit/popper": "^6.1.0",
52
52
  "@atlaskit/popup": "^1.19.0",
53
53
  "@atlaskit/portal": "^4.6.0",
54
- "@atlaskit/primitives": "^8.0.0",
54
+ "@atlaskit/primitives": "^10.0.0",
55
55
  "@atlaskit/smart-user-picker": "^6.9.0",
56
56
  "@atlaskit/spinner": "^16.2.0",
57
57
  "@atlaskit/tabs": "^16.2.0",
58
58
  "@atlaskit/textarea": "^5.5.0",
59
59
  "@atlaskit/theme": "^12.11.0",
60
- "@atlaskit/tokens": "^1.52.0",
60
+ "@atlaskit/tokens": "^1.53.0",
61
61
  "@atlaskit/tooltip": "^18.5.0",
62
62
  "@atlaskit/ufo": "^0.2.0",
63
63
  "@atlaskit/user-picker": "^10.21.0",
@@ -75,7 +75,7 @@
75
75
  "react": "^16.8.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@atlaskit/editor-test-helpers": "^18.23.0",
78
+ "@atlaskit/editor-test-helpers": "^18.25.0",
79
79
  "@atlaskit/flag": "^15.6.0",
80
80
  "@testing-library/react": "^12.1.5",
81
81
  "@testing-library/user-event": "^14.4.3",