@atlaskit/lozenge 11.3.8 → 11.3.10

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,17 @@
1
1
  # @atlaskit/lozenge
2
2
 
3
+ ## 11.3.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [`df9cefb35e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df9cefb35e1) - Enrol @atlaskit/lozenge on push model consumption in Jira
8
+
9
+ ## 11.3.9
10
+
11
+ ### Patch Changes
12
+
13
+ - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
14
+
3
15
  ## 11.3.8
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/lozenge",
3
- "version": "11.3.8",
3
+ "version": "11.3.10",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/lozenge",
3
- "version": "11.3.8",
3
+ "version": "11.3.10",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/lozenge",
3
- "version": "11.3.8",
3
+ "version": "11.3.10",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/lozenge",
3
- "version": "11.3.8",
3
+ "version": "11.3.10",
4
4
  "description": "A lozenge is a visual indicator used to highlight an item's status for quick recognition.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -17,7 +17,10 @@
17
17
  "atlassian": {
18
18
  "team": "Design System Team",
19
19
  "deprecatedAutoEntryPoints": true,
20
- "releaseModel": "scheduled",
20
+ "releaseModel": "continuous",
21
+ "productPushConsumption": [
22
+ "jira"
23
+ ],
21
24
  "website": {
22
25
  "name": "Lozenge",
23
26
  "category": "Components"
@@ -26,7 +29,7 @@
26
29
  "dependencies": {
27
30
  "@atlaskit/codemod-utils": "^4.1.0",
28
31
  "@atlaskit/ds-explorations": "^2.0.0",
29
- "@atlaskit/theme": "^12.2.0",
32
+ "@atlaskit/theme": "^12.4.0",
30
33
  "@atlaskit/tokens": "^1.2.0",
31
34
  "@babel/runtime": "^7.0.0"
32
35
  },
@@ -37,7 +40,7 @@
37
40
  "@atlaskit/button": "*",
38
41
  "@atlaskit/docs": "*",
39
42
  "@atlaskit/ds-lib": "^2.1.1",
40
- "@atlaskit/primitives": "^0.3.0",
43
+ "@atlaskit/primitives": "^0.8.0",
41
44
  "@atlaskit/section-message": "^6.3.0",
42
45
  "@atlaskit/ssr": "*",
43
46
  "@atlaskit/visual-regression": "*",
@@ -0,0 +1,30 @@
1
+ ## API Report File for "@atlaskit/lozenge"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import { CSSProperties } from 'react';
8
+ import { default as React_2 } from 'react';
9
+ import { ReactNode } from 'react';
10
+
11
+ // @public
12
+ const Lozenge: React_2.MemoExoticComponent<({ children, testId, isBold, appearance, maxWidth, style, }: LozengeProps) => JSX.Element>;
13
+ export default Lozenge;
14
+
15
+ // @public (undocumented)
16
+ interface LozengeProps {
17
+ appearance?: ThemeAppearance;
18
+ children?: ReactNode;
19
+ isBold?: boolean;
20
+ maxWidth?: number | string;
21
+ style?: Pick<CSSProperties, 'backgroundColor' | 'color'>;
22
+ testId?: string;
23
+ }
24
+
25
+ // @public (undocumented)
26
+ export type ThemeAppearance = 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
27
+
28
+ // (No @packageDocumentation comment for this package)
29
+
30
+ ```