@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
|
@@ -56,7 +56,7 @@ const fontSizeTextSmall = typescaleSm$1;
|
|
|
56
56
|
/** @deprecated since v4.0.0, will be removed with next major release. Use typescaleXl instead. */
|
|
57
57
|
const fontSizeTextXLarge = typescaleXl$1;
|
|
58
58
|
|
|
59
|
-
const typescaleXs$2 = '
|
|
59
|
+
const typescaleXs$2 = '.875rem';
|
|
60
60
|
|
|
61
61
|
/** @deprecated since v4.0.0, will be removed with next major release. Use typescaleXs instead. */
|
|
62
62
|
const fontSizeTextXSmall = typescaleXs$2;
|
|
@@ -92,12 +92,6 @@ const fontWeightSemibold$1 = 600;
|
|
|
92
92
|
/** @deprecated since v4.0.0, will be removed with next major release. Use fontWeightSemibold instead. */
|
|
93
93
|
const fontWeightSemiBold = fontWeightSemibold$1;
|
|
94
94
|
|
|
95
|
-
const fontHyphenationStyle = {
|
|
96
|
-
overflowWrap: 'break-word',
|
|
97
|
-
// @ts-ignore
|
|
98
|
-
hyphens: 'var(--p-hyphens, auto)',
|
|
99
|
-
};
|
|
100
|
-
|
|
101
95
|
const gradientStopsFadeDark = 'hsla(0,0%,0%,.8) 0%,' +
|
|
102
96
|
'hsla(0,0%,0%,.8) 8.1%,' +
|
|
103
97
|
'hsla(0,0%,0%,.8) 15.5%,' +
|
|
@@ -336,30 +330,25 @@ const _textFontPartB = `/${fontLineHeight} ${fontFamily}`;
|
|
|
336
330
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseText2Xs instead. */
|
|
337
331
|
const textXXSmallStyle = {
|
|
338
332
|
font: `${_textFontPartA}${fontSizeTextXXSmall}${_textFontPartB}`,
|
|
339
|
-
...fontHyphenationStyle,
|
|
340
333
|
};
|
|
341
334
|
|
|
342
335
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextXs instead. */
|
|
343
336
|
const textXSmallStyle = {
|
|
344
337
|
font: `${_textFontPartA}${fontSizeTextXSmall}${_textFontPartB}`,
|
|
345
|
-
...fontHyphenationStyle,
|
|
346
338
|
};
|
|
347
339
|
|
|
348
340
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextSm instead. */
|
|
349
341
|
const textSmallStyle = {
|
|
350
342
|
font: `${_textFontPartA}${fontSizeTextSmall}${_textFontPartB}`,
|
|
351
|
-
...fontHyphenationStyle,
|
|
352
343
|
};
|
|
353
344
|
|
|
354
345
|
/** @deprecated since v4.0.0, will be removed with next major release. Use proseTextMd instead. */
|
|
355
346
|
const textMediumStyle = {
|
|
356
347
|
font: `${_textFontPartA}${fontSizeTextMedium}${_textFontPartB}`,
|
|
357
|
-
...fontHyphenationStyle,
|
|
358
348
|
};
|
|
359
349
|
|
|
360
350
|
const proseTextSmStyle = {
|
|
361
351
|
font: `normal normal ${fontWeightNormal$1} ${typescaleSm$1} / ${leadingNormal$1} ${fontPorscheNext$1}`,
|
|
362
|
-
...fontHyphenationStyle,
|
|
363
352
|
};
|
|
364
353
|
|
|
365
354
|
const alphaDisabled = 0.4;
|
|
@@ -420,11 +409,13 @@ const colorErrorFrosted = 'var(--p-color-error-frosted)';
|
|
|
420
409
|
|
|
421
410
|
const colorErrorFrostedSoft = 'var(--p-color-error-frosted-soft)';
|
|
422
411
|
|
|
412
|
+
const colorErrorMedium = 'var(--p-color-error-medium)';
|
|
413
|
+
|
|
423
414
|
const colorInfo = 'var(--p-color-info)';
|
|
424
415
|
|
|
425
416
|
const colorInfoFrosted = 'var(--p-color-info-frosted)';
|
|
426
417
|
|
|
427
|
-
const
|
|
418
|
+
const colorInfoMedium = 'var(--p-color-info-medium)';
|
|
428
419
|
|
|
429
420
|
const colorSuccess = 'var(--p-color-success)';
|
|
430
421
|
|
|
@@ -434,11 +425,13 @@ const colorSuccessFrostedSoft = 'var(--p-color-success-frosted-soft)';
|
|
|
434
425
|
|
|
435
426
|
const colorSuccessLow = 'var(--p-color-success-low)';
|
|
436
427
|
|
|
428
|
+
const colorSuccessMedium = 'var(--p-color-success-medium)';
|
|
429
|
+
|
|
437
430
|
const colorWarning = 'var(--p-color-warning)';
|
|
438
431
|
|
|
439
432
|
const colorWarningFrosted = 'var(--p-color-warning-frosted)';
|
|
440
433
|
|
|
441
|
-
const
|
|
434
|
+
const colorWarningMedium = 'var(--p-color-warning-medium)';
|
|
442
435
|
|
|
443
436
|
const fontPorscheNext = 'var(--p-font-porsche-next)';
|
|
444
437
|
|
|
@@ -3910,7 +3903,7 @@ const OPTION_LIST_SAFE_ZONE = 6;
|
|
|
3910
3903
|
|
|
3911
3904
|
const getCDNBaseURL = () => global.PORSCHE_DESIGN_SYSTEM_CDN_URL + "/porsche-design-system";
|
|
3912
3905
|
|
|
3913
|
-
const prefix = `[Porsche Design System v${"4.0.0-beta.
|
|
3906
|
+
const prefix = `[Porsche Design System v${"4.0.0-beta.4"}]` // this part isn't covered by unit tests
|
|
3914
3907
|
;
|
|
3915
3908
|
const consoleError = (...messages) => {
|
|
3916
3909
|
console.error(prefix, ...messages);
|
|
@@ -4034,10 +4027,6 @@ const cssVarPaddingInline$1 = '--p-accordion-px';
|
|
|
4034
4027
|
* @css-variable {"name": "--p-accordion-py", "description": "Vertical padding of the accordion.", "defaultValue": "16px"}
|
|
4035
4028
|
*/
|
|
4036
4029
|
const cssVarPaddingBlock = '--p-accordion-py';
|
|
4037
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4038
|
-
/**
|
|
4039
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4040
|
-
*/
|
|
4041
4030
|
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"/>`);
|
|
4042
4031
|
const backgroundMap$1 = {
|
|
4043
4032
|
canvas: colorCanvas,
|
|
@@ -4449,10 +4438,6 @@ const getFunctionalComponentLoadingMessageStyles = () => {
|
|
|
4449
4438
|
};
|
|
4450
4439
|
};
|
|
4451
4440
|
|
|
4452
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4453
|
-
/**
|
|
4454
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4455
|
-
*/
|
|
4456
4441
|
const getComponentCss$17 = (icon, iconSource, active, isDisabled, isLoading, isDisabledOrLoading, stretch, size, color, hideLabel, alignLabel, underline) => {
|
|
4457
4442
|
const hasIcon = hasVisibleIcon(icon, iconSource);
|
|
4458
4443
|
return getCss(mergeDeep(getLinkButtonPureStyles(icon, iconSource, active, isDisabledOrLoading, stretch, size, color, hideLabel, alignLabel, underline, false), {
|
|
@@ -4480,10 +4465,6 @@ const getComponentCss$17 = (icon, iconSource, active, isDisabled, isLoading, isD
|
|
|
4480
4465
|
}));
|
|
4481
4466
|
};
|
|
4482
4467
|
|
|
4483
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4484
|
-
/**
|
|
4485
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4486
|
-
*/
|
|
4487
4468
|
const getComponentCss$16 = (isDisabledOrLoading, aspectRatio, size, weight, align, compact, hasGradient, hasFooterSlot, isDisabled) => {
|
|
4488
4469
|
const isTopAligned = align === 'top';
|
|
4489
4470
|
return getCss({
|
|
@@ -4722,10 +4703,6 @@ const getLinkButtonStyles = (icon, iconSource, variant, hideLabel, isDisabledOrL
|
|
|
4722
4703
|
};
|
|
4723
4704
|
|
|
4724
4705
|
const cssVariableInternalButtonScaling = '--p-internal-button-scaling';
|
|
4725
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
4726
|
-
/**
|
|
4727
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
4728
|
-
*/
|
|
4729
4706
|
const getComponentCss$15 = (icon, iconSource, variant, hideLabel, isDisabled, isLoading, isCompact) => {
|
|
4730
4707
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
4731
4708
|
return getCss(mergeDeep(getLinkButtonStyles(icon, iconSource, variant, hideLabel, disabledOrLoading, false, isCompact, cssVariableInternalButtonScaling), {
|
|
@@ -4781,9 +4758,9 @@ const getComponentCss$15 = (icon, iconSource, variant, hideLabel, isDisabled, is
|
|
|
4781
4758
|
const palette = {
|
|
4782
4759
|
dark: {
|
|
4783
4760
|
grey: {
|
|
4784
|
-
'950': 'hsl(225
|
|
4785
|
-
'100a': '
|
|
4786
|
-
'200a': '
|
|
4761
|
+
'950': 'hsl(225 100% 99%)',
|
|
4762
|
+
'100a': 'hsl(240 3.7% 26.5% / 0.154)',
|
|
4763
|
+
'200a': 'hsl(240 2% 43% / 0.228)'},
|
|
4787
4764
|
},
|
|
4788
4765
|
};
|
|
4789
4766
|
|
|
@@ -4793,7 +4770,7 @@ const colorFrostedSoftDark = palette.dark.grey['100a'];
|
|
|
4793
4770
|
|
|
4794
4771
|
const colorPrimaryDark = palette.dark.grey["950"];
|
|
4795
4772
|
|
|
4796
|
-
const typescaleXs = '
|
|
4773
|
+
const typescaleXs = '.875rem';
|
|
4797
4774
|
|
|
4798
4775
|
const spacingStaticSm = '8px';
|
|
4799
4776
|
|
|
@@ -5022,7 +4999,7 @@ const getComponentCss$14 = (isSidebarStartOpen, isSidebarEndOpen, background) =>
|
|
|
5022
4999
|
},
|
|
5023
5000
|
},
|
|
5024
5001
|
main: {
|
|
5025
|
-
zIndex:
|
|
5002
|
+
zIndex: 2,
|
|
5026
5003
|
gridArea: 'main',
|
|
5027
5004
|
padding: spacingBase,
|
|
5028
5005
|
},
|
|
@@ -5044,7 +5021,7 @@ const getComponentCss$14 = (isSidebarStartOpen, isSidebarEndOpen, background) =>
|
|
|
5044
5021
|
},
|
|
5045
5022
|
},
|
|
5046
5023
|
sidebar: {
|
|
5047
|
-
zIndex:
|
|
5024
|
+
zIndex: 3,
|
|
5048
5025
|
position: 'sticky',
|
|
5049
5026
|
top: 0,
|
|
5050
5027
|
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)
|
|
@@ -5156,10 +5133,6 @@ const backfaceVisibilityJssStyle = {
|
|
|
5156
5133
|
WebkitBackfaceVisibility: 'hidden',
|
|
5157
5134
|
};
|
|
5158
5135
|
const gradientMask = `linear-gradient(90deg,transparent 20%,#000 var(${cssVariableGradientColorWidth},33%) calc(100% - var(${cssVariableGradientColorWidth},33%)),transparent 80%)`;
|
|
5159
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
5160
|
-
/**
|
|
5161
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
5162
|
-
*/
|
|
5163
5136
|
const getComponentCss$13 = (gradient, hasHeading, hasDescription, hasControlsSlot, headingSize, width, hasPagination, isInfinitePagination, alignHeader, hasNavigation, alignControls) => {
|
|
5164
5137
|
const isHeaderAlignCenter = alignHeader === 'center';
|
|
5165
5138
|
return getCss({
|
|
@@ -5414,6 +5387,11 @@ const colorBackgroundMap$1 = {
|
|
|
5414
5387
|
error: colorErrorFrostedSoft,
|
|
5415
5388
|
none: colorFrosted,
|
|
5416
5389
|
};
|
|
5390
|
+
const colorBackgroundHoverMap$1 = {
|
|
5391
|
+
success: colorSuccessMedium,
|
|
5392
|
+
error: colorErrorMedium,
|
|
5393
|
+
none: colorContrastHigh,
|
|
5394
|
+
};
|
|
5417
5395
|
const colorBorderMap = {
|
|
5418
5396
|
success: colorSuccess,
|
|
5419
5397
|
error: colorError,
|
|
@@ -5432,6 +5410,7 @@ const colorMap$2 = {
|
|
|
5432
5410
|
const getThemedFormStateColors = (state) => {
|
|
5433
5411
|
return {
|
|
5434
5412
|
formStateBackgroundColor: colorBackgroundMap$1[state],
|
|
5413
|
+
formStateBackgroundHoverColor: colorBackgroundHoverMap$1[state],
|
|
5435
5414
|
formStateBorderColor: colorBorderMap[state],
|
|
5436
5415
|
formStateBorderHoverColor: colorBorderHoverMap[state],
|
|
5437
5416
|
formStateColor: colorMap$2[state],
|
|
@@ -5450,7 +5429,7 @@ const cssVarCheckboxIconColor = '--p-checkbox-icon-color';
|
|
|
5450
5429
|
const cssVarInternalCheckboxScaling = '--__p-checkbox-scaling';
|
|
5451
5430
|
|
|
5452
5431
|
const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
5453
|
-
const { formStateBackgroundColor, formStateBorderColor } = getThemedFormStateColors(state);
|
|
5432
|
+
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
5454
5433
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
5455
5434
|
const checkboxBorderWidth = borderWidthThin;
|
|
5456
5435
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
@@ -5475,6 +5454,11 @@ const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
|
5475
5454
|
...(disabledOrLoading && {
|
|
5476
5455
|
pointerEvents: 'none', // to prevent form element becomes clickable/toggleable
|
|
5477
5456
|
}),
|
|
5457
|
+
...hoverMediaQuery({
|
|
5458
|
+
'&:hover': {
|
|
5459
|
+
borderColor: `var(${cssVarCheckboxBorderColor}, ${formStateBorderHoverColor})`,
|
|
5460
|
+
},
|
|
5461
|
+
}),
|
|
5478
5462
|
'&::before': {
|
|
5479
5463
|
// This pseudo-element is used to render the checkmark or indeterminate icon when the checkbox is checked or indeterminate.
|
|
5480
5464
|
content: '""',
|
|
@@ -5492,15 +5476,26 @@ const getCheckboxBaseStyles = (isDisabled, isLoading, isCompact, state) => {
|
|
|
5492
5476
|
|
|
5493
5477
|
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"/>`);
|
|
5494
5478
|
const getCheckboxCheckedBaseStyles = (isLoading, state) => {
|
|
5495
|
-
const { formStateBorderColor } = getThemedFormStateColors(state);
|
|
5479
|
+
const { formStateBorderColor, formStateBackgroundHoverColor } = getThemedFormStateColors(state);
|
|
5496
5480
|
if (isLoading) {
|
|
5497
5481
|
return {};
|
|
5498
5482
|
}
|
|
5499
5483
|
return {
|
|
5484
|
+
'&': {
|
|
5485
|
+
background: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
5486
|
+
},
|
|
5487
|
+
...(state === 'none' && {
|
|
5488
|
+
...hoverMediaQuery({
|
|
5489
|
+
'&:hover': {
|
|
5490
|
+
backgroundColor: `var(${cssVarCheckboxBorderColor}, ${formStateBackgroundHoverColor})`,
|
|
5491
|
+
borderColor: 'transparent',
|
|
5492
|
+
},
|
|
5493
|
+
}),
|
|
5494
|
+
}),
|
|
5500
5495
|
'&::before': {
|
|
5501
5496
|
WebkitMask: `${checkedIcon$1} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
5502
5497
|
mask: `${checkedIcon$1} center/contain no-repeat`,
|
|
5503
|
-
backgroundColor: `var(${cssVarCheckboxIconColor}
|
|
5498
|
+
backgroundColor: `var(${cssVarCheckboxIconColor},${colorCanvas})`,
|
|
5504
5499
|
...forcedColorsMediaQuery({
|
|
5505
5500
|
background: 'CanvasText',
|
|
5506
5501
|
}),
|
|
@@ -5604,10 +5599,6 @@ const getFunctionalComponentStateMessageStyles = (state, additionalDefaultJssSty
|
|
|
5604
5599
|
};
|
|
5605
5600
|
};
|
|
5606
5601
|
|
|
5607
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
5608
|
-
/**
|
|
5609
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
5610
|
-
*/
|
|
5611
5602
|
// CSS Variables defined in checkbox-css-vars.ts
|
|
5612
5603
|
/**
|
|
5613
5604
|
* @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."}
|
|
@@ -5615,7 +5606,6 @@ const getFunctionalComponentStateMessageStyles = (state, additionalDefaultJssSty
|
|
|
5615
5606
|
* @css-variable {"name": "--p-checkbox-icon-color", "description": "🧪Experimental: Checkmark icon color of Checkbox."}
|
|
5616
5607
|
*/
|
|
5617
5608
|
const getComponentCss$12 = (hideLabel, state, isDisabled, isLoading, isCompact) => {
|
|
5618
|
-
const { formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
5619
5609
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
5620
5610
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
5621
5611
|
const labelPaddingTop = `max(0px, calc((${checkboxDimension} - ${fontLineHeight}) / 2))`;
|
|
@@ -5636,12 +5626,6 @@ const getComponentCss$12 = (hideLabel, state, isDisabled, isLoading, isCompact)
|
|
|
5636
5626
|
'&:checked': getCheckboxCheckedBaseStyles(isLoading, state),
|
|
5637
5627
|
'&:indeterminate': getCheckboxIndeterminateBaseStyles(isLoading, state),
|
|
5638
5628
|
'&:focus-visible': getFocusBaseStyles(),
|
|
5639
|
-
...(!disabledOrLoading &&
|
|
5640
|
-
hoverMediaQuery({
|
|
5641
|
-
'&:hover': {
|
|
5642
|
-
borderColor: `var(${cssVarCheckboxBorderColor}, ${formStateBorderHoverColor})`,
|
|
5643
|
-
},
|
|
5644
|
-
})),
|
|
5645
5629
|
},
|
|
5646
5630
|
},
|
|
5647
5631
|
root: {
|
|
@@ -5974,7 +5958,7 @@ const getFunctionalComponentNoResultsOptionStyles = (componentName, cssVarScalin
|
|
|
5974
5958
|
};
|
|
5975
5959
|
|
|
5976
5960
|
// index.ts
|
|
5977
|
-
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" };
|
|
5961
|
+
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" };
|
|
5978
5962
|
|
|
5979
5963
|
// index.ts
|
|
5980
5964
|
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 } };
|
|
@@ -7006,7 +6990,7 @@ const getComponentCss$V = (isOpen, background, backdrop, position, hasHeader, ha
|
|
|
7006
6990
|
|
|
7007
6991
|
const HEADING_TAGS = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
|
7008
6992
|
|
|
7009
|
-
const getComponentCss$U = (size, weight, align, color, ellipsis) => {
|
|
6993
|
+
const getComponentCss$U = (size, weight, align, color, hyphens, ellipsis) => {
|
|
7010
6994
|
return getCss({
|
|
7011
6995
|
'@global': {
|
|
7012
6996
|
':host': {
|
|
@@ -7028,6 +7012,10 @@ const getComponentCss$U = (size, weight, align, color, ellipsis) => {
|
|
|
7028
7012
|
})),
|
|
7029
7013
|
color: colorMap$3[color],
|
|
7030
7014
|
textAlign: align,
|
|
7015
|
+
hyphens,
|
|
7016
|
+
...((hyphens === 'auto' || hyphens === 'manual') && {
|
|
7017
|
+
overflowWrap: 'break-word',
|
|
7018
|
+
}),
|
|
7031
7019
|
...(ellipsis && {
|
|
7032
7020
|
maxWidth: '100%',
|
|
7033
7021
|
overflow: 'hidden',
|
|
@@ -7186,10 +7174,6 @@ const getHeadingJssStyle = {
|
|
|
7186
7174
|
...headingSmallStyle,
|
|
7187
7175
|
...getTextJssStyle,
|
|
7188
7176
|
};
|
|
7189
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7190
|
-
/**
|
|
7191
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7192
|
-
*/
|
|
7193
7177
|
const getComponentCss$S = (state, hasAction, hasClose) => {
|
|
7194
7178
|
return getCss({
|
|
7195
7179
|
'@global': {
|
|
@@ -7232,10 +7216,6 @@ const getComponentCss$S = (state, hasAction, hasClose) => {
|
|
|
7232
7216
|
/**
|
|
7233
7217
|
* @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."}
|
|
7234
7218
|
*/
|
|
7235
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7236
|
-
/**
|
|
7237
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7238
|
-
*/
|
|
7239
7219
|
const getComponentCss$R = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7240
7220
|
return getCss({
|
|
7241
7221
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7257,10 +7237,6 @@ const getComponentCss$R = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7257
7237
|
/**
|
|
7258
7238
|
* @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."}
|
|
7259
7239
|
*/
|
|
7260
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7261
|
-
/**
|
|
7262
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7263
|
-
*/
|
|
7264
7240
|
const getComponentCss$Q = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7265
7241
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7266
7242
|
// Overwrites direction to ltr for rtl languages to prevent issues with the email input, e.g. cursor jumping to the
|
|
@@ -7280,10 +7256,6 @@ const getComponentCss$Q = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7280
7256
|
/**
|
|
7281
7257
|
* @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."}
|
|
7282
7258
|
*/
|
|
7283
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7284
|
-
/**
|
|
7285
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7286
|
-
*/
|
|
7287
7259
|
const getComponentCss$P = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7288
7260
|
return getCss({
|
|
7289
7261
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7307,10 +7279,6 @@ const getComponentCss$P = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7307
7279
|
/**
|
|
7308
7280
|
* @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."}
|
|
7309
7281
|
*/
|
|
7310
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7311
|
-
/**
|
|
7312
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7313
|
-
*/
|
|
7314
7282
|
const getComponentCss$O = (disabled, loading, hideLabel, state, compact, readOnly, controls) => {
|
|
7315
7283
|
return getCss({
|
|
7316
7284
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7335,10 +7303,6 @@ const getComponentCss$O = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7335
7303
|
/**
|
|
7336
7304
|
* @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."}
|
|
7337
7305
|
*/
|
|
7338
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7339
|
-
/**
|
|
7340
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7341
|
-
*/
|
|
7342
7306
|
const getComponentCss$N = (disabled, loading, hideLabel, state, toggle, compact, readOnly) => {
|
|
7343
7307
|
return getCss({
|
|
7344
7308
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly),
|
|
@@ -7358,10 +7322,6 @@ const getComponentCss$N = (disabled, loading, hideLabel, state, toggle, compact,
|
|
|
7358
7322
|
/**
|
|
7359
7323
|
* @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."}
|
|
7360
7324
|
*/
|
|
7361
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7362
|
-
/**
|
|
7363
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7364
|
-
*/
|
|
7365
7325
|
const getComponentCss$M = (disabled, loading, hideLabel, state, compact, readOnly, clear) => {
|
|
7366
7326
|
return getCss({
|
|
7367
7327
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7385,10 +7345,6 @@ const getComponentCss$M = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7385
7345
|
/**
|
|
7386
7346
|
* @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."}
|
|
7387
7347
|
*/
|
|
7388
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7389
|
-
/**
|
|
7390
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7391
|
-
*/
|
|
7392
7348
|
const getComponentCss$L = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7393
7349
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7394
7350
|
// Overwrites direction to ltr for rtl languages to prevent issues with the tel input, e.g. cursor jumping to the
|
|
@@ -7434,10 +7390,6 @@ const getUnitCounterJssStyle = () => {
|
|
|
7434
7390
|
/**
|
|
7435
7391
|
* @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."}
|
|
7436
7392
|
*/
|
|
7437
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7438
|
-
/**
|
|
7439
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7440
|
-
*/
|
|
7441
7393
|
const getComponentCss$K = (disabled, loading, hideLabel, state, compact, readOnly, counter) => {
|
|
7442
7394
|
return getCss({
|
|
7443
7395
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly),
|
|
@@ -7455,10 +7407,6 @@ const getComponentCss$K = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7455
7407
|
/**
|
|
7456
7408
|
* @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."}
|
|
7457
7409
|
*/
|
|
7458
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7459
|
-
/**
|
|
7460
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7461
|
-
*/
|
|
7462
7410
|
const getComponentCss$J = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7463
7411
|
return getCss({
|
|
7464
7412
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7480,10 +7428,6 @@ const getComponentCss$J = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7480
7428
|
/**
|
|
7481
7429
|
* @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."}
|
|
7482
7430
|
*/
|
|
7483
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7484
|
-
/**
|
|
7485
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7486
|
-
*/
|
|
7487
7431
|
const getComponentCss$I = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7488
7432
|
return getCss(getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, null,
|
|
7489
7433
|
// Overwrites direction to ltr for rtl languages to prevent issues with the url input, e.g. cursor jumping to the
|
|
@@ -7503,10 +7447,6 @@ const getComponentCss$I = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7503
7447
|
/**
|
|
7504
7448
|
* @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."}
|
|
7505
7449
|
*/
|
|
7506
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7507
|
-
/**
|
|
7508
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7509
|
-
*/
|
|
7510
7450
|
const getComponentCss$H = (disabled, loading, hideLabel, state, compact, readOnly) => {
|
|
7511
7451
|
return getCss({
|
|
7512
7452
|
...getFunctionalComponentInputBaseStyles(disabled, loading, hideLabel, state, compact, readOnly, {
|
|
@@ -7523,10 +7463,6 @@ const getComponentCss$H = (disabled, loading, hideLabel, state, compact, readOnl
|
|
|
7523
7463
|
});
|
|
7524
7464
|
};
|
|
7525
7465
|
|
|
7526
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7527
|
-
/**
|
|
7528
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7529
|
-
*/
|
|
7530
7466
|
const getComponentCss$G = (icon, iconSource, active, stretch, size, color, hideLabel, alignLabel, underline, hasSlottedAnchor) => {
|
|
7531
7467
|
return getCss(mergeDeep(getLinkButtonPureStyles(icon, iconSource, active, false, stretch, size, color, hideLabel, alignLabel, underline, hasSlottedAnchor), hasSlottedAnchor && {
|
|
7532
7468
|
'@global': addImportantToEachRule({
|
|
@@ -7568,10 +7504,6 @@ const getMultilineEllipsis = (lineClamp) => {
|
|
|
7568
7504
|
overflow: 'hidden',
|
|
7569
7505
|
};
|
|
7570
7506
|
};
|
|
7571
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7572
|
-
/**
|
|
7573
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7574
|
-
*/
|
|
7575
7507
|
const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, hasDescription, aspectRatio) => {
|
|
7576
7508
|
return getCss({
|
|
7577
7509
|
'@global': {
|
|
@@ -7671,7 +7603,6 @@ const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, ha
|
|
|
7671
7603
|
heading: {
|
|
7672
7604
|
margin: '0 0 2px', // ua-style reset
|
|
7673
7605
|
...headingSmallStyle,
|
|
7674
|
-
...fontHyphenationStyle,
|
|
7675
7606
|
...getMultilineEllipsis(3),
|
|
7676
7607
|
},
|
|
7677
7608
|
price: {
|
|
@@ -7698,10 +7629,6 @@ const getComponentCss$F = (hasLikeButton, hasSlottedAnchor, hasPriceOriginal, ha
|
|
|
7698
7629
|
});
|
|
7699
7630
|
};
|
|
7700
7631
|
|
|
7701
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7702
|
-
/**
|
|
7703
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7704
|
-
*/
|
|
7705
7632
|
const getComponentCss$E = (aspectRatio, size, weight, align, compact, hasGradient, hasFooterSlot, isDisabled) => {
|
|
7706
7633
|
const isTopAligned = align === 'top';
|
|
7707
7634
|
return getCss({
|
|
@@ -7844,10 +7771,6 @@ const getComponentCss$E = (aspectRatio, size, weight, align, compact, hasGradien
|
|
|
7844
7771
|
};
|
|
7845
7772
|
|
|
7846
7773
|
const cssVariableInternalLinkScaling = '--p-internal-link-scaling';
|
|
7847
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
7848
|
-
/**
|
|
7849
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
7850
|
-
*/
|
|
7851
7774
|
const getComponentCss$D = (icon, iconSource, variant, hideLabel, hasSlottedAnchor, isCompact) => {
|
|
7852
7775
|
return getCss(mergeDeep(getLinkButtonStyles(icon, iconSource, variant, hideLabel, false, hasSlottedAnchor, isCompact, cssVariableInternalLinkScaling), {
|
|
7853
7776
|
label: {
|
|
@@ -8015,10 +7938,6 @@ const getComponentCss$B = (model, safeZone, size, color) => {
|
|
|
8015
7938
|
};
|
|
8016
7939
|
|
|
8017
7940
|
const cssVarInternalMultiSelectOptionScaling = '--p-internal-multi-select-option-scaling';
|
|
8018
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8019
|
-
/**
|
|
8020
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8021
|
-
*/
|
|
8022
7941
|
const getComponentCss$A = (isDisabled, selected) => {
|
|
8023
7942
|
const checkboxDimension = `calc(var(${cssVarInternalCheckboxScaling}) * 1.75rem)`;
|
|
8024
7943
|
const labelPaddingTop = `max(0px, calc((${checkboxDimension} - ${fontLineHeight}) / 2))`;
|
|
@@ -8078,10 +7997,6 @@ const getComponentCss$z = (isDisabled) => {
|
|
|
8078
7997
|
};
|
|
8079
7998
|
|
|
8080
7999
|
const cssVarInternalMultiSelectScaling = '--p-internal-multi-select-scaling';
|
|
8081
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8082
|
-
/**
|
|
8083
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8084
|
-
*/
|
|
8085
8000
|
const getComponentCss$y = (isOpen, isDisabled, hideLabel, state, isCompact) => {
|
|
8086
8001
|
return getCss({
|
|
8087
8002
|
'@global': {
|
|
@@ -8245,10 +8160,6 @@ const getComponentCss$x = (activePage, pageTotal, showLastPage) => {
|
|
|
8245
8160
|
};
|
|
8246
8161
|
|
|
8247
8162
|
const cssVarInternalPinCodeScaling = '--p-internal-pin-code-scaling';
|
|
8248
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8249
|
-
/**
|
|
8250
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8251
|
-
*/
|
|
8252
8163
|
const getComponentCss$w = (hideLabel, state, isDisabled, isLoading, length, isCompact) => {
|
|
8253
8164
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8254
8165
|
const gap = `calc(11.2px * (var(${cssVarInternalPinCodeScaling}) - 0.64285714) + 4px)`;
|
|
@@ -8330,10 +8241,6 @@ const getComponentCss$w = (hideLabel, state, isDisabled, isLoading, length, isCo
|
|
|
8330
8241
|
|
|
8331
8242
|
const POPOVER_SAFE_ZONE = 8;
|
|
8332
8243
|
|
|
8333
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8334
|
-
/**
|
|
8335
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8336
|
-
*/
|
|
8337
8244
|
const getComponentCss$v = () => {
|
|
8338
8245
|
const shadowColor = 'rgba(0,0,0,0.3)';
|
|
8339
8246
|
return getCss({
|
|
@@ -8426,10 +8333,6 @@ const getComponentCss$v = () => {
|
|
|
8426
8333
|
|
|
8427
8334
|
const cssVarInternalRadioGroupOptionScaling = '--p-internal-radio-group-option-scaling';
|
|
8428
8335
|
const checkedIcon = getInlineSVGBackgroundImage(`<circle cx="12" cy="12" r="6"/>`);
|
|
8429
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8430
|
-
/**
|
|
8431
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8432
|
-
*/
|
|
8433
8336
|
const getComponentCss$u = (disabled, loading, state) => {
|
|
8434
8337
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8435
8338
|
const disabledOrLoading = isDisabledOrLoading(disabled, loading);
|
|
@@ -8467,26 +8370,29 @@ const getComponentCss$u = (disabled, loading, state) => {
|
|
|
8467
8370
|
borderColor: 'GrayText',
|
|
8468
8371
|
}),
|
|
8469
8372
|
}),
|
|
8470
|
-
'&:focus-visible': getFocusBaseStyles(),
|
|
8471
8373
|
...(!disabledOrLoading &&
|
|
8472
8374
|
hoverMediaQuery({
|
|
8473
8375
|
'&:hover': {
|
|
8474
8376
|
borderColor: formStateBorderHoverColor,
|
|
8475
8377
|
},
|
|
8476
8378
|
})),
|
|
8379
|
+
'&:focus-visible': getFocusBaseStyles(),
|
|
8380
|
+
'&:checked': {
|
|
8381
|
+
background: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
8382
|
+
'&::before': {
|
|
8383
|
+
WebkitMask: `${checkedIcon} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
8384
|
+
mask: `${checkedIcon} center/contain no-repeat`,
|
|
8385
|
+
backgroundColor: colorCanvas,
|
|
8386
|
+
...forcedColorsMediaQuery({
|
|
8387
|
+
background: 'CanvasText',
|
|
8388
|
+
}),
|
|
8389
|
+
},
|
|
8390
|
+
},
|
|
8477
8391
|
'&::before': {
|
|
8478
8392
|
// This pseudo-element is used to render the checked icon.
|
|
8479
8393
|
content: '""',
|
|
8480
8394
|
gridArea: '1/1',
|
|
8481
8395
|
},
|
|
8482
|
-
'&:checked::before': {
|
|
8483
|
-
WebkitMask: `${checkedIcon} center/contain no-repeat`, // necessary for Sogou browser support :-)
|
|
8484
|
-
mask: `${checkedIcon} center/contain no-repeat`,
|
|
8485
|
-
backgroundColor: state === 'none' ? colorPrimary : formStateBorderColor,
|
|
8486
|
-
...forcedColorsMediaQuery({
|
|
8487
|
-
background: 'CanvasText',
|
|
8488
|
-
}),
|
|
8489
|
-
},
|
|
8490
8396
|
'&::after': {
|
|
8491
8397
|
// Ensures the touch target is at least 24px, even if the checkbox is smaller than the minimum touch target size.
|
|
8492
8398
|
// This pseudo-element expands the clickable area without affecting the visual size of the checkbox itself.
|
|
@@ -8543,10 +8449,6 @@ const groupRadioGroupDirectionJssStyles = {
|
|
|
8543
8449
|
const getRadioGroupDirectionJssStyles = (direction) => {
|
|
8544
8450
|
return groupRadioGroupDirectionJssStyles[direction];
|
|
8545
8451
|
};
|
|
8546
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8547
|
-
/**
|
|
8548
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8549
|
-
*/
|
|
8550
8452
|
const getComponentCss$t = (isDisabled, isLoading, hideLabel, state, isCompact, direction) => {
|
|
8551
8453
|
const columnGap = `calc(22.4px * (var(${cssVarInternalRadioGroupScaling}) - 0.64285714) + 8px)`;
|
|
8552
8454
|
const rowGap = `calc(11.2px * (var(${cssVarInternalRadioGroupScaling}) - 0.64285714) + 4px)`;
|
|
@@ -8778,10 +8680,6 @@ const getScalableItemStyles = (hasIconAndSlottedContent, compact) => {
|
|
|
8778
8680
|
const dimension = `calc(max(${fontLineHeight}, ${scalingVar} * (${fontLineHeight} + 10px)) + (${verticalPadding} + ${borderWidthBase}) * 2)`;
|
|
8779
8681
|
return { padding, dimension };
|
|
8780
8682
|
};
|
|
8781
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8782
|
-
/**
|
|
8783
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8784
|
-
*/
|
|
8785
8683
|
const getComponentCss$r = (isCompact, isDisabled, isSelected, state, hasIcon, hasSlottedContent) => {
|
|
8786
8684
|
const { formStateBackgroundColor, formStateBorderColor, formStateBorderHoverColor } = getThemedFormStateColors(state);
|
|
8787
8685
|
const { dimension, padding } = getScalableItemStyles(hasIcon && hasSlottedContent, isCompact);
|
|
@@ -8888,10 +8786,6 @@ const getComponentCss$q = (minWidth, maxWidth, columns, disabled, hideLabel, sta
|
|
|
8888
8786
|
};
|
|
8889
8787
|
|
|
8890
8788
|
const cssVarInternalSelectOptionScaling = '--p-internal-select-option-scaling';
|
|
8891
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8892
|
-
/**
|
|
8893
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8894
|
-
*/
|
|
8895
8789
|
const getComponentCss$p = (isDisabled) => {
|
|
8896
8790
|
return getCss({
|
|
8897
8791
|
'@global': {
|
|
@@ -8917,10 +8811,6 @@ const getComponentCss$p = (isDisabled) => {
|
|
|
8917
8811
|
};
|
|
8918
8812
|
|
|
8919
8813
|
const cssVarInternalSelectScaling = '--p-internal-select-scaling';
|
|
8920
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
8921
|
-
/**
|
|
8922
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
8923
|
-
*/
|
|
8924
8814
|
const getComponentCss$o = (isOpen, isDisabled, hideLabel, state, isCompact) => {
|
|
8925
8815
|
return getCss({
|
|
8926
8816
|
'@global': {
|
|
@@ -9118,10 +9008,6 @@ const svgNumber = [
|
|
|
9118
9008
|
'<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"/>',
|
|
9119
9009
|
'<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"/>',
|
|
9120
9010
|
];
|
|
9121
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9122
|
-
/**
|
|
9123
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9124
|
-
*/
|
|
9125
9011
|
const getComponentCss$l = (state, disabled) => {
|
|
9126
9012
|
const isStateCurrent = state === 'current';
|
|
9127
9013
|
const isStateCurrentOrUndefined = !state || isStateCurrent;
|
|
@@ -9233,10 +9119,6 @@ const getColors$1 = (checked, loading) => {
|
|
|
9233
9119
|
textColor: colorPrimary,
|
|
9234
9120
|
};
|
|
9235
9121
|
};
|
|
9236
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9237
|
-
/**
|
|
9238
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9239
|
-
*/
|
|
9240
9122
|
const getComponentCss$j = (alignLabel, hideLabel, isStretched, isChecked, isDisabled, isLoading, isCompact) => {
|
|
9241
9123
|
const { buttonBorderColor, buttonBorderColorHover, buttonBackgroundColor, toggleBackgroundColor, textColor } = getColors$1(isChecked, isLoading);
|
|
9242
9124
|
const disabledOrLoading = isDisabledOrLoading(isDisabled, isLoading);
|
|
@@ -9696,10 +9578,6 @@ const getComponentCss$9 = () => {
|
|
|
9696
9578
|
};
|
|
9697
9579
|
|
|
9698
9580
|
const cssVarInternalTagDismissibleScaling = '--p-internal-tag-dismissible-scaling';
|
|
9699
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9700
|
-
/**
|
|
9701
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9702
|
-
*/
|
|
9703
9581
|
const getComponentCss$8 = (hasLabel, isCompact) => {
|
|
9704
9582
|
const buttonPaddingBlock = hasLabel
|
|
9705
9583
|
? `calc(16.8px * (var(${cssVarInternalTagDismissibleScaling}) - 0.64285714))`
|
|
@@ -9765,26 +9643,26 @@ const getComponentCss$8 = (hasLabel, isCompact) => {
|
|
|
9765
9643
|
const colorTextMap = {
|
|
9766
9644
|
primary: colorCanvas,
|
|
9767
9645
|
secondary: colorPrimary,
|
|
9768
|
-
info:
|
|
9769
|
-
success:
|
|
9770
|
-
warning:
|
|
9771
|
-
error:
|
|
9646
|
+
info: colorCanvas,
|
|
9647
|
+
success: colorCanvas,
|
|
9648
|
+
warning: colorCanvas,
|
|
9649
|
+
error: colorCanvas,
|
|
9772
9650
|
};
|
|
9773
9651
|
const colorBackgroundMap = {
|
|
9774
9652
|
primary: colorPrimary,
|
|
9775
9653
|
secondary: colorFrostedStrong,
|
|
9776
|
-
info:
|
|
9777
|
-
success:
|
|
9778
|
-
warning:
|
|
9779
|
-
error:
|
|
9654
|
+
info: colorInfo,
|
|
9655
|
+
success: colorSuccess,
|
|
9656
|
+
warning: colorWarning,
|
|
9657
|
+
error: colorError,
|
|
9780
9658
|
};
|
|
9781
9659
|
const colorBackgroundHoverMap = {
|
|
9782
9660
|
primary: colorContrastHigh,
|
|
9783
9661
|
secondary: colorFrosted,
|
|
9784
|
-
info:
|
|
9785
|
-
success:
|
|
9786
|
-
warning:
|
|
9787
|
-
error:
|
|
9662
|
+
info: colorInfoMedium,
|
|
9663
|
+
success: colorSuccessMedium,
|
|
9664
|
+
warning: colorWarningMedium,
|
|
9665
|
+
error: colorErrorMedium,
|
|
9788
9666
|
};
|
|
9789
9667
|
const getColors = (variant) => {
|
|
9790
9668
|
return {
|
|
@@ -9813,7 +9691,10 @@ const getComponentCss$7 = (variant, compact, isFocusable, hasIcon) => {
|
|
|
9813
9691
|
padding: compact ? '1px 6px' : `${spacingStaticXSmall} 9px`,
|
|
9814
9692
|
borderRadius: `var(${legacyRadiusSmall}, calc(${compact ? '1px' : spacingStaticXSmall} + (${fontLineHeight} / 2)))`, // ensures pill shape has a maximum border radius to support multiline.
|
|
9815
9693
|
font: textXSmallStyle.font,
|
|
9816
|
-
...
|
|
9694
|
+
...(variant === 'secondary' && {
|
|
9695
|
+
WebkitBackdropFilter: blurFrosted,
|
|
9696
|
+
backdropFilter: blurFrosted,
|
|
9697
|
+
}),
|
|
9817
9698
|
color: textColor,
|
|
9818
9699
|
background: backgroundColor,
|
|
9819
9700
|
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
|
|
@@ -9946,7 +9827,7 @@ const getComponentCss$5 = () => {
|
|
|
9946
9827
|
|
|
9947
9828
|
const TEXT_TAGS = ['p', 'span', 'div', 'address', 'blockquote', 'figcaption', 'cite', 'time', 'legend'];
|
|
9948
9829
|
|
|
9949
|
-
const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
9830
|
+
const getComponentCss$4 = (size, weight, align, color, hyphens, ellipsis) => {
|
|
9950
9831
|
return getCss({
|
|
9951
9832
|
'@global': {
|
|
9952
9833
|
':host': {
|
|
@@ -9968,6 +9849,10 @@ const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
|
9968
9849
|
})),
|
|
9969
9850
|
color: colorMap$3[color],
|
|
9970
9851
|
textAlign: align,
|
|
9852
|
+
hyphens,
|
|
9853
|
+
...((hyphens === 'auto' || hyphens === 'manual') && {
|
|
9854
|
+
overflowWrap: 'break-word',
|
|
9855
|
+
}),
|
|
9971
9856
|
...(ellipsis && {
|
|
9972
9857
|
maxWidth: '100%',
|
|
9973
9858
|
overflow: 'hidden',
|
|
@@ -9979,9 +9864,7 @@ const getComponentCss$4 = (size, weight, align, color, ellipsis) => {
|
|
|
9979
9864
|
};
|
|
9980
9865
|
|
|
9981
9866
|
const cssVarInternalTextareaScaling = '--p-internal-textarea-scaling';
|
|
9982
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
9983
9867
|
/**
|
|
9984
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
9985
9868
|
* @css-variable {"name":"--p-textarea-field-sizing","description":"Controls CSS `field-sizing` for textarea.","defaultValue":"unset"}
|
|
9986
9869
|
* @css-variable {"name":"--p-textarea-min-width","description":"Minimum width of the textarea.","defaultValue":"52px"}
|
|
9987
9870
|
* @css-variable {"name":"--p-textarea-max-width","description":"Maximum width of the textarea.","defaultValue":"unset"}
|
|
@@ -10094,10 +9977,6 @@ const getKeyframesMobile = (direction, bottomVar) => getKeyframes(direction, {
|
|
|
10094
9977
|
transform: `translate3d(0,calc(var(${bottomVar}) + 100%),0)`, // space before and after "+" is crucial
|
|
10095
9978
|
});
|
|
10096
9979
|
const toastCloseClassName = 'close';
|
|
10097
|
-
// CSS Variable defined in fontHyphenationStyle
|
|
10098
|
-
/**
|
|
10099
|
-
* @css-variable {"name": "--p-hyphens", "description": "Sets the CSS `hyphens` property for text elements, controlling whether words can break and hyphenate automatically.", "defaultValue": "auto"}
|
|
10100
|
-
*/
|
|
10101
9980
|
const getComponentCss$1 = () => {
|
|
10102
9981
|
return getCss({
|
|
10103
9982
|
'@global': {
|