@atlaskit/contextual-survey 5.0.5 → 5.0.6

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/contextual-survey
2
2
 
3
+ ## 5.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 5.0.5
4
10
 
5
11
  ### Patch Changes
@@ -14,7 +14,13 @@
14
14
  "exclude": [
15
15
  "../src/**/__tests__/*",
16
16
  "../src/**/*.test.*",
17
- "../src/**/test.*"
17
+ "../src/**/test.*",
18
+ "../src/**/examples.*",
19
+ "../src/**/examples/*",
20
+ "../src/**/examples/**/*",
21
+ "../src/**/*.stories.*",
22
+ "../src/**/stories/*",
23
+ "../src/**/stories/**/*"
18
24
  ],
19
25
  "references": [
20
26
  {
@@ -2,7 +2,6 @@
2
2
  * @jsxRuntime classic
3
3
  * @jsx jsx
4
4
  */
5
- /// <reference types="react" />
6
5
  interface Props {
7
6
  onChange: (value: number) => void;
8
7
  value: number | undefined;
@@ -2,7 +2,6 @@
2
2
  * @jsxRuntime classic
3
3
  * @jsx jsx
4
4
  */
5
- /// <reference types="react" />
6
5
  interface Props {
7
6
  onAnswer: (answer: boolean) => Promise<void>;
8
7
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface Props {
3
2
  children: React.ReactNode;
4
3
  }
@@ -2,7 +2,6 @@
2
2
  * @jsxRuntime classic
3
3
  * @jsx jsx
4
4
  */
5
- /// <reference types="react" />
6
5
  interface Props {
7
6
  children: React.ReactNode;
8
7
  onDismiss: () => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type OnSubmitHandler } from '@atlaskit/form';
3
2
  import { type FormValues } from '../types';
4
3
  interface Props {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  /**
3
2
  * @jsxRuntime classic
4
3
  * @jsx jsx
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  /**
3
2
  * @jsxRuntime classic
4
3
  * @jsx jsx
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface Props {
3
2
  children: React.ReactNode;
4
3
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  /**
3
2
  * @jsxRuntime classic
4
3
  * @jsx jsx
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type OnSubmitHandler } from '@atlaskit/form';
3
2
  import { type FormValues } from '../types';
4
3
  interface Props {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/contextual-survey",
3
- "version": "5.0.5",
3
+ "version": "5.0.6",
4
4
  "description": "A React component used to ask the user for feedback",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -35,11 +35,11 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@atlaskit/button": "^23.3.0",
38
+ "@atlaskit/button": "^23.4.0",
39
39
  "@atlaskit/checkbox": "^17.1.0",
40
- "@atlaskit/form": "^12.0.0",
40
+ "@atlaskit/form": "^12.1.0",
41
41
  "@atlaskit/heading": "^5.2.0",
42
- "@atlaskit/icon": "^27.9.0",
42
+ "@atlaskit/icon": "^28.0.0",
43
43
  "@atlaskit/link": "^3.2.0",
44
44
  "@atlaskit/platform-feature-flags": "^1.1.0",
45
45
  "@atlaskit/primitives": "^14.11.0",
@@ -57,8 +57,7 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@testing-library/react": "^13.4.0",
60
- "@types/react-transition-group": "^2.0.6",
61
- "typescript": "~5.4.2"
60
+ "@types/react-transition-group": "^2.0.6"
62
61
  },
63
62
  "keywords": [
64
63
  "atlaskit",
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "types": "../dist/types/types.d.ts",
10
10
  "typesVersions": {
11
- ">=4.5 <5.4": {
11
+ ">=4.5 <5.9": {
12
12
  "*": [
13
13
  "../dist/types-ts4.5/types.d.ts"
14
14
  ]