@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
|
@@ -58,7 +58,7 @@ const fontSizeTextSmall = typescaleSm$1;
|
|
|
58
58
|
/** @deprecated since v4.0.0, will be removed with next major release. Use typescaleXl instead. */
|
|
59
59
|
const fontSizeTextXLarge = typescaleXl$1;
|
|
60
60
|
|
|
61
|
-
const typescaleXs$2 = '
|
|
61
|
+
const typescaleXs$2 = '.875rem';
|
|
62
62
|
|
|
63
63
|
/** @deprecated since v4.0.0, will be removed with next major release. Use typescaleXs instead. */
|
|
64
64
|
const fontSizeTextXSmall = typescaleXs$2;
|
|
@@ -94,12 +94,6 @@ const fontWeightSemibold$1 = 600;
|
|
|
94
94
|
/** @deprecated since v4.0.0, will be removed with next major release. Use fontWeightSemibold instead. */
|
|
95
95
|
const fontWeightSemiBold = fontWeightSemibold$1;
|
|
96
96
|
|
|
97
|
-
const fontHyphenationStyle = {
|
|
98
|
-
overflowWrap: 'break-word',
|
|
99
|
-
// @ts-ignore
|
|
100
|
-
hyphens: 'var(--p-hyphens, auto)',
|
|
101
|
-
};
|
|
102
|
-
|
|
103
97
|
const gradientStopsFadeDark = 'hsla(0,0%,0%,.8) 0%,' +
|
|
104
98
|
'hsla(0,0%,0%,.8) 8.1%,' +
|
|
105
99
|
'hsla(0,0%,0%,.8) 15.5%,' +
|
|
@@ -338,30 +332,25 @@ const _textFontPartB = `/${fontLineHeight} ${fontFamily}`;
|
|
|
338
332
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseText2Xs instead. */
|
|
339
333
|
const textXXSmallStyle = {
|
|
340
334
|
font: `${_textFontPartA}${fontSizeTextXXSmall}${_textFontPartB}`,
|
|
341
|
-
...fontHyphenationStyle,
|
|
342
335
|
};
|
|
343
336
|
|
|
344
337
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextXs instead. */
|
|
345
338
|
const textXSmallStyle = {
|
|
346
339
|
font: `${_textFontPartA}${fontSizeTextXSmall}${_textFontPartB}`,
|
|
347
|
-
...fontHyphenationStyle,
|
|
348
340
|
};
|
|
349
341
|
|
|
350
342
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextSm instead. */
|
|
351
343
|
const textSmallStyle = {
|
|
352
344
|
font: `${_textFontPartA}${fontSizeTextSmall}${_textFontPartB}`,
|
|
353
|
-
...fontHyphenationStyle,
|
|
354
345
|
};
|
|
355
346
|
|
|
356
347
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextMd instead. */
|
|
357
348
|
const textMediumStyle = {
|
|
358
349
|
font: `${_textFontPartA}${fontSizeTextMedium}${_textFontPartB}`,
|
|
359
|
-
...fontHyphenationStyle,
|
|
360
350
|
};
|
|
361
351
|
|
|
362
352
|
const proseTextSmStyle = {
|
|
363
353
|
font: `normal normal ${fontWeightNormal$1} ${typescaleSm$1} / ${leadingNormal$1} ${fontPorscheNext$1}`,
|
|
364
|
-
...fontHyphenationStyle,
|
|
365
354
|
};
|
|
366
355
|
|
|
367
356
|
const alphaDisabled = 0.4;
|
|
@@ -422,11 +411,13 @@ const colorErrorFrosted = 'var(--p-color-error-frosted)';
|
|
|
422
411
|
|
|
423
412
|
const colorErrorFrostedSoft = 'var(--p-color-error-frosted-soft)';
|
|
424
413
|
|
|
414
|
+
const colorErrorMedium = 'var(--p-color-error-medium)';
|
|
415
|
+
|
|
425
416
|
const colorInfo = 'var(--p-color-info)';
|
|
426
417
|
|
|
427
418
|
const colorInfoFrosted = 'var(--p-color-info-frosted)';
|
|
428
419
|
|
|
429
|
-
const
|
|
420
|
+
const colorInfoMedium = 'var(--p-color-info-medium)';
|
|
430
421
|
|
|
431
422
|
const colorSuccess = 'var(--p-color-success)';
|
|
432
423
|
|
|
@@ -436,11 +427,13 @@ const colorSuccessFrostedSoft = 'var(--p-color-success-frosted-soft)';
|
|
|
436
427
|
|
|
437
428
|
const colorSuccessLow = 'var(--p-color-success-low)';
|
|
438
429
|
|
|
430
|
+
const colorSuccessMedium = 'var(--p-color-success-medium)';
|
|
431
|
+
|
|
439
432
|
const colorWarning = 'var(--p-color-warning)';
|
|
440
433
|
|
|
441
434
|
const colorWarningFrosted = 'var(--p-color-warning-frosted)';
|
|
442
435
|
|
|
443
|
-
const
|
|
436
|
+
const colorWarningMedium = 'var(--p-color-warning-medium)';
|
|
444
437
|
|
|
445
438
|
const fontPorscheNext = 'var(--p-font-porsche-next)';
|
|
446
439
|
|
|
@@ -3912,7 +3905,7 @@ const OPTION_LIST_SAFE_ZONE = 6;
|
|
|
3912
3905
|
|
|
3913
3906
|
const getCDNBaseURL = () => global.PORSCHE_DESIGN_SYSTEM_CDN_URL + "/porsche-design-system";
|
|
3914
3907
|
|
|
3915
|
-
const prefix = `[Porsche Design System v${"4.0.0-beta.
|
|
3908
|
+
const prefix = `[Porsche Design System v${"4.0.0-beta.4"}]` // this part isn't covered by unit tests
|
|
3916
3909
|
;
|
|
3917
3910
|
const consoleError = (...messages) => {
|
|
3918
3911
|
console.error(prefix, ...messages);
|
|
@@ -4036,10 +4029,6 @@ const cssVarPaddingInline$1 = '--p-accordion-px';
|
|
|
4036
4029
|
* @css-variable {"name": "--p-accordion-py", "description": "Vertical padding of the accordion.", "defaultValue": "16px"}
|
|
4037
4030
|
*/
|
|
4038
4031
|
const cssVarPaddingBlock = '--p-accordion-py';
|
|
4039
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4040
|
-
/**
|
|
4041
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4042
|
-
*/
|
|
4043
4032
|
const iconMarker = getInlineSVGBackgroundImage(`<path d="m12 15.125h-.001l-.005-.006-6.494-5.476.642-.768 5.858 4.94 5.858-4.94.642.769-6.497 5.477z"/>`);
|
|
4044
4033
|
const backgroundMap$1 = {
|
|
4045
4034
|
canvas: colorCanvas,
|
|
@@ -4451,10 +4440,6 @@ const getFunctionalComponentLoadingMessageStyles = () => {
|
|
|
4451
4440
|
};
|
|
4452
4441
|
};
|
|
4453
4442
|
|
|
4454
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4455
|
-
/**
|
|
4456
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4457
|
-
*/
|
|
4458
4443
|
const getComponentCss$17 = (icon, iconSource, active, isDisabled, isLoading, isDisabledOrLoading, stretch, size, color, hideLabel, alignLabel, underline) => {
|
|
4459
4444
|
const hasIcon = hasVisibleIcon(icon, iconSource);
|
|
4460
4445
|
return getCss(mergeDeep(getLinkButtonPureStyles(icon, iconSource, active, isDisabledOrLoading, stretch, size, color, hideLabel, alignLabel, underline, false), {
|
|
@@ -4482,10 +4467,6 @@ const getComponentCss$17 = (icon, iconSource, active, isDisabled, isLoading, isD
|
|
|
4482
4467
|
}));
|
|
4483
4468
|
};
|
|
4484
4469
|
|
|
4485
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4486
|
-
/**
|
|
4487
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4488
|
-
*/
|
|
4489
4470
|
const getComponentCss$16 = (isDisabledOrLoading, aspectRatio, size, weight, align, compact, hasGradient, hasFooterSlot, isDisabled) => {
|
|
4490
4471
|
const isTopAligned = align === 'top';
|
|
4491
4472
|
return getCss({
|
|
@@ -4724,10 +4705,6 @@ const getLinkButtonStyles = (icon, iconSource, variant, hideLabel, isDisabledOrL
|
|
|
4724
4705
|
};
|
|
4725
4706
|
|
|
4726
4707
|
const cssVariableInternalButtonScaling = '--p-internal-button-scaling';
|
|
4727
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4728
|
-
/**
|
|
4729
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4730
|
-
*/
|
|
4731
4708
|
const getComponentCss$15 = (icon, iconSource, variant, hideLabel, isDisabled, isLoading, isCompact) => {
|
|
4732
4709
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
4733
4710
|
return getCss(mergeDeep(getLinkButtonStyles(icon, iconSource, variant, hideLabel, disabledOrLoading, false, isCompact, cssVariableInternalButtonScaling), {
|
|
@@ -4783,9 +4760,9 @@ const getComponentCss$15 = (icon, iconSource, variant, hideLabel, isDisabled, is
|
|
|
4783
4760
|
const palette = {
|
|
4784
4761
|
dark: {
|
|
4785
4762
|
grey: {
|
|
4786
|
-
'950': 'hsl(225
|
|
4787
|
-
'100a': '
|
|
4788
|
-
'200a': '
|
|
4763
|
+
'950': 'hsl(225 100% 99%)',
|
|
4764
|
+
'100a': 'hsl(240 3.7% 26.5% / 0.154)',
|
|
4765
|
+
'200a': 'hsl(240 2% 43% / 0.228)'},
|
|
4789
4766
|
},
|
|
4790
4767
|
};
|
|
4791
4768
|
|
|
@@ -4795,7 +4772,7 @@ const colorFrostedSoftDark = palette.dark.grey['100a'];
|
|
|
4795
4772
|
|
|
4796
4773
|
const colorPrimaryDark = palette.dark.grey["950"];
|
|
4797
4774
|
|
|
4798
|
-
const typescaleXs = '
|
|
4775
|
+
const typescaleXs = '.875rem';
|
|
4799
4776
|
|
|
4800
4777
|
const spacingStaticSm = '8px';
|
|
4801
4778
|
|
|
@@ -5024,7 +5001,7 @@ const getComponentCss$14 = (isSidebarStartOpen, isSidebarEndOpen, background) =>
|
|
|
5024
5001
|
},
|
|
5025
5002
|
},
|
|
5026
5003
|
main: {
|
|
5027
|
-
zIndex:
|
|
5004
|
+
zIndex: 2,
|
|
5028
5005
|
gridArea: 'main',
|
|
5029
5006
|
padding: spacingBase,
|
|
5030
5007
|
},
|
|
@@ -5046,7 +5023,7 @@ const getComponentCss$14 = (isSidebarStartOpen, isSidebarEndOpen, background) =>
|
|
|
5046
5023
|
},
|
|
5047
5024
|
},
|
|
5048
5025
|
sidebar: {
|
|
5049
|
-
zIndex:
|
|
5026
|
+
zIndex: 3,
|
|
5050
5027
|
position: 'sticky',
|
|
5051
5028
|
top: 0,
|
|
5052
5029
|
height: '100dvh', // transitions between svh (viewport when Safari's address bar and bottom bar are visible (~60-90px less)) and lvh (viewport when Safari's UI is completely hidden (maximum space)) as you scroll (causes reflows)
|
|
@@ -5158,10 +5135,6 @@ const backfaceVisibilityJssStyle = {
|
|
|
5158
5135
|
WebkitBackfaceVisibility: 'hidden',
|
|
5159
5136
|
};
|
|
5160
5137
|
const gradientMask = `linear-gradient(90deg,transparent 20%,#000 var(${cssVariableGradientColorWidth},33%) calc(100% - var(${cssVariableGradientColorWidth},33%)),transparent 80%)`;
|
|
5161
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
5162
|
-
/**
|
|
5163
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
5164
|
-
*/
|
|
5165
5138
|
const getComponentCss$13 = (gradient, hasHeading, hasDescription, hasControlsSlot, headingSize, width, hasPagination, isInfinitePagination, alignHeader, hasNavigation, alignControls) => {
|
|
5166
5139
|
const isHeaderAlignCenter = alignHeader === 'center';
|
|
5167
5140
|
return getCss({
|
|
@@ -5416,6 +5389,11 @@ const colorBackgroundMap$1 = {
|
|
|
5416
5389
|
error: colorErrorFrostedSoft,
|
|
5417
5390
|
none: colorFrosted,
|
|
5418
5391
|
};
|
|
5392
|
+
const colorBackgroundHoverMap$1 = {
|
|
5393
|
+
success: colorSuccessMedium,
|
|
5394
|
+
error: colorErrorMedium,
|
|
5395
|
+
none: colorContrastHigh,
|
|
5396
|
+
};
|
|
5419
5397
|
const colorBorderMap = {
|
|
5420
5398
|
success: colorSuccess,
|
|
5421
5399
|
error: colorError,
|
|
@@ -5434,6 +5412,7 @@ const colorMap$2 = {
|
|
|
5434
5412
|
const getThemedFormStateColors = (state) => {
|
|
5435
5413
|
return {
|
|
5436
5414
|
formStateBackgroundColor: colorBackgroundMap$1[state],
|
|
5415
|
+
formStateBackgroundHoverColor: colorBackgroundHoverMap$1[state],
|
|
5437
5416
|
formStateBorderColor: colorBorderMap[state],
|
|
5438
5417
|
formStateBorderHoverColor: colorBorderHoverMap[state],
|
|
5439
5418
|
formStateColor: colorMap$2[state],
|
|
@@ -5452,7 +5431,7 @@ const cssVarCheckboxIconColor = '--p-checkbox-icon-color';
|
|
|
5452
5431
|
const cssVarInternalCheckboxScaling = '--__p-checkbox-scaling';
|
|
5453
5432
|
|
|
5454
5433
|
const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
5455
|
-
const { formStateBackgroundColor, formStateBorderColor } = getThemedFormStateColors(state);
|
|
5434
|
+
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
5456
5435
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
5457
5436
|
const checkboxBorderWidth = borderWidthThin;
|
|
5458
5437
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
@@ -5477,6 +5456,11 @@ const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
|
5477
5456
|
...(disabledOrLoading && {
|
|
5478
5457
|
pointerEvents: 'none', // to prevent form element becomes clickable/toggleable
|
|
5479
5458
|
}),
|
|
5459
|
+
...hoverMediaQuery({
|
|
5460
|
+
'&:hover': {
|
|
5461
|
+
borderColor: `var(${cssVarCheckboxBorderColor}, ${formStateBorderHoverColor})`,
|
|
5462
|
+
},
|
|
5463
|
+
}),
|
|
5480
5464
|
'&::before': {
|
|
5481
5465
|
// This pseudo-element is used to render the checkmark or indeterminate icon when the checkbox is checked or indeterminate.
|
|
5482
5466
|
content: '""',
|
|
@@ -5494,15 +5478,26 @@ const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
|
5494
5478
|
|
|
5495
5479
|
const checkedIcon$1 = getInlineSVGBackgroundImage(`<path d="m20.22,7.47l-1.47-1.42-9.26,9.02-4.24-4.15-1.47,1.42,5.71,5.6,10.73-10.47Z"/>`);
|
|
5496
5480
|
const getCheckboxCheckedBaseStyles = (isLoading, state) => {
|
|
5497
|
-
const { formStateBorderColor } = getThemedFormStateColors(state);
|
|
5481
|
+
const { formStateBorderColor, formStateBackgroundHoverColor } = getThemedFormStateColors(state);
|
|
5498
5482
|
if (isLoading) {
|
|
5499
5483
|
return {};
|
|
5500
5484
|
}
|
|
5501
5485
|
return {
|
|
5486
|
+
'&': {
|
|
5487
|
+
background: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
5488
|
+
},
|
|
5489
|
+
...(state === 'none' && {
|
|
5490
|
+
...hoverMediaQuery({
|
|
5491
|
+
'&:hover': {
|
|
5492
|
+
backgroundColor: `var(${cssVarCheckboxBorderColor}, ${formStateBackgroundHoverColor})`,
|
|
5493
|
+
borderColor: 'transparent',
|
|
5494
|
+
},
|
|
5495
|
+
}),
|
|
5496
|
+
}),
|
|
5502
5497
|
'&::before': {
|
|
5503
5498
|
WebkitMask: `${checkedIcon$1} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
5504
5499
|
mask: `${checkedIcon$1} center/contain no-repeat`,
|
|
5505
|
-
backgroundColor: `var(${cssVarCheckboxIconColor}
|
|
5500
|
+
backgroundColor: `var(${cssVarCheckboxIconColor},${colorCanvas})`,
|
|
5506
5501
|
...forcedColorsMediaQuery({
|
|
5507
5502
|
background: 'CanvasText',
|
|
5508
5503
|
}),
|
|
@@ -5606,10 +5601,6 @@ const getFunctionalComponentStateMessageStyles = (state, additionalDefaultJssSty
|
|
|
5606
5601
|
};
|
|
5607
5602
|
};
|
|
5608
5603
|
|
|
5609
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
5610
|
-
/**
|
|
5611
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
5612
|
-
*/
|
|
5613
5604
|
// CSS Variables defined in checkbox-css-vars.ts
|
|
5614
5605
|
/**
|
|
5615
5606
|
* @css-variable {"name": "--p-checkbox-border-color", "description": "🧪Experimental: Border colors of Checkbox. Should be used to override the default border color in different states (e.g., hover, focus, error), e.g. when the Checkbox is wrapped inside a custom label."}
|
|
@@ -5617,7 +5608,6 @@ const getFunctionalComponentStateMessageStyles = (state, additionalDefaultJssSty
|
|
|
5617
5608
|
* @css-variable {"name": "--p-checkbox-icon-color", "description": "🧪Experimental: Checkmark icon color of Checkbox."}
|
|
5618
5609
|
*/
|
|
5619
5610
|
const getComponentCss$12 = (hideLabel, state, isDisabled, isLoading, isCompact) => {
|
|
5620
|
-
const { formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
5621
5611
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
5622
5612
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
5623
5613
|
const labelPaddingTop = `max(0px, calc((${checkboxDimension} - ${fontLineHeight}) / 2))`;
|
|
@@ -5638,12 +5628,6 @@ const getComponentCss$12 = (hideLabel, state, isDisabled, isLoading, isCompact)
|
|
|
5638
5628
|
'&:checked': getCheckboxCheckedBaseStyles(isLoading, state),
|
|
5639
5629
|
'&:indeterminate': getCheckboxIndeterminateBaseStyles(isLoading, state),
|
|
5640
5630
|
'&:focus-visible': getFocusBaseStyles(),
|
|
5641
|
-
...(!disabledOrLoading &&
|
|
5642
|
-
hoverMediaQuery({
|
|
5643
|
-
'&:hover': {
|
|
5644
|
-
borderColor: `var(${cssVarCheckboxBorderColor}, ${formStateBorderHoverColor})`,
|
|
5645
|
-
},
|
|
5646
|
-
})),
|
|
5647
5631
|
},
|
|
5648
5632
|
},
|
|
5649
5633
|
root: {
|
|
@@ -5976,7 +5960,7 @@ const getFunctionalComponentNoResultsOptionStyles = (componentName, cssVarScalin
|
|
|
5976
5960
|
};
|
|
5977
5961
|
|
|
5978
5962
|
// index.ts
|
|
5979
|
-
var ICONS_MANIFEST = { "360": "360.0600731.svg", "4-wheel-drive": "4-wheel-drive.9c218bf.svg", "accessibility": "accessibility.087d747.svg", "active-cabin-ventilation": "active-cabin-ventilation.b081399.svg", "add": "add.fac861a.svg", "adjust": "adjust.ca46bd4.svg", "aggregation": "aggregation.96f06e5.svg", "ai-3d-object": "ai-3d-object.7a85dd7.svg", "ai-code": "ai-code.9afafb7.svg", "ai-edit": "ai-edit.75a4765.svg", "ai-image": "ai-image.c786d48.svg", "ai-scale": "ai-scale.846fde0.svg", "ai-sound": "ai-sound.727ea7a.svg", "ai-spark": "ai-spark.a134e18.svg", "ai-spark-filled": "ai-spark-filled.2d5d971.svg", "ai-text": "ai-text.fc84e09.svg", "ai-video": "ai-video.759a7f2.svg", "arrow-compact-down": "arrow-compact-down.9b37afe.svg", "arrow-compact-left": "arrow-compact-left.7169de6.svg", "arrow-compact-right": "arrow-compact-right.cc2d1d2.svg", "arrow-compact-up": "arrow-compact-up.36724bb.svg", "arrow-double-down": "arrow-double-down.61ae4d7.svg", "arrow-double-left": "arrow-double-left.1b576eb.svg", "arrow-double-right": "arrow-double-right.dcfabff.svg", "arrow-double-up": "arrow-double-up.fb73db5.svg", "arrow-down": "arrow-down.49c6983.svg", "arrow-first": "arrow-first.beb7d9f.svg", "arrow-head-down": "arrow-head-down.1e3cbb8.svg", "arrow-head-left": "arrow-head-left.cf1395d.svg", "arrow-head-right": "arrow-head-right.304b330.svg", "arrow-head-up": "arrow-head-up.6d3fd23.svg", "arrow-last": "arrow-last.cc24903.svg", "arrow-left": "arrow-left.e03c25b.svg", "arrow-right": "arrow-right.872716b.svg", "arrow-up": "arrow-up.9d294d1.svg", "arrows": "arrows.de040f9.svg", "attachment": "attachment.8f3dd0a.svg", "augmented-reality": "augmented-reality.8b6ce95.svg", "battery-empty": "battery-empty.38b4b15.svg", "battery-empty-co2": "battery-empty-co2.c4cabef.svg", "battery-empty-fuel": "battery-empty-fuel.e833e13.svg", "battery-full": "battery-full.03de75d.svg", "battery-half": "battery-half.11f1ef8.svg", "battery-one-quarter": "battery-one-quarter.91235a0.svg", "battery-three-quarters": "battery-three-quarters.dcf768f.svg", "bell": "bell.1eab3a2.svg", "bookmark": "bookmark.9d6982f.svg", "bookmark-filled": "bookmark-filled.327ac78.svg", "brain": "brain.838387a.svg", "broadcast": "broadcast.0ad5a15.svg", "cabriolet": "cabriolet.ab33aab.svg", "calculator": "calculator.a323a2d.svg", "calendar": "calendar.70a6a12.svg", "camera": "camera.e5e95b9.svg", "car": "car.35229c9.svg", "car-battery": "car-battery.895510f.svg", "card": "card.f284448.svg", "charging-active": "charging-active.c3aa214.svg", "charging-network": "charging-network.a40072f.svg", "charging-state": "charging-state.f56d8df.svg", "charging-station": "charging-station.5ff1ed4.svg", "chart": "chart.c8c32d2.svg", "chat": "chat.7945544.svg", "check": "check.8ba06be.svg", "city": "city.5ae672c.svg", "climate": "climate.a9d5818.svg", "climate-control": "climate-control.ce31939.svg", "clock": "clock.c88a1ef.svg", "close": "close.eec3c5d.svg", "closed-caption": "closed-caption.ceaf6cb.svg", "cloud": "cloud.2c3959e.svg", "co2-class": "co2-class.fc49211.svg", "co2-emission": "co2-emission.c42e7f8.svg", "color-picker": "color-picker.598f402.svg", "compare": "compare.6578829.svg", "compass": "compass.f90f319.svg", "configurate": "configurate.5311c8d.svg", "copy": "copy.0fcd086.svg", "country-road": "country-road.d2bbc5a.svg", "coupe": "coupe.7549e3e.svg", "cubic-capacity": "cubic-capacity.7b0b8c8.svg", "cut": "cut.851e5c2.svg", "delete": "delete.5a8c8ca.svg", "disable": "disable.5918c32.svg", "dislike": "dislike.51614b0.svg", "dislike-filled": "dislike-filled.e1a8c4d.svg", "document": "document.df36b6c.svg", "door": "door.61c32d6.svg", "download": "download.c06f455.svg", "drag": "drag.9e893fd.svg", "duration": "duration.94e5252.svg", "ear": "ear.27a802f.svg", "edit": "edit.330f321.svg", "email": "email.f2530de.svg", "error": "error.b8ae9ad.svg", "error-filled": "error-filled.a4d06ed.svg", "exclamation": "exclamation.46cd17b.svg", "exclamation-filled": "exclamation-filled.9d09ed1.svg", "external": "external.fb677b9.svg", "fast-backward": "fast-backward.a71faae.svg", "fast-forward": "fast-forward.1e6fa9f.svg", "file-csv": "file-csv.4140e24.svg", "file-excel": "file-excel.56d577d.svg", "filter": "filter.610f808.svg", "fingerprint": "fingerprint.6a85170.svg", "flag": "flag.7af5baf.svg", "flash": "flash.88a2ada.svg", "fuel-station": "fuel-station.f7bdf51.svg", "garage": "garage.5014e8d.svg", "genuine-parts": "genuine-parts.6bfddde.svg", "geo-localization": "geo-localization.516d603.svg", "gift": "gift.7beb1eb.svg", "globe": "globe.56cc8fc.svg", "grid": "grid.06bc31a.svg", "grip": "grip.5ec4289.svg", "group": "group.051436a.svg", "hand": "hand.4e85714.svg", "heart": "heart.9a5962e.svg", "heart-filled": "heart-filled.dd7decf.svg", "highway": "highway.bf0eb24.svg", "highway-filled": "highway-filled.38e93fb.svg", "history": "history.f09645c.svg", "home": "home.7b1d1da.svg", "horn": "horn.bf47b1a.svg", "image": "image.b2614f0.svg", "increase": "increase.700012f.svg", "information": "information.da41162.svg", "information-filled": "information-filled.8f08911.svg", "key": "key.ee5d89b.svg", "laptop": "laptop.c422480.svg", "leaf": "leaf.92ca6a6.svg", "leather": "leather.1d2769a.svg", "light": "light.f0eb8e4.svg", "like": "like.a7468cd.svg", "like-filled": "like-filled.a0126c1.svg", "limousine": "limousine.87799d5.svg", "linked": "linked.8f30cb5.svg", "list": "list.411dd00.svg", "locate": "locate.6554f9e.svg", "lock": "lock.243281a.svg", "lock-open": "lock-open.95803d2.svg", "logo-apple-carplay": "logo-apple-carplay.c872af9.svg", "logo-apple-music": "logo-apple-music.1395f37.svg", "logo-apple-podcast": "logo-apple-podcast.09be038.svg", "logo-baidu": "logo-baidu.9e89c7d.svg", "logo-delicious": "logo-delicious.e83f574.svg", "logo-digg": "logo-digg.f096670.svg", "logo-facebook": "logo-facebook.74abe88.svg", "logo-foursquare": "logo-foursquare.d638fd8.svg", "logo-gmail": "logo-gmail.5f96ee2.svg", "logo-google": "logo-google.1dee423.svg", "logo-hatena": "logo-hatena.da509f0.svg", "logo-instagram": "logo-instagram.b916daa.svg", "logo-kaixin": "logo-kaixin.b1211a2.svg", "logo-kakaotalk": "logo-kakaotalk.38f5396.svg", "logo-kununu": "logo-kununu.79344ff.svg", "logo-linkedin": "logo-linkedin.b72559f.svg", "logo-naver": "logo-naver.75588fe.svg", "logo-pinterest": "logo-pinterest.e8f6963.svg", "logo-qq": "logo-qq.6d9b6d9.svg", "logo-qq-share": "logo-qq-share.ee864d9.svg", "logo-reddit": "logo-reddit.da13e44.svg", "logo-skyrock": "logo-skyrock.eb2f28d.svg", "logo-snapchat": "logo-snapchat.ef706a2.svg", "logo-sohu": "logo-sohu.a30c66b.svg", "logo-spotify": "logo-spotify.2ec4b2d.svg", "logo-tecent": "logo-tecent.d119e85.svg", "logo-telegram": "logo-telegram.d151481.svg", "logo-tiktok": "logo-tiktok.2f3a465.svg", "logo-tumblr": "logo-tumblr.c689f44.svg", "logo-twitter": "logo-twitter.5f2490a.svg", "logo-viber": "logo-viber.198bd43.svg", "logo-vk": "logo-vk.37b94e0.svg", "logo-wechat": "logo-wechat.83b2b98.svg", "logo-weibo": "logo-weibo.c8dacee.svg", "logo-whatsapp": "logo-whatsapp.add9a6d.svg", "logo-x": "logo-x.5f2490a.svg", "logo-xing": "logo-xing.3a8df0f.svg", "logo-yahoo": "logo-yahoo.8cbd0ba.svg", "logo-youku": "logo-youku.fe988d0.svg", "logo-youtube": "logo-youtube.da3798f.svg", "logout": "logout.7ec7451.svg", "map": "map.c16f618.svg", "menu-dots-horizontal": "menu-dots-horizontal.788f7fa.svg", "menu-dots-vertical": "menu-dots-vertical.4970a65.svg", "menu-lines": "menu-lines.e332216.svg", "microphone": "microphone.8ecdce6.svg", "minus": "minus.f6d964c.svg", "mobile": "mobile.7f35446.svg", "moon": "moon.5b73246.svg", "new-chat": "new-chat.95ffd2e.svg", "news": "news.5b604b0.svg", "north-arrow": "north-arrow.2da1dbe.svg", "oil-can": "oil-can.cb58fc7.svg", "online-search": "online-search.90e9ab1.svg", "parking-brake": "parking-brake.45704bd.svg", "parking-light": "parking-light.c49a231.svg", "paste": "paste.dd60261.svg", "pause": "pause.e41b935.svg", "phone": "phone.f4f774b.svg", "pin": "pin.3417cec.svg", "pin-filled": "pin-filled.7b8e9ba.svg", "pivot": "pivot.3ae18b8.svg", "play": "play.24226d4.svg", "plug": "plug.c159935.svg", "plus": "plus.319993e.svg", "preheating": "preheating.e2a796f.svg", "price-tag": "price-tag.f0d3917.svg", "printer": "printer.f59b0ee.svg", "purchase": "purchase.9cd6d65.svg", "push-pin": "push-pin.89e4ead.svg", "push-pin-off": "push-pin-off.ba99213.svg", "qr": "qr.87a49a3.svg", "qr-off": "qr-off.64e21b9.svg", "question": "question.3402a63.svg", "question-filled": "question-filled.cf25dd5.svg", "racing-flag": "racing-flag.b7ddcc8.svg", "radar": "radar.de5a6c1.svg", "radio": "radio.2b48e53.svg", "refresh": "refresh.41fd868.svg", "replay": "replay.55a99f2.svg", "reset": "reset.e53d52f.svg", "return": "return.46d30de.svg", "road": "road.bd3d4bc.svg", "roof-closed": "roof-closed.018d021.svg", "roof-open": "roof-open.51c8ee6.svg", "route": "route.f4fbbb4.svg", "rss": "rss.0e77baf.svg", "save": "save.6171ff5.svg", "screen": "screen.420be15.svg", "search": "search.3f0f1ce.svg", "seat": "seat.a3ebc40.svg", "send": "send.b32099c.svg", "service-technician": "service-technician.8749028.svg", "share": "share.a0b30da.svg", "shopping-bag": "shopping-bag.3f91a9b.svg", "shopping-bag-filled": "shopping-bag-filled.abf6c98.svg", "shopping-cart": "shopping-cart.370e224.svg", "shopping-cart-filled": "shopping-cart-filled.e0c3a65.svg", "sidebar": "sidebar.8e43896.svg", "sidelights": "sidelights.65c9dd9.svg", "skip-backward": "skip-backward.cd25ac5.svg", "skip-forward": "skip-forward.001e97f.svg", "snowflake": "snowflake.83907b3.svg", "sort": "sort.92b50bd.svg", "stack": "stack.804af93.svg", "star": "star.4c5bb15.svg", "star-filled": "star-filled.84ef2f6.svg", "steering-wheel": "steering-wheel.4dea19e.svg", "stop": "stop.173b6ac.svg", "stopwatch": "stopwatch.0e048a4.svg", "subtract": "subtract.57eed1d.svg", "success": "success.b16d4c1.svg", "success-filled": "success-filled.1832d98.svg", "sun": "sun.4301cbd.svg", "suv": "suv.33ac4aa.svg", "switch": "switch.66f74c4.svg", "tablet": "tablet.07341ac.svg", "tachometer": "tachometer.3a2fc3c.svg", "theme": "theme.08f6508.svg", "tire": "tire.e5c9372.svg", "trigger-finger": "trigger-finger.65aa6e2.svg", "truck": "truck.2c26c04.svg", "turismo": "turismo.a066b9f.svg", "unlinked": "unlinked.e9afe39.svg", "upload": "upload.d1f5a2a.svg", "user": "user.c18dabe.svg", "user-filled": "user-filled.2ea646d.svg", "user-group": "user-group.79cdf86.svg", "user-manual": "user-manual.470e243.svg", "video": "video.7590689.svg", "view": "view.5b4d7f6.svg", "view-off": "view-off.a4ede54.svg", "volume-off": "volume-off.bcd49e7.svg", "volume-up": "volume-up.2084f60.svg", "warning": "warning.59927e6.svg", "warning-filled": "warning-filled.1f6fe21.svg", "weather": "weather.9c96bd7.svg", "weight": "weight.b57a60d.svg", "wifi": "wifi.e2a8d9c.svg", "work": "work.9dd71a4.svg", "wrench": "wrench.09a2a67.svg", "wrenches": "wrenches.d2ed45d.svg", "zoom-in": "zoom-in.ff299b8.svg", "zoom-out": "zoom-out.ebb6246.svg" };
|
|
5963
|
+
var ICONS_MANIFEST = { "360": "360.0600731.svg", "4-wheel-drive": "4-wheel-drive.9c218bf.svg", "accessibility": "accessibility.087d747.svg", "active-cabin-ventilation": "active-cabin-ventilation.b081399.svg", "add": "add.fac861a.svg", "adjust": "adjust.ca46bd4.svg", "aggregation": "aggregation.96f06e5.svg", "ai-3d-object": "ai-3d-object.7a85dd7.svg", "ai-code": "ai-code.9afafb7.svg", "ai-edit": "ai-edit.75a4765.svg", "ai-image": "ai-image.c786d48.svg", "ai-scale": "ai-scale.846fde0.svg", "ai-sound": "ai-sound.727ea7a.svg", "ai-spark": "ai-spark.a134e18.svg", "ai-spark-filled": "ai-spark-filled.2d5d971.svg", "ai-text": "ai-text.fc84e09.svg", "ai-video": "ai-video.759a7f2.svg", "arrow-compact-down": "arrow-compact-down.9b37afe.svg", "arrow-compact-left": "arrow-compact-left.7169de6.svg", "arrow-compact-right": "arrow-compact-right.cc2d1d2.svg", "arrow-compact-up": "arrow-compact-up.36724bb.svg", "arrow-double-down": "arrow-double-down.61ae4d7.svg", "arrow-double-left": "arrow-double-left.1b576eb.svg", "arrow-double-right": "arrow-double-right.dcfabff.svg", "arrow-double-up": "arrow-double-up.fb73db5.svg", "arrow-down": "arrow-down.49c6983.svg", "arrow-down-left": "arrow-down-left.83597e3.svg", "arrow-down-right": "arrow-down-right.f6ec21e.svg", "arrow-first": "arrow-first.beb7d9f.svg", "arrow-head-down": "arrow-head-down.1e3cbb8.svg", "arrow-head-left": "arrow-head-left.cf1395d.svg", "arrow-head-right": "arrow-head-right.304b330.svg", "arrow-head-up": "arrow-head-up.6d3fd23.svg", "arrow-last": "arrow-last.cc24903.svg", "arrow-left": "arrow-left.e03c25b.svg", "arrow-right": "arrow-right.872716b.svg", "arrow-up": "arrow-up.9d294d1.svg", "arrow-up-left": "arrow-up-left.9e7da2c.svg", "arrow-up-right": "arrow-up-right.776feb2.svg", "arrows": "arrows.de040f9.svg", "attachment": "attachment.8f3dd0a.svg", "augmented-reality": "augmented-reality.8b6ce95.svg", "battery-empty": "battery-empty.38b4b15.svg", "battery-empty-co2": "battery-empty-co2.c4cabef.svg", "battery-empty-fuel": "battery-empty-fuel.e833e13.svg", "battery-full": "battery-full.03de75d.svg", "battery-half": "battery-half.11f1ef8.svg", "battery-one-quarter": "battery-one-quarter.91235a0.svg", "battery-three-quarters": "battery-three-quarters.dcf768f.svg", "bell": "bell.1eab3a2.svg", "bookmark": "bookmark.9d6982f.svg", "bookmark-filled": "bookmark-filled.327ac78.svg", "brain": "brain.838387a.svg", "broadcast": "broadcast.0ad5a15.svg", "cabriolet": "cabriolet.ab33aab.svg", "calculator": "calculator.a323a2d.svg", "calendar": "calendar.70a6a12.svg", "camera": "camera.e5e95b9.svg", "car": "car.35229c9.svg", "car-battery": "car-battery.895510f.svg", "card": "card.f284448.svg", "charging-active": "charging-active.c3aa214.svg", "charging-network": "charging-network.a40072f.svg", "charging-state": "charging-state.f56d8df.svg", "charging-station": "charging-station.5ff1ed4.svg", "chart": "chart.c8c32d2.svg", "chat": "chat.7945544.svg", "check": "check.8ba06be.svg", "city": "city.5ae672c.svg", "climate": "climate.a9d5818.svg", "climate-control": "climate-control.ce31939.svg", "clock": "clock.c88a1ef.svg", "close": "close.eec3c5d.svg", "closed-caption": "closed-caption.ceaf6cb.svg", "cloud": "cloud.2c3959e.svg", "co2-class": "co2-class.fc49211.svg", "co2-emission": "co2-emission.c42e7f8.svg", "color-picker": "color-picker.598f402.svg", "compare": "compare.6578829.svg", "compass": "compass.f90f319.svg", "configurate": "configurate.5311c8d.svg", "copy": "copy.0fcd086.svg", "country-road": "country-road.d2bbc5a.svg", "coupe": "coupe.7549e3e.svg", "cubic-capacity": "cubic-capacity.7b0b8c8.svg", "cut": "cut.851e5c2.svg", "delete": "delete.5a8c8ca.svg", "disable": "disable.5918c32.svg", "dislike": "dislike.51614b0.svg", "dislike-filled": "dislike-filled.e1a8c4d.svg", "document": "document.df36b6c.svg", "door": "door.61c32d6.svg", "download": "download.c06f455.svg", "drag": "drag.9e893fd.svg", "duration": "duration.94e5252.svg", "ear": "ear.27a802f.svg", "edit": "edit.330f321.svg", "email": "email.f2530de.svg", "error": "error.b8ae9ad.svg", "error-filled": "error-filled.a4d06ed.svg", "exclamation": "exclamation.46cd17b.svg", "exclamation-filled": "exclamation-filled.9d09ed1.svg", "external": "external.fb677b9.svg", "fast-backward": "fast-backward.aaca8b9.svg", "fast-forward": "fast-forward.4bc43ff.svg", "file-csv": "file-csv.4140e24.svg", "file-excel": "file-excel.56d577d.svg", "filter": "filter.610f808.svg", "fingerprint": "fingerprint.6a85170.svg", "flag": "flag.7af5baf.svg", "flash": "flash.88a2ada.svg", "fuel-station": "fuel-station.f7bdf51.svg", "garage": "garage.5014e8d.svg", "genuine-parts": "genuine-parts.6bfddde.svg", "geo-localization": "geo-localization.516d603.svg", "gift": "gift.7beb1eb.svg", "globe": "globe.56cc8fc.svg", "grid": "grid.06bc31a.svg", "grip": "grip.5ec4289.svg", "group": "group.051436a.svg", "hand": "hand.4e85714.svg", "heart": "heart.9a5962e.svg", "heart-filled": "heart-filled.dd7decf.svg", "highway": "highway.bf0eb24.svg", "highway-filled": "highway-filled.38e93fb.svg", "history": "history.f09645c.svg", "home": "home.7b1d1da.svg", "horn": "horn.bf47b1a.svg", "image": "image.b2614f0.svg", "increase": "increase.700012f.svg", "information": "information.da41162.svg", "information-filled": "information-filled.8f08911.svg", "key": "key.ee5d89b.svg", "laptop": "laptop.c422480.svg", "leaf": "leaf.92ca6a6.svg", "leather": "leather.1d2769a.svg", "light": "light.f0eb8e4.svg", "like": "like.a7468cd.svg", "like-filled": "like-filled.a0126c1.svg", "limousine": "limousine.87799d5.svg", "linked": "linked.8f30cb5.svg", "list": "list.411dd00.svg", "locate": "locate.6554f9e.svg", "lock": "lock.243281a.svg", "lock-open": "lock-open.95803d2.svg", "logo-apple-carplay": "logo-apple-carplay.c872af9.svg", "logo-apple-music": "logo-apple-music.1395f37.svg", "logo-apple-podcast": "logo-apple-podcast.09be038.svg", "logo-baidu": "logo-baidu.9e89c7d.svg", "logo-delicious": "logo-delicious.e83f574.svg", "logo-digg": "logo-digg.f096670.svg", "logo-facebook": "logo-facebook.74abe88.svg", "logo-foursquare": "logo-foursquare.d638fd8.svg", "logo-gmail": "logo-gmail.5f96ee2.svg", "logo-google": "logo-google.1dee423.svg", "logo-hatena": "logo-hatena.da509f0.svg", "logo-instagram": "logo-instagram.b916daa.svg", "logo-kaixin": "logo-kaixin.b1211a2.svg", "logo-kakaotalk": "logo-kakaotalk.38f5396.svg", "logo-kununu": "logo-kununu.79344ff.svg", "logo-linkedin": "logo-linkedin.b72559f.svg", "logo-naver": "logo-naver.75588fe.svg", "logo-pinterest": "logo-pinterest.e8f6963.svg", "logo-qq": "logo-qq.6d9b6d9.svg", "logo-qq-share": "logo-qq-share.ee864d9.svg", "logo-reddit": "logo-reddit.da13e44.svg", "logo-skyrock": "logo-skyrock.eb2f28d.svg", "logo-snapchat": "logo-snapchat.ef706a2.svg", "logo-sohu": "logo-sohu.a30c66b.svg", "logo-spotify": "logo-spotify.2ec4b2d.svg", "logo-tecent": "logo-tecent.d119e85.svg", "logo-telegram": "logo-telegram.d151481.svg", "logo-tiktok": "logo-tiktok.2f3a465.svg", "logo-tumblr": "logo-tumblr.c689f44.svg", "logo-twitter": "logo-twitter.5f2490a.svg", "logo-viber": "logo-viber.198bd43.svg", "logo-vk": "logo-vk.37b94e0.svg", "logo-wechat": "logo-wechat.83b2b98.svg", "logo-weibo": "logo-weibo.c8dacee.svg", "logo-whatsapp": "logo-whatsapp.add9a6d.svg", "logo-x": "logo-x.5f2490a.svg", "logo-xing": "logo-xing.3a8df0f.svg", "logo-yahoo": "logo-yahoo.8cbd0ba.svg", "logo-youku": "logo-youku.fe988d0.svg", "logo-youtube": "logo-youtube.da3798f.svg", "logout": "logout.7ec7451.svg", "map": "map.c16f618.svg", "menu-dots-horizontal": "menu-dots-horizontal.788f7fa.svg", "menu-dots-vertical": "menu-dots-vertical.4970a65.svg", "menu-lines": "menu-lines.e332216.svg", "microphone": "microphone.8ecdce6.svg", "minus": "minus.f6d964c.svg", "mobile": "mobile.7f35446.svg", "moon": "moon.5b73246.svg", "new-chat": "new-chat.6ba4fae.svg", "news": "news.5b604b0.svg", "north-arrow": "north-arrow.2da1dbe.svg", "oil-can": "oil-can.cb58fc7.svg", "online-search": "online-search.90e9ab1.svg", "parking-brake": "parking-brake.45704bd.svg", "parking-light": "parking-light.c49a231.svg", "paste": "paste.dd60261.svg", "pause": "pause.65f20ae.svg", "phone": "phone.f4f774b.svg", "pin": "pin.3417cec.svg", "pin-filled": "pin-filled.7b8e9ba.svg", "pivot": "pivot.3ae18b8.svg", "play": "play.03ae554.svg", "play-filled": "play-filled.0fb6689.svg", "plug": "plug.c159935.svg", "plus": "plus.319993e.svg", "preheating": "preheating.e2a796f.svg", "price-tag": "price-tag.f0d3917.svg", "printer": "printer.f59b0ee.svg", "purchase": "purchase.9cd6d65.svg", "push-pin": "push-pin.89e4ead.svg", "push-pin-off": "push-pin-off.ba99213.svg", "qr": "qr.87a49a3.svg", "qr-off": "qr-off.64e21b9.svg", "question": "question.3402a63.svg", "question-filled": "question-filled.cf25dd5.svg", "racing-flag": "racing-flag.b7ddcc8.svg", "radar": "radar.de5a6c1.svg", "radio": "radio.2b48e53.svg", "refresh": "refresh.41fd868.svg", "replay": "replay.55a99f2.svg", "reset": "reset.e53d52f.svg", "return": "return.46d30de.svg", "road": "road.bd3d4bc.svg", "roof-closed": "roof-closed.018d021.svg", "roof-open": "roof-open.51c8ee6.svg", "route": "route.f4fbbb4.svg", "rss": "rss.0e77baf.svg", "save": "save.6171ff5.svg", "screen": "screen.420be15.svg", "search": "search.3f0f1ce.svg", "seat": "seat.a3ebc40.svg", "send": "send.b32099c.svg", "service-technician": "service-technician.8749028.svg", "share": "share.a0b30da.svg", "shopping-bag": "shopping-bag.3f91a9b.svg", "shopping-bag-filled": "shopping-bag-filled.abf6c98.svg", "shopping-cart": "shopping-cart.370e224.svg", "shopping-cart-filled": "shopping-cart-filled.e0c3a65.svg", "sidebar": "sidebar.8e43896.svg", "sidelights": "sidelights.65c9dd9.svg", "skip-backward": "skip-backward.05fe8cd.svg", "skip-forward": "skip-forward.45a7bc0.svg", "snowflake": "snowflake.83907b3.svg", "sort": "sort.92b50bd.svg", "stack": "stack.804af93.svg", "star": "star.4c5bb15.svg", "star-filled": "star-filled.84ef2f6.svg", "steering-wheel": "steering-wheel.4dea19e.svg", "stop": "stop.173b6ac.svg", "stopwatch": "stopwatch.0e048a4.svg", "subtract": "subtract.57eed1d.svg", "success": "success.b16d4c1.svg", "success-filled": "success-filled.1832d98.svg", "sun": "sun.4301cbd.svg", "suv": "suv.33ac4aa.svg", "switch": "switch.66f74c4.svg", "tablet": "tablet.07341ac.svg", "tachometer": "tachometer.3a2fc3c.svg", "theme": "theme.08f6508.svg", "tire": "tire.e5c9372.svg", "trigger-finger": "trigger-finger.65aa6e2.svg", "truck": "truck.2c26c04.svg", "turismo": "turismo.a066b9f.svg", "unlinked": "unlinked.e9afe39.svg", "upload": "upload.d1f5a2a.svg", "user": "user.c18dabe.svg", "user-filled": "user-filled.2ea646d.svg", "user-group": "user-group.79cdf86.svg", "user-manual": "user-manual.470e243.svg", "video": "video.7590689.svg", "view": "view.5b4d7f6.svg", "view-off": "view-off.a4ede54.svg", "volume-off": "volume-off.bcd49e7.svg", "volume-up": "volume-up.2084f60.svg", "warning": "warning.59927e6.svg", "warning-filled": "warning-filled.1f6fe21.svg", "weather": "weather.9c96bd7.svg", "weight": "weight.b57a60d.svg", "wifi": "wifi.e2a8d9c.svg", "work": "work.9dd71a4.svg", "wrench": "wrench.09a2a67.svg", "wrenches": "wrenches.d2ed45d.svg", "zoom-in": "zoom-in.ff299b8.svg", "zoom-out": "zoom-out.ebb6246.svg" };
|
|
5980
5964
|
|
|
5981
5965
|
// index.ts
|
|
5982
5966
|
var MODEL_SIGNATURES_MANIFEST = { "718": { "src": "718.493a9e3.svg", "width": 79, "height": 26 }, "911": { "src": "911.b68f913.svg", "width": 94, "height": 25 }, "boxster": { "src": "boxster.c321738.svg", "width": 239, "height": 26 }, "cayenne": { "src": "cayenne.2556201.svg", "width": 245, "height": 35 }, "cayman": { "src": "cayman.cc89196.svg", "width": 229, "height": 35 }, "gt3-rs": { "src": "gt3-rs.03ac3ee.svg", "width": 238, "height": 25 }, "gt3": { "src": "gt3.bd3186c.svg", "width": 151, "height": 25 }, "gts": { "src": "gts.99bd35e.svg", "width": 121, "height": 25 }, "macan": { "src": "macan.a1844f4.svg", "width": 196, "height": 26 }, "panamera": { "src": "panamera.6dae809.svg", "width": 260, "height": 25 }, "taycan": { "src": "taycan.df444c6.svg", "width": 167, "height": 36 }, "turbo-s": { "src": "turbo-s.73f1e10.svg", "width": 199, "height": 25 }, "turbo": { "src": "turbo.6a4084a.svg", "width": 143, "height": 25 } };
|
|
@@ -7008,7 +6992,7 @@ const getComponentCss$V = (isOpen, background, backdrop, position, hasHeader, ha
|
|
|
7008
6992
|
|
|
7009
6993
|
const HEADING_TAGS = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
|
7010
6994
|
|
|
7011
|
-
const getComponentCss$U = (size, weight, align, color, ellipsis) => {
|
|
6995
|
+
const getComponentCss$U = (size, weight, align, color, hyphens, ellipsis) => {
|
|
7012
6996
|
return getCss({
|
|
7013
6997
|
'@global': {
|
|
7014
6998
|
':host': {
|
|
@@ -7030,6 +7014,10 @@ const getComponentCss$U = (size, weight, align, color, ellipsis) => {
|
|
|
7030
7014
|
})),
|
|
7031
7015
|
color: colorMap$3[color],
|
|
7032
7016
|
textAlign: align,
|
|
7017
|
+
hyphens,
|
|
7018
|
+
...((hyphens === 'auto' || hyphens === 'manual') && {
|
|
7019
|
+
overflowWrap: 'break-word',
|
|
7020
|
+
}),
|
|
7033
7021
|
...(ellipsis && {
|
|
7034
7022
|
maxWidth: '100%',
|
|
7035
7023
|
overflow: 'hidden',
|
|
@@ -7188,10 +7176,6 @@ const getHeadingJssStyle = {
|
|
|
7188
7176
|
...headingSmallStyle,
|
|
7189
7177
|
...getTextJssStyle,
|
|
7190
7178
|
};
|
|
7191
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7192
|
-
/**
|
|
7193
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7194
|
-
*/
|
|
7195
7179
|
const getComponentCss$S = (state, hasAction, hasClose) => {
|
|
7196
7180
|
return getCss({
|
|
7197
7181
|
'@global': {
|
|
@@ -7234,10 +7218,6 @@ const getComponentCss$S = (state, hasAction, hasClose) => {
|
|
|
7234
7218
|
/**
|
|
7235
7219
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7236
7220
|
*/
|
|
7237
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7238
|
-
/**
|
|
7239
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7240
|
-
*/
|
|
7241
7221
|
const getComponentCss$R = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7242
7222
|
return getCss({
|
|
7243
7223
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7259,10 +7239,6 @@ const getComponentCss$R = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7259
7239
|
/**
|
|
7260
7240
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7261
7241
|
*/
|
|
7262
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7263
|
-
/**
|
|
7264
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7265
|
-
*/
|
|
7266
7242
|
const getComponentCss$Q = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7267
7243
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7268
7244
|
// Overwrites direction to ltr for rtl languages to prevent issues with the email input, e.g. cursor jumping to the
|
|
@@ -7282,10 +7258,6 @@ const getComponentCss$Q = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7282
7258
|
/**
|
|
7283
7259
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7284
7260
|
*/
|
|
7285
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7286
|
-
/**
|
|
7287
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7288
|
-
*/
|
|
7289
7261
|
const getComponentCss$P = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7290
7262
|
return getCss({
|
|
7291
7263
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7309,10 +7281,6 @@ const getComponentCss$P = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7309
7281
|
/**
|
|
7310
7282
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7311
7283
|
*/
|
|
7312
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7313
|
-
/**
|
|
7314
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7315
|
-
*/
|
|
7316
7284
|
const getComponentCss$O = (disabled, loading, hideLabel, state, compact, readOnly, controls) => {
|
|
7317
7285
|
return getCss({
|
|
7318
7286
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7337,10 +7305,6 @@ const getComponentCss$O = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7337
7305
|
/**
|
|
7338
7306
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7339
7307
|
*/
|
|
7340
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7341
|
-
/**
|
|
7342
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7343
|
-
*/
|
|
7344
7308
|
const getComponentCss$N = (disabled, loading, hideLabel, state, toggle, compact, readOnly) => {
|
|
7345
7309
|
return getCss({
|
|
7346
7310
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly),
|
|
@@ -7360,10 +7324,6 @@ const getComponentCss$N = (disabled, loading, hideLabel, state, toggle, compact,
|
|
|
7360
7324
|
/**
|
|
7361
7325
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7362
7326
|
*/
|
|
7363
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7364
|
-
/**
|
|
7365
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7366
|
-
*/
|
|
7367
7327
|
const getComponentCss$M = (disabled, loading, hideLabel, state, compact, readOnly, clear) => {
|
|
7368
7328
|
return getCss({
|
|
7369
7329
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7387,10 +7347,6 @@ const getComponentCss$M = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7387
7347
|
/**
|
|
7388
7348
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7389
7349
|
*/
|
|
7390
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7391
|
-
/**
|
|
7392
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7393
|
-
*/
|
|
7394
7350
|
const getComponentCss$L = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7395
7351
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7396
7352
|
// Overwrites direction to ltr for rtl languages to prevent issues with the tel input, e.g. cursor jumping to the
|
|
@@ -7436,10 +7392,6 @@ const getUnitCounterJssStyle = () => {
|
|
|
7436
7392
|
/**
|
|
7437
7393
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7438
7394
|
*/
|
|
7439
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7440
|
-
/**
|
|
7441
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7442
|
-
*/
|
|
7443
7395
|
const getComponentCss$K = (disabled, loading, hideLabel, state, compact, readOnly, counter) => {
|
|
7444
7396
|
return getCss({
|
|
7445
7397
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly),
|
|
@@ -7457,10 +7409,6 @@ const getComponentCss$K = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7457
7409
|
/**
|
|
7458
7410
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7459
7411
|
*/
|
|
7460
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7461
|
-
/**
|
|
7462
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7463
|
-
*/
|
|
7464
7412
|
const getComponentCss$J = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7465
7413
|
return getCss({
|
|
7466
7414
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7482,10 +7430,6 @@ const getComponentCss$J = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7482
7430
|
/**
|
|
7483
7431
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7484
7432
|
*/
|
|
7485
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7486
|
-
/**
|
|
7487
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7488
|
-
*/
|
|
7489
7433
|
const getComponentCss$I = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7490
7434
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7491
7435
|
// Overwrites direction to ltr for rtl languages to prevent issues with the url input, e.g. cursor jumping to the
|
|
@@ -7505,10 +7449,6 @@ const getComponentCss$I = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7505
7449
|
/**
|
|
7506
7450
|
* @css-variable {"name": "--ref-p-input-slotted-margin", "description": "When slotting a `p-button-pure` or `p-link-pure` this variable needs to be set as `margin` in oder to adjust the spacings correctly."}
|
|
7507
7451
|
*/
|
|
7508
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7509
|
-
/**
|
|
7510
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7511
|
-
*/
|
|
7512
7452
|
const getComponentCss$H = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7513
7453
|
return getCss({
|
|
7514
7454
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7525,10 +7465,6 @@ const getComponentCss$H = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7525
7465
|
});
|
|
7526
7466
|
};
|
|
7527
7467
|
|
|
7528
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7529
|
-
/**
|
|
7530
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7531
|
-
*/
|
|
7532
7468
|
const getComponentCss$G = (icon, iconSource, active, stretch, size, color, hideLabel, alignLabel, underline, hasSlottedAnchor) => {
|
|
7533
7469
|
return getCss(mergeDeep(getLinkButtonPureStyles(icon, iconSource, active, false, stretch, size, color, hideLabel, alignLabel, underline, hasSlottedAnchor), hasSlottedAnchor && {
|
|
7534
7470
|
'@global': addImportantToEachRule({
|
|
@@ -7570,10 +7506,6 @@ const getMultilineEllipsis = (lineClamp) => {
|
|
|
7570
7506
|
overflow: 'hidden',
|
|
7571
7507
|
};
|
|
7572
7508
|
};
|
|
7573
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7574
|
-
/**
|
|
7575
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7576
|
-
*/
|
|
7577
7509
|
const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, hasDescription, aspectRatio) => {
|
|
7578
7510
|
return getCss({
|
|
7579
7511
|
'@global': {
|
|
@@ -7673,7 +7605,6 @@ const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, ha
|
|
|
7673
7605
|
heading: {
|
|
7674
7606
|
margin: '0 0 2px', // ua-style reset
|
|
7675
7607
|
...headingSmallStyle,
|
|
7676
|
-
...fontHyphenationStyle,
|
|
7677
7608
|
...getMultilineEllipsis(3),
|
|
7678
7609
|
},
|
|
7679
7610
|
price: {
|
|
@@ -7700,10 +7631,6 @@ const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, ha
|
|
|
7700
7631
|
});
|
|
7701
7632
|
};
|
|
7702
7633
|
|
|
7703
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7704
|
-
/**
|
|
7705
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7706
|
-
*/
|
|
7707
7634
|
const getComponentCss$E = (aspectRatio, size, weight, align, compact, hasGradient, hasFooterSlot, isDisabled) => {
|
|
7708
7635
|
const isTopAligned = align === 'top';
|
|
7709
7636
|
return getCss({
|
|
@@ -7846,10 +7773,6 @@ const getComponentCss$E = (aspectRatio, size, weight, align, compact, hasGradien
|
|
|
7846
7773
|
};
|
|
7847
7774
|
|
|
7848
7775
|
const cssVariableInternalLinkScaling = '--p-internal-link-scaling';
|
|
7849
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7850
|
-
/**
|
|
7851
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7852
|
-
*/
|
|
7853
7776
|
const getComponentCss$D = (icon, iconSource, variant, hideLabel, hasSlottedAnchor, isCompact) => {
|
|
7854
7777
|
return getCss(mergeDeep(getLinkButtonStyles(icon, iconSource, variant, hideLabel, false, hasSlottedAnchor, isCompact, cssVariableInternalLinkScaling), {
|
|
7855
7778
|
label: {
|
|
@@ -8017,10 +7940,6 @@ const getComponentCss$B = (model, safeZone, size, color) => {
|
|
|
8017
7940
|
};
|
|
8018
7941
|
|
|
8019
7942
|
const cssVarInternalMultiSelectOptionScaling = '--p-internal-multi-select-option-scaling';
|
|
8020
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8021
|
-
/**
|
|
8022
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8023
|
-
*/
|
|
8024
7943
|
const getComponentCss$A = (isDisabled, selected) => {
|
|
8025
7944
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
8026
7945
|
const labelPaddingTop = `max(0px, calc((${checkboxDimension} - ${fontLineHeight}) / 2))`;
|
|
@@ -8080,10 +7999,6 @@ const getComponentCss$z = (isDisabled) => {
|
|
|
8080
7999
|
};
|
|
8081
8000
|
|
|
8082
8001
|
const cssVarInternalMultiSelectScaling = '--p-internal-multi-select-scaling';
|
|
8083
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8084
|
-
/**
|
|
8085
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8086
|
-
*/
|
|
8087
8002
|
const getComponentCss$y = (isOpen, isDisabled, hideLabel, state, isCompact) => {
|
|
8088
8003
|
return getCss({
|
|
8089
8004
|
'@global': {
|
|
@@ -8247,10 +8162,6 @@ const getComponentCss$x = (activePage, pageTotal, showLastPage) => {
|
|
|
8247
8162
|
};
|
|
8248
8163
|
|
|
8249
8164
|
const cssVarInternalPinCodeScaling = '--p-internal-pin-code-scaling';
|
|
8250
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8251
|
-
/**
|
|
8252
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8253
|
-
*/
|
|
8254
8165
|
const getComponentCss$w = (hideLabel, state, isDisabled, isLoading, length, isCompact) => {
|
|
8255
8166
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8256
8167
|
const gap = `calc(11.2px * (var(${cssVarInternalPinCodeScaling}) - 0.64285714) + 4px)`;
|
|
@@ -8332,10 +8243,6 @@ const getComponentCss$w = (hideLabel, state, isDisabled, isLoading, length, isCo
|
|
|
8332
8243
|
|
|
8333
8244
|
const POPOVER_SAFE_ZONE = 8;
|
|
8334
8245
|
|
|
8335
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8336
|
-
/**
|
|
8337
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8338
|
-
*/
|
|
8339
8246
|
const getComponentCss$v = () => {
|
|
8340
8247
|
const shadowColor = 'rgba(0,0,0,0.3)';
|
|
8341
8248
|
return getCss({
|
|
@@ -8428,10 +8335,6 @@ const getComponentCss$v = () => {
|
|
|
8428
8335
|
|
|
8429
8336
|
const cssVarInternalRadioGroupOptionScaling = '--p-internal-radio-group-option-scaling';
|
|
8430
8337
|
const checkedIcon = getInlineSVGBackgroundImage(`<circle cx="12" cy="12" r="6"/>`);
|
|
8431
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8432
|
-
/**
|
|
8433
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8434
|
-
*/
|
|
8435
8338
|
const getComponentCss$u = (disabled, loading, state) => {
|
|
8436
8339
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8437
8340
|
const disabledOrLoading = isDisabledOrLoading(disabled, loading);
|
|
@@ -8469,26 +8372,29 @@ const getComponentCss$u = (disabled, loading, state) => {
|
|
|
8469
8372
|
borderColor: 'GrayText',
|
|
8470
8373
|
}),
|
|
8471
8374
|
}),
|
|
8472
|
-
'&:focus-visible': getFocusBaseStyles(),
|
|
8473
8375
|
...(!disabledOrLoading &&
|
|
8474
8376
|
hoverMediaQuery({
|
|
8475
8377
|
'&:hover': {
|
|
8476
8378
|
borderColor: formStateBorderHoverColor,
|
|
8477
8379
|
},
|
|
8478
8380
|
})),
|
|
8381
|
+
'&:focus-visible': getFocusBaseStyles(),
|
|
8382
|
+
'&:checked': {
|
|
8383
|
+
background: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
8384
|
+
'&::before': {
|
|
8385
|
+
WebkitMask: `${checkedIcon} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
8386
|
+
mask: `${checkedIcon} center/contain no-repeat`,
|
|
8387
|
+
backgroundColor: colorCanvas,
|
|
8388
|
+
...forcedColorsMediaQuery({
|
|
8389
|
+
background: 'CanvasText',
|
|
8390
|
+
}),
|
|
8391
|
+
},
|
|
8392
|
+
},
|
|
8479
8393
|
'&::before': {
|
|
8480
8394
|
// This pseudo-element is used to render the checked icon.
|
|
8481
8395
|
content: '""',
|
|
8482
8396
|
gridArea: '1/1',
|
|
8483
8397
|
},
|
|
8484
|
-
'&:checked::before': {
|
|
8485
|
-
WebkitMask: `${checkedIcon} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
8486
|
-
mask: `${checkedIcon} center/contain no-repeat`,
|
|
8487
|
-
backgroundColor: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
8488
|
-
...forcedColorsMediaQuery({
|
|
8489
|
-
background: 'CanvasText',
|
|
8490
|
-
}),
|
|
8491
|
-
},
|
|
8492
8398
|
'&::after': {
|
|
8493
8399
|
// Ensures the touch target is at least 24px, even if the checkbox is smaller than the minimum touch target size.
|
|
8494
8400
|
// This pseudo-element expands the clickable area without affecting the visual size of the checkbox itself.
|
|
@@ -8545,10 +8451,6 @@ const groupRadioGroupDirectionJssStyles = {
|
|
|
8545
8451
|
const getRadioGroupDirectionJssStyles = (direction) => {
|
|
8546
8452
|
return groupRadioGroupDirectionJssStyles[direction];
|
|
8547
8453
|
};
|
|
8548
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8549
|
-
/**
|
|
8550
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8551
|
-
*/
|
|
8552
8454
|
const getComponentCss$t = (isDisabled, isLoading, hideLabel, state, isCompact, direction) => {
|
|
8553
8455
|
const columnGap = `calc(22.4px * (var(${cssVarInternalRadioGroupScaling}) - 0.64285714) + 8px)`;
|
|
8554
8456
|
const rowGap = `calc(11.2px * (var(${cssVarInternalRadioGroupScaling}) - 0.64285714) + 4px)`;
|
|
@@ -8780,10 +8682,6 @@ const getScalableItemStyles = (hasIconAndSlottedContent, compact) => {
|
|
|
8780
8682
|
const dimension = `calc(max(${fontLineHeight}, ${scalingVar} * (${fontLineHeight} + 10px)) + (${verticalPadding} + ${borderWidthBase}) * 2)`;
|
|
8781
8683
|
return { padding, dimension };
|
|
8782
8684
|
};
|
|
8783
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8784
|
-
/**
|
|
8785
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8786
|
-
*/
|
|
8787
8685
|
const getComponentCss$r = (isCompact, isDisabled, isSelected, state, hasIcon, hasSlottedContent) => {
|
|
8788
8686
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8789
8687
|
const { dimension, padding } = getScalableItemStyles(hasIcon && hasSlottedContent, isCompact);
|
|
@@ -8890,10 +8788,6 @@ const getComponentCss$q = (minWidth, maxWidth, columns, disabled, hideLabel, sta
|
|
|
8890
8788
|
};
|
|
8891
8789
|
|
|
8892
8790
|
const cssVarInternalSelectOptionScaling = '--p-internal-select-option-scaling';
|
|
8893
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8894
|
-
/**
|
|
8895
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8896
|
-
*/
|
|
8897
8791
|
const getComponentCss$p = (isDisabled) => {
|
|
8898
8792
|
return getCss({
|
|
8899
8793
|
'@global': {
|
|
@@ -8919,10 +8813,6 @@ const getComponentCss$p = (isDisabled) => {
|
|
|
8919
8813
|
};
|
|
8920
8814
|
|
|
8921
8815
|
const cssVarInternalSelectScaling = '--p-internal-select-scaling';
|
|
8922
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8923
|
-
/**
|
|
8924
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8925
|
-
*/
|
|
8926
8816
|
const getComponentCss$o = (isOpen, isDisabled, hideLabel, state, isCompact) => {
|
|
8927
8817
|
return getCss({
|
|
8928
8818
|
'@global': {
|
|
@@ -9120,10 +9010,6 @@ const svgNumber = [
|
|
|
9120
9010
|
'<path d="m10.47 11.94c-.65-.33-1.13-.92-1.13-2.01 0-1.53.85-2.47 2.66-2.47s2.66.94 2.66 2.47c0 1.08-.47 1.68-1.15 2.01.92.35 1.34 1.07 1.34 2.11 0 1.73-.99 2.49-2.86 2.49s-2.86-.76-2.86-2.49c0-1.04.41-1.76 1.33-2.11zm1.53 3.78c1.27 0 1.85-.51 1.85-1.69 0-1.1-.58-1.61-1.85-1.61s-1.85.52-1.85 1.61c0 1.18.58 1.69 1.85 1.69zm1.65-5.76c0-1.1-.56-1.56-1.65-1.56s-1.65.47-1.65 1.56c0 1 .46 1.6 1.65 1.6s1.65-.6 1.65-1.6z"/>',
|
|
9121
9011
|
'<path d="m9.16 10.33c0-2.03 1.02-2.86 2.83-2.86s2.82.81 2.82 2.85c0 1.11-.3 1.82-.81 2.64l-2.18 3.44h-1.1l2.18-3.37c-.31.14-.65.2-1.01.2-1.82 0-2.74-.99-2.74-2.9zm4.65 0c0-1.23-.47-1.92-1.81-1.92s-1.81.69-1.81 1.92c0 1.37.49 2.05 1.81 2.05s1.81-.68 1.81-2.05z"/>',
|
|
9122
9012
|
];
|
|
9123
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9124
|
-
/**
|
|
9125
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9126
|
-
*/
|
|
9127
9013
|
const getComponentCss$l = (state, disabled) => {
|
|
9128
9014
|
const isStateCurrent = state === 'current';
|
|
9129
9015
|
const isStateCurrentOrUndefined = !state || isStateCurrent;
|
|
@@ -9235,10 +9121,6 @@ const getColors$1 = (checked, loading) => {
|
|
|
9235
9121
|
textColor: colorPrimary,
|
|
9236
9122
|
};
|
|
9237
9123
|
};
|
|
9238
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9239
|
-
/**
|
|
9240
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9241
|
-
*/
|
|
9242
9124
|
const getComponentCss$j = (alignLabel, hideLabel, isStretched, isChecked, isDisabled, isLoading, isCompact) => {
|
|
9243
9125
|
const { buttonBorderColor, buttonBorderColorHover, buttonBackgroundColor, toggleBackgroundColor, textColor } = getColors$1(isChecked, isLoading);
|
|
9244
9126
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
@@ -9698,10 +9580,6 @@ const getComponentCss$9 = () => {
|
|
|
9698
9580
|
};
|
|
9699
9581
|
|
|
9700
9582
|
const cssVarInternalTagDismissibleScaling = '--p-internal-tag-dismissible-scaling';
|
|
9701
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9702
|
-
/**
|
|
9703
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9704
|
-
*/
|
|
9705
9583
|
const getComponentCss$8 = (hasLabel, isCompact) => {
|
|
9706
9584
|
const buttonPaddingBlock = hasLabel
|
|
9707
9585
|
? `calc(16.8px * (var(${cssVarInternalTagDismissibleScaling}) - 0.64285714))`
|
|
@@ -9767,26 +9645,26 @@ const getComponentCss$8 = (hasLabel, isCompact) => {
|
|
|
9767
9645
|
const colorTextMap = {
|
|
9768
9646
|
primary: colorCanvas,
|
|
9769
9647
|
secondary: colorPrimary,
|
|
9770
|
-
info:
|
|
9771
|
-
success:
|
|
9772
|
-
warning:
|
|
9773
|
-
error:
|
|
9648
|
+
info: colorCanvas,
|
|
9649
|
+
success: colorCanvas,
|
|
9650
|
+
warning: colorCanvas,
|
|
9651
|
+
error: colorCanvas,
|
|
9774
9652
|
};
|
|
9775
9653
|
const colorBackgroundMap = {
|
|
9776
9654
|
primary: colorPrimary,
|
|
9777
9655
|
secondary: colorFrostedStrong,
|
|
9778
|
-
info:
|
|
9779
|
-
success:
|
|
9780
|
-
warning:
|
|
9781
|
-
error:
|
|
9656
|
+
info: colorInfo,
|
|
9657
|
+
success: colorSuccess,
|
|
9658
|
+
warning: colorWarning,
|
|
9659
|
+
error: colorError,
|
|
9782
9660
|
};
|
|
9783
9661
|
const colorBackgroundHoverMap = {
|
|
9784
9662
|
primary: colorContrastHigh,
|
|
9785
9663
|
secondary: colorFrosted,
|
|
9786
|
-
info:
|
|
9787
|
-
success:
|
|
9788
|
-
warning:
|
|
9789
|
-
error:
|
|
9664
|
+
info: colorInfoMedium,
|
|
9665
|
+
success: colorSuccessMedium,
|
|
9666
|
+
warning: colorWarningMedium,
|
|
9667
|
+
error: colorErrorMedium,
|
|
9790
9668
|
};
|
|
9791
9669
|
const getColors = (variant) => {
|
|
9792
9670
|
return {
|
|
@@ -9815,7 +9693,10 @@ const getComponentCss$7 = (variant, compact, isFocusable, hasIcon) => {
|
|
|
9815
9693
|
padding: compact ? '1px 6px' : `${spacingStaticXSmall} 9px`,
|
|
9816
9694
|
borderRadius: `var(${legacyRadiusSmall}, calc(${compact ? '1px' : spacingStaticXSmall} + (${fontLineHeight} / 2)))`, // ensures pill shape has a maximum border radius to support multiline.
|
|
9817
9695
|
font: textXSmallStyle.font,
|
|
9818
|
-
...
|
|
9696
|
+
...(variant === 'secondary' && {
|
|
9697
|
+
WebkitBackdropFilter: blurFrosted,
|
|
9698
|
+
backdropFilter: blurFrosted,
|
|
9699
|
+
}),
|
|
9819
9700
|
color: textColor,
|
|
9820
9701
|
background: backgroundColor,
|
|
9821
9702
|
transition: `${getTransition('color')}, ${getTransition('background-color')}, ${getTransition('backdrop-filter')}`, // transition style should always be applied to have a smooth color change in case color prop gets updated during runtime
|
|
@@ -9948,7 +9829,7 @@ const getComponentCss$5 = () => {
|
|
|
9948
9829
|
|
|
9949
9830
|
const TEXT_TAGS = ['p', 'span', 'div', 'address', 'blockquote', 'figcaption', 'cite', 'time', 'legend'];
|
|
9950
9831
|
|
|
9951
|
-
const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
9832
|
+
const getComponentCss$4 = (size, weight, align, color, hyphens, ellipsis) => {
|
|
9952
9833
|
return getCss({
|
|
9953
9834
|
'@global': {
|
|
9954
9835
|
':host': {
|
|
@@ -9970,6 +9851,10 @@ const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
|
9970
9851
|
})),
|
|
9971
9852
|
color: colorMap$3[color],
|
|
9972
9853
|
textAlign: align,
|
|
9854
|
+
hyphens,
|
|
9855
|
+
...((hyphens === 'auto' || hyphens === 'manual') && {
|
|
9856
|
+
overflowWrap: 'break-word',
|
|
9857
|
+
}),
|
|
9973
9858
|
...(ellipsis && {
|
|
9974
9859
|
maxWidth: '100%',
|
|
9975
9860
|
overflow: 'hidden',
|
|
@@ -9981,9 +9866,7 @@ const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
|
9981
9866
|
};
|
|
9982
9867
|
|
|
9983
9868
|
const cssVarInternalTextareaScaling = '--p-internal-textarea-scaling';
|
|
9984
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9985
9869
|
/**
|
|
9986
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9987
9870
|
* @css-variable {"name":"--p-textarea-field-sizing","description":"Controls CSS `field-sizing` for textarea.","defaultValue":"unset"}
|
|
9988
9871
|
* @css-variable {"name":"--p-textarea-min-width","description":"Minimum width of the textarea.","defaultValue":"52px"}
|
|
9989
9872
|
* @css-variable {"name":"--p-textarea-max-width","description":"Maximum width of the textarea.","defaultValue":"unset"}
|
|
@@ -10096,10 +9979,6 @@ const getKeyframesMobile = (direction, bottomVar) => getKeyframes(direction, {
|
|
|
10096
9979
|
transform: `translate3d(0,calc(var(${bottomVar}) + 100%),0)`, // space before and after "+" is crucial
|
|
10097
9980
|
});
|
|
10098
9981
|
const toastCloseClassName = 'close';
|
|
10099
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
10100
|
-
/**
|
|
10101
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
10102
|
-
*/
|
|
10103
9982
|
const getComponentCss$1 = () => {
|
|
10104
9983
|
return getCss({
|
|
10105
9984
|
'@global': {
|