@atlaskit/status 1.4.6 → 1.4.7

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,11 @@
1
1
  # @atlaskit/status
2
2
 
3
+ ## 1.4.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#70896](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70896) [`af5e296fa0f4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/af5e296fa0f4) - Migrate @atlaskit/status to use declarative entry points.
8
+
3
9
  ## 1.4.6
4
10
 
5
11
  ### Patch Changes
@@ -10,7 +10,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
10
10
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
11
11
  var ELEMENTS_CHANNEL = exports.ELEMENTS_CHANNEL = 'fabric-elements';
12
12
  var packageName = "@atlaskit/status";
13
- var packageVersion = "1.4.6";
13
+ var packageVersion = "1.4.7";
14
14
  var createStatusAnalyticsAndFire = exports.createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
15
15
  return function (payload) {
16
16
  var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
@@ -1,6 +1,6 @@
1
1
  export const ELEMENTS_CHANNEL = 'fabric-elements';
2
2
  const packageName = "@atlaskit/status";
3
- const packageVersion = "1.4.6";
3
+ const packageVersion = "1.4.7";
4
4
  export const createStatusAnalyticsAndFire = createAnalyticsEvent => payload => {
5
5
  const statusPayload = {
6
6
  ...payload,
@@ -3,7 +3,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
3
3
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
4
  export var ELEMENTS_CHANNEL = 'fabric-elements';
5
5
  var packageName = "@atlaskit/status";
6
- var packageVersion = "1.4.6";
6
+ var packageVersion = "1.4.7";
7
7
  export var createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
8
8
  return function (payload) {
9
9
  var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/status",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Fabric Status React Components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -15,7 +15,6 @@
15
15
  "atlaskit:src": "src/index.ts",
16
16
  "atlassian": {
17
17
  "team": "Editor: Scarlet",
18
- "deprecatedAutoEntryPoints": true,
19
18
  "releaseModel": "continuous",
20
19
  "website": {
21
20
  "name": "Status"
@@ -26,12 +25,12 @@
26
25
  "access": "public"
27
26
  },
28
27
  "dependencies": {
29
- "@atlaskit/analytics-next": "^9.1.0",
28
+ "@atlaskit/analytics-next": "^9.2.0",
30
29
  "@atlaskit/icon": "^22.0.0",
31
30
  "@atlaskit/lozenge": "^11.6.0",
32
31
  "@atlaskit/textfield": "^6.0.0",
33
32
  "@atlaskit/theme": "^12.6.0",
34
- "@atlaskit/tokens": "^1.33.0",
33
+ "@atlaskit/tokens": "^1.35.0",
35
34
  "@babel/runtime": "^7.0.0",
36
35
  "@emotion/react": "^11.7.1"
37
36
  },
@@ -73,5 +72,10 @@
73
72
  ]
74
73
  }
75
74
  },
76
- "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
75
+ "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
76
+ "af:exports": {
77
+ ".": "./src/index.ts",
78
+ "./element": "./src/element.ts",
79
+ "./picker": "./src/picker.ts"
80
+ }
77
81
  }
package/tsconfig.json CHANGED
@@ -9,6 +9,182 @@
9
9
  "./examples/**/*.tsx"
10
10
  ],
11
11
  "compilerOptions": {
12
- "baseUrl": "./"
12
+ "baseUrl": "./",
13
+ "paths": {
14
+ "@atlaskit/analytics-next/types": [
15
+ "../../analytics/analytics-next/src/types.ts"
16
+ ],
17
+ "@atlaskit/analytics-next/AnalyticsContext": [
18
+ "../../analytics/analytics-next/src/components/AnalyticsContext/index.tsx"
19
+ ],
20
+ "@atlaskit/analytics-next/AnalyticsListener": [
21
+ "../../analytics/analytics-next/src/components/AnalyticsListener/index.tsx"
22
+ ],
23
+ "@atlaskit/analytics-next/AnalyticsErrorBoundary": [
24
+ "../../analytics/analytics-next/src/components/AnalyticsErrorBoundary.tsx"
25
+ ],
26
+ "@atlaskit/analytics-next/withAnalyticsEvents": [
27
+ "../../analytics/analytics-next/src/hocs/withAnalyticsEvents.tsx"
28
+ ],
29
+ "@atlaskit/analytics-next/withAnalyticsContext": [
30
+ "../../analytics/analytics-next/src/hocs/withAnalyticsContext.tsx"
31
+ ],
32
+ "@atlaskit/analytics-next/usePlatformLeafEventHandler": [
33
+ "../../analytics/analytics-next/src/hooks/usePlatformLeafEventHandler.ts"
34
+ ],
35
+ "@atlaskit/analytics-next/useAnalyticsEvents": [
36
+ "../../analytics/analytics-next/src/hooks/useAnalyticsEvents.ts"
37
+ ],
38
+ "@atlaskit/analytics-next/useCallbackWithAnalytics": [
39
+ "../../analytics/analytics-next/src/hooks/useCallbackWithAnalytics.ts"
40
+ ],
41
+ "@atlaskit/analytics-next/usePatchedProps": [
42
+ "../../analytics/analytics-next/src/hooks/usePatchedProps.ts"
43
+ ],
44
+ "@atlaskit/analytics-next/AnalyticsEvent": [
45
+ "../../analytics/analytics-next/src/events/AnalyticsEvent.ts"
46
+ ],
47
+ "@atlaskit/analytics-next/UIAnalyticsEvent": [
48
+ "../../analytics/analytics-next/src/events/UIAnalyticsEvent.ts"
49
+ ],
50
+ "@atlaskit/analytics-next/createAndFireEvents": [
51
+ "../../analytics/analytics-next/src/utils/createAndFireEvent.ts"
52
+ ],
53
+ "@atlaskit/analytics-next": [
54
+ "../../analytics/analytics-next/src/index.ts"
55
+ ],
56
+ "@atlaskit/icon/base": [
57
+ "../../design-system/icon/src/entry-points/base.tsx"
58
+ ],
59
+ "@atlaskit/icon/constants": [
60
+ "../../design-system/icon/src/entry-points/constants.tsx"
61
+ ],
62
+ "@atlaskit/icon/metadata": [
63
+ "../../design-system/icon/src/entry-points/metadata.tsx"
64
+ ],
65
+ "@atlaskit/icon/svg": [
66
+ "../../design-system/icon/src/entry-points/svg.tsx"
67
+ ],
68
+ "@atlaskit/icon/types": [
69
+ "../../design-system/icon/src/entry-points/types.tsx"
70
+ ],
71
+ "@atlaskit/icon/glyph": [
72
+ "../../design-system/icon/glyph"
73
+ ],
74
+ "@atlaskit/icon": [
75
+ "../../design-system/icon/src/index.tsx"
76
+ ],
77
+ "@atlaskit/icon-object/metadata": [
78
+ "../../design-system/icon-object/src/entry-points/metadata.tsx"
79
+ ],
80
+ "@atlaskit/icon-object/glyph": [
81
+ "../../design-system/icon-object/glyph"
82
+ ],
83
+ "@atlaskit/icon-object": [
84
+ "../../design-system/icon-object/src/index.tsx"
85
+ ],
86
+ "@atlaskit/icon-file-type/metadata": [
87
+ "../../media/icon-file-type/src/entry-points/metadata.ts"
88
+ ],
89
+ "@atlaskit/icon-file-type/glyph": [
90
+ "../../media/icon-file-type/glyph"
91
+ ],
92
+ "@atlaskit/icon-file-type": [
93
+ "../../media/icon-file-type/src/index.ts"
94
+ ],
95
+ "@atlaskit/lozenge/theme": [
96
+ "../../design-system/lozenge/src/theme.tsx"
97
+ ],
98
+ "@atlaskit/lozenge": [
99
+ "../../design-system/lozenge/src/index.tsx"
100
+ ],
101
+ "@atlaskit/textfield": [
102
+ "../../design-system/textfield/src/index.tsx"
103
+ ],
104
+ "@atlaskit/theme/deprecated-provider-please-do-not-use": [
105
+ "../../design-system/theme/src/deprecated-provider-please-do-not-use.tsx"
106
+ ],
107
+ "@atlaskit/theme/color-palettes": [
108
+ "../../design-system/theme/src/color-palettes.tsx"
109
+ ],
110
+ "@atlaskit/theme/colors": [
111
+ "../../design-system/theme/src/colors.tsx"
112
+ ],
113
+ "@atlaskit/theme/components": [
114
+ "../../design-system/theme/src/components.tsx"
115
+ ],
116
+ "@atlaskit/theme/constants": [
117
+ "../../design-system/theme/src/constants.tsx"
118
+ ],
119
+ "@atlaskit/theme/elevation": [
120
+ "../../design-system/theme/src/elevation.tsx"
121
+ ],
122
+ "@atlaskit/theme/types": [
123
+ "../../design-system/theme/src/types.tsx"
124
+ ],
125
+ "@atlaskit/theme/typography": [
126
+ "../../design-system/theme/src/typography.tsx"
127
+ ],
128
+ "@atlaskit/theme": [
129
+ "../../design-system/theme/src"
130
+ ],
131
+ "@atlaskit/tokens/custom-themes": [
132
+ "../../design-system/tokens/src/entry-points/custom-themes.tsx"
133
+ ],
134
+ "@atlaskit/tokens/figma/atlassian-light.json": [
135
+ "../../design-system/tokens/figma/atlassian-light.json"
136
+ ],
137
+ "@atlaskit/tokens/figma/atlassian-dark.json": [
138
+ "../../design-system/tokens/figma/atlassian-dark.json"
139
+ ],
140
+ "@atlaskit/tokens/palettes-raw": [
141
+ "../../design-system/tokens/src/entry-points/palettes-raw.tsx"
142
+ ],
143
+ "@atlaskit/tokens/tokens-raw": [
144
+ "../../design-system/tokens/src/entry-points/tokens-raw.tsx"
145
+ ],
146
+ "@atlaskit/tokens/token-ids": [
147
+ "../../design-system/tokens/src/entry-points/token-ids.tsx"
148
+ ],
149
+ "@atlaskit/tokens/token-names": [
150
+ "../../design-system/tokens/src/entry-points/token-names.tsx"
151
+ ],
152
+ "@atlaskit/tokens/token-order": [
153
+ "../../design-system/tokens/src/entry-points/token-order.tsx"
154
+ ],
155
+ "@atlaskit/tokens/token-default-values": [
156
+ "../../design-system/tokens/src/entry-points/token-default-values.tsx"
157
+ ],
158
+ "@atlaskit/tokens/rename-mapping": [
159
+ "../../design-system/tokens/src/entry-points/rename-mapping.tsx"
160
+ ],
161
+ "@atlaskit/tokens/babel-plugin": [
162
+ "../../design-system/tokens/src/entry-points/babel-plugin.tsx"
163
+ ],
164
+ "@atlaskit/tokens/css-type-schema": [
165
+ "../../design-system/tokens/src/entry-points/css-type-schema.codegen.tsx"
166
+ ],
167
+ "@atlaskit/tokens": [
168
+ "../../design-system/tokens/src/index.tsx"
169
+ ],
170
+ "@af/visual-regression": [
171
+ "../../../build/test-tooling/gemini-visual-regression/src/index.ts"
172
+ ],
173
+ "@atlaskit/elements-test-helpers": [
174
+ "../elements-test-helpers/src/index.ts"
175
+ ],
176
+ "@atlaskit/visual-regression": [
177
+ "../../../build/test-tooling/visual-regression/src"
178
+ ],
179
+ "@atlaskit/status/element": [
180
+ "src/element.ts"
181
+ ],
182
+ "@atlaskit/status/picker": [
183
+ "src/picker.ts"
184
+ ],
185
+ "@atlaskit/status": [
186
+ "./src"
187
+ ]
188
+ }
13
189
  }
14
- }
190
+ }