@atlaskit/onboarding 15.1.0 → 15.1.2
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 +15 -0
- package/compass.yml +47 -0
- package/onboarding.docs.tsx +50 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/onboarding
|
|
2
2
|
|
|
3
|
+
## 15.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 15.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`820f00bd7db09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/820f00bd7db09) -
|
|
14
|
+
Enable platform-dst-motion-uplift-button by default in constellation examples so button motion is
|
|
15
|
+
previewed in component demos. Docs/examples-only; no change to shipped component behaviour.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 15.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/compass.yml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
configVersion: 1
|
|
2
|
+
id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/9690c4a0-44d9-4fcc-a34d-e67756574e71
|
|
3
|
+
name: '@atlaskit/onboarding'
|
|
4
|
+
ownerId: ari:cloud:teams::team/814283d6-8695-4329-b2f8-d78b2645722f # Design System Team (ADS)
|
|
5
|
+
labels:
|
|
6
|
+
- platform-code
|
|
7
|
+
- platform-afm
|
|
8
|
+
typeId: OTHER
|
|
9
|
+
fields:
|
|
10
|
+
tier: 4
|
|
11
|
+
lifecycle: Active
|
|
12
|
+
isMonorepoProject: true
|
|
13
|
+
links:
|
|
14
|
+
- name: Root Repository
|
|
15
|
+
type: REPOSITORY
|
|
16
|
+
url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
|
|
17
|
+
- name: Slack Channel
|
|
18
|
+
type: CHAT_CHANNEL
|
|
19
|
+
url: https://atlassian.enterprise.slack.com/archives/CFJ9DU39U # #help-design-system
|
|
20
|
+
- name: Onboarding
|
|
21
|
+
type: REPOSITORY
|
|
22
|
+
url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/design-system/onboarding
|
|
23
|
+
customFields:
|
|
24
|
+
- name: Department
|
|
25
|
+
type: text
|
|
26
|
+
value: Eng - Design System Fundamentals
|
|
27
|
+
- name: Technical Owner
|
|
28
|
+
type: user
|
|
29
|
+
value: ari:cloud:identity::user/557058:86a9b692-7997-49cb-9984-080801b1de91 # Jared Crowe
|
|
30
|
+
- name: Reviewer Team
|
|
31
|
+
type: text
|
|
32
|
+
value: ari:cloud:teams::team/be19136e-6275-419f-be0c-fcee844b8684 # Design System Engineers
|
|
33
|
+
- name: Required Reviewers Opt In
|
|
34
|
+
type: boolean
|
|
35
|
+
value: true
|
|
36
|
+
- name: Reviewer Selection Mechanism
|
|
37
|
+
type: text
|
|
38
|
+
value: random(3)
|
|
39
|
+
- name: Required Reviewer Approvals
|
|
40
|
+
type: number
|
|
41
|
+
value: 1
|
|
42
|
+
- name: Trusted Committers
|
|
43
|
+
type: text
|
|
44
|
+
value: ari:cloud:teams::team/814283d6-8695-4329-b2f8-d78b2645722f # Design System Team (ADS)
|
|
45
|
+
- name: Trusted Reviewer Teams
|
|
46
|
+
type: text
|
|
47
|
+
value: ari:cloud:teams::team/42f4416b-e028-4daa-b2a5-afe213ac75e1 # Design System Designers
|
|
@@ -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/spotlight',
|
|
29
|
+
type: 'default',
|
|
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.1.
|
|
3
|
+
"version": "15.1.2",
|
|
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/"
|
|
@@ -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.
|
|
60
|
+
"@atlaskit/heading": "^6.2.0",
|
|
61
61
|
"@atlaskit/layering": "^4.1.0",
|
|
62
62
|
"@atlaskit/modal-dialog": "^16.1.0",
|
|
63
|
-
"@atlaskit/motion": "^7.
|
|
63
|
+
"@atlaskit/motion": "^7.3.0",
|
|
64
64
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
65
|
-
"@atlaskit/popper": "^8.
|
|
65
|
+
"@atlaskit/popper": "^8.3.0",
|
|
66
66
|
"@atlaskit/portal": "^6.1.0",
|
|
67
|
-
"@atlaskit/primitives": "^
|
|
67
|
+
"@atlaskit/primitives": "^21.0.0",
|
|
68
68
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
69
|
-
"@atlaskit/tokens": "^15.
|
|
69
|
+
"@atlaskit/tokens": "^15.8.0",
|
|
70
70
|
"@babel/runtime": "^7.0.0",
|
|
71
71
|
"@compiled/react": "^0.20.0",
|
|
72
72
|
"bind-event-listener": "^3.0.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@af/visual-regression": "workspace:^",
|
|
88
88
|
"@atlaskit/theme": "^26.1.0",
|
|
89
89
|
"@atlassian/ssr-tests": "workspace:^",
|
|
90
|
-
"@atlassian/testing-library": "^0.
|
|
90
|
+
"@atlassian/testing-library": "^0.11.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",
|