@atlaskit/onboarding 14.5.11 → 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.
- package/CHANGELOG.md +13 -0
- package/dist/cjs/entry-points/modal-transition.js +13 -0
- package/dist/cjs/entry-points/modal.js +13 -0
- package/dist/cjs/entry-points/spotlight-card.js +13 -0
- package/dist/cjs/entry-points/spotlight-manager.js +32 -0
- package/dist/cjs/entry-points/spotlight-target.js +13 -0
- package/dist/cjs/entry-points/spotlight-transition.js +20 -0
- package/dist/cjs/entry-points/spotlight.js +13 -0
- package/dist/cjs/entry-points/target.js +24 -0
- package/dist/cjs/entry-points/theme.js +18 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/entry-points/use-spotlight.js +13 -0
- package/dist/es2019/entry-points/modal-transition.js +1 -0
- package/dist/es2019/entry-points/modal.js +1 -0
- package/dist/es2019/entry-points/spotlight-card.js +1 -0
- package/dist/es2019/entry-points/spotlight-manager.js +2 -0
- package/dist/es2019/entry-points/spotlight-target.js +1 -0
- package/dist/es2019/entry-points/spotlight-transition.js +2 -0
- package/dist/es2019/entry-points/spotlight.js +1 -0
- package/dist/es2019/entry-points/target.js +1 -0
- package/dist/es2019/entry-points/theme.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/entry-points/use-spotlight.js +1 -0
- package/dist/esm/entry-points/modal-transition.js +1 -0
- package/dist/esm/entry-points/modal.js +1 -0
- package/dist/esm/entry-points/spotlight-card.js +1 -0
- package/dist/esm/entry-points/spotlight-manager.js +2 -0
- package/dist/esm/entry-points/spotlight-target.js +1 -0
- package/dist/esm/entry-points/spotlight-transition.js +2 -0
- package/dist/esm/entry-points/spotlight.js +1 -0
- package/dist/esm/entry-points/target.js +1 -0
- package/dist/esm/entry-points/theme.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/entry-points/use-spotlight.js +1 -0
- package/dist/types/entry-points/modal-transition.d.ts +1 -0
- package/dist/types/entry-points/modal.d.ts +1 -0
- package/dist/types/entry-points/spotlight-card.d.ts +1 -0
- package/dist/types/entry-points/spotlight-manager.d.ts +3 -0
- package/dist/types/entry-points/spotlight-target.d.ts +1 -0
- package/dist/types/entry-points/spotlight-transition.d.ts +2 -0
- package/dist/types/entry-points/spotlight.d.ts +1 -0
- package/dist/types/entry-points/target.d.ts +1 -0
- package/dist/types/entry-points/theme.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/entry-points/use-spotlight.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/modal-transition.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/modal.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/spotlight-card.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/spotlight-manager.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/spotlight-target.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/spotlight-transition.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/spotlight.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/target.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/theme.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/use-spotlight.d.ts +1 -0
- package/modal/package.json +17 -0
- package/modal-transition/package.json +17 -0
- package/package.json +5 -5
- package/spotlight/package.json +17 -0
- package/spotlight-card/package.json +17 -0
- package/spotlight-manager/package.json +17 -0
- package/spotlight-target/package.json +17 -0
- package/spotlight-transition/package.json +17 -0
- package/target/package.json +17 -0
- package/theme/package.json +17 -0
- package/types/package.json +5 -5
- package/use-spotlight/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
10
|
+
## 14.5.12
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 14.5.11
|
|
4
17
|
|
|
5
18
|
### 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 @@
|
|
|
1
|
+
export { default } from '../components/spotlight-target';
|
|
@@ -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 @@
|
|
|
1
|
+
export { default } from '../components/spotlight-target';
|
|
@@ -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 @@
|
|
|
1
|
+
export { default } from '../components/spotlight-target';
|
|
@@ -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 @@
|
|
|
1
|
+
export { default } from '../components/spotlight-target';
|
|
@@ -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.
|
|
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,10 +70,10 @@
|
|
|
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.
|
|
73
|
+
"@atlaskit/popper": "^7.2.0",
|
|
74
74
|
"@atlaskit/portal": "^5.4.0",
|
|
75
|
-
"@atlaskit/primitives": "^
|
|
76
|
-
"@atlaskit/tokens": "^
|
|
75
|
+
"@atlaskit/primitives": "^19.0.0",
|
|
76
|
+
"@atlaskit/tokens": "^13.0.0",
|
|
77
77
|
"@babel/runtime": "^7.0.0",
|
|
78
78
|
"@compiled/react": "^0.20.0",
|
|
79
79
|
"bind-event-listener": "^3.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.
|
|
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
|
+
}
|
package/types/package.json
CHANGED
|
@@ -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
|
+
}
|