@patternfly/react-styles 4.75.8 → 4.75.11

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,33 @@
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.75.11 (2022-07-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Select:** remove variant check from update logic ([#7741](https://github.com/patternfly/patternfly-react/issues/7741)) ([2204cb6](https://github.com/patternfly/patternfly-react/commit/2204cb62e30b4a37b82731f1380e79a3085828ef))
12
+
13
+
14
+
15
+
16
+
17
+ ## 4.75.10 (2022-07-25)
18
+
19
+ **Note:** Version bump only for package @patternfly/react-styles
20
+
21
+
22
+
23
+
24
+
25
+ ## 4.75.9 (2022-07-21)
26
+
27
+ **Note:** Version bump only for package @patternfly/react-styles
28
+
29
+
30
+
31
+
32
+
6
33
  ## 4.75.8 (2022-07-21)
7
34
 
8
35
  **Note:** Version bump only for package @patternfly/react-styles
@@ -0,0 +1,10 @@
1
+ .ws-core-c-modal .ws-preview-html {
2
+ position: relative;
3
+ }
4
+
5
+ .ws-core-c-modal .pf-c-modal-box {
6
+ position: absolute;
7
+ top: 50%;
8
+ left: 50%;
9
+ transform: translate(-50%, -50%);
10
+ }
@@ -0,0 +1,7 @@
1
+ import './ModalBox.css';
2
+ declare const _default: {
3
+ "modalBox": "pf-c-modal-box",
4
+ "wsCoreCModal": "ws-core-c-modal",
5
+ "wsPreviewHtml": "ws-preview-html"
6
+ };
7
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ require('./ModalBox.css');
4
+ exports.default = {
5
+ "modalBox": "pf-c-modal-box",
6
+ "wsCoreCModal": "ws-core-c-modal",
7
+ "wsPreviewHtml": "ws-preview-html"
8
+ };
@@ -0,0 +1,6 @@
1
+ import('./ModalBox.css');
2
+ export default {
3
+ "modalBox": "pf-c-modal-box",
4
+ "wsCoreCModal": "ws-core-c-modal",
5
+ "wsPreviewHtml": "ws-preview-html"
6
+ };
@@ -1,10 +1,10 @@
1
- #ws-core-c-popover-width-auto .ws-preview-html {
1
+ .ws-core-c-popover .ws-preview-html {
2
2
  position: relative;
3
- height: 125px;
4
- }
3
+ }
5
4
 
6
- #ws-core-c-popover-width-auto .pf-c-popover {
7
- position: absolute;
8
- top: 0;
9
- left: 0;
10
- }
5
+ .ws-core-c-popover .pf-c-popover {
6
+ position: absolute;
7
+ top: 50%;
8
+ left: 50%;
9
+ transform: translate(-50%, -50%);
10
+ }
@@ -1,6 +1,7 @@
1
1
  import './Popover.css';
2
2
  declare const _default: {
3
3
  "popover": "pf-c-popover",
4
+ "wsCoreCPopover": "ws-core-c-popover",
4
5
  "wsPreviewHtml": "ws-preview-html"
5
6
  };
6
7
  export default _default;
@@ -3,5 +3,6 @@ exports.__esModule = true;
3
3
  require('./Popover.css');
4
4
  exports.default = {
5
5
  "popover": "pf-c-popover",
6
+ "wsCoreCPopover": "ws-core-c-popover",
6
7
  "wsPreviewHtml": "ws-preview-html"
7
8
  };
@@ -1,5 +1,6 @@
1
1
  import('./Popover.css');
2
2
  export default {
3
3
  "popover": "pf-c-popover",
4
+ "wsCoreCPopover": "ws-core-c-popover",
4
5
  "wsPreviewHtml": "ws-preview-html"
5
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "4.75.8",
3
+ "version": "4.75.11",
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.204.1",
22
+ "@patternfly/patternfly": "4.204.2",
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.7.4"
30
30
  },
31
31
  "license": "MIT",
32
- "gitHead": "ff8f9ebc9ddd58da42246f9b87ea392ef2245285"
32
+ "gitHead": "aaeb37eb17dd5180aaa6ac3548fd4ac52c2a6eb7"
33
33
  }