@patternfly/react-tokens 4.85.0 → 4.85.1

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,17 @@
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.85.1 (2022-08-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **TimePicker:** clean up menuAppendTo feature ([#7865](https://github.com/patternfly/patternfly-react/issues/7865)) ([3aa73be](https://github.com/patternfly/patternfly-react/commit/3aa73beb4581c1695aa3c3886291d862bd82286e))
12
+
13
+
14
+
15
+
16
+
6
17
  # 4.85.0 (2022-08-19)
7
18
 
8
19
 
@@ -334,6 +334,10 @@ export const c_expandable_section: {
334
334
  "c_expandable_section__content_MarginTop": {
335
335
  "name": "--pf-c-expandable-section__content--MarginTop",
336
336
  "value": "0"
337
+ },
338
+ "c_expandable_section_m_truncate__toggle_MarginTop": {
339
+ "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
340
+ "value": "0"
337
341
  }
338
342
  },
339
343
  ".pf-c-expandable-section.pf-m-limit-width": {
@@ -334,6 +334,10 @@ export const c_expandable_section = {
334
334
  "c_expandable_section__content_MarginTop": {
335
335
  "name": "--pf-c-expandable-section__content--MarginTop",
336
336
  "value": "0"
337
+ },
338
+ "c_expandable_section_m_truncate__toggle_MarginTop": {
339
+ "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
340
+ "value": "0"
337
341
  }
338
342
  },
339
343
  ".pf-c-expandable-section.pf-m-limit-width": {
@@ -1,6 +1,6 @@
1
1
  export const c_expandable_section_m_truncate__toggle_MarginTop: {
2
2
  "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
3
- "value": "0.25rem",
3
+ "value": "0",
4
4
  "var": "var(--pf-c-expandable-section--m-truncate__toggle--MarginTop)"
5
5
  };
6
6
  export default c_expandable_section_m_truncate__toggle_MarginTop;
@@ -1,6 +1,6 @@
1
1
  export const c_expandable_section_m_truncate__toggle_MarginTop = {
2
2
  "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
3
- "value": "0.25rem",
3
+ "value": "0",
4
4
  "var": "var(--pf-c-expandable-section--m-truncate__toggle--MarginTop)"
5
5
  };
6
6
  export default c_expandable_section_m_truncate__toggle_MarginTop;
@@ -20,6 +20,10 @@ export const c_timestamp: {
20
20
  "#6a6e73"
21
21
  ]
22
22
  },
23
+ "c_timestamp_OutlineOffset": {
24
+ "name": "--pf-c-timestamp--OutlineOffset",
25
+ "value": "0.1875rem"
26
+ },
23
27
  "c_timestamp_m_help_text_TextDecorationLine": {
24
28
  "name": "--pf-c-timestamp--m-help-text--TextDecorationLine",
25
29
  "value": "underline"
@@ -20,6 +20,10 @@ export const c_timestamp = {
20
20
  "#6a6e73"
21
21
  ]
22
22
  },
23
+ "c_timestamp_OutlineOffset": {
24
+ "name": "--pf-c-timestamp--OutlineOffset",
25
+ "value": "0.1875rem"
26
+ },
23
27
  "c_timestamp_m_help_text_TextDecorationLine": {
24
28
  "name": "--pf-c-timestamp--m-help-text--TextDecorationLine",
25
29
  "value": "underline"
@@ -0,0 +1,6 @@
1
+ export const c_timestamp_OutlineOffset: {
2
+ "name": "--pf-c-timestamp--OutlineOffset",
3
+ "value": "0.1875rem",
4
+ "var": "var(--pf-c-timestamp--OutlineOffset)"
5
+ };
6
+ export default c_timestamp_OutlineOffset;
@@ -0,0 +1,6 @@
1
+ export const c_timestamp_OutlineOffset = {
2
+ "name": "--pf-c-timestamp--OutlineOffset",
3
+ "value": "0.1875rem",
4
+ "var": "var(--pf-c-timestamp--OutlineOffset)"
5
+ };
6
+ export default c_timestamp_OutlineOffset;
@@ -453,6 +453,7 @@ export { c_title_m_md_FontWeight } from './c_title_m_md_FontWeight';
453
453
  export { c_timestamp } from './c_timestamp';
454
454
  export { c_timestamp_FontSize } from './c_timestamp_FontSize';
455
455
  export { c_timestamp_Color } from './c_timestamp_Color';
456
+ export { c_timestamp_OutlineOffset } from './c_timestamp_OutlineOffset';
456
457
  export { c_timestamp_m_help_text_TextDecorationLine } from './c_timestamp_m_help_text_TextDecorationLine';
457
458
  export { c_timestamp_m_help_text_TextDecorationStyle } from './c_timestamp_m_help_text_TextDecorationStyle';
458
459
  export { c_timestamp_m_help_text_TextDecorationThickness } from './c_timestamp_m_help_text_TextDecorationThickness';
package/dist/esm/index.js CHANGED
@@ -453,6 +453,7 @@ export { c_title_m_md_FontWeight } from './c_title_m_md_FontWeight';
453
453
  export { c_timestamp } from './c_timestamp';
454
454
  export { c_timestamp_FontSize } from './c_timestamp_FontSize';
455
455
  export { c_timestamp_Color } from './c_timestamp_Color';
456
+ export { c_timestamp_OutlineOffset } from './c_timestamp_OutlineOffset';
456
457
  export { c_timestamp_m_help_text_TextDecorationLine } from './c_timestamp_m_help_text_TextDecorationLine';
457
458
  export { c_timestamp_m_help_text_TextDecorationStyle } from './c_timestamp_m_help_text_TextDecorationStyle';
458
459
  export { c_timestamp_m_help_text_TextDecorationThickness } from './c_timestamp_m_help_text_TextDecorationThickness';
@@ -334,6 +334,10 @@ export const c_expandable_section: {
334
334
  "c_expandable_section__content_MarginTop": {
335
335
  "name": "--pf-c-expandable-section__content--MarginTop",
336
336
  "value": "0"
337
+ },
338
+ "c_expandable_section_m_truncate__toggle_MarginTop": {
339
+ "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
340
+ "value": "0"
337
341
  }
338
342
  },
339
343
  ".pf-c-expandable-section.pf-m-limit-width": {
@@ -336,6 +336,10 @@ exports.c_expandable_section = {
336
336
  "c_expandable_section__content_MarginTop": {
337
337
  "name": "--pf-c-expandable-section__content--MarginTop",
338
338
  "value": "0"
339
+ },
340
+ "c_expandable_section_m_truncate__toggle_MarginTop": {
341
+ "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
342
+ "value": "0"
339
343
  }
340
344
  },
341
345
  ".pf-c-expandable-section.pf-m-limit-width": {
@@ -1,6 +1,6 @@
1
1
  export const c_expandable_section_m_truncate__toggle_MarginTop: {
2
2
  "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
3
- "value": "0.25rem",
3
+ "value": "0",
4
4
  "var": "var(--pf-c-expandable-section--m-truncate__toggle--MarginTop)"
5
5
  };
6
6
  export default c_expandable_section_m_truncate__toggle_MarginTop;
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.c_expandable_section_m_truncate__toggle_MarginTop = {
4
4
  "name": "--pf-c-expandable-section--m-truncate__toggle--MarginTop",
5
- "value": "0.25rem",
5
+ "value": "0",
6
6
  "var": "var(--pf-c-expandable-section--m-truncate__toggle--MarginTop)"
7
7
  };
8
8
  exports["default"] = exports.c_expandable_section_m_truncate__toggle_MarginTop;
@@ -20,6 +20,10 @@ export const c_timestamp: {
20
20
  "#6a6e73"
21
21
  ]
22
22
  },
23
+ "c_timestamp_OutlineOffset": {
24
+ "name": "--pf-c-timestamp--OutlineOffset",
25
+ "value": "0.1875rem"
26
+ },
23
27
  "c_timestamp_m_help_text_TextDecorationLine": {
24
28
  "name": "--pf-c-timestamp--m-help-text--TextDecorationLine",
25
29
  "value": "underline"
@@ -22,6 +22,10 @@ exports.c_timestamp = {
22
22
  "#6a6e73"
23
23
  ]
24
24
  },
25
+ "c_timestamp_OutlineOffset": {
26
+ "name": "--pf-c-timestamp--OutlineOffset",
27
+ "value": "0.1875rem"
28
+ },
25
29
  "c_timestamp_m_help_text_TextDecorationLine": {
26
30
  "name": "--pf-c-timestamp--m-help-text--TextDecorationLine",
27
31
  "value": "underline"
@@ -0,0 +1,6 @@
1
+ export const c_timestamp_OutlineOffset: {
2
+ "name": "--pf-c-timestamp--OutlineOffset",
3
+ "value": "0.1875rem",
4
+ "var": "var(--pf-c-timestamp--OutlineOffset)"
5
+ };
6
+ export default c_timestamp_OutlineOffset;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ exports.c_timestamp_OutlineOffset = {
4
+ "name": "--pf-c-timestamp--OutlineOffset",
5
+ "value": "0.1875rem",
6
+ "var": "var(--pf-c-timestamp--OutlineOffset)"
7
+ };
8
+ exports["default"] = exports.c_timestamp_OutlineOffset;
@@ -453,6 +453,7 @@ export { c_title_m_md_FontWeight } from './c_title_m_md_FontWeight';
453
453
  export { c_timestamp } from './c_timestamp';
454
454
  export { c_timestamp_FontSize } from './c_timestamp_FontSize';
455
455
  export { c_timestamp_Color } from './c_timestamp_Color';
456
+ export { c_timestamp_OutlineOffset } from './c_timestamp_OutlineOffset';
456
457
  export { c_timestamp_m_help_text_TextDecorationLine } from './c_timestamp_m_help_text_TextDecorationLine';
457
458
  export { c_timestamp_m_help_text_TextDecorationStyle } from './c_timestamp_m_help_text_TextDecorationStyle';
458
459
  export { c_timestamp_m_help_text_TextDecorationThickness } from './c_timestamp_m_help_text_TextDecorationThickness';
package/dist/js/index.js CHANGED
@@ -458,6 +458,7 @@ __export(require('./c_title_m_md_FontWeight'));
458
458
  __export(require('./c_timestamp'));
459
459
  __export(require('./c_timestamp_FontSize'));
460
460
  __export(require('./c_timestamp_Color'));
461
+ __export(require('./c_timestamp_OutlineOffset'));
461
462
  __export(require('./c_timestamp_m_help_text_TextDecorationLine'));
462
463
  __export(require('./c_timestamp_m_help_text_TextDecorationStyle'));
463
464
  __export(require('./c_timestamp_m_help_text_TextDecorationThickness'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-tokens",
3
- "version": "4.85.0",
3
+ "version": "4.85.1",
4
4
  "description": "This library provides access to the design tokens of PatternFly 4 from JavaScript",
5
5
  "main": "dist/js/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -29,11 +29,11 @@
29
29
  "clean": "rimraf dist"
30
30
  },
31
31
  "devDependencies": {
32
- "@patternfly/patternfly": "4.209.0",
32
+ "@patternfly/patternfly": "4.210.1",
33
33
  "css": "^2.2.3",
34
34
  "fs-extra": "^6.0.1",
35
35
  "glob": "^7.1.2",
36
36
  "rimraf": "^2.6.2"
37
37
  },
38
- "gitHead": "816b8605d11e6374b6f6b4c5d6da80d43265fc70"
38
+ "gitHead": "087772914de4376ccf08cfb6d582a68660e3eced"
39
39
  }