@atlaskit/blanket 12.4.2 → 12.4.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/blanket
2
2
 
3
+ ## 12.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`77766ad157d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77766ad157d) - Enrol packages to push-model consumption in Jira.
8
+
3
9
  ## 12.4.2
4
10
 
5
11
  ### Patch Changes
@@ -16,7 +16,7 @@ var _constants = require("@atlaskit/theme/constants");
16
16
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
17
17
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } /** @jsx jsx */
18
18
  var packageName = "@atlaskit/blanket";
19
- var packageVersion = "12.4.2";
19
+ var packageVersion = "12.4.3";
20
20
  var analyticsAttributes = {
21
21
  componentName: 'blanket',
22
22
  packageName: packageName,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/blanket",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
@@ -7,7 +7,7 @@ import { DN90A, N100A } from '@atlaskit/theme/colors';
7
7
  import { useGlobalTheme } from '@atlaskit/theme/components';
8
8
  import { layers } from '@atlaskit/theme/constants';
9
9
  const packageName = "@atlaskit/blanket";
10
- const packageVersion = "12.4.2";
10
+ const packageVersion = "12.4.3";
11
11
  const analyticsAttributes = {
12
12
  componentName: 'blanket',
13
13
  packageName,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/blanket",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
@@ -10,7 +10,7 @@ import { DN90A, N100A } from '@atlaskit/theme/colors';
10
10
  import { useGlobalTheme } from '@atlaskit/theme/components';
11
11
  import { layers } from '@atlaskit/theme/constants';
12
12
  var packageName = "@atlaskit/blanket";
13
- var packageVersion = "12.4.2";
13
+ var packageVersion = "12.4.3";
14
14
  var analyticsAttributes = {
15
15
  componentName: 'blanket',
16
16
  packageName: packageName,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/blanket",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/blanket",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "description": "A blanket covers the underlying UI for a layered component, such as a modal dialog or a tooltip.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -25,7 +25,10 @@
25
25
  "homepage": "https://atlassian.design/components/blanket",
26
26
  "atlassian": {
27
27
  "team": "Design System Team",
28
- "releaseModel": "scheduled",
28
+ "releaseModel": "continuous",
29
+ "productPushConsumption": [
30
+ "jira"
31
+ ],
29
32
  "website": {
30
33
  "name": "Blanket",
31
34
  "category": "Components"
@@ -0,0 +1,31 @@
1
+ ## API Report File for "@atlaskit/blanket"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ /// <reference types="react" />
8
+
9
+ import { ForwardRefExoticComponent } from 'react';
10
+ import { MemoExoticComponent } from 'react';
11
+ import { ReactNode } from 'react';
12
+ import { RefAttributes } from 'react';
13
+ import UIAnalyticsEvent from '@atlaskit/analytics-next/UIAnalyticsEvent';
14
+
15
+ // @public
16
+ const Blanket: MemoExoticComponent<ForwardRefExoticComponent<BlanketProps & RefAttributes<HTMLDivElement>>>;
17
+ export default Blanket;
18
+
19
+ // @public (undocumented)
20
+ export interface BlanketProps {
21
+ analyticsContext?: Record<string, any>;
22
+ children?: ReactNode;
23
+ isTinted?: boolean;
24
+ onBlanketClicked?: (event: React.MouseEvent<HTMLDivElement>, analyticsEvent: UIAnalyticsEvent) => void;
25
+ shouldAllowClickThrough?: boolean;
26
+ testId?: string;
27
+ }
28
+
29
+ // (No @packageDocumentation comment for this package)
30
+
31
+ ```