@vodafone_de/brix-components 3.1.28 → 3.1.30
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/dist/{TextColor-BXiR5Uq9.js → TextColor-DsntmDNw.js} +4 -4
- package/dist/{colorUtils-uLZF5UIN.js → colorUtils-BSfFfgbi.js} +4 -4
- package/dist/components/Accordion/index.js +1 -1
- package/dist/components/Badge/index.js +2 -2
- package/dist/components/BottomBar/index.js +1 -1
- package/dist/components/Button/index.js +2 -2
- package/dist/components/ButtonAsLink/index.js +1 -1
- package/dist/components/ButtonGroup/index.js +1 -1
- package/dist/components/Card/index.js +3 -3
- package/dist/components/Carousel/index.js +2 -2
- package/dist/components/Checkbox/index.js +1 -1
- package/dist/components/CheckboxGroup/index.js +1 -1
- package/dist/components/ColorSwatch/index.js +1 -1
- package/dist/components/ColorSwatchGroup/index.js +1 -1
- package/dist/components/Container/index.js +1 -1
- package/dist/components/DateInput/index.js +2 -2
- package/dist/components/DemoBox/index.js +2 -2
- package/dist/components/DiscoveryCard/index.js +4 -4
- package/dist/components/DiscoveryCardGroup/index.js +1 -1
- package/dist/components/Fieldset/index.js +1 -1
- package/dist/components/FilterGroup/index.js +1 -1
- package/dist/components/Flex/index.js +4 -4
- package/dist/components/FormHelperMessage/index.js +1 -1
- package/dist/components/GoogleMap/index.js +1 -1
- package/dist/components/GridItem/index.js +1 -1
- package/dist/components/Heading/index.js +1 -1
- package/dist/components/IconButton/index.js +1 -1
- package/dist/components/IconSnippet/index.js +1 -1
- package/dist/components/ImageHeader/index.js +4 -4
- package/dist/components/InlineLink/index.js +1 -1
- package/dist/components/Input/index.js +4 -4
- package/dist/components/Legend/index.js +1 -1
- package/dist/components/Link/index.js +1 -1
- package/dist/components/LinkAsButton/index.js +1 -1
- package/dist/components/LinkListItem/index.js +3 -3
- package/dist/components/Notification/index.js +1 -1
- package/dist/components/PickerGroup/index.js +3 -3
- package/dist/components/Price/index.js +9 -9
- package/dist/components/ProductCard/index.js +2 -2
- package/dist/components/RadioGroup/index.js +1 -1
- package/dist/components/RichText/index.js +1 -1
- package/dist/components/SearchInput/index.js +2 -2
- package/dist/components/SearchInput/styled.d.ts +1 -1
- package/dist/components/SelectInput/index.js +2 -2
- package/dist/components/SuggestInput/index.js +3 -3
- package/dist/components/TabularPrice/index.js +1 -1
- package/dist/components/TextList/index.js +3 -3
- package/dist/components/Textarea/index.js +2 -2
- package/dist/components/Tray/index.js +1 -1
- package/dist/{index-Cy-Cg4bU.js → index-BeSd-V81.js} +2 -2
- package/dist/{index-eiZAFM1T.js → index-DhnCGoB_.js} +2 -2
- package/dist/{index-BtMpJbZ-.js → index-VyKg-44v.js} +1 -1
- package/dist/{index-Bt1uVtoc.js → index-ZHkR70j3.js} +3 -3
- package/dist/{index-Bm66OyL0.js → index-aUJfXBUI.js} +9 -9
- package/dist/index.d.ts +169 -0
- package/dist/index.js +288 -0
- package/dist/{props-Czq9XX2J.js → props-DDpgcryb.js} +2 -2
- package/dist/{styled-CpoX5USb.js → styled-B0YKfXTz.js} +2 -2
- package/dist/{styled-Wlt68LfQ.js → styled-ChvU5bUu.js} +2 -2
- package/dist/{styled-BPTa90Cm.js → styled-CuLmB_mg.js} +1 -1
- package/dist/{styled-CXSdomF5.js → styled-ODPFCF1a.js} +1 -1
- package/dist/{styled-BpvuD699.js → styled-WguHd6ON.js} +3 -3
- package/dist/{styled-CDWclYAa.js → styled-zTRfFBiH.js} +1 -1
- package/package.json +9 -2
- package/vodafone_de-brix-components-3.1.30.tgz +0 -0
|
@@ -7,10 +7,10 @@ const colorTextCritical = "colorTextCritical";
|
|
|
7
7
|
const colorTextPlaceholder = "colorTextPlaceholder";
|
|
8
8
|
export {
|
|
9
9
|
colorTextNeutral as a,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
colorTextInverseStatic as b,
|
|
11
|
+
colorTextPlaceholder as c,
|
|
12
|
+
colorTextNeutralStatic as d,
|
|
13
|
+
colorTextInverse as e,
|
|
14
14
|
colorTextBrand as f,
|
|
15
15
|
colorTextCritical as g
|
|
16
16
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getTextColor } from "./foundations/token/getTextColor/index.js";
|
|
2
|
-
import {
|
|
2
|
+
import { b as colorTextInverseStatic, a as colorTextNeutral, d as colorTextNeutralStatic, e as colorTextInverse } from "./TextColor-DsntmDNw.js";
|
|
3
3
|
const backgroundForegroundColorMapping = {
|
|
4
4
|
colorBackgroundBrand: getTextColor(colorTextInverseStatic),
|
|
5
5
|
colorBackgroundNeutral: getTextColor(colorTextNeutral),
|
|
@@ -87,8 +87,8 @@ const getContrastRatio = (color1, color2) => {
|
|
|
87
87
|
return (lighter + 0.05) / (darker + 0.05);
|
|
88
88
|
};
|
|
89
89
|
export {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
getContrastRatio as a,
|
|
91
|
+
getForegroundColor as b,
|
|
92
|
+
getComputedBackgroundColor as g,
|
|
93
93
|
parseColorToRgbObject as p
|
|
94
94
|
};
|
|
@@ -18,7 +18,7 @@ import { j as colorBorderSubtle, c as colorBorderFocus } from "../../BorderColor
|
|
|
18
18
|
import { f as borderWidthNone, b as borderWidthUnselected, a as borderWidthFocus } from "../../BorderWidth-DfOlyKK7.js";
|
|
19
19
|
import { b as fontWeightRegular, f as fontWeightBold } from "../../FontWeight-CR22KTex.js";
|
|
20
20
|
import { s as spacingMd, b as spacingNone, a as spacingXs } from "../../Spacing-D0HQH9YJ.js";
|
|
21
|
-
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-
|
|
21
|
+
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-DsntmDNw.js";
|
|
22
22
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
23
23
|
const accordionToggleExpanded = "expanded";
|
|
24
24
|
const accordionToggleCollapsing = "collapsing";
|
|
@@ -4,8 +4,8 @@ import "../../index-Cbojl4_Q.js";
|
|
|
4
4
|
import "../../Spacing-D0HQH9YJ.js";
|
|
5
5
|
import "../../SizeTypes-Ck_RdzIf.js";
|
|
6
6
|
import "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
7
|
-
import {
|
|
7
|
+
import { a, B } from "../../index-ZHkR70j3.js";
|
|
8
8
|
export {
|
|
9
|
-
|
|
9
|
+
a as BadgeAppearanceColor,
|
|
10
10
|
B as default
|
|
11
11
|
};
|
|
@@ -4,7 +4,7 @@ import { useRef, useState, useEffect } from "react";
|
|
|
4
4
|
import { s as spacingMd, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
5
5
|
import Container from "../Container/index.js";
|
|
6
6
|
import styled from "styled-components";
|
|
7
|
-
import {
|
|
7
|
+
import { a as CardStyled } from "../../styled-WguHd6ON.js";
|
|
8
8
|
import { getBorderRadius } from "../../foundations/token/getBorderRadius/index.js";
|
|
9
9
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
10
10
|
import { a as borderRadiusNone } from "../../BorderRadius-ClUShVLu.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { r as renderInlineRichTextFromOpenText } from "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
4
|
-
import { B as ButtonAsLink, g as getButtonIcon } from "../../index-
|
|
5
|
-
import { B as ButtonStyled } from "../../styled-
|
|
4
|
+
import { B as ButtonAsLink, g as getButtonIcon } from "../../index-VyKg-44v.js";
|
|
5
|
+
import { B as ButtonStyled } from "../../styled-CuLmB_mg.js";
|
|
6
6
|
const buttonFullWidth = "full";
|
|
7
7
|
const buttonAutoWidth = "auto";
|
|
8
8
|
const isButtonAsLinkProp = (props) => {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsx, Fragment } from "react/jsx-runtime";
|
|
3
3
|
import Button from "../Button/index.js";
|
|
4
4
|
import Flex from "../Flex/index.js";
|
|
5
|
-
import { f as flexOrientationHorizontal,
|
|
5
|
+
import { f as flexOrientationHorizontal, b as flexJustifyStart } from "../../styled-B0YKfXTz.js";
|
|
6
6
|
import FlexItem from "../FlexItem/index.js";
|
|
7
7
|
import { c as spacingSm, s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
8
8
|
import { useViewport } from "../../hooks/useViewport/index.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
3
|
import { d as divTagName } from "../../tags-DI6H1biK.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { a as CardStyled } from "../../styled-WguHd6ON.js";
|
|
5
|
+
import { C } from "../../styled-WguHd6ON.js";
|
|
6
6
|
const Card = ({
|
|
7
7
|
children,
|
|
8
8
|
className,
|
|
@@ -13,6 +13,6 @@ const Card = ({
|
|
|
13
13
|
...props
|
|
14
14
|
}) => /* @__PURE__ */ jsx(CardStyled, { ...props, className: (className ? className : "") + (isMobileDark ? " DarkMobile" : "") + ("Dark" === theme || "secondary" === appearance ? " Dark" : ""), appearance, as: tag, children });
|
|
15
15
|
export {
|
|
16
|
-
|
|
16
|
+
C as CardAppearanceColor,
|
|
17
17
|
Card as default
|
|
18
18
|
};
|
|
@@ -6,9 +6,9 @@ import { useFocusWithin } from "../../hooks/useFocusWithin/index.js";
|
|
|
6
6
|
import { l as liTagName, u as ulTagName } from "../../tags-DI6H1biK.js";
|
|
7
7
|
import { s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
8
8
|
import styled from "styled-components";
|
|
9
|
-
import {
|
|
9
|
+
import { a as CardStyled } from "../../styled-WguHd6ON.js";
|
|
10
10
|
import { G as GridStyled } from "../../styled-ZpQohvyx.js";
|
|
11
|
-
import { G as GridItemStyled } from "../../styled-
|
|
11
|
+
import { G as GridItemStyled } from "../../styled-ChvU5bUu.js";
|
|
12
12
|
import { v as viewport } from "../../index-Ck2bCrhT.js";
|
|
13
13
|
import { getBorderRadius } from "../../foundations/token/getBorderRadius/index.js";
|
|
14
14
|
import { getBottomSpacing } from "../../foundations/token/getBottomSpacing/index.js";
|
|
@@ -3,7 +3,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { iv as iconSizeSm, eB as NotificationErrorIcon } from "../../index-Cbojl4_Q.js";
|
|
4
4
|
import { useState, useEffect } from "react";
|
|
5
5
|
import FormHelperMessage from "../FormHelperMessage/index.js";
|
|
6
|
-
import {
|
|
6
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
7
7
|
import styled from "styled-components";
|
|
8
8
|
import Label from "../Label/index.js";
|
|
9
9
|
import forcedColors from "../../foundations/media-query/forcedColors/index.js";
|
|
@@ -5,7 +5,7 @@ import Checkbox from "../Checkbox/index.js";
|
|
|
5
5
|
import Fieldset from "../Fieldset/index.js";
|
|
6
6
|
import { f as spacingLg, s as spacingMd, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
7
7
|
import styled from "styled-components";
|
|
8
|
-
import { F as FlexStyled } from "../../styled-
|
|
8
|
+
import { F as FlexStyled } from "../../styled-B0YKfXTz.js";
|
|
9
9
|
import { getBottomSpacing } from "../../foundations/token/getBottomSpacing/index.js";
|
|
10
10
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
11
11
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
3
|
import { useState, useRef, useEffect } from "react";
|
|
4
|
-
import {
|
|
4
|
+
import { g as getComputedBackgroundColor, p as parseColorToRgbObject, a as getContrastRatio } from "../../colorUtils-BSfFfgbi.js";
|
|
5
5
|
import { iu as iconSizeMd } from "../../index-Cbojl4_Q.js";
|
|
6
6
|
import styled from "styled-components";
|
|
7
7
|
import forcedColors from "../../foundations/media-query/forcedColors/index.js";
|
|
@@ -4,7 +4,7 @@ import { s as spacingMd, e as spacing2Xs } from "../../Spacing-D0HQH9YJ.js";
|
|
|
4
4
|
import ColorSwatch, { colorSwatchSizeSmall } from "../ColorSwatch/index.js";
|
|
5
5
|
import { iu as iconSizeMd } from "../../index-Cbojl4_Q.js";
|
|
6
6
|
import styled from "styled-components";
|
|
7
|
-
import { F as FlexStyled } from "../../styled-
|
|
7
|
+
import { F as FlexStyled } from "../../styled-B0YKfXTz.js";
|
|
8
8
|
import { getBottomSpacing } from "../../foundations/token/getBottomSpacing/index.js";
|
|
9
9
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
10
10
|
import { g as getCssVar } from "../../getCssVar-BP6T9pFM.js";
|
|
@@ -9,7 +9,7 @@ import { getTextColor } from "../../foundations/token/getTextColor/index.js";
|
|
|
9
9
|
import { j as colorBorderSubtle } from "../../BorderColor-BummoQ1-.js";
|
|
10
10
|
import { e as borderWidthDivider } from "../../BorderWidth-DfOlyKK7.js";
|
|
11
11
|
import { d as spacingXl, s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
12
|
-
import { a as colorTextNeutral } from "../../TextColor-
|
|
12
|
+
import { a as colorTextNeutral } from "../../TextColor-DsntmDNw.js";
|
|
13
13
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
14
14
|
import { e as colorBackgroundBrand, d as colorBackgroundBrandGradient, f as colorBackgroundSubtle, c as colorBackgroundNeutral } from "../../BackgroundColor-JObp_2xA.js";
|
|
15
15
|
const ContainerAppearanceColor = {
|
|
@@ -6,8 +6,8 @@ import FormElement from "../FormElement/index.js";
|
|
|
6
6
|
import FormHelperLabel from "../FormHelperLabel/index.js";
|
|
7
7
|
import FormHelperMessage from "../FormHelperMessage/index.js";
|
|
8
8
|
import FormHelperStatusIcon from "../FormHelperStatusIcon/index.js";
|
|
9
|
-
import {
|
|
10
|
-
import { a as InputStyled, I as InputWrapperStyled } from "../../styled-
|
|
9
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
10
|
+
import { a as InputStyled, I as InputWrapperStyled } from "../../styled-zTRfFBiH.js";
|
|
11
11
|
import { s as spacingMd, a as spacingXs } from "../../Spacing-D0HQH9YJ.js";
|
|
12
12
|
import styled from "styled-components";
|
|
13
13
|
const CalendarMonthIconStyled = styled(CalendarMonthIcon).withConfig({
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
3
|
import IconSnippet from "../IconSnippet/index.js";
|
|
4
4
|
import { t as textHeadingXs } from "../../HeadingSize-CfCRn3Lh.js";
|
|
5
|
-
import { g as getUid } from "../../index-
|
|
6
|
-
import { D as DemoBoxStyled } from "../../styled-
|
|
5
|
+
import { g as getUid } from "../../index-BeSd-V81.js";
|
|
6
|
+
import { D as DemoBoxStyled } from "../../styled-ODPFCF1a.js";
|
|
7
7
|
const heading = {
|
|
8
8
|
component: "Heading",
|
|
9
9
|
children: "Child component",
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { Fragment } from "react";
|
|
4
|
-
import { R as RichText } from "../../index-
|
|
4
|
+
import { R as RichText } from "../../index-BeSd-V81.js";
|
|
5
5
|
import { f as fontWeightBold } from "../../FontWeight-CR22KTex.js";
|
|
6
6
|
import { b as textHeadingSm } from "../../HeadingSize-CfCRn3Lh.js";
|
|
7
7
|
import { s as spacingMd, b as spacingNone, a as spacingXs, c as spacingSm } from "../../Spacing-D0HQH9YJ.js";
|
|
8
8
|
import { s as smallSize } from "../../SizeTypes-Ck_RdzIf.js";
|
|
9
|
-
import {
|
|
9
|
+
import { b as BadgeStyled, B as Badge } from "../../index-ZHkR70j3.js";
|
|
10
10
|
import Body, { bodyAlignLeft, bodyAlignCenter } from "../Body/index.js";
|
|
11
11
|
import Heading from "../Heading/index.js";
|
|
12
12
|
import Link from "../Link/index.js";
|
|
13
|
-
import { P as Price,
|
|
13
|
+
import { P as Price, b as priceSizeSm, f as priceAlignLeft, g as priceAlignCenter, a as priceOrientationVertical } from "../../index-aUJfXBUI.js";
|
|
14
14
|
import Image, { aspectRatio16_9, aspectRatio1_1 } from "../Image/index.js";
|
|
15
15
|
import { a as cornerRounded } from "../../CornerStyle-JEbGNArR.js";
|
|
16
16
|
import styled from "styled-components";
|
|
@@ -18,7 +18,7 @@ import { getBottomSpacing } from "../../foundations/token/getBottomSpacing/index
|
|
|
18
18
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
19
19
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
20
20
|
import Card from "../Card/index.js";
|
|
21
|
-
import { a as LinkStyled } from "../../index-
|
|
21
|
+
import { a as LinkStyled } from "../../index-DhnCGoB_.js";
|
|
22
22
|
const discoveryCardOrientationVertical = "vertical";
|
|
23
23
|
const discoveryCardOrientationHorizontal = "horizontal";
|
|
24
24
|
const DiscoveryCardStyled = styled(Card).withConfig({
|
|
@@ -6,7 +6,7 @@ import Grid from "../Grid/index.js";
|
|
|
6
6
|
import GridItem from "../GridItem/index.js";
|
|
7
7
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
8
8
|
import { s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
9
|
-
import { a as LinkStyled } from "../../index-
|
|
9
|
+
import { a as LinkStyled } from "../../index-DhnCGoB_.js";
|
|
10
10
|
const DiscoveryCardGroupGridStyled = styled(Grid).withConfig({
|
|
11
11
|
displayName: "DiscoveryCardGroupGridStyled",
|
|
12
12
|
componentId: "sc-6axszn-0"
|
|
@@ -3,7 +3,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { eB as NotificationErrorIcon } from "../../index-Cbojl4_Q.js";
|
|
4
4
|
import { forwardRef } from "react";
|
|
5
5
|
import FormHelperMessage from "../FormHelperMessage/index.js";
|
|
6
|
-
import {
|
|
6
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
7
7
|
import Legend from "../Legend/index.js";
|
|
8
8
|
import { s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
9
9
|
import styled from "styled-components";
|
|
@@ -22,7 +22,7 @@ import { b as borderWidthUnselected, a as borderWidthFocus } from "../../BorderW
|
|
|
22
22
|
import { b as colorObjectSelected } from "../../ObjectColor-BZDBuV8H.js";
|
|
23
23
|
import { a as spacingXs, b as spacingNone, e as spacing2Xs, c as spacingSm } from "../../Spacing-D0HQH9YJ.js";
|
|
24
24
|
import { t as textBodyMd } from "../../TextBodySize-BcZR9mh2.js";
|
|
25
|
-
import { a as colorTextNeutral,
|
|
25
|
+
import { a as colorTextNeutral, b as colorTextInverseStatic } from "../../TextColor-DsntmDNw.js";
|
|
26
26
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
27
27
|
const FilterGroupStyled = styled.div.withConfig({
|
|
28
28
|
shouldForwardProp: filterProps(),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
import { F as FlexStyled } from "../../styled-
|
|
4
|
-
import { e, d, c,
|
|
3
|
+
import { F as FlexStyled } from "../../styled-B0YKfXTz.js";
|
|
4
|
+
import { e, d, c, b, f, a } from "../../styled-B0YKfXTz.js";
|
|
5
5
|
const Flex = ({
|
|
6
6
|
children,
|
|
7
7
|
...props
|
|
@@ -11,7 +11,7 @@ export {
|
|
|
11
11
|
e as flexJustifyBetween,
|
|
12
12
|
d as flexJustifyCenter,
|
|
13
13
|
c as flexJustifyEnd,
|
|
14
|
-
|
|
14
|
+
b as flexJustifyStart,
|
|
15
15
|
f as flexOrientationHorizontal,
|
|
16
|
-
|
|
16
|
+
a as flexOrientationVertical
|
|
17
17
|
};
|
|
@@ -6,7 +6,7 @@ import styled from "styled-components";
|
|
|
6
6
|
import Body from "../Body/index.js";
|
|
7
7
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
8
8
|
import { getTextColor } from "../../foundations/token/getTextColor/index.js";
|
|
9
|
-
import { g as colorTextCritical } from "../../TextColor-
|
|
9
|
+
import { g as colorTextCritical } from "../../TextColor-DsntmDNw.js";
|
|
10
10
|
const FormHelperMessageStyled = styled(Body).withConfig({
|
|
11
11
|
displayName: "FormHelperMessageStyled",
|
|
12
12
|
componentId: "sc-cxtjnu-0"
|
|
@@ -7,7 +7,7 @@ import { useThirdPartyConsent } from "../../hooks/useThirdPartyConsent/index.js"
|
|
|
7
7
|
import Body, { bodyAlignCenter } from "../Body/index.js";
|
|
8
8
|
import Button, { buttonAutoWidth } from "../Button/index.js";
|
|
9
9
|
import styled from "styled-components";
|
|
10
|
-
import { B as ButtonStyled, t as tertiaryAppearance } from "../../styled-
|
|
10
|
+
import { B as ButtonStyled, t as tertiaryAppearance } from "../../styled-CuLmB_mg.js";
|
|
11
11
|
import { v as viewport } from "../../index-Ck2bCrhT.js";
|
|
12
12
|
import { getBackgroundColor } from "../../foundations/token/getBackgroundColor/index.js";
|
|
13
13
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
3
|
import { d as divTagName } from "../../tags-DI6H1biK.js";
|
|
4
|
-
import { G as GridItemStyled } from "../../styled-
|
|
4
|
+
import { G as GridItemStyled } from "../../styled-ChvU5bUu.js";
|
|
5
5
|
const GridItem = ({
|
|
6
6
|
sm = 12,
|
|
7
7
|
tag = divTagName,
|
|
@@ -10,7 +10,7 @@ import { getFontWeight } from "../../foundations/token/getFontWeight/index.js";
|
|
|
10
10
|
import { getHeadingSize } from "../../foundations/token/getHeadingSize/index.js";
|
|
11
11
|
import { getTextColor } from "../../foundations/token/getTextColor/index.js";
|
|
12
12
|
import { f as fontWeightBold, a as fontWeightLight } from "../../FontWeight-CR22KTex.js";
|
|
13
|
-
import { a as colorTextNeutral } from "../../TextColor-
|
|
13
|
+
import { a as colorTextNeutral } from "../../TextColor-DsntmDNw.js";
|
|
14
14
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
15
15
|
const headingAlignLeft = "left";
|
|
16
16
|
const headingAlignCenter = "center";
|
|
@@ -13,7 +13,7 @@ import { b as borderRadiusMd, c as borderRadiusFull } from "../../BorderRadius-C
|
|
|
13
13
|
import { d as borderWidthSelected } from "../../BorderWidth-DfOlyKK7.js";
|
|
14
14
|
import { a as opacityDisabled } from "../../Opacity-smkGiwsf.js";
|
|
15
15
|
import { a as spacingXs, s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
16
|
-
import { b as buttonHeight, g as getButtonAppearance, p as primaryAppearance, a as ButtonAppearanceColor } from "../../styled-
|
|
16
|
+
import { b as buttonHeight, g as getButtonAppearance, p as primaryAppearance, a as ButtonAppearanceColor } from "../../styled-CuLmB_mg.js";
|
|
17
17
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
18
18
|
import { g as getCssVar } from "../../getCssVar-BP6T9pFM.js";
|
|
19
19
|
const iconButtonShapeSquare = "square";
|
|
@@ -4,7 +4,7 @@ import { df as IconLoader, iu as iconSizeMd, io as iconSize2xl } from "../../ind
|
|
|
4
4
|
import Body from "../Body/index.js";
|
|
5
5
|
import Heading from "../Heading/index.js";
|
|
6
6
|
import InlineLink from "../InlineLink/index.js";
|
|
7
|
-
import { R as RichText } from "../../index-
|
|
7
|
+
import { R as RichText } from "../../index-BeSd-V81.js";
|
|
8
8
|
import { d as divTagName } from "../../tags-DI6H1biK.js";
|
|
9
9
|
import { a as spacingXs, s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
10
10
|
import Link from "../Link/index.js";
|
|
@@ -4,13 +4,13 @@ import Body from "../Body/index.js";
|
|
|
4
4
|
import { a as fontWeightLight } from "../../FontWeight-CR22KTex.js";
|
|
5
5
|
import { s as spacingMd, c as spacingSm, d as spacingXl, a as spacingXs, e as spacing2Xs, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
6
6
|
import { m as mediumSize } from "../../SizeTypes-Ck_RdzIf.js";
|
|
7
|
-
import { g as getUid, R as RichText } from "../../index-
|
|
7
|
+
import { g as getUid, R as RichText } from "../../index-BeSd-V81.js";
|
|
8
8
|
import Button from "../Button/index.js";
|
|
9
9
|
import Container from "../Container/index.js";
|
|
10
10
|
import Heading, { headingAlignCenter } from "../Heading/index.js";
|
|
11
|
-
import { P as Price,
|
|
11
|
+
import { P as Price, b as priceSizeSm } from "../../index-aUJfXBUI.js";
|
|
12
12
|
import styled from "styled-components";
|
|
13
|
-
import { B as Badge } from "../../index-
|
|
13
|
+
import { B as Badge } from "../../index-ZHkR70j3.js";
|
|
14
14
|
import ButtonGroup from "../ButtonGroup/index.js";
|
|
15
15
|
import Grid from "../Grid/index.js";
|
|
16
16
|
import GridItem from "../GridItem/index.js";
|
|
@@ -21,7 +21,7 @@ import { getBodySize } from "../../foundations/token/getBodySize/index.js";
|
|
|
21
21
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
22
22
|
import { a as colorBackgroundOverlay } from "../../BackgroundColor-JObp_2xA.js";
|
|
23
23
|
import { t as textBodyMd } from "../../TextBodySize-BcZR9mh2.js";
|
|
24
|
-
import {
|
|
24
|
+
import { a as flexOrientationVertical } from "../../styled-B0YKfXTz.js";
|
|
25
25
|
const imageHeaderVariantFull = "full";
|
|
26
26
|
const imageHeaderVariantSplit = "split";
|
|
27
27
|
const imageHeaderPositionRight = "right";
|
|
@@ -8,7 +8,7 @@ import { getBorderWidth } from "../../foundations/token/getBorderWidth/index.js"
|
|
|
8
8
|
import { getTextColor } from "../../foundations/token/getTextColor/index.js";
|
|
9
9
|
import { c as colorBorderFocus } from "../../BorderColor-BummoQ1-.js";
|
|
10
10
|
import { a as borderWidthFocus } from "../../BorderWidth-DfOlyKK7.js";
|
|
11
|
-
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-
|
|
11
|
+
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-DsntmDNw.js";
|
|
12
12
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
13
13
|
const hover = {
|
|
14
14
|
textDecoration: "none",
|
|
@@ -7,9 +7,9 @@ import FormHelperMessage from "../FormHelperMessage/index.js";
|
|
|
7
7
|
import FormHelperStatusIcon from "../FormHelperStatusIcon/index.js";
|
|
8
8
|
import { s as spacingMd, a as spacingXs } from "../../Spacing-D0HQH9YJ.js";
|
|
9
9
|
import { r as renderInlineRichTextFromOpenText } from "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { I as InputWrapperStyled, a as InputStyled } from "../../styled-
|
|
10
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
11
|
+
import { i } from "../../props-DDpgcryb.js";
|
|
12
|
+
import { I as InputWrapperStyled, a as InputStyled } from "../../styled-zTRfFBiH.js";
|
|
13
13
|
const Input = forwardRef(({
|
|
14
14
|
uid,
|
|
15
15
|
status,
|
|
@@ -51,5 +51,5 @@ const Input = forwardRef(({
|
|
|
51
51
|
export {
|
|
52
52
|
Input as default,
|
|
53
53
|
inputStateError,
|
|
54
|
-
|
|
54
|
+
i as inputStateSuccess
|
|
55
55
|
};
|
|
@@ -3,7 +3,7 @@ import { jsx, Fragment } from "react/jsx-runtime";
|
|
|
3
3
|
import Body from "../Body/index.js";
|
|
4
4
|
import Heading from "../Heading/index.js";
|
|
5
5
|
import IconSnippet, { iconSnippetAlignCenter } from "../IconSnippet/index.js";
|
|
6
|
-
import { R as RichText } from "../../index-
|
|
6
|
+
import { R as RichText } from "../../index-BeSd-V81.js";
|
|
7
7
|
import styled from "styled-components";
|
|
8
8
|
const LegendStyled = styled.legend.withConfig({
|
|
9
9
|
displayName: "LegendStyled",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { L as LinkAsButton, a as LinkStyled, g as getLinkIcon } from "../../index-
|
|
3
|
+
import { L as LinkAsButton, a as LinkStyled, g as getLinkIcon } from "../../index-DhnCGoB_.js";
|
|
4
4
|
import { r as renderInlineRichTextFromOpenText } from "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
5
5
|
const isLinkAsButtonProp = (props) => {
|
|
6
6
|
return props.href === void 0;
|
|
@@ -4,7 +4,7 @@ import { iu as iconSizeMd, df as IconLoader } from "../../index-Cbojl4_Q.js";
|
|
|
4
4
|
import { s as spanTagName } from "../../tags-DI6H1biK.js";
|
|
5
5
|
import { s as spacingMd, a as spacingXs, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
6
6
|
import { s as smallSize } from "../../SizeTypes-Ck_RdzIf.js";
|
|
7
|
-
import { B as Badge } from "../../index-
|
|
7
|
+
import { B as Badge } from "../../index-ZHkR70j3.js";
|
|
8
8
|
import Body from "../Body/index.js";
|
|
9
9
|
import styled from "styled-components";
|
|
10
10
|
import forcedColors from "../../foundations/media-query/forcedColors/index.js";
|
|
@@ -23,11 +23,11 @@ import { b as borderRadiusMd, a as borderRadiusNone } from "../../BorderRadius-C
|
|
|
23
23
|
import { a as borderWidthFocus, c as borderWidthSm } from "../../BorderWidth-DfOlyKK7.js";
|
|
24
24
|
import { t as textHeadingXs } from "../../HeadingSize-CfCRn3Lh.js";
|
|
25
25
|
import { b as colorIconBrand } from "../../IconColor-CtC9WUgr.js";
|
|
26
|
-
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-
|
|
26
|
+
import { a as colorTextNeutral, f as colorTextBrand } from "../../TextColor-DsntmDNw.js";
|
|
27
27
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
28
28
|
import Card from "../Card/index.js";
|
|
29
29
|
import Icon from "../Icon/index.js";
|
|
30
|
-
import {
|
|
30
|
+
import { C as CardAppearanceColor } from "../../styled-WguHd6ON.js";
|
|
31
31
|
const linkListItemVariantVertical = "vertical";
|
|
32
32
|
const linkListItemVariantHorizontal = "horizontal";
|
|
33
33
|
const focusStyles = {
|
|
@@ -7,7 +7,7 @@ import ButtonGroup from "../ButtonGroup/index.js";
|
|
|
7
7
|
import Flex from "../Flex/index.js";
|
|
8
8
|
import Heading from "../Heading/index.js";
|
|
9
9
|
import Link from "../Link/index.js";
|
|
10
|
-
import { R as RichText } from "../../index-
|
|
10
|
+
import { R as RichText } from "../../index-BeSd-V81.js";
|
|
11
11
|
import { getBorderColor } from "../../foundations/token/getBorderColor/index.js";
|
|
12
12
|
import { getObjectColor } from "../../foundations/token/getObjectColor/index.js";
|
|
13
13
|
import { e as colorBorderCritical, f as colorBorderWarning, d as colorBorderSuccess, k as colorBorderInformation } from "../../BorderColor-BummoQ1-.js";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
import Fieldset from "../Fieldset/index.js";
|
|
4
|
-
import {
|
|
4
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
5
5
|
import { e as spacing2Xs, s as spacingMd, c as spacingSm, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
6
6
|
import { useState, useEffect } from "react";
|
|
7
7
|
import Grid from "../Grid/index.js";
|
|
8
8
|
import { df as IconLoader, iu as iconSizeMd } from "../../index-Cbojl4_Q.js";
|
|
9
|
-
import { B as Badge } from "../../index-
|
|
9
|
+
import { B as Badge } from "../../index-ZHkR70j3.js";
|
|
10
10
|
import ColorSwatch from "../ColorSwatch/index.js";
|
|
11
11
|
import { r as renderInlineRichTextFromOpenText } from "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
12
12
|
import styled from "styled-components";
|
|
@@ -29,7 +29,7 @@ import { b as borderRadiusMd } from "../../BorderRadius-ClUShVLu.js";
|
|
|
29
29
|
import { a as borderWidthFocus, d as borderWidthSelected } from "../../BorderWidth-DfOlyKK7.js";
|
|
30
30
|
import { b as fontWeightRegular, f as fontWeightBold } from "../../FontWeight-CR22KTex.js";
|
|
31
31
|
import { o as opacityOverlay } from "../../Opacity-smkGiwsf.js";
|
|
32
|
-
import { a as colorTextNeutral } from "../../TextColor-
|
|
32
|
+
import { a as colorTextNeutral } from "../../TextColor-DsntmDNw.js";
|
|
33
33
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
34
34
|
import { getHeadingSize } from "../../foundations/token/getHeadingSize/index.js";
|
|
35
35
|
import { t as textHeadingXs } from "../../HeadingSize-CfCRn3Lh.js";
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "../../index-DQhtQZ85.js";
|
|
4
4
|
import "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
5
|
-
import {
|
|
5
|
+
import { c, P, i, g, f, h, p, a, e, d, b } from "../../index-aUJfXBUI.js";
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
c as createScreenReaderText,
|
|
8
8
|
P as default,
|
|
9
9
|
i as internalizePriceProps,
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
g as priceAlignCenter,
|
|
11
|
+
f as priceAlignLeft,
|
|
12
12
|
h as priceDefaultProps,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
p as priceOrientationHorizontal,
|
|
14
|
+
a as priceOrientationVertical,
|
|
15
|
+
e as priceSizeLg,
|
|
16
|
+
d as priceSizeMd,
|
|
17
|
+
b as priceSizeSm
|
|
18
18
|
};
|
|
@@ -5,12 +5,12 @@ import Image, { aspectRatio1_1 } from "../Image/index.js";
|
|
|
5
5
|
import { f as fontWeightBold } from "../../FontWeight-CR22KTex.js";
|
|
6
6
|
import { a as textHeadingMd } from "../../HeadingSize-CfCRn3Lh.js";
|
|
7
7
|
import { s as spacingMd, b as spacingNone } from "../../Spacing-D0HQH9YJ.js";
|
|
8
|
-
import { B as Badge } from "../../index-
|
|
8
|
+
import { B as Badge } from "../../index-ZHkR70j3.js";
|
|
9
9
|
import Body from "../Body/index.js";
|
|
10
10
|
import ColorSwatchGroup from "../ColorSwatchGroup/index.js";
|
|
11
11
|
import Heading from "../Heading/index.js";
|
|
12
12
|
import Link from "../Link/index.js";
|
|
13
|
-
import { P as Price,
|
|
13
|
+
import { P as Price, d as priceSizeMd, g as priceAlignCenter, a as priceOrientationVertical } from "../../index-aUJfXBUI.js";
|
|
14
14
|
import styled from "styled-components";
|
|
15
15
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
16
16
|
import Card from "../Card/index.js";
|
|
@@ -3,7 +3,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { useState, useRef, useEffect, createElement } from "react";
|
|
4
4
|
import Fieldset from "../Fieldset/index.js";
|
|
5
5
|
import Flex from "../Flex/index.js";
|
|
6
|
-
import {
|
|
6
|
+
import { a as inputStateError } from "../../props-DDpgcryb.js";
|
|
7
7
|
import { a as spacingXs, b as spacingNone, c as spacingSm } from "../../Spacing-D0HQH9YJ.js";
|
|
8
8
|
import styled from "styled-components";
|
|
9
9
|
import Label from "../Label/index.js";
|
|
@@ -5,11 +5,11 @@ import { forwardRef, useState, useRef, useImperativeHandle } from "react";
|
|
|
5
5
|
import FormHelperLabel from "../FormHelperLabel/index.js";
|
|
6
6
|
import IconButton, { iconButtonShapeSquare } from "../IconButton/index.js";
|
|
7
7
|
import { b as spacingNone, s as spacingMd } from "../../Spacing-D0HQH9YJ.js";
|
|
8
|
-
import { p as primaryAppearance } from "../../styled-
|
|
8
|
+
import { p as primaryAppearance } from "../../styled-CuLmB_mg.js";
|
|
9
9
|
import { r as renderInlineRichTextFromOpenText } from "../../renderInlineRichTextFromOpenText-RvOG3QbI.js";
|
|
10
10
|
import Form from "../Form/index.js";
|
|
11
11
|
import styled from "styled-components";
|
|
12
|
-
import { I as InputWrapperStyled, a as InputStyled } from "../../styled-
|
|
12
|
+
import { I as InputWrapperStyled, a as InputStyled } from "../../styled-zTRfFBiH.js";
|
|
13
13
|
import { getSpacing } from "../../foundations/token/getSpacing/index.js";
|
|
14
14
|
import { f as filterProps } from "../../filterProps-Cewck8OH.js";
|
|
15
15
|
const SearchInputButtonWrapperStyled = styled.div.withConfig({
|
|
@@ -2,7 +2,7 @@ import { InlineIconProps } from '@vfde-react/inline-icon-library';
|
|
|
2
2
|
import { IconButtonProps } from '../IconButton/props';
|
|
3
3
|
import { SearchInputProps } from './props';
|
|
4
4
|
export declare const SearchInputButtonWrapperStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
|
-
export declare const SearchInputWrapperStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "status" | keyof import('
|
|
5
|
+
export declare const SearchInputWrapperStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "status" | keyof import('../..').PatternProps> & import('../..').PatternProps & {
|
|
6
6
|
status?: import('../Input').InputStatus;
|
|
7
7
|
}, Pick<SearchInputProps, "bottomSpacing" | "value">>> & string;
|
|
8
8
|
export declare const SearchInputIconButtonStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<IconButtonProps, IconButtonProps>> & string & Omit<import('react').FC<IconButtonProps>, keyof import('react').Component<any, {}, any>>;
|