@entur/expand 3.3.15 → 3.3.18

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
@@ -3,6 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.3.18](https://bitbucket.org/enturas/design-system/compare/@entur/expand@3.3.17...@entur/expand@3.3.18) (2022-08-24)
7
+
8
+ **Note:** Version bump only for package @entur/expand
9
+
10
+ ## [3.3.17](https://bitbucket.org/enturas/design-system/compare/@entur/expand@3.3.16...@entur/expand@3.3.17) (2022-08-09)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **Base Expandable Panel:** remove redundant CSS property ([062072f](https://bitbucket.org/enturas/design-system/commits/062072f5e301f51bd411625e19d647033fa926c7))
15
+ - **Expandable panel:** make BaseExpandablePanel focus stackable ([5770334](https://bitbucket.org/enturas/design-system/commits/57703343a80ff067b49cb0ec2aabda74d391d080))
16
+
17
+ ## [3.3.16](https://bitbucket.org/enturas/design-system/compare/@entur/expand@3.3.15...@entur/expand@3.3.16) (2022-07-05)
18
+
19
+ **Note:** Version bump only for package @entur/expand
20
+
6
21
  ## [3.3.15](https://bitbucket.org/enturas/design-system/compare/@entur/expand@3.3.14...@entur/expand@3.3.15) (2022-06-24)
7
22
 
8
23
  **Note:** Version bump only for package @entur/expand
package/dist/styles.css CHANGED
@@ -42,10 +42,17 @@
42
42
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
43
43
  .eds-expandable-panel {
44
44
  width: 100%;
45
+ position: relative;
45
46
  }
46
47
  .eds-expandable-panel + .eds-expandable-panel {
47
48
  margin-top: 0.125rem;
48
49
  }
50
+ .eds-expandable-panel:focus, .eds-expandable-panel[focus-within] {
51
+ z-index: 2;
52
+ }
53
+ .eds-expandable-panel:focus, .eds-expandable-panel:focus-within {
54
+ z-index: 2;
55
+ }
49
56
 
50
57
  .eds-expandable-panel__grid {
51
58
  display: grid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur/expand",
3
- "version": "3.3.15",
3
+ "version": "3.3.18",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/expand.esm.js",
@@ -27,15 +27,15 @@
27
27
  "react-dom": ">=16.8.0"
28
28
  },
29
29
  "dependencies": {
30
- "@entur/icons": "^4.2.0",
31
- "@entur/tokens": "^3.3.2",
32
- "@entur/typography": "^1.6.14",
33
- "@entur/utils": "^0.4.3",
30
+ "@entur/icons": "^4.3.2",
31
+ "@entur/tokens": "^3.4.1",
32
+ "@entur/typography": "^1.6.16",
33
+ "@entur/utils": "^0.4.4",
34
34
  "classnames": "^2.3.1",
35
35
  "react-collapse": "^5.1.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/react-collapse": "^5.0.1"
39
39
  },
40
- "gitHead": "974289b6579ade4460d12aa877a89e454c983d48"
40
+ "gitHead": "1dabe0c64e98a7de3a47a29fc24fd46e74dc0d7c"
41
41
  }