@porsche-design-system/components-react 4.0.0-beta.3 → 4.0.0-beta.4
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 +41 -0
- package/OSS_NOTICE +1649 -5178
- package/cjs/lib/components/heading.wrapper.cjs +3 -3
- package/cjs/lib/components/text.wrapper.cjs +3 -3
- package/esm/lib/components/heading.wrapper.d.ts +21 -13
- package/esm/lib/components/heading.wrapper.mjs +3 -3
- package/esm/lib/components/text.wrapper.d.ts +21 -13
- package/esm/lib/components/text.wrapper.mjs +3 -3
- package/esm/lib/types.d.ts +19 -0
- package/global-styles/cn/index.css +154 -152
- package/global-styles/color-scheme.css +95 -95
- package/global-styles/index.css +154 -152
- package/global-styles/variables.css +59 -57
- package/package.json +2 -2
- package/ssr/cjs/components/dist/styles/esm/styles-entry.cjs +78 -199
- package/ssr/cjs/components/dist/utils/esm/utils-entry.cjs +3 -11
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/heading.wrapper.cjs +4 -4
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/text.wrapper.cjs +4 -4
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/heading.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text.cjs +1 -1
- package/ssr/esm/components/dist/styles/esm/styles-entry.mjs +78 -199
- package/ssr/esm/components/dist/utils/esm/utils-entry.mjs +3 -11
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/heading.wrapper.mjs +4 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/text.wrapper.mjs +4 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/heading.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text.mjs +1 -1
- package/ssr/esm/lib/components/heading.wrapper.d.ts +21 -13
- package/ssr/esm/lib/components/text.wrapper.d.ts +21 -13
- package/ssr/esm/lib/types.d.ts +19 -0
- package/tailwindcss/index.css +151 -154
|
@@ -6,13 +6,13 @@ var react = require('react');
|
|
|
6
6
|
var hooks = require('../../hooks.cjs');
|
|
7
7
|
var utils = require('../../utils.cjs');
|
|
8
8
|
|
|
9
|
-
const PHeading = /*#__PURE__*/ react.forwardRef(({ align = 'start', color = 'primary', ellipsis = false, size = '2xl', tag, weight = 'normal', className, ...rest }, ref) => {
|
|
9
|
+
const PHeading = /*#__PURE__*/ react.forwardRef(({ align = 'start', color = 'primary', ellipsis = false, hyphens = 'none', size = '2xl', tag, weight = 'normal', className, ...rest }, ref) => {
|
|
10
10
|
const elementRef = react.useRef(undefined);
|
|
11
11
|
const WebComponentTag = hooks.usePrefix('p-heading');
|
|
12
|
-
const propsToSync = [align, color, ellipsis, size, tag, weight];
|
|
12
|
+
const propsToSync = [align, color, ellipsis, hyphens, size, tag, weight];
|
|
13
13
|
hooks.useBrowserLayoutEffect(() => {
|
|
14
14
|
const { current } = elementRef;
|
|
15
|
-
['align', 'color', 'ellipsis', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
15
|
+
['align', 'color', 'ellipsis', 'hyphens', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
16
16
|
}, propsToSync);
|
|
17
17
|
const props = {
|
|
18
18
|
...rest,
|
|
@@ -6,13 +6,13 @@ var react = require('react');
|
|
|
6
6
|
var hooks = require('../../hooks.cjs');
|
|
7
7
|
var utils = require('../../utils.cjs');
|
|
8
8
|
|
|
9
|
-
const PText = /*#__PURE__*/ react.forwardRef(({ align = 'start', color = 'primary', ellipsis = false, size = 'sm', tag = 'p', weight = 'normal', className, ...rest }, ref) => {
|
|
9
|
+
const PText = /*#__PURE__*/ react.forwardRef(({ align = 'start', color = 'primary', ellipsis = false, hyphens = 'inherit', size = 'sm', tag = 'p', weight = 'normal', className, ...rest }, ref) => {
|
|
10
10
|
const elementRef = react.useRef(undefined);
|
|
11
11
|
const WebComponentTag = hooks.usePrefix('p-text');
|
|
12
|
-
const propsToSync = [align, color, ellipsis, size, tag, weight];
|
|
12
|
+
const propsToSync = [align, color, ellipsis, hyphens, size, tag, weight];
|
|
13
13
|
hooks.useBrowserLayoutEffect(() => {
|
|
14
14
|
const { current } = elementRef;
|
|
15
|
-
['align', 'color', 'ellipsis', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
15
|
+
['align', 'color', 'ellipsis', 'hyphens', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
16
16
|
}, propsToSync);
|
|
17
17
|
const props = {
|
|
18
18
|
...rest,
|
|
@@ -1,54 +1,62 @@
|
|
|
1
1
|
import type { BaseProps } from '../../BaseProps';
|
|
2
|
-
import type { HeadingAlign, HeadingColor, BreakpointCustomizable, HeadingSize, HeadingTag, HeadingWeight } from '../types';
|
|
2
|
+
import type { HeadingAlign, HeadingColor, HeadingHyphens, BreakpointCustomizable, HeadingSize, HeadingTag, HeadingWeight } from '../types';
|
|
3
3
|
export type PHeadingProps = BaseProps & {
|
|
4
4
|
/**
|
|
5
|
-
* Text alignment of the heading.
|
|
5
|
+
* Text alignment of the heading. Use 'start' for left-aligned text (in LTR), 'center' for centered, 'end' for right-aligned (in LTR), or 'inherit' to adopt the parent's alignment.
|
|
6
6
|
*/
|
|
7
7
|
align?: HeadingAlign;
|
|
8
8
|
/**
|
|
9
|
-
* Text color of the heading. Use 'primary' for default, 'contrast-high' / 'contrast-medium' for alternative emphasis, or 'inherit' to adopt the parent's color.
|
|
9
|
+
* Text color of the heading. Use 'primary' for default, 'contrast-higher' / 'contrast-high' / 'contrast-medium' for alternative emphasis levels, or 'inherit' to adopt the parent's color.
|
|
10
10
|
*/
|
|
11
11
|
color?: HeadingColor;
|
|
12
12
|
/**
|
|
13
|
-
* Adds an ellipsis to a single line of text if it overflows the container width.
|
|
13
|
+
* Adds an ellipsis to a single line of text if it overflows the container width. When enabled, the text is truncated to a single line with `text-overflow: ellipsis`. Cannot be combined with multi-line content.
|
|
14
14
|
*/
|
|
15
15
|
ellipsis?: boolean;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Controls the hyphenation behavior of the heading. Use 'auto' to let the browser automatically hyphenate words at appropriate points, 'manual' to only hyphenate at manually inserted hyphenation points (e.g. `­`), 'none' to disable hyphenation entirely, or 'inherit' to adopt the parent's hyphenation setting.
|
|
18
|
+
*/
|
|
19
|
+
hyphens?: HeadingHyphens;
|
|
20
|
+
/**
|
|
21
|
+
* Size of the heading. Also defines the size for specific breakpoints, like {base: "md", l: "2xl"}. You always need to provide a base value when doing this. Use 'inherit' to adopt the parent's font size.
|
|
18
22
|
*/
|
|
19
23
|
size?: BreakpointCustomizable<HeadingSize>;
|
|
20
24
|
/**
|
|
21
|
-
* Sets the HTML heading tag (h1 - h6) to ensure the correct document outline and semantic hierarchy. If not set, the tag is automatically inferred from the `size` property.
|
|
25
|
+
* Sets the HTML heading tag (h1 - h6) to ensure the correct document outline and semantic hierarchy. If not set, the tag is automatically inferred from the `size` property (e.g. '2xl' maps to 'h2', 'md' to 'h5', 'sm' to 'h6').
|
|
22
26
|
*/
|
|
23
27
|
tag?: HeadingTag;
|
|
24
28
|
/**
|
|
25
|
-
* The font weight of the heading. For `size` values of 'sm' or smaller, it's recommended to use 'semibold' for better readability.
|
|
29
|
+
* The font weight of the heading. Use 'normal' for regular weight, 'semibold' for slightly emphasized text, or 'bold' for strong emphasis. For `size` values of 'sm' or smaller, it's recommended to use 'semibold' for better readability.
|
|
26
30
|
*/
|
|
27
31
|
weight?: HeadingWeight;
|
|
28
32
|
};
|
|
29
33
|
export declare const PHeading: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
|
|
30
34
|
/**
|
|
31
|
-
* Text alignment of the heading.
|
|
35
|
+
* Text alignment of the heading. Use 'start' for left-aligned text (in LTR), 'center' for centered, 'end' for right-aligned (in LTR), or 'inherit' to adopt the parent's alignment.
|
|
32
36
|
*/
|
|
33
37
|
align?: HeadingAlign;
|
|
34
38
|
/**
|
|
35
|
-
* Text color of the heading. Use 'primary' for default, 'contrast-high' / 'contrast-medium' for alternative emphasis, or 'inherit' to adopt the parent's color.
|
|
39
|
+
* Text color of the heading. Use 'primary' for default, 'contrast-higher' / 'contrast-high' / 'contrast-medium' for alternative emphasis levels, or 'inherit' to adopt the parent's color.
|
|
36
40
|
*/
|
|
37
41
|
color?: HeadingColor;
|
|
38
42
|
/**
|
|
39
|
-
* Adds an ellipsis to a single line of text if it overflows the container width.
|
|
43
|
+
* Adds an ellipsis to a single line of text if it overflows the container width. When enabled, the text is truncated to a single line with `text-overflow: ellipsis`. Cannot be combined with multi-line content.
|
|
40
44
|
*/
|
|
41
45
|
ellipsis?: boolean;
|
|
42
46
|
/**
|
|
43
|
-
*
|
|
47
|
+
* Controls the hyphenation behavior of the heading. Use 'auto' to let the browser automatically hyphenate words at appropriate points, 'manual' to only hyphenate at manually inserted hyphenation points (e.g. `­`), 'none' to disable hyphenation entirely, or 'inherit' to adopt the parent's hyphenation setting.
|
|
48
|
+
*/
|
|
49
|
+
hyphens?: HeadingHyphens;
|
|
50
|
+
/**
|
|
51
|
+
* Size of the heading. Also defines the size for specific breakpoints, like {base: "md", l: "2xl"}. You always need to provide a base value when doing this. Use 'inherit' to adopt the parent's font size.
|
|
44
52
|
*/
|
|
45
53
|
size?: BreakpointCustomizable<HeadingSize>;
|
|
46
54
|
/**
|
|
47
|
-
* Sets the HTML heading tag (h1 - h6) to ensure the correct document outline and semantic hierarchy. If not set, the tag is automatically inferred from the `size` property.
|
|
55
|
+
* Sets the HTML heading tag (h1 - h6) to ensure the correct document outline and semantic hierarchy. If not set, the tag is automatically inferred from the `size` property (e.g. '2xl' maps to 'h2', 'md' to 'h5', 'sm' to 'h6').
|
|
48
56
|
*/
|
|
49
57
|
tag?: HeadingTag;
|
|
50
58
|
/**
|
|
51
|
-
* The font weight of the heading. For `size` values of 'sm' or smaller, it's recommended to use 'semibold' for better readability.
|
|
59
|
+
* The font weight of the heading. Use 'normal' for regular weight, 'semibold' for slightly emphasized text, or 'bold' for strong emphasis. For `size` values of 'sm' or smaller, it's recommended to use 'semibold' for better readability.
|
|
52
60
|
*/
|
|
53
61
|
weight?: HeadingWeight;
|
|
54
62
|
} & {
|
|
@@ -4,13 +4,13 @@ import { forwardRef, useRef } from 'react';
|
|
|
4
4
|
import { usePrefix, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
|
|
5
5
|
import { syncRef } from '../../utils.mjs';
|
|
6
6
|
|
|
7
|
-
const PHeading = /*#__PURE__*/ forwardRef(({ align = 'start', color = 'primary', ellipsis = false, size = '2xl', tag, weight = 'normal', className, ...rest }, ref) => {
|
|
7
|
+
const PHeading = /*#__PURE__*/ forwardRef(({ align = 'start', color = 'primary', ellipsis = false, hyphens = 'none', size = '2xl', tag, weight = 'normal', className, ...rest }, ref) => {
|
|
8
8
|
const elementRef = useRef(undefined);
|
|
9
9
|
const WebComponentTag = usePrefix('p-heading');
|
|
10
|
-
const propsToSync = [align, color, ellipsis, size, tag, weight];
|
|
10
|
+
const propsToSync = [align, color, ellipsis, hyphens, size, tag, weight];
|
|
11
11
|
useBrowserLayoutEffect(() => {
|
|
12
12
|
const { current } = elementRef;
|
|
13
|
-
['align', 'color', 'ellipsis', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
13
|
+
['align', 'color', 'ellipsis', 'hyphens', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
14
14
|
}, propsToSync);
|
|
15
15
|
const props = {
|
|
16
16
|
...rest,
|
|
@@ -1,54 +1,62 @@
|
|
|
1
1
|
import type { BaseProps } from '../../BaseProps';
|
|
2
|
-
import type { TextAlign, TextColor, BreakpointCustomizable, TextSize, TextTag, TextWeight } from '../types';
|
|
2
|
+
import type { TextAlign, TextColor, TextHyphens, BreakpointCustomizable, TextSize, TextTag, TextWeight } from '../types';
|
|
3
3
|
export type PTextProps = BaseProps & {
|
|
4
4
|
/**
|
|
5
|
-
* Text alignment of the text.
|
|
5
|
+
* Text alignment of the text. Use 'start' for left-aligned text (in LTR), 'center' for centered, 'end' for right-aligned (in LTR), or 'inherit' to adopt the parent's alignment.
|
|
6
6
|
*/
|
|
7
7
|
align?: TextAlign;
|
|
8
8
|
/**
|
|
9
|
-
* Text color of the text. Use 'primary' for default, 'contrast-high' / 'contrast-medium' for alternative emphasis, 'success' / 'warning' / 'error' / 'info' for status messages, or 'inherit' to adopt the parent's color.
|
|
9
|
+
* Text color of the text. Use 'primary' for default, 'contrast-higher' / 'contrast-high' / 'contrast-medium' for alternative emphasis levels, 'success' / 'warning' / 'error' / 'info' for status messages, or 'inherit' to adopt the parent's color.
|
|
10
10
|
*/
|
|
11
11
|
color?: TextColor;
|
|
12
12
|
/**
|
|
13
|
-
* Adds an ellipsis to a single line of text if it overflows the container width.
|
|
13
|
+
* Adds an ellipsis to a single line of text if it overflows the container width. When enabled, the text is truncated to a single line with `text-overflow: ellipsis`. Cannot be combined with multi-line content.
|
|
14
14
|
*/
|
|
15
15
|
ellipsis?: boolean;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Controls the hyphenation behavior of the text. Use 'auto' to let the browser automatically hyphenate words at appropriate points, 'manual' to only hyphenate at manually inserted hyphenation points (e.g. `­`), 'none' to disable hyphenation entirely, or 'inherit' to adopt the parent's hyphenation setting.
|
|
18
|
+
*/
|
|
19
|
+
hyphens?: TextHyphens;
|
|
20
|
+
/**
|
|
21
|
+
* Size of the text. Also defines the size for specific breakpoints, like {base: "sm", l: "md"}. You always need to provide a base value when doing this. Use 'inherit' to adopt the parent's font size.
|
|
18
22
|
*/
|
|
19
23
|
size?: BreakpointCustomizable<TextSize>;
|
|
20
24
|
/**
|
|
21
|
-
* Sets the HTML tag of the rendered element to ensure correct semantic meaning (e.g. 'p' for paragraphs, 'blockquote' for quotes).
|
|
25
|
+
* Sets the HTML tag of the rendered element to ensure correct semantic meaning (e.g. 'p' for paragraphs, 'blockquote' for quotes, 'time' for dates).
|
|
22
26
|
*/
|
|
23
27
|
tag?: TextTag;
|
|
24
28
|
/**
|
|
25
|
-
* The font weight of the text.
|
|
29
|
+
* The font weight of the text. Use 'normal' for regular body text, 'semibold' for slightly emphasized text, or 'bold' for strong emphasis.
|
|
26
30
|
*/
|
|
27
31
|
weight?: TextWeight;
|
|
28
32
|
};
|
|
29
33
|
export declare const PText: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
|
|
30
34
|
/**
|
|
31
|
-
* Text alignment of the text.
|
|
35
|
+
* Text alignment of the text. Use 'start' for left-aligned text (in LTR), 'center' for centered, 'end' for right-aligned (in LTR), or 'inherit' to adopt the parent's alignment.
|
|
32
36
|
*/
|
|
33
37
|
align?: TextAlign;
|
|
34
38
|
/**
|
|
35
|
-
* Text color of the text. Use 'primary' for default, 'contrast-high' / 'contrast-medium' for alternative emphasis, 'success' / 'warning' / 'error' / 'info' for status messages, or 'inherit' to adopt the parent's color.
|
|
39
|
+
* Text color of the text. Use 'primary' for default, 'contrast-higher' / 'contrast-high' / 'contrast-medium' for alternative emphasis levels, 'success' / 'warning' / 'error' / 'info' for status messages, or 'inherit' to adopt the parent's color.
|
|
36
40
|
*/
|
|
37
41
|
color?: TextColor;
|
|
38
42
|
/**
|
|
39
|
-
* Adds an ellipsis to a single line of text if it overflows the container width.
|
|
43
|
+
* Adds an ellipsis to a single line of text if it overflows the container width. When enabled, the text is truncated to a single line with `text-overflow: ellipsis`. Cannot be combined with multi-line content.
|
|
40
44
|
*/
|
|
41
45
|
ellipsis?: boolean;
|
|
42
46
|
/**
|
|
43
|
-
*
|
|
47
|
+
* Controls the hyphenation behavior of the text. Use 'auto' to let the browser automatically hyphenate words at appropriate points, 'manual' to only hyphenate at manually inserted hyphenation points (e.g. `­`), 'none' to disable hyphenation entirely, or 'inherit' to adopt the parent's hyphenation setting.
|
|
48
|
+
*/
|
|
49
|
+
hyphens?: TextHyphens;
|
|
50
|
+
/**
|
|
51
|
+
* Size of the text. Also defines the size for specific breakpoints, like {base: "sm", l: "md"}. You always need to provide a base value when doing this. Use 'inherit' to adopt the parent's font size.
|
|
44
52
|
*/
|
|
45
53
|
size?: BreakpointCustomizable<TextSize>;
|
|
46
54
|
/**
|
|
47
|
-
* Sets the HTML tag of the rendered element to ensure correct semantic meaning (e.g. 'p' for paragraphs, 'blockquote' for quotes).
|
|
55
|
+
* Sets the HTML tag of the rendered element to ensure correct semantic meaning (e.g. 'p' for paragraphs, 'blockquote' for quotes, 'time' for dates).
|
|
48
56
|
*/
|
|
49
57
|
tag?: TextTag;
|
|
50
58
|
/**
|
|
51
|
-
* The font weight of the text.
|
|
59
|
+
* The font weight of the text. Use 'normal' for regular body text, 'semibold' for slightly emphasized text, or 'bold' for strong emphasis.
|
|
52
60
|
*/
|
|
53
61
|
weight?: TextWeight;
|
|
54
62
|
} & {
|
|
@@ -4,13 +4,13 @@ import { forwardRef, useRef } from 'react';
|
|
|
4
4
|
import { usePrefix, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
|
|
5
5
|
import { syncRef } from '../../utils.mjs';
|
|
6
6
|
|
|
7
|
-
const PText = /*#__PURE__*/ forwardRef(({ align = 'start', color = 'primary', ellipsis = false, size = 'sm', tag = 'p', weight = 'normal', className, ...rest }, ref) => {
|
|
7
|
+
const PText = /*#__PURE__*/ forwardRef(({ align = 'start', color = 'primary', ellipsis = false, hyphens = 'inherit', size = 'sm', tag = 'p', weight = 'normal', className, ...rest }, ref) => {
|
|
8
8
|
const elementRef = useRef(undefined);
|
|
9
9
|
const WebComponentTag = usePrefix('p-text');
|
|
10
|
-
const propsToSync = [align, color, ellipsis, size, tag, weight];
|
|
10
|
+
const propsToSync = [align, color, ellipsis, hyphens, size, tag, weight];
|
|
11
11
|
useBrowserLayoutEffect(() => {
|
|
12
12
|
const { current } = elementRef;
|
|
13
|
-
['align', 'color', 'ellipsis', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
13
|
+
['align', 'color', 'ellipsis', 'hyphens', 'size', 'tag', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
14
14
|
}, propsToSync);
|
|
15
15
|
const props = {
|
|
16
16
|
...rest,
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -271,6 +271,8 @@ declare const ICON_NAMES: readonly [
|
|
|
271
271
|
"arrow-double-right",
|
|
272
272
|
"arrow-double-up",
|
|
273
273
|
"arrow-down",
|
|
274
|
+
"arrow-down-left",
|
|
275
|
+
"arrow-down-right",
|
|
274
276
|
"arrow-first",
|
|
275
277
|
"arrow-head-down",
|
|
276
278
|
"arrow-head-left",
|
|
@@ -280,6 +282,8 @@ declare const ICON_NAMES: readonly [
|
|
|
280
282
|
"arrow-left",
|
|
281
283
|
"arrow-right",
|
|
282
284
|
"arrow-up",
|
|
285
|
+
"arrow-up-left",
|
|
286
|
+
"arrow-up-right",
|
|
283
287
|
"arrows",
|
|
284
288
|
"attachment",
|
|
285
289
|
"augmented-reality",
|
|
@@ -449,6 +453,7 @@ declare const ICON_NAMES: readonly [
|
|
|
449
453
|
"pin-filled",
|
|
450
454
|
"pivot",
|
|
451
455
|
"play",
|
|
456
|
+
"play-filled",
|
|
452
457
|
"plug",
|
|
453
458
|
"plus",
|
|
454
459
|
"preheating",
|
|
@@ -1040,6 +1045,13 @@ declare const HEADING_SIZES: readonly [
|
|
|
1040
1045
|
"xx-large"
|
|
1041
1046
|
];
|
|
1042
1047
|
export type HeadingSize = (typeof HEADING_SIZES)[number];
|
|
1048
|
+
declare const HEADING_HYPHENS: readonly [
|
|
1049
|
+
"none",
|
|
1050
|
+
"manual",
|
|
1051
|
+
"auto",
|
|
1052
|
+
"inherit"
|
|
1053
|
+
];
|
|
1054
|
+
export type HeadingHyphens = (typeof HEADING_HYPHENS)[number];
|
|
1043
1055
|
declare const ICON_ARIA_ATTRIBUTES: readonly [
|
|
1044
1056
|
"aria-label"
|
|
1045
1057
|
];
|
|
@@ -1540,6 +1552,13 @@ declare const TEXT_SIZES: readonly [
|
|
|
1540
1552
|
"x-large"
|
|
1541
1553
|
];
|
|
1542
1554
|
export type TextSize = (typeof TEXT_SIZES)[number];
|
|
1555
|
+
declare const TEXT_HYPHENS: readonly [
|
|
1556
|
+
"none",
|
|
1557
|
+
"manual",
|
|
1558
|
+
"auto",
|
|
1559
|
+
"inherit"
|
|
1560
|
+
];
|
|
1561
|
+
export type TextHyphens = (typeof TEXT_HYPHENS)[number];
|
|
1543
1562
|
declare const TEXT_LIST_TYPES: readonly [
|
|
1544
1563
|
"unordered",
|
|
1545
1564
|
"numbered",
|