@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.
Files changed (40) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/README.md +2 -1
  3. package/__perf__/default.tsx +1 -3
  4. package/dist/cjs/components/modal.js +3 -1
  5. package/dist/cjs/components/spotlight-card.js +6 -1
  6. package/dist/cjs/components/spotlight-dialog.js +1 -1
  7. package/dist/cjs/styled/blanket.js +3 -1
  8. package/dist/cjs/styled/dialog.js +5 -1
  9. package/dist/cjs/styled/modal.js +8 -1
  10. package/dist/cjs/styled/target.js +7 -2
  11. package/dist/es2019/components/modal.js +5 -0
  12. package/dist/es2019/components/spotlight-card.js +7 -1
  13. package/dist/es2019/components/spotlight-dialog.js +1 -1
  14. package/dist/es2019/styled/blanket.js +4 -0
  15. package/dist/es2019/styled/dialog.js +5 -1
  16. package/dist/es2019/styled/modal.js +7 -1
  17. package/dist/es2019/styled/target.js +7 -2
  18. package/dist/esm/components/modal.js +5 -0
  19. package/dist/esm/components/spotlight-card.js +7 -1
  20. package/dist/esm/components/spotlight-dialog.js +1 -1
  21. package/dist/esm/styled/blanket.js +4 -0
  22. package/dist/esm/styled/dialog.js +5 -1
  23. package/dist/esm/styled/modal.js +7 -1
  24. package/dist/esm/styled/target.js +7 -2
  25. package/dist/types/components/modal.d.ts +3 -0
  26. package/dist/types/components/spotlight-card.d.ts +3 -0
  27. package/dist/types/components/spotlight.d.ts +8 -8
  28. package/dist/types/styled/blanket.d.ts +3 -0
  29. package/dist/types/styled/dialog.d.ts +4 -1
  30. package/dist/types/styled/modal.d.ts +4 -1
  31. package/dist/types/styled/target.d.ts +3 -0
  32. package/dist/types-ts4.5/components/modal.d.ts +3 -0
  33. package/dist/types-ts4.5/components/spotlight-card.d.ts +3 -0
  34. package/dist/types-ts4.5/components/spotlight.d.ts +8 -8
  35. package/dist/types-ts4.5/styled/blanket.d.ts +3 -0
  36. package/dist/types-ts4.5/styled/dialog.d.ts +4 -1
  37. package/dist/types-ts4.5/styled/modal.d.ts +4 -1
  38. package/dist/types-ts4.5/styled/target.d.ts +3 -0
  39. package/package.json +103 -103
  40. 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;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ */
1
4
  /** @jsx jsx */
2
5
  import { type HTMLAttributes, type ReactNode } from 'react';
3
6
  import { jsx } from '@emotion/react';
package/package.json CHANGED
@@ -1,104 +1,104 @@
1
1
  {
2
- "name": "@atlaskit/onboarding",
3
- "version": "11.5.8",
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.3.0",
47
- "@atlaskit/modal-dialog": "^12.13.0",
48
- "@atlaskit/motion": "^1.6.0",
49
- "@atlaskit/popper": "^6.0.0",
50
- "@atlaskit/portal": "^4.5.0",
51
- "@atlaskit/primitives": "^7.0.0",
52
- "@atlaskit/theme": "^12.9.0",
53
- "@atlaskit/tokens": "^1.49.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
- }
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
+ }