@atlaskit/onboarding 15.0.1 → 15.1.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 +28 -1
- package/onboarding.docs.tsx +50 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,38 @@
|
|
|
1
1
|
# @atlaskit/onboarding
|
|
2
2
|
|
|
3
|
+
## 15.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`820f00bd7db09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/820f00bd7db09) -
|
|
8
|
+
Enable platform-dst-motion-uplift-button by default in constellation examples so button motion is
|
|
9
|
+
previewed in component demos. Docs/examples-only; no change to shipped component behaviour.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 15.1.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [`cd097a2111788`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd097a2111788) -
|
|
17
|
+
Republish packages depending on `@atlaskit/react-compiler-gating` so their published dependency
|
|
18
|
+
reference is updated to the renamed `@atlaskit/react-compiler-gating` scope.
|
|
19
|
+
|
|
20
|
+
The earlier rename of `@atlassian/react-compiler-gating` to `@atlaskit/react-compiler-gating` only
|
|
21
|
+
bumped the renamed package itself, so dependent packages were never republished and their
|
|
22
|
+
published versions still referenced the old `@atlassian/react-compiler-gating` name, which is not
|
|
23
|
+
available in the public npm registry. This minor bump republishes all affected packages with the
|
|
24
|
+
corrected dependency.
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
|
|
3
30
|
## 15.0.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
6
33
|
|
|
7
34
|
- [`ee28cf33718b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee28cf33718b0) -
|
|
8
|
-
Add @
|
|
35
|
+
Add @atlaskit/react-compiler-gating as a runtime dependency to enable React Compiler platform
|
|
9
36
|
gating.
|
|
10
37
|
- Updated dependencies
|
|
11
38
|
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Structured MCP docs for `@atlaskit/onboarding`.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import path from 'path';
|
|
6
|
+
|
|
7
|
+
import type { StructuredContentSource } from '@atlassian/structured-docs-types/types';
|
|
8
|
+
|
|
9
|
+
import packageJson from './package.json';
|
|
10
|
+
|
|
11
|
+
const packagePath = path.resolve(__dirname);
|
|
12
|
+
|
|
13
|
+
const documentation: StructuredContentSource = {
|
|
14
|
+
package: {
|
|
15
|
+
package: '@atlaskit/onboarding',
|
|
16
|
+
packagePath,
|
|
17
|
+
packageJson,
|
|
18
|
+
overview:
|
|
19
|
+
'An onboarding spotlight introduces new features to users through focused messages or multi-step tours. Note that this package is deprecated in favor of `@atlaskit/spotlight`.',
|
|
20
|
+
},
|
|
21
|
+
components: [
|
|
22
|
+
{
|
|
23
|
+
name: 'Spotlight',
|
|
24
|
+
description: 'A component that highlights a specific element on the page with a message.',
|
|
25
|
+
status: 'deprecated',
|
|
26
|
+
import: {
|
|
27
|
+
name: 'Spotlight',
|
|
28
|
+
package: '@atlaskit/onboarding',
|
|
29
|
+
type: 'named',
|
|
30
|
+
packagePath,
|
|
31
|
+
packageJson,
|
|
32
|
+
},
|
|
33
|
+
usageGuidelines: [
|
|
34
|
+
'Use `Spotlight` to guide users through new features.',
|
|
35
|
+
'Consider migrating to `@atlaskit/spotlight` for new implementations.',
|
|
36
|
+
],
|
|
37
|
+
keywords: ['onboarding', 'spotlight', 'tour'],
|
|
38
|
+
categories: ['messaging'],
|
|
39
|
+
examples: [
|
|
40
|
+
{
|
|
41
|
+
name: 'Spotlight basic',
|
|
42
|
+
description: 'Basic usage of Spotlight.',
|
|
43
|
+
source: path.resolve(packagePath, './examples/10-spotlight-basic.tsx'),
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
],
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/onboarding",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.1.1",
|
|
4
4
|
"description": "An onboarding spotlight introduces new features to users through focused messages or multi-step tours.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"react-compiler": {
|
|
22
22
|
"enabled": true,
|
|
23
23
|
"gating": {
|
|
24
|
-
"source": "@
|
|
24
|
+
"source": "@atlaskit/react-compiler-gating",
|
|
25
25
|
"importSpecifierName": "isReactCompilerActivePlatform"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@atlaskit/button": "^24.
|
|
57
|
+
"@atlaskit/button": "^24.3.0",
|
|
58
58
|
"@atlaskit/css": "^1.0.0",
|
|
59
59
|
"@atlaskit/ds-lib": "^8.0.0",
|
|
60
|
-
"@atlaskit/heading": "^6.
|
|
61
|
-
"@atlaskit/layering": "^4.
|
|
62
|
-
"@atlaskit/modal-dialog": "^16.
|
|
63
|
-
"@atlaskit/motion": "^7.
|
|
60
|
+
"@atlaskit/heading": "^6.1.0",
|
|
61
|
+
"@atlaskit/layering": "^4.1.0",
|
|
62
|
+
"@atlaskit/modal-dialog": "^16.1.0",
|
|
63
|
+
"@atlaskit/motion": "^7.2.0",
|
|
64
64
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
65
|
-
"@atlaskit/popper": "^8.
|
|
66
|
-
"@atlaskit/portal": "^6.
|
|
67
|
-
"@atlaskit/primitives": "^20.
|
|
68
|
-
"@atlaskit/
|
|
69
|
-
"@
|
|
65
|
+
"@atlaskit/popper": "^8.2.0",
|
|
66
|
+
"@atlaskit/portal": "^6.1.0",
|
|
67
|
+
"@atlaskit/primitives": "^20.2.0",
|
|
68
|
+
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
69
|
+
"@atlaskit/tokens": "^15.2.0",
|
|
70
70
|
"@babel/runtime": "^7.0.0",
|
|
71
71
|
"@compiled/react": "^0.20.0",
|
|
72
72
|
"bind-event-listener": "^3.0.0",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"@af/accessibility-testing": "workspace:^",
|
|
86
86
|
"@af/integration-testing": "workspace:^",
|
|
87
87
|
"@af/visual-regression": "workspace:^",
|
|
88
|
-
"@atlaskit/theme": "^26.
|
|
88
|
+
"@atlaskit/theme": "^26.1.0",
|
|
89
89
|
"@atlassian/ssr-tests": "workspace:^",
|
|
90
|
-
"@atlassian/testing-library": "^0.
|
|
90
|
+
"@atlassian/testing-library": "^0.7.0",
|
|
91
91
|
"@testing-library/react": "^16.3.0",
|
|
92
92
|
"@testing-library/user-event": "^14.4.3",
|
|
93
93
|
"@types/exenv": "^1.2.0",
|