@atlaskit/onboarding 11.2.2 → 11.2.3
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 +6 -0
- package/dist/cjs/components/spotlight-dialog.js +1 -1
- package/dist/cjs/components/spotlight.js +2 -2
- package/dist/es2019/components/spotlight-dialog.js +1 -1
- package/dist/es2019/components/spotlight.js +2 -2
- package/dist/esm/components/spotlight-dialog.js +1 -1
- package/dist/esm/components/spotlight.js +2 -2
- package/dist/types/components/spotlight.d.ts +0 -2
- package/dist/types-ts4.5/components/spotlight.d.ts +0 -2
- package/package.json +9 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/onboarding
|
|
2
2
|
|
|
3
|
+
## 11.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#71144](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71144) [`d8feaa592375`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d8feaa592375) - This package has been added to the Jira push model.
|
|
8
|
+
|
|
3
9
|
## 11.2.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -27,7 +27,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
27
27
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
28
28
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
29
29
|
var packageName = "@atlaskit/onboarding";
|
|
30
|
-
var packageVersion = "11.2.
|
|
30
|
+
var packageVersion = "11.2.3";
|
|
31
31
|
var SpotlightDialog = /*#__PURE__*/function (_Component) {
|
|
32
32
|
(0, _inherits2.default)(SpotlightDialog, _Component);
|
|
33
33
|
var _super = _createSuper(SpotlightDialog);
|
|
@@ -11,15 +11,15 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
11
|
var _spotlightInner = _interopRequireDefault(require("./spotlight-inner"));
|
|
12
12
|
var _spotlightManager = require("./spotlight-manager");
|
|
13
13
|
var _excluded = ["dialogWidth", "pulse", "testId", "targetNode", "target"];
|
|
14
|
+
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
14
15
|
/**
|
|
15
|
-
* __Spotlight__
|
|
16
|
-
*
|
|
17
16
|
* An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
|
|
18
17
|
*
|
|
19
18
|
* - [Examples](https://atlassian.design/components/onboarding/examples)
|
|
20
19
|
* - [Code](https://atlassian.design/components/onboarding/code)
|
|
21
20
|
* - [Usage](https://atlassian.design/components/onboarding/usage)
|
|
22
21
|
*/
|
|
22
|
+
/* eslint-enable jsdoc/require-description-complete-sentence */
|
|
23
23
|
var Spotlight = function Spotlight(_ref) {
|
|
24
24
|
var _ref$dialogWidth = _ref.dialogWidth,
|
|
25
25
|
dialogWidth = _ref$dialogWidth === void 0 ? 400 : _ref$dialogWidth,
|
|
@@ -7,7 +7,7 @@ import { DialogImage } from '../styled/dialog';
|
|
|
7
7
|
import SpotlightCard from './spotlight-card';
|
|
8
8
|
import ValueChanged from './value-changed';
|
|
9
9
|
const packageName = "@atlaskit/onboarding";
|
|
10
|
-
const packageVersion = "11.2.
|
|
10
|
+
const packageVersion = "11.2.3";
|
|
11
11
|
class SpotlightDialog extends Component {
|
|
12
12
|
constructor(...args) {
|
|
13
13
|
super(...args);
|
|
@@ -2,15 +2,15 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import SpotlightInner from './spotlight-inner';
|
|
4
4
|
import { SpotlightConsumer } from './spotlight-manager';
|
|
5
|
+
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
5
6
|
/**
|
|
6
|
-
* __Spotlight__
|
|
7
|
-
*
|
|
8
7
|
* An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
|
|
9
8
|
*
|
|
10
9
|
* - [Examples](https://atlassian.design/components/onboarding/examples)
|
|
11
10
|
* - [Code](https://atlassian.design/components/onboarding/code)
|
|
12
11
|
* - [Usage](https://atlassian.design/components/onboarding/usage)
|
|
13
12
|
*/
|
|
13
|
+
/* eslint-enable jsdoc/require-description-complete-sentence */
|
|
14
14
|
const Spotlight = ({
|
|
15
15
|
dialogWidth = 400,
|
|
16
16
|
pulse = true,
|
|
@@ -17,7 +17,7 @@ import { DialogImage } from '../styled/dialog';
|
|
|
17
17
|
import SpotlightCard from './spotlight-card';
|
|
18
18
|
import ValueChanged from './value-changed';
|
|
19
19
|
var packageName = "@atlaskit/onboarding";
|
|
20
|
-
var packageVersion = "11.2.
|
|
20
|
+
var packageVersion = "11.2.3";
|
|
21
21
|
var SpotlightDialog = /*#__PURE__*/function (_Component) {
|
|
22
22
|
_inherits(SpotlightDialog, _Component);
|
|
23
23
|
var _super = _createSuper(SpotlightDialog);
|
|
@@ -4,15 +4,15 @@ var _excluded = ["dialogWidth", "pulse", "testId", "targetNode", "target"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import SpotlightInner from './spotlight-inner';
|
|
6
6
|
import { SpotlightConsumer } from './spotlight-manager';
|
|
7
|
+
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
7
8
|
/**
|
|
8
|
-
* __Spotlight__
|
|
9
|
-
*
|
|
10
9
|
* An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
|
|
11
10
|
*
|
|
12
11
|
* - [Examples](https://atlassian.design/components/onboarding/examples)
|
|
13
12
|
* - [Code](https://atlassian.design/components/onboarding/code)
|
|
14
13
|
* - [Usage](https://atlassian.design/components/onboarding/usage)
|
|
15
14
|
*/
|
|
15
|
+
/* eslint-enable jsdoc/require-description-complete-sentence */
|
|
16
16
|
var Spotlight = function Spotlight(_ref) {
|
|
17
17
|
var _ref$dialogWidth = _ref.dialogWidth,
|
|
18
18
|
dialogWidth = _ref$dialogWidth === void 0 ? 400 : _ref$dialogWidth,
|
|
@@ -84,8 +84,6 @@ export interface SpotlightProps {
|
|
|
84
84
|
testId?: string;
|
|
85
85
|
}
|
|
86
86
|
/**
|
|
87
|
-
* __Spotlight__
|
|
88
|
-
*
|
|
89
87
|
* An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
|
|
90
88
|
*
|
|
91
89
|
* - [Examples](https://atlassian.design/components/onboarding/examples)
|
|
@@ -84,8 +84,6 @@ export interface SpotlightProps {
|
|
|
84
84
|
testId?: string;
|
|
85
85
|
}
|
|
86
86
|
/**
|
|
87
|
-
* __Spotlight__
|
|
88
|
-
*
|
|
89
87
|
* An onboarding spotlight introduces new features to users through focused messages or multi-step tours.
|
|
90
88
|
*
|
|
91
89
|
* - [Examples](https://atlassian.design/components/onboarding/examples)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/onboarding",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.3",
|
|
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/"
|
|
@@ -30,21 +30,24 @@
|
|
|
30
30
|
"atlassian": {
|
|
31
31
|
"team": "Design System Team",
|
|
32
32
|
"releaseModel": "continuous",
|
|
33
|
+
"productPushConsumption": [
|
|
34
|
+
"jira"
|
|
35
|
+
],
|
|
33
36
|
"website": {
|
|
34
37
|
"name": "Onboarding (spotlight)",
|
|
35
38
|
"category": "Components"
|
|
36
39
|
}
|
|
37
40
|
},
|
|
38
41
|
"dependencies": {
|
|
39
|
-
"@atlaskit/analytics-next": "^9.
|
|
40
|
-
"@atlaskit/button": "^17.
|
|
42
|
+
"@atlaskit/analytics-next": "^9.2.0",
|
|
43
|
+
"@atlaskit/button": "^17.3.0",
|
|
41
44
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
42
|
-
"@atlaskit/heading": "^1.
|
|
45
|
+
"@atlaskit/heading": "^1.6.0",
|
|
43
46
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
44
47
|
"@atlaskit/popper": "^5.5.0",
|
|
45
48
|
"@atlaskit/portal": "^4.4.0",
|
|
46
49
|
"@atlaskit/theme": "^12.6.0",
|
|
47
|
-
"@atlaskit/tokens": "^1.
|
|
50
|
+
"@atlaskit/tokens": "^1.35.0",
|
|
48
51
|
"@babel/runtime": "^7.0.0",
|
|
49
52
|
"@emotion/react": "^11.7.1",
|
|
50
53
|
"bind-event-listener": "^2.1.1",
|
|
@@ -97,4 +100,4 @@
|
|
|
97
100
|
}
|
|
98
101
|
},
|
|
99
102
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
100
|
-
}
|
|
103
|
+
}
|