@atlaskit/ds-explorations 4.3.2 → 4.3.4

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,19 @@
1
1
  # @atlaskit/ds-explorations
2
2
 
3
+ ## 4.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#103999](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103999)
8
+ [`9f62ecec4d422`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f62ecec4d422) -
9
+ Update dependencies.
10
+
11
+ ## 4.3.3
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 4.3.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "4.3.2",
3
+ "version": "4.3.4",
4
4
  "description": "DEPRECATED. Use @atlaskit/primitives. An experimental package for exploration and validation of spacing / typography foundations.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -26,7 +26,7 @@
26
26
  "prepare": "yarn ak-postbuild"
27
27
  },
28
28
  "dependencies": {
29
- "@atlaskit/tokens": "^2.2.0",
29
+ "@atlaskit/tokens": "^3.1.0",
30
30
  "@babel/runtime": "^7.0.0",
31
31
  "@emotion/react": "^11.7.1"
32
32
  },
@@ -36,16 +36,15 @@
36
36
  "devDependencies": {
37
37
  "@af/formatting": "*",
38
38
  "@atlaskit/ds-lib": "*",
39
- "@atlaskit/primitives": "^13.2.0",
40
- "@atlaskit/textfield": "^6.5.0",
39
+ "@atlaskit/primitives": "^13.3.0",
40
+ "@atlaskit/textfield": "^6.7.0",
41
41
  "@atlaskit/visual-regression": "*",
42
42
  "@atlassian/codegen": "^0.1.0",
43
43
  "@testing-library/react": "^12.1.5",
44
44
  "fs-extra": "^4.0.2",
45
45
  "react-dom": "^16.8.0",
46
46
  "ts-node": "^10.9.1",
47
- "typescript": "~5.4.2",
48
- "wait-for-expect": "^1.2.0"
47
+ "typescript": "~5.4.2"
49
48
  },
50
49
  "techstack": {
51
50
  "@atlassian/frontend": {
@@ -7,7 +7,9 @@ import { token } from '@atlaskit/tokens';
7
7
 
8
8
  import { UNSAFE_InteractionSurface as InteractionSurface } from '../../../index';
9
9
 
10
- describe('InteractionSurface component', () => {
10
+ // skipping this test as it does not work with jsdom.reconfigure. Need to rewrite this test.
11
+ // https://hello.jira.atlassian.cloud/browse/UTEST-2000
12
+ describe.skip('InteractionSurface component', () => {
11
13
  it('should render by itself', () => {
12
14
  render(
13
15
  <InteractionSurface testId="basic">
package/tsconfig.app.json CHANGED
@@ -27,7 +27,6 @@
27
27
  "**/codemods/**/*.tsx"
28
28
  ],
29
29
  "compilerOptions": {
30
- "baseUrl": "",
31
30
  "composite": true,
32
31
  "outDir": "../../../tsDist/@atlaskit__ds-explorations/app"
33
32
  },
package/tsconfig.dev.json CHANGED
@@ -28,13 +28,12 @@
28
28
  ],
29
29
  "exclude": ["./dist/**/*", "./build/**/*", "./node_modules/**/*"],
30
30
  "compilerOptions": {
31
- "baseUrl": "",
32
31
  "composite": true,
33
32
  "outDir": "../../../tsDist/@atlaskit__ds-explorations/dev"
34
33
  },
35
34
  "references": [
36
35
  {
37
- "path": "tsconfig.app.json"
36
+ "path": "./tsconfig.app.json"
38
37
  },
39
38
  {
40
39
  "path": "../../../build/formatting/tsconfig.app.json"
package/tsconfig.json CHANGED
@@ -11,6 +11,5 @@
11
11
  "scripts/**/*.tsx"
12
12
  ],
13
13
  "compilerOptions": {
14
- "baseUrl": ""
15
14
  }
16
15
  }