@atlaskit/onboarding 11.5.8 → 11.7.0
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 +23 -1
- package/README.md +2 -1
- package/__perf__/default.tsx +1 -3
- package/dist/cjs/components/modal.js +3 -1
- package/dist/cjs/components/spotlight-card.js +6 -1
- package/dist/cjs/components/spotlight-dialog.js +1 -1
- package/dist/cjs/styled/blanket.js +3 -1
- package/dist/cjs/styled/dialog.js +5 -1
- package/dist/cjs/styled/modal.js +8 -1
- package/dist/cjs/styled/target.js +7 -2
- package/dist/es2019/components/modal.js +5 -0
- package/dist/es2019/components/spotlight-card.js +7 -1
- package/dist/es2019/components/spotlight-dialog.js +1 -1
- package/dist/es2019/styled/blanket.js +4 -0
- package/dist/es2019/styled/dialog.js +5 -1
- package/dist/es2019/styled/modal.js +7 -1
- package/dist/es2019/styled/target.js +7 -2
- package/dist/esm/components/modal.js +5 -0
- package/dist/esm/components/spotlight-card.js +7 -1
- package/dist/esm/components/spotlight-dialog.js +1 -1
- package/dist/esm/styled/blanket.js +4 -0
- package/dist/esm/styled/dialog.js +5 -1
- package/dist/esm/styled/modal.js +7 -1
- package/dist/esm/styled/target.js +7 -2
- package/dist/types/components/modal.d.ts +3 -0
- package/dist/types/components/spotlight-card.d.ts +3 -0
- package/dist/types/components/spotlight.d.ts +8 -8
- package/dist/types/styled/blanket.d.ts +3 -0
- package/dist/types/styled/dialog.d.ts +4 -1
- package/dist/types/styled/modal.d.ts +4 -1
- package/dist/types/styled/target.d.ts +3 -0
- package/dist/types-ts4.5/components/modal.d.ts +3 -0
- package/dist/types-ts4.5/components/spotlight-card.d.ts +3 -0
- package/dist/types-ts4.5/components/spotlight.d.ts +8 -8
- package/dist/types-ts4.5/styled/blanket.d.ts +3 -0
- package/dist/types-ts4.5/styled/dialog.d.ts +4 -1
- package/dist/types-ts4.5/styled/modal.d.ts +4 -1
- package/dist/types-ts4.5/styled/target.d.ts +3 -0
- package/package.json +103 -103
- package/report.api.md +157 -173
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jsxRuntime classic
|
|
3
|
+
*/
|
|
1
4
|
/** @jsx jsx */
|
|
2
5
|
import { type ImgHTMLAttributes, type ReactNode } from 'react';
|
|
3
6
|
import { jsx } from '@emotion/react';
|
|
@@ -17,7 +20,7 @@ export declare const DialogImage: ({ alt, ...props }: DialogImageProps) => jsx.J
|
|
|
17
20
|
*
|
|
18
21
|
* @internal
|
|
19
22
|
*/
|
|
20
|
-
export declare const DialogActionItemContainer: ({ children
|
|
23
|
+
export declare const DialogActionItemContainer: ({ children }: {
|
|
21
24
|
children: ReactNode;
|
|
22
25
|
}) => jsx.JSX.Element;
|
|
23
26
|
/**
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jsxRuntime classic
|
|
3
|
+
*/
|
|
1
4
|
/** @jsx jsx */
|
|
2
5
|
import { type ReactNode } from 'react';
|
|
3
6
|
import { jsx } from '@emotion/react';
|
|
@@ -22,7 +25,7 @@ export declare const ModalBody: ({ children }: {
|
|
|
22
25
|
*
|
|
23
26
|
* @internal
|
|
24
27
|
*/
|
|
25
|
-
export declare const ModalHeading: ({ children, id
|
|
28
|
+
export declare const ModalHeading: ({ children, id }: {
|
|
26
29
|
children: ReactNode;
|
|
27
30
|
id: string;
|
|
28
31
|
}) => jsx.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,104 +1,104 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
2
|
+
"name": "@atlaskit/onboarding",
|
|
3
|
+
"version": "11.7.0",
|
|
4
|
+
"description": "An onboarding spotlight introduces new features to users through focused messages or multi-step tours.",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org/"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
9
|
+
"author": "Atlassian Pty Ltd",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"main": "dist/cjs/index.js",
|
|
12
|
+
"module": "dist/esm/index.js",
|
|
13
|
+
"module:es2019": "dist/es2019/index.js",
|
|
14
|
+
"types": "dist/types/index.d.ts",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
">=4.5 <4.9": {
|
|
17
|
+
"*": [
|
|
18
|
+
"dist/types-ts4.5/*",
|
|
19
|
+
"dist/types-ts4.5/index.d.ts"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"sideEffects": false,
|
|
24
|
+
"atlaskit:src": "src/index.tsx",
|
|
25
|
+
"af:exports": {
|
|
26
|
+
".": "./src/index.tsx",
|
|
27
|
+
"./types": "./src/types.tsx"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://atlassian.design/components/onboarding/",
|
|
30
|
+
"atlassian": {
|
|
31
|
+
"team": "Design System Team",
|
|
32
|
+
"releaseModel": "continuous",
|
|
33
|
+
"productPushConsumption": [
|
|
34
|
+
"jira"
|
|
35
|
+
],
|
|
36
|
+
"website": {
|
|
37
|
+
"name": "Onboarding (spotlight)",
|
|
38
|
+
"category": "Components"
|
|
39
|
+
},
|
|
40
|
+
"runReact18": true
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@atlaskit/analytics-next": "^9.3.0",
|
|
44
|
+
"@atlaskit/button": "^17.17.0",
|
|
45
|
+
"@atlaskit/ds-lib": "^2.3.0",
|
|
46
|
+
"@atlaskit/heading": "^2.4.0",
|
|
47
|
+
"@atlaskit/modal-dialog": "^12.14.0",
|
|
48
|
+
"@atlaskit/motion": "^1.7.0",
|
|
49
|
+
"@atlaskit/popper": "^6.1.0",
|
|
50
|
+
"@atlaskit/portal": "^4.6.0",
|
|
51
|
+
"@atlaskit/primitives": "^7.4.0",
|
|
52
|
+
"@atlaskit/theme": "^12.10.0",
|
|
53
|
+
"@atlaskit/tokens": "^1.51.0",
|
|
54
|
+
"@babel/runtime": "^7.0.0",
|
|
55
|
+
"@emotion/react": "^11.7.1",
|
|
56
|
+
"bind-event-listener": "^3.0.0",
|
|
57
|
+
"exenv": "^1.2.2",
|
|
58
|
+
"memoize-one": "^6.0.0",
|
|
59
|
+
"react-focus-lock": "^2.9.5",
|
|
60
|
+
"react-node-resolver": "^1.0.1",
|
|
61
|
+
"react-scrolllock": "^5.0.1",
|
|
62
|
+
"react-transition-group": "^4.4.1",
|
|
63
|
+
"scroll-into-view-if-needed": "^2.2.20"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": "^16.8.0 || ^17.0.0 || ~18.2.0",
|
|
67
|
+
"react-dom": "^16.8.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@af/accessibility-testing": "*",
|
|
71
|
+
"@af/integration-testing": "*",
|
|
72
|
+
"@af/visual-regression": "*",
|
|
73
|
+
"@atlaskit/ssr": "*",
|
|
74
|
+
"@atlaskit/visual-regression": "*",
|
|
75
|
+
"@testing-library/react": "^12.1.5",
|
|
76
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
77
|
+
"@types/exenv": "^1.2.0",
|
|
78
|
+
"@types/react-node-resolver": "^2.0.0",
|
|
79
|
+
"@types/react-transition-group": "^2.0.6",
|
|
80
|
+
"raf-stub": "^2.0.1",
|
|
81
|
+
"react-dom": "^16.8.0",
|
|
82
|
+
"react-lorem-component": "^0.13.0",
|
|
83
|
+
"typescript": "~5.4.2"
|
|
84
|
+
},
|
|
85
|
+
"techstack": {
|
|
86
|
+
"@atlassian/frontend": {
|
|
87
|
+
"import-structure": "atlassian-conventions"
|
|
88
|
+
},
|
|
89
|
+
"@repo/internal": {
|
|
90
|
+
"dom-events": "use-bind-event-listener",
|
|
91
|
+
"analytics": "analytics-next",
|
|
92
|
+
"design-tokens": [
|
|
93
|
+
"color",
|
|
94
|
+
"spacing"
|
|
95
|
+
],
|
|
96
|
+
"styling": [
|
|
97
|
+
"static",
|
|
98
|
+
"emotion"
|
|
99
|
+
],
|
|
100
|
+
"design-system": "v1",
|
|
101
|
+
"deprecation": "no-deprecated-imports"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|