@patternfly/design-tokens 1.14.4 → 1.14.5

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--chart--global--BorderWidth--lg: 8;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--chart--global--BorderWidth--lg: 8;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000);
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--global--background--color--500: rgba(21, 21, 21, 0.2000);
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000);
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--global--background--color--500: rgba(21, 21, 21, 0.2000);
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 10 Nov 2025 16:54:18 GMT
3
+ // Generated on Fri, 14 Nov 2025 21:52:30 GMT
4
4
 
5
5
  :root {
6
6
  --pf-t--color--black: #000000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/design-tokens",
3
- "version": "1.14.4",
3
+ "version": "1.14.5",
4
4
  "description": "Define the design tokens for patternfly design system and component library",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -13,7 +13,7 @@ module.exports = {
13
13
  prefix: 'http://localhost:5000',
14
14
  waitFor,
15
15
  crawl: false,
16
- urls: ['/','/tokens/all-patternfly-tokens'],
16
+ urls: ['/','/foundations-and-styles/design-tokens/all-design-tokens'],
17
17
  ignoreRules: [
18
18
  'color-contrast',
19
19
  'landmark-no-duplicate-main',
@@ -1,6 +1,7 @@
1
1
  ---
2
- section: tokens
3
- id: All PatternFly tokens
2
+ section: foundations-and-styles
3
+ subsection: design-tokens
4
+ id: All design tokens
4
5
  ---
5
6
 
6
7
  import * as defaultTokens from './token-layers-default.json';
@@ -184,7 +184,7 @@ const TokensTableBody = ({ token, expandedTokens, setExpanded, isSemanticLayer,
184
184
  return (
185
185
  <Tbody isExpanded={isTokenExpanded}>
186
186
  <Tr>
187
- {/* Expandable row icon */}
187
+ {/* Expandable Row icon */}
188
188
  <Td
189
189
  expand={
190
190
  isExpandable && {
@@ -0,0 +1,39 @@
1
+ import React from 'react';
2
+ import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components';
3
+ import * as defaultTokens from '../../../content/./token-layers-default.json';
4
+ import * as darkTokens from '../../../content/./token-layers-dark.json';
5
+ import { TokensTable } from '../../../content/./tokensTable.js';
6
+ const pageData = {
7
+ "id": "All design tokens",
8
+ "section": "design-tokens",
9
+ "subsection": "",
10
+ "deprecated": false,
11
+ "template": false,
12
+ "beta": false,
13
+ "demo": false,
14
+ "newImplementationLink": false,
15
+ "source": "design-tokens",
16
+ "tabName": null,
17
+ "slug": "/design-tokens/all-design-tokens/design-tokens",
18
+ "sourceLink": "https://github.com/patternfly/patternfly-org/blob/main/packages/module/patternfly-docs/content/all-patternfly-tokens.md",
19
+ "relPath": "packages/module/patternfly-docs/content/all-patternfly-tokens.md"
20
+ };
21
+ pageData.liveContext = {
22
+ defaultTokens,
23
+ darkTokens,
24
+ TokensTable
25
+ };
26
+ pageData.relativeImports = "import * as defaultTokens from 'content/./token-layers-default.json';,import * as darkTokens from 'content/./token-layers-dark.json';,import { TokensTable } from 'content/./tokensTable.js';"
27
+ pageData.examples = {
28
+
29
+ };
30
+
31
+ const Component = () => (
32
+ <React.Fragment>
33
+ <TokensTable tokenJson={{default: defaultTokens, dark: darkTokens}}/>
34
+ </React.Fragment>
35
+ );
36
+ Component.displayName = 'DesignTokensAllDesignTokensDesignTokensDocs';
37
+ Component.pageData = pageData;
38
+
39
+ export default Component;
@@ -0,0 +1,39 @@
1
+ import React from 'react';
2
+ import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components';
3
+ import * as defaultTokens from '../../../content/./token-layers-default.json';
4
+ import * as darkTokens from '../../../content/./token-layers-dark.json';
5
+ import { TokensTable } from '../../../content/./tokensTable.js';
6
+ const pageData = {
7
+ "id": "All PatternFly tokens",
8
+ "section": "design-tokens",
9
+ "subsection": "",
10
+ "deprecated": false,
11
+ "template": false,
12
+ "beta": false,
13
+ "demo": false,
14
+ "newImplementationLink": false,
15
+ "source": "design-tokens",
16
+ "tabName": null,
17
+ "slug": "/design-tokens/all-patternfly-tokens/design-tokens",
18
+ "sourceLink": "https://github.com/patternfly/patternfly-org/blob/main/packages/module/patternfly-docs/content/all-patternfly-tokens.md",
19
+ "relPath": "packages/module/patternfly-docs/content/all-patternfly-tokens.md"
20
+ };
21
+ pageData.liveContext = {
22
+ defaultTokens,
23
+ darkTokens,
24
+ TokensTable
25
+ };
26
+ pageData.relativeImports = "import * as defaultTokens from 'content/./token-layers-default.json';,import * as darkTokens from 'content/./token-layers-dark.json';,import { TokensTable } from 'content/./tokensTable.js';"
27
+ pageData.examples = {
28
+
29
+ };
30
+
31
+ const Component = () => (
32
+ <React.Fragment>
33
+ <TokensTable tokenJson={{default: defaultTokens, dark: darkTokens}}/>
34
+ </React.Fragment>
35
+ );
36
+ Component.displayName = 'DesignTokensAllPatternflyTokensDesignTokensDocs';
37
+ Component.pageData = pageData;
38
+
39
+ export default Component;
@@ -0,0 +1,39 @@
1
+ import React from 'react';
2
+ import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components';
3
+ import * as defaultTokens from '../../../../content/./token-layers-default.json';
4
+ import * as darkTokens from '../../../../content/./token-layers-dark.json';
5
+ import { TokensTable } from '../../../../content/./tokensTable.js';
6
+ const pageData = {
7
+ "id": "All design tokens",
8
+ "section": "foundations-and-styles",
9
+ "subsection": "design-tokens",
10
+ "deprecated": false,
11
+ "template": false,
12
+ "beta": false,
13
+ "demo": false,
14
+ "newImplementationLink": false,
15
+ "source": "design-tokens",
16
+ "tabName": null,
17
+ "slug": "/foundations-and-styles/design-tokens/all-design-tokens/design-tokens",
18
+ "sourceLink": "https://github.com/patternfly/patternfly-org/blob/main/packages/module/patternfly-docs/content/all-patternfly-tokens.md",
19
+ "relPath": "packages/module/patternfly-docs/content/all-patternfly-tokens.md"
20
+ };
21
+ pageData.liveContext = {
22
+ defaultTokens,
23
+ darkTokens,
24
+ TokensTable
25
+ };
26
+ pageData.relativeImports = "import * as defaultTokens from 'content/./token-layers-default.json';,import * as darkTokens from 'content/./token-layers-dark.json';,import { TokensTable } from 'content/./tokensTable.js';"
27
+ pageData.examples = {
28
+
29
+ };
30
+
31
+ const Component = () => (
32
+ <React.Fragment>
33
+ <TokensTable tokenJson={{default: defaultTokens, dark: darkTokens}}/>
34
+ </React.Fragment>
35
+ );
36
+ Component.displayName = 'FoundationsAndStylesDesignTokensAllDesignTokensDesignTokensDocs';
37
+ Component.pageData = pageData;
38
+
39
+ export default Component;
@@ -1,12 +1,12 @@
1
1
  module.exports = {
2
- '/tokens/all-patternfly-tokens/tokens': {
3
- id: "All PatternFly tokens",
4
- title: "All PatternFly tokens",
2
+ '/foundations-and-styles/design-tokens/all-design-tokens/design-tokens': {
3
+ id: "All design tokens",
4
+ title: "All design tokens",
5
5
  toc: [],
6
- section: "tokens",
7
- subsection: "",
8
- source: "tokens",
6
+ section: "foundations-and-styles",
7
+ subsection: "design-tokens",
8
+ source: "design-tokens",
9
9
  tabName: null,
10
- Component: () => import(/* webpackChunkName: "tokens/all-patternfly-tokens/tokens/index" */ './tokens/all-patternfly-tokens/tokens')
10
+ Component: () => import(/* webpackChunkName: "foundations-and-styles/design-tokens/all-design-tokens/design-tokens/index" */ './foundations-and-styles/design-tokens/all-design-tokens/design-tokens')
11
11
  }
12
12
  };
@@ -1,6 +1,6 @@
1
1
  // This module is shared between NodeJS and babelled ES5
2
2
  module.exports = {
3
- sideNavItems: [{ section: 'tokens' }],
3
+ sideNavItems: [{ section: 'foundations-and-styles' }],
4
4
  topNavItems: [],
5
5
  port: 8006
6
6
  };
@@ -4,7 +4,7 @@ module.exports = (sourceMD) => {
4
4
 
5
5
  // Parse md files
6
6
  const contentBase = path.join(__dirname, './content');
7
- sourceMD(path.join(contentBase, '/*.md'), 'tokens');
7
+ sourceMD(path.join(contentBase, '/*.md'), 'design-tokens');
8
8
 
9
9
  /**
10
10
  If you want to parse content from node_modules instead of providing a relative/absolute path,