@atlaskit/emoji 71.15.11 → 71.15.12
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,14 @@
|
|
|
1
1
|
# @atlaskit/emoji
|
|
2
2
|
|
|
3
|
+
## 71.15.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2b6d25f854593`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2b6d25f854593) -
|
|
8
|
+
Remove legacy ReactDOM.render/hydrate/unmountComponentAtNode usage from non-production code
|
|
9
|
+
(tests, demo entries, VR fixtures) as part of the React 19 migration
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 71.15.11
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -20,7 +20,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
20
20
|
actionSubjectId: actionSubjectId,
|
|
21
21
|
attributes: _objectSpread({
|
|
22
22
|
packageName: "@atlaskit/emoji",
|
|
23
|
-
packageVersion: "71.15.
|
|
23
|
+
packageVersion: "71.15.11"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -14,7 +14,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
14
14
|
actionSubjectId: actionSubjectId,
|
|
15
15
|
attributes: _objectSpread({
|
|
16
16
|
packageName: "@atlaskit/emoji",
|
|
17
|
-
packageVersion: "71.15.
|
|
17
|
+
packageVersion: "71.15.11"
|
|
18
18
|
}, attributes)
|
|
19
19
|
};
|
|
20
20
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/emoji",
|
|
3
|
-
"version": "71.15.
|
|
3
|
+
"version": "71.15.12",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@atlaskit/radio": "^9.1.0",
|
|
50
50
|
"@atlaskit/spinner": "^20.1.0",
|
|
51
51
|
"@atlaskit/textfield": "^10.0.0",
|
|
52
|
-
"@atlaskit/theme": "^
|
|
53
|
-
"@atlaskit/tmp-editor-statsig": "^141.
|
|
52
|
+
"@atlaskit/theme": "^27.0.0",
|
|
53
|
+
"@atlaskit/tmp-editor-statsig": "^141.1.0",
|
|
54
54
|
"@atlaskit/tokens": "^16.3.0",
|
|
55
55
|
"@atlaskit/tooltip": "^24.0.0",
|
|
56
56
|
"@atlaskit/ufo": "^1.0.0",
|
package/tsconfig.json
CHANGED
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"./src/**/*.tsx",
|
|
8
|
-
"./docs/**/*.ts",
|
|
9
|
-
"./docs/**/*.tsx",
|
|
10
|
-
"./examples/**/*.ts",
|
|
11
|
-
"./examples/**/*.tsx",
|
|
12
|
-
"**/stories.ts",
|
|
13
|
-
"**/stories.tsx",
|
|
14
|
-
"**/stories/*.ts",
|
|
15
|
-
"**/stories/*.tsx",
|
|
16
|
-
"**/stories/**/*.ts",
|
|
17
|
-
"**/stories/**/*.tsx"
|
|
18
|
-
]
|
|
2
|
+
"extends": "./tsconfig.dev.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"disableReferencedProjectLoad": true,
|
|
5
|
+
"disableSolutionSearching": true
|
|
6
|
+
}
|
|
19
7
|
}
|