@patternfly/react-styles 4.56.5 → 4.58.0

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,36 @@
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
+ # 4.58.0 (2022-05-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * **divider:** add support for switching orientation at various breakpoints ([#7285](https://github.com/patternfly/patternfly-react/issues/7285)) ([6e47917](https://github.com/patternfly/patternfly-react/commit/6e47917a59fdbd0f9f647998d79d024a691a49e2))
12
+
13
+
14
+
15
+
16
+
17
+ # 4.57.0 (2022-04-28)
18
+
19
+
20
+ ### Features
21
+
22
+ * **CodeBlock:** add class to code component ([#7281](https://github.com/patternfly/patternfly-react/issues/7281)) ([844e162](https://github.com/patternfly/patternfly-react/commit/844e1621bc695c97f911f5cc64998c5d36911a4d))
23
+
24
+
25
+
26
+
27
+
28
+ ## 4.56.6 (2022-04-27)
29
+
30
+ **Note:** Version bump only for package @patternfly/react-styles
31
+
32
+
33
+
34
+
35
+
6
36
  ## 4.56.5 (2022-04-26)
7
37
 
8
38
  **Note:** Version bump only for package @patternfly/react-styles
@@ -162,6 +162,9 @@
162
162
  color: var(--pf-c-description-list__term-icon--Color);
163
163
  }
164
164
 
165
+ .pf-c-description-list__text {
166
+ min-width: 0;
167
+ }
165
168
  .pf-c-description-list__text.pf-m-help-text {
166
169
  text-decoration: underline;
167
170
  cursor: pointer;
@@ -120,6 +120,7 @@
120
120
  --pf-c-tabs--m-secondary__add--c-button--FontSize: var(--pf-global--FontSize--xs);
121
121
  --pf-c-tabs__add--c-button--PaddingTop: var(--pf-c-tabs__link--PaddingTop);
122
122
  --pf-c-tabs__add--c-button--PaddingBottom: var(--pf-c-tabs__link--PaddingBottom);
123
+ --pf-c-tabs__add--c-button--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
123
124
  position: relative;
124
125
  display: flex;
125
126
  width: var(--pf-c-tabs--Width);
@@ -630,6 +631,7 @@
630
631
  --pf-c-button--FontSize: var(--pf-c-tabs__add--c-button--FontSize);
631
632
  --pf-c-button--PaddingTop: var(--pf-c-tabs__add--c-button--PaddingTop);
632
633
  --pf-c-button--PaddingBottom: var(--pf-c-tabs__add--c-button--PaddingBottom);
634
+ outline-offset: var(--pf-c-tabs__add--c-button--OutlineOffset);
633
635
  }
634
636
 
635
637
  .pf-c-tabs.pf-m-inset-none {
@@ -409,6 +409,9 @@
409
409
  stroke: var(--edge--active--stroke);
410
410
  }
411
411
 
412
+ .pf-topology__edge.pf-m-dragging {
413
+ pointer-events: none;
414
+ }
412
415
  .pf-topology__edge.pf-m-dragging .pf-topology__edge__link,
413
416
  .pf-topology__edge.pf-m-dragging .pf-topology-connector-arrow {
414
417
  stroke: var(--edge--interactive--stroke);
@@ -59,6 +59,7 @@
59
59
  --pf-c-tree-view--m-guides__list-item--before--BackgroundColor: var(--pf-c-tree-view--m-guides--guide-color--base);
60
60
  --pf-c-tree-view--m-guides__list-item--last-child--before--Top: var(--pf-c-tree-view--m-guides__node--before--Top);
61
61
  --pf-c-tree-view--m-guides__list-item--last-child--before--Height: var(--pf-c-tree-view--m-guides__list-item--last-child--before--Top);
62
+ --pf-c-tree-view--m-guides__list-item--ZIndex: var(--pf-global--ZIndex--xs);
62
63
  --pf-c-tree-view--m-guides__node--before--Width: 1rem;
63
64
  --pf-c-tree-view--m-guides__node--before--Height: var(--pf-c-tree-view--m-guides--guide-width--base);
64
65
  --pf-c-tree-view--m-guides__node--before--Top: 1.125rem;
@@ -119,6 +120,7 @@
119
120
  }
120
121
  .pf-c-tree-view.pf-m-compact .pf-c-tree-view__list-item .pf-c-tree-view__list-item::before, .pf-c-tree-view.pf-m-guides .pf-c-tree-view__list-item .pf-c-tree-view__list-item::before {
121
122
  top: var(--pf-c-tree-view--m-guides__list-item--before--Top);
123
+ z-index: var(--pf-c-tree-view--m-guides__list-item--ZIndex);
122
124
  width: var(--pf-c-tree-view--m-guides__list-item--before--Width);
123
125
  height: var(--pf-c-tree-view--m-guides__list-item--before--Height);
124
126
  background-color: var(--pf-c-tree-view--m-guides__list-item--before--BackgroundColor);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "4.56.5",
3
+ "version": "4.58.0",
4
4
  "main": "dist/js/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "clean": "rimraf dist css"
20
20
  },
21
21
  "devDependencies": {
22
- "@patternfly/patternfly": "4.192.1",
22
+ "@patternfly/patternfly": "4.192.4",
23
23
  "camel-case": "^3.0.0",
24
24
  "css": "^2.2.3",
25
25
  "fs-extra": "^6.0.1",
@@ -29,5 +29,5 @@
29
29
  "typescript": "^4.0.0"
30
30
  },
31
31
  "license": "MIT",
32
- "gitHead": "c0f634afc3fb81b215b00b14cf337f09fd8f37cd"
32
+ "gitHead": "59b129df4098359eed9dc2c2cb7e67ef1f000136"
33
33
  }
@@ -409,6 +409,9 @@
409
409
  stroke: var(--edge--active--stroke);
410
410
  }
411
411
 
412
+ .pf-topology__edge.pf-m-dragging {
413
+ pointer-events: none;
414
+ }
412
415
  .pf-topology__edge.pf-m-dragging .pf-topology__edge__link,
413
416
  .pf-topology__edge.pf-m-dragging .pf-topology-connector-arrow {
414
417
  stroke: var(--edge--interactive--stroke);