@atlaskit/onboarding 14.5.12 → 14.6.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 (68) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/cjs/entry-points/modal-transition.js +13 -0
  3. package/dist/cjs/entry-points/modal.js +13 -0
  4. package/dist/cjs/entry-points/spotlight-card.js +13 -0
  5. package/dist/cjs/entry-points/spotlight-manager.js +32 -0
  6. package/dist/cjs/entry-points/spotlight-target.js +13 -0
  7. package/dist/cjs/entry-points/spotlight-transition.js +20 -0
  8. package/dist/cjs/entry-points/spotlight.js +13 -0
  9. package/dist/cjs/entry-points/target.js +24 -0
  10. package/dist/cjs/entry-points/theme.js +18 -0
  11. package/dist/cjs/entry-points/types.js +1 -0
  12. package/dist/cjs/entry-points/use-spotlight.js +13 -0
  13. package/dist/es2019/entry-points/modal-transition.js +1 -0
  14. package/dist/es2019/entry-points/modal.js +1 -0
  15. package/dist/es2019/entry-points/spotlight-card.js +1 -0
  16. package/dist/es2019/entry-points/spotlight-manager.js +2 -0
  17. package/dist/es2019/entry-points/spotlight-target.js +1 -0
  18. package/dist/es2019/entry-points/spotlight-transition.js +2 -0
  19. package/dist/es2019/entry-points/spotlight.js +1 -0
  20. package/dist/es2019/entry-points/target.js +1 -0
  21. package/dist/es2019/entry-points/theme.js +1 -0
  22. package/dist/es2019/entry-points/types.js +0 -0
  23. package/dist/es2019/entry-points/use-spotlight.js +1 -0
  24. package/dist/esm/entry-points/modal-transition.js +1 -0
  25. package/dist/esm/entry-points/modal.js +1 -0
  26. package/dist/esm/entry-points/spotlight-card.js +1 -0
  27. package/dist/esm/entry-points/spotlight-manager.js +2 -0
  28. package/dist/esm/entry-points/spotlight-target.js +1 -0
  29. package/dist/esm/entry-points/spotlight-transition.js +2 -0
  30. package/dist/esm/entry-points/spotlight.js +1 -0
  31. package/dist/esm/entry-points/target.js +1 -0
  32. package/dist/esm/entry-points/theme.js +1 -0
  33. package/dist/esm/entry-points/types.js +0 -0
  34. package/dist/esm/entry-points/use-spotlight.js +1 -0
  35. package/dist/types/entry-points/modal-transition.d.ts +1 -0
  36. package/dist/types/entry-points/modal.d.ts +1 -0
  37. package/dist/types/entry-points/spotlight-card.d.ts +1 -0
  38. package/dist/types/entry-points/spotlight-manager.d.ts +3 -0
  39. package/dist/types/entry-points/spotlight-target.d.ts +1 -0
  40. package/dist/types/entry-points/spotlight-transition.d.ts +2 -0
  41. package/dist/types/entry-points/spotlight.d.ts +1 -0
  42. package/dist/types/entry-points/target.d.ts +1 -0
  43. package/dist/types/entry-points/theme.d.ts +1 -0
  44. package/dist/types/entry-points/types.d.ts +1 -0
  45. package/dist/types/entry-points/use-spotlight.d.ts +1 -0
  46. package/dist/types-ts4.5/entry-points/modal-transition.d.ts +1 -0
  47. package/dist/types-ts4.5/entry-points/modal.d.ts +1 -0
  48. package/dist/types-ts4.5/entry-points/spotlight-card.d.ts +1 -0
  49. package/dist/types-ts4.5/entry-points/spotlight-manager.d.ts +3 -0
  50. package/dist/types-ts4.5/entry-points/spotlight-target.d.ts +1 -0
  51. package/dist/types-ts4.5/entry-points/spotlight-transition.d.ts +2 -0
  52. package/dist/types-ts4.5/entry-points/spotlight.d.ts +1 -0
  53. package/dist/types-ts4.5/entry-points/target.d.ts +1 -0
  54. package/dist/types-ts4.5/entry-points/theme.d.ts +1 -0
  55. package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
  56. package/dist/types-ts4.5/entry-points/use-spotlight.d.ts +1 -0
  57. package/modal/package.json +17 -0
  58. package/modal-transition/package.json +17 -0
  59. package/package.json +3 -3
  60. package/spotlight/package.json +17 -0
  61. package/spotlight-card/package.json +17 -0
  62. package/spotlight-manager/package.json +17 -0
  63. package/spotlight-target/package.json +17 -0
  64. package/spotlight-transition/package.json +17 -0
  65. package/target/package.json +17 -0
  66. package/theme/package.json +17 -0
  67. package/types/package.json +5 -5
  68. package/use-spotlight/package.json +17 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atlaskit/onboarding
2
2
 
3
+ ## 14.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7d6e9b5e6e7c6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7d6e9b5e6e7c6) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
3
10
  ## 14.5.12
4
11
 
5
12
  ### Patch Changes
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _modalTransition.default;
11
+ }
12
+ });
13
+ var _modalTransition = _interopRequireDefault(require("../components/modal-transition"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _modal.default;
11
+ }
12
+ });
13
+ var _modal = _interopRequireDefault(require("../components/modal"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _spotlightCard.default;
11
+ }
12
+ });
13
+ var _spotlightCard = _interopRequireDefault(require("../components/spotlight-card"));
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+
3
+ var _typeof = require("@babel/runtime/helpers/typeof");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "SpotlightConsumer", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _spotlightManager.SpotlightConsumer;
11
+ }
12
+ });
13
+ Object.defineProperty(exports, "SpotlightContext", {
14
+ enumerable: true,
15
+ get: function get() {
16
+ return _spotlightManager.SpotlightContext;
17
+ }
18
+ });
19
+ Object.defineProperty(exports, "TargetConsumer", {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return _spotlightManager.TargetConsumer;
23
+ }
24
+ });
25
+ Object.defineProperty(exports, "default", {
26
+ enumerable: true,
27
+ get: function get() {
28
+ return _spotlightManager.default;
29
+ }
30
+ });
31
+ var _spotlightManager = _interopRequireWildcard(require("../components/spotlight-manager"));
32
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _spotlightTarget.default;
11
+ }
12
+ });
13
+ var _spotlightTarget = _interopRequireDefault(require("../components/spotlight-target"));
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ var _typeof = require("@babel/runtime/helpers/typeof");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "SpotlightTransitionConsumer", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _spotlightTransition.SpotlightTransitionConsumer;
11
+ }
12
+ });
13
+ Object.defineProperty(exports, "default", {
14
+ enumerable: true,
15
+ get: function get() {
16
+ return _spotlightTransition.default;
17
+ }
18
+ });
19
+ var _spotlightTransition = _interopRequireWildcard(require("../components/spotlight-transition"));
20
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _spotlight.default;
11
+ }
12
+ });
13
+ var _spotlight = _interopRequireDefault(require("../components/spotlight"));
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Pulse", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _target.Pulse;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "TargetInner", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _target.TargetInner;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "TargetOverlay", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _target.TargetOverlay;
22
+ }
23
+ });
24
+ var _target = require("../styled/target");
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "modalButtonTheme", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _theme.modalButtonTheme;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "spotlightButtonTheme", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _theme.spotlightButtonTheme;
16
+ }
17
+ });
18
+ var _theme = require("../components/theme");
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _useSpotlight.default;
11
+ }
12
+ });
13
+ var _useSpotlight = _interopRequireDefault(require("../components/use-spotlight"));
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-card';
@@ -0,0 +1,2 @@
1
+ export { SpotlightConsumer, SpotlightContext, TargetConsumer } from '../components/spotlight-manager';
2
+ export { default } from '../components/spotlight-manager';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-target';
@@ -0,0 +1,2 @@
1
+ export { SpotlightTransitionConsumer } from '../components/spotlight-transition';
2
+ export { default } from '../components/spotlight-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight';
@@ -0,0 +1 @@
1
+ export { Pulse, TargetInner, TargetOverlay } from '../styled/target';
@@ -0,0 +1 @@
1
+ export { modalButtonTheme, spotlightButtonTheme } from '../components/theme';
File without changes
@@ -0,0 +1 @@
1
+ export { default } from '../components/use-spotlight';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-card';
@@ -0,0 +1,2 @@
1
+ export { SpotlightConsumer, SpotlightContext, TargetConsumer } from '../components/spotlight-manager';
2
+ export { default } from '../components/spotlight-manager';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-target';
@@ -0,0 +1,2 @@
1
+ export { SpotlightTransitionConsumer } from '../components/spotlight-transition';
2
+ export { default } from '../components/spotlight-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight';
@@ -0,0 +1 @@
1
+ export { Pulse, TargetInner, TargetOverlay } from '../styled/target';
@@ -0,0 +1 @@
1
+ export { modalButtonTheme, spotlightButtonTheme } from '../components/theme';
File without changes
@@ -0,0 +1 @@
1
+ export { default } from '../components/use-spotlight';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-card';
@@ -0,0 +1,3 @@
1
+ export { SpotlightConsumer, SpotlightContext, TargetConsumer, } from '../components/spotlight-manager';
2
+ export type { GetTargetRef, TargetRef } from '../components/spotlight-manager';
3
+ export { default } from '../components/spotlight-manager';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-target';
@@ -0,0 +1,2 @@
1
+ export { SpotlightTransitionConsumer } from '../components/spotlight-transition';
2
+ export { default } from '../components/spotlight-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight';
@@ -0,0 +1 @@
1
+ export { Pulse, TargetInner, TargetOverlay } from '../styled/target';
@@ -0,0 +1 @@
1
+ export { modalButtonTheme, spotlightButtonTheme } from '../components/theme';
@@ -0,0 +1 @@
1
+ export type { Actions, ScrollLogicalPosition, SpotlightCardProps, SpotlightProps } from '../types';
@@ -0,0 +1 @@
1
+ export { default } from '../components/use-spotlight';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/modal';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-card';
@@ -0,0 +1,3 @@
1
+ export { SpotlightConsumer, SpotlightContext, TargetConsumer, } from '../components/spotlight-manager';
2
+ export type { GetTargetRef, TargetRef } from '../components/spotlight-manager';
3
+ export { default } from '../components/spotlight-manager';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight-target';
@@ -0,0 +1,2 @@
1
+ export { SpotlightTransitionConsumer } from '../components/spotlight-transition';
2
+ export { default } from '../components/spotlight-transition';
@@ -0,0 +1 @@
1
+ export { default } from '../components/spotlight';
@@ -0,0 +1 @@
1
+ export { Pulse, TargetInner, TargetOverlay } from '../styled/target';
@@ -0,0 +1 @@
1
+ export { modalButtonTheme, spotlightButtonTheme } from '../components/theme';
@@ -0,0 +1 @@
1
+ export type { Actions, ScrollLogicalPosition, SpotlightCardProps, SpotlightProps } from '../types';
@@ -0,0 +1 @@
1
+ export { default } from '../components/use-spotlight';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/modal",
3
+ "main": "../dist/cjs/entry-points/modal.js",
4
+ "module": "../dist/esm/entry-points/modal.js",
5
+ "module:es2019": "../dist/es2019/entry-points/modal.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/modal.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/modal.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/modal-transition",
3
+ "main": "../dist/cjs/entry-points/modal-transition.js",
4
+ "module": "../dist/esm/entry-points/modal-transition.js",
5
+ "module:es2019": "../dist/es2019/entry-points/modal-transition.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/modal-transition.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/modal-transition.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/onboarding",
3
- "version": "14.5.12",
3
+ "version": "14.6.0",
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/"
@@ -70,7 +70,7 @@
70
70
  "@atlaskit/modal-dialog": "^14.15.0",
71
71
  "@atlaskit/motion": "^5.6.0",
72
72
  "@atlaskit/platform-feature-flags": "^1.1.0",
73
- "@atlaskit/popper": "^7.1.0",
73
+ "@atlaskit/popper": "^7.2.0",
74
74
  "@atlaskit/portal": "^5.4.0",
75
75
  "@atlaskit/primitives": "^19.0.0",
76
76
  "@atlaskit/tokens": "^13.0.0",
@@ -92,7 +92,7 @@
92
92
  "@af/accessibility-testing": "workspace:^",
93
93
  "@af/integration-testing": "workspace:^",
94
94
  "@af/visual-regression": "workspace:^",
95
- "@atlaskit/theme": "^23.0.0",
95
+ "@atlaskit/theme": "^23.1.0",
96
96
  "@atlassian/react-compiler-gating": "workspace:^",
97
97
  "@atlassian/ssr-tests": "workspace:^",
98
98
  "@atlassian/testing-library": "^0.5.0",
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/spotlight",
3
+ "main": "../dist/cjs/entry-points/spotlight.js",
4
+ "module": "../dist/esm/entry-points/spotlight.js",
5
+ "module:es2019": "../dist/es2019/entry-points/spotlight.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/spotlight.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/spotlight.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/spotlight-card",
3
+ "main": "../dist/cjs/entry-points/spotlight-card.js",
4
+ "module": "../dist/esm/entry-points/spotlight-card.js",
5
+ "module:es2019": "../dist/es2019/entry-points/spotlight-card.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/spotlight-card.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/spotlight-card.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/spotlight-manager",
3
+ "main": "../dist/cjs/entry-points/spotlight-manager.js",
4
+ "module": "../dist/esm/entry-points/spotlight-manager.js",
5
+ "module:es2019": "../dist/es2019/entry-points/spotlight-manager.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/spotlight-manager.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/spotlight-manager.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/spotlight-target",
3
+ "main": "../dist/cjs/entry-points/spotlight-target.js",
4
+ "module": "../dist/esm/entry-points/spotlight-target.js",
5
+ "module:es2019": "../dist/es2019/entry-points/spotlight-target.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/spotlight-target.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/spotlight-target.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/spotlight-transition",
3
+ "main": "../dist/cjs/entry-points/spotlight-transition.js",
4
+ "module": "../dist/esm/entry-points/spotlight-transition.js",
5
+ "module:es2019": "../dist/es2019/entry-points/spotlight-transition.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/spotlight-transition.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/spotlight-transition.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/target",
3
+ "main": "../dist/cjs/entry-points/target.js",
4
+ "module": "../dist/esm/entry-points/target.js",
5
+ "module:es2019": "../dist/es2019/entry-points/target.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/target.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/target.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/theme",
3
+ "main": "../dist/cjs/entry-points/theme.js",
4
+ "module": "../dist/esm/entry-points/theme.js",
5
+ "module:es2019": "../dist/es2019/entry-points/theme.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/theme.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/theme.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@atlaskit/onboarding/types",
3
- "main": "../dist/cjs/types.js",
4
- "module": "../dist/esm/types.js",
5
- "module:es2019": "../dist/es2019/types.js",
3
+ "main": "../dist/cjs/entry-points/types.js",
4
+ "module": "../dist/esm/entry-points/types.js",
5
+ "module:es2019": "../dist/es2019/entry-points/types.js",
6
6
  "sideEffects": [
7
7
  "**/*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/types.d.ts",
9
+ "types": "../dist/types/entry-points/types.d.ts",
10
10
  "typesVersions": {
11
11
  ">=4.5 <5.9": {
12
12
  "*": [
13
- "../dist/types-ts4.5/types.d.ts"
13
+ "../dist/types-ts4.5/entry-points/types.d.ts"
14
14
  ]
15
15
  }
16
16
  }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/onboarding/use-spotlight",
3
+ "main": "../dist/cjs/entry-points/use-spotlight.js",
4
+ "module": "../dist/esm/entry-points/use-spotlight.js",
5
+ "module:es2019": "../dist/es2019/entry-points/use-spotlight.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/use-spotlight.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/use-spotlight.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }