@patternfly/react-styles 5.3.0-prerelease.2 → 5.3.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,14 @@
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
+ # 5.3.0 (2024-04-18)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-styles
9
+
10
+ # 5.3.0-prerelease.3 (2024-03-26)
11
+
12
+ **Note:** Version bump only for package @patternfly/react-styles
13
+
6
14
  # 5.3.0-prerelease.2 (2024-03-22)
7
15
 
8
16
  **Note:** Version bump only for package @patternfly/react-styles
@@ -141,6 +141,10 @@
141
141
  --pf-v5-c-label--m-editable--m-editable-active--BackgroundColor: transparent;
142
142
  --pf-v5-c-label--m-editable--m-editable-active__content--before--BorderWidth: 0;
143
143
  --pf-v5-c-label--m-editable--m-editable-active__content--before--BorderColor: transparent;
144
+ --pf-v5-c-label--m-disabled--BackgroundColor: var(--pf-v5-global--disabled-color--200);
145
+ --pf-v5-c-label--m-disabled__content--Color: var(--pf-v5-global--disabled-color--100);
146
+ --pf-v5-c-label--m-disabled__icon--Color: var(--pf-v5-global--disabled-color--100);
147
+ --pf-v5-c-label--c-button--m-disabled--Color: var(--pf-v5-global--disabled-color--100);
144
148
  position: relative;
145
149
  max-width: var(--pf-v5-c-label--MaxWidth);
146
150
  padding-block-start: var(--pf-v5-c-label--PaddingTop);
@@ -327,6 +331,16 @@
327
331
  --pf-v5-c-label__content--link--focus--before--BorderWidth: var(--pf-v5-c-label--m-overflow__content--link--focus--before--BorderWidth);
328
332
  --pf-v5-c-label__content--link--focus--before--BorderColor: var(--pf-v5-c-label--m-overflow__content--link--focus--before--BorderColor);
329
333
  }
334
+ .pf-v5-c-label.pf-m-disabled {
335
+ --pf-v5-c-label--BackgroundColor: var(--pf-v5-c-label--m-disabled--BackgroundColor);
336
+ --pf-v5-c-label__content--Color: var(--pf-v5-c-label--m-disabled__content--Color);
337
+ --pf-v5-c-label__icon--Color: var(--pf-v5-c-label--m-disabled__icon--Color);
338
+ --pf-v5-c-label__content--before--BorderWidth: 0;
339
+ pointer-events: none;
340
+ }
341
+ .pf-v5-c-label.pf-m-disabled .pf-v5-c-button {
342
+ --pf-v5-c-button--m-plain--disabled--Color: var(--pf-v5-c-label--c-button--m-disabled--Color);
343
+ }
330
344
 
331
345
  .pf-v5-c-label,
332
346
  .pf-v5-c-label__content {
@@ -19,7 +19,8 @@ declare const _default: {
19
19
  "overflow": "pf-m-overflow",
20
20
  "add": "pf-m-add",
21
21
  "editable": "pf-m-editable",
22
- "editableActive": "pf-m-editable-active"
22
+ "editableActive": "pf-m-editable-active",
23
+ "disabled": "pf-m-disabled"
23
24
  },
24
25
  "themeDark": "pf-v5-theme-dark"
25
26
  };
@@ -21,7 +21,8 @@ exports.default = {
21
21
  "overflow": "pf-m-overflow",
22
22
  "add": "pf-m-add",
23
23
  "editable": "pf-m-editable",
24
- "editableActive": "pf-m-editable-active"
24
+ "editableActive": "pf-m-editable-active",
25
+ "disabled": "pf-m-disabled"
25
26
  },
26
27
  "themeDark": "pf-v5-theme-dark"
27
28
  };
@@ -19,7 +19,8 @@ export default {
19
19
  "overflow": "pf-m-overflow",
20
20
  "add": "pf-m-add",
21
21
  "editable": "pf-m-editable",
22
- "editableActive": "pf-m-editable-active"
22
+ "editableActive": "pf-m-editable-active",
23
+ "disabled": "pf-m-disabled"
23
24
  },
24
25
  "themeDark": "pf-v5-theme-dark"
25
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "5.3.0-prerelease.2",
3
+ "version": "5.3.0",
4
4
  "main": "dist/js/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "clean": "rimraf dist css"
19
19
  },
20
20
  "devDependencies": {
21
- "@patternfly/patternfly": "5.3.0-prerelease.4",
21
+ "@patternfly/patternfly": "5.3.0-prerelease.5",
22
22
  "camel-case": "^3.0.0",
23
23
  "css": "^2.2.3",
24
24
  "fs-extra": "^11.1.1",
@@ -28,5 +28,5 @@
28
28
  "typescript": "^4.7.4"
29
29
  },
30
30
  "license": "MIT",
31
- "gitHead": "bb7af9ae8ad9b31892f14878c9bb30599bd88bcd"
31
+ "gitHead": "87cf08d11f9da9abc85b554b4e6766f86b424904"
32
32
  }