@atlaskit/lozenge 11.5.0 → 11.6.1

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,21 @@
1
1
  # @atlaskit/lozenge
2
2
 
3
+ ## 11.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022) [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) - Migrate packages to use declarative entry points
8
+
9
+ ## 11.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#64300](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64300) [`436936ea8914`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/436936ea8914) - Export prop types
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
3
19
  ## 11.5.0
4
20
 
5
21
  ### Minor Changes
@@ -1,2 +1,3 @@
1
1
  export { default } from './Lozenge';
2
2
  export type { ThemeAppearance } from './Lozenge';
3
+ export type { LozengeProps } from './Lozenge';
@@ -1,2 +1,3 @@
1
1
  export { default } from './Lozenge';
2
2
  export type { ThemeAppearance } from './Lozenge';
3
+ export type { LozengeProps } from './Lozenge';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/lozenge",
3
- "version": "11.5.0",
3
+ "version": "11.6.1",
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/"
@@ -22,9 +22,12 @@
22
22
  },
23
23
  "sideEffects": false,
24
24
  "atlaskit:src": "src/index.tsx",
25
+ "af:exports": {
26
+ ".": "./src/index.tsx",
27
+ "./theme": "./src/theme.tsx"
28
+ },
25
29
  "atlassian": {
26
30
  "team": "Design System Team",
27
- "deprecatedAutoEntryPoints": true,
28
31
  "releaseModel": "continuous",
29
32
  "productPushConsumption": [
30
33
  "jira"
@@ -36,10 +39,10 @@
36
39
  },
37
40
  "dependencies": {
38
41
  "@atlaskit/codemod-utils": "^4.2.0",
39
- "@atlaskit/ds-explorations": "^3.0.0",
40
- "@atlaskit/primitives": "^1.13.0",
42
+ "@atlaskit/ds-explorations": "^3.2.0",
43
+ "@atlaskit/primitives": "^1.19.0",
41
44
  "@atlaskit/theme": "^12.6.0",
42
- "@atlaskit/tokens": "^1.29.0",
45
+ "@atlaskit/tokens": "^1.34.0",
43
46
  "@babel/runtime": "^7.0.0"
44
47
  },
45
48
  "peerDependencies": {
@@ -52,7 +55,6 @@
52
55
  "@atlaskit/ds-lib": "^2.2.0",
53
56
  "@atlaskit/ssr": "*",
54
57
  "@atlaskit/visual-regression": "*",
55
- "@atlaskit/webdriver-runner": "*",
56
58
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
57
59
  "@emotion/react": "^11.7.1",
58
60
  "@testing-library/react": "^12.1.5",
@@ -86,4 +88,4 @@
86
88
  },
87
89
  "homepage": "https://atlassian.design/components/lozenge/",
88
90
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
89
- }
91
+ }