@thecb/components 11.6.3 → 11.6.4-beta.0
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/index.cjs.js +24 -73
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +58 -23
- package/dist/index.esm.js +24 -73
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/badge/Badge.js +25 -39
- package/src/components/atoms/badge/Badge.stories.js +3 -24
- package/src/components/atoms/badge/Badge.theme.js +1 -49
- package/src/components/atoms/badge/index.d.ts +0 -11
- package/src/components/atoms/dropdown/Dropdown.js +3 -2
- package/src/components/atoms/dropdown/index.d.ts +59 -0
- package/src/components/atoms/index.d.ts +1 -1
- package/src/components/molecules/collapsible-section/index.d.ts +2 -2
- package/src/constants/style_constants.js +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { ReactNode
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
3
|
type Color = string;
|
|
4
4
|
|
|
@@ -595,25 +595,6 @@ interface AlertProps {
|
|
|
595
595
|
declare const Alert: React.FC<Expand<AlertProps> &
|
|
596
596
|
React.HTMLAttributes<HTMLElement>>;
|
|
597
597
|
|
|
598
|
-
interface BadgeProps {
|
|
599
|
-
label: string;
|
|
600
|
-
Icon?: JSX.Element;
|
|
601
|
-
iconOnLeft?: boolean;
|
|
602
|
-
variant?:
|
|
603
|
-
| "info"
|
|
604
|
-
| "warn"
|
|
605
|
-
| "primary"
|
|
606
|
-
| "primaryHeadline"
|
|
607
|
-
| "secondary"
|
|
608
|
-
| "secondaryHeadline"
|
|
609
|
-
| "success"
|
|
610
|
-
| "disabled";
|
|
611
|
-
id?: string;
|
|
612
|
-
extraStyles?: string;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
declare const Badge: React.FC<Expand<BadgeProps> & HTMLAttributes<HTMLElement>>;
|
|
616
|
-
|
|
617
598
|
interface ButtonWithActionProps {
|
|
618
599
|
action?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
619
600
|
disabled?: boolean;
|
|
@@ -681,6 +662,60 @@ interface CardProps {
|
|
|
681
662
|
declare const Card: React.FC<Expand<CardProps> &
|
|
682
663
|
React.HTMLAttributes<HTMLElement>>;
|
|
683
664
|
|
|
665
|
+
interface DropdownThemeValues {
|
|
666
|
+
selectedColor?: string;
|
|
667
|
+
hoverColor?: string;
|
|
668
|
+
focusColor?: string;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
interface DropdownProps {
|
|
672
|
+
/** Placeholder text displayed when no value is selected */
|
|
673
|
+
placeholder?: string;
|
|
674
|
+
/** Array of options to display in the dropdown */
|
|
675
|
+
options: FormSelectOption[];
|
|
676
|
+
/** Currently selected value */
|
|
677
|
+
value?: string;
|
|
678
|
+
/** Whether the dropdown is currently open */
|
|
679
|
+
isOpen?: boolean;
|
|
680
|
+
/** Whether the dropdown is in an error state */
|
|
681
|
+
isError?: boolean;
|
|
682
|
+
/** Callback fired when an option is selected */
|
|
683
|
+
onSelect: (value: string) => void;
|
|
684
|
+
/** Array of values that should be disabled */
|
|
685
|
+
disabledValues?: string[];
|
|
686
|
+
/** Callback fired when the dropdown is clicked */
|
|
687
|
+
onClick?: () => void;
|
|
688
|
+
/** Theme values for styling the dropdown */
|
|
689
|
+
themeValues?: DropdownThemeValues;
|
|
690
|
+
/** Maximum height of the dropdown content */
|
|
691
|
+
maxHeight?: string;
|
|
692
|
+
/** Whether the dropdown width should fit its content */
|
|
693
|
+
widthFitOptions?: boolean;
|
|
694
|
+
/** Whether the dropdown is disabled */
|
|
695
|
+
disabled?: boolean;
|
|
696
|
+
/** Whether to show title attributes on options */
|
|
697
|
+
hasTitles?: boolean;
|
|
698
|
+
/** Whether to auto-erase type-ahead input after timeout */
|
|
699
|
+
autoEraseTypeAhead?: boolean;
|
|
700
|
+
/** ID of the element that labels this dropdown */
|
|
701
|
+
ariaLabelledby?: string;
|
|
702
|
+
/** ID of the element that describes this dropdown */
|
|
703
|
+
ariaDescribedby?: string;
|
|
704
|
+
/** Autocomplete attribute value for browser autofill */
|
|
705
|
+
autocompleteValue?: string;
|
|
706
|
+
/** Whether to use smooth scrolling when scrolling to selected item */
|
|
707
|
+
smoothScroll?: boolean;
|
|
708
|
+
/** Whether the dropdown has an invalid value */
|
|
709
|
+
ariaInvalid?: boolean;
|
|
710
|
+
/** Whether the dropdown is required */
|
|
711
|
+
isRequired?: boolean;
|
|
712
|
+
/** Custom CSS styles */
|
|
713
|
+
extraStyles?: string;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
declare const Dropdown: React.FC<Expand<DropdownProps> &
|
|
717
|
+
React.HTMLAttributes<HTMLElement>>;
|
|
718
|
+
|
|
684
719
|
type SortOrder = "asc" | "desc" | null;
|
|
685
720
|
interface SortableTableHeadingProps {
|
|
686
721
|
ariaControlsId: string;
|
|
@@ -1291,7 +1326,7 @@ interface CollapsibleSectionProps {
|
|
|
1291
1326
|
) => void;
|
|
1292
1327
|
isMobile?: boolean;
|
|
1293
1328
|
supportsTouch?: boolean;
|
|
1294
|
-
title?: string
|
|
1329
|
+
title?: string;
|
|
1295
1330
|
customPadding?: string;
|
|
1296
1331
|
initiallyOpen?: boolean;
|
|
1297
1332
|
openHeight?: string;
|
|
@@ -1306,7 +1341,7 @@ interface CollapsibleSectionProps {
|
|
|
1306
1341
|
}
|
|
1307
1342
|
|
|
1308
1343
|
declare const CollapsibleSection: React.FC<Expand<CollapsibleSectionProps> &
|
|
1309
|
-
|
|
1344
|
+
React.HTMLAttributes<HTMLElement>>;
|
|
1310
1345
|
|
|
1311
1346
|
interface CopyableProps {
|
|
1312
1347
|
content: string;
|
|
@@ -1488,5 +1523,5 @@ interface DefaultPageTemplateProps {
|
|
|
1488
1523
|
declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
|
|
1489
1524
|
React.HTMLAttributes<HTMLElement>>;
|
|
1490
1525
|
|
|
1491
|
-
export { AddValidatorAction, Alert, AlertProps, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps,
|
|
1526
|
+
export { AddValidatorAction, Alert, AlertProps, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps, BankIconLarge, BankIconLargeProps, Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, CaretArrowDown, CaretArrowDownProps, CaretArrowUp, CaretArrowUpProps, CashieringImage, Center, CenterProps, ChargebackIconMedium, ChargebackIconMediumProps, ChargebackIconSmall, ChargebackIconSmallProps, ChargebackReversalIconMedium, ChargebackReversalIconMediumProps, ChargebackReversalIconSmall, ChargebackReversalIconSmallProps, ClearAction, CloseIcon, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, Dropdown, DropdownProps, DropdownThemeValues, EditableTable, EditableTableProps, ErrorMessageDictionary, ExternalLink, ExternalLinkProps, Field, FieldActionPayload, FieldActions, FooterWithSubfooter, FooterWithSubfooterProps, FormInput, FormInputProps, FormSelect, FormSelectOption, FormSelectProps, FormTextarea, FormTextareaProps, GuidedCheckoutImage, HistoryIconSmall, InternalLink, InternalLinkProps, KebabMenuIcon, KioskImage, Loading, LoadingProps, MultiCartIcon, MultipleSelectFilter, MultipleSelectFilterProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, PaydotImage, Popover, PopoverProps, PopupMenu, PopupMenuProps, ProfileImage, RadioGroup, RadioGroupProps, ReduxAction, RefundIconMedium, RefundIconMediumProps, RefundIconSmall, RefundIconSmallProps, RemoveValidatorAction, RevenueManagementImage, Search, SearchProps, SearchableSelect, SearchableSelectOption, SearchableSelectProps, SetAction, SortOrder, SortableTableHeading, SortableTableHeadingProps, Spinner, SpinnerProps, Stack, StackProps, StandardCheckoutImage, SuccessfulIconMedium, SuccessfulIconMediumProps, SuccessfulIconSmall, SuccessfulIconSmallProps, Switcher, SwitcherProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeading, TableHeadingProps, TableListItem, TableListItemProps, TableProps, TableRow, TableRowProps, Text, TextProps, Title, TitleProps, ToastNotification, ToastNotificationProps, ToastVariants, TrashIconV2, ValidatorFn, XCircleIconMedium, XCircleIconMediumProps, XCircleIconSmall, XCircleIconSmallProps, index_d as constants, index as hooks };
|
|
1492
1527
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.esm.js
CHANGED
|
@@ -348,8 +348,6 @@ var BORDER_RADIUS = {
|
|
|
348
348
|
};
|
|
349
349
|
var BORDER_THIN = "1px";
|
|
350
350
|
var FONT_SIZE = {
|
|
351
|
-
XXS: "0.625rem",
|
|
352
|
-
// 10px
|
|
353
351
|
XS: "0.750rem",
|
|
354
352
|
// 12px
|
|
355
353
|
SM: "0.875rem",
|
|
@@ -19717,9 +19715,6 @@ var background$1 = {
|
|
|
19717
19715
|
info: "".concat(INFO_BLUE),
|
|
19718
19716
|
warn: "".concat(HALF_COLONIAL_WHITE),
|
|
19719
19717
|
primary: "".concat(CORNFLOWER_BLUE),
|
|
19720
|
-
primaryHeadline: "".concat(CORNFLOWER_BLUE),
|
|
19721
|
-
secondary: "".concat(ROYAL_BLUE_VIVID),
|
|
19722
|
-
secondaryHeadline: "".concat(ROYAL_BLUE_VIVID),
|
|
19723
19718
|
success: "".concat(HINT_GREEN),
|
|
19724
19719
|
disabled: "".concat(GRECIAN_GREY)
|
|
19725
19720
|
};
|
|
@@ -19727,48 +19722,12 @@ var color$5 = {
|
|
|
19727
19722
|
info: "".concat(MATISSE_BLUE),
|
|
19728
19723
|
warn: "".concat(ZEST_ORANGE),
|
|
19729
19724
|
primary: "".concat(ROYAL_BLUE_VIVID),
|
|
19730
|
-
primaryHeadline: "".concat(ROYAL_BLUE_VIVID),
|
|
19731
|
-
secondary: "".concat(CORNFLOWER_BLUE),
|
|
19732
|
-
secondaryHeadline: "".concat(CORNFLOWER_BLUE),
|
|
19733
19725
|
success: "".concat(SEA_GREEN),
|
|
19734
19726
|
disabled: "".concat(MANATEE_GREY)
|
|
19735
19727
|
};
|
|
19736
|
-
var fontWeight$1 = {
|
|
19737
|
-
info: FONT_WEIGHT_REGULAR,
|
|
19738
|
-
warn: FONT_WEIGHT_REGULAR,
|
|
19739
|
-
primary: FONT_WEIGHT_REGULAR,
|
|
19740
|
-
primaryHeadline: FONT_WEIGHT_SEMIBOLD,
|
|
19741
|
-
secondary: FONT_WEIGHT_REGULAR,
|
|
19742
|
-
secondaryHeadline: FONT_WEIGHT_SEMIBOLD,
|
|
19743
|
-
success: FONT_WEIGHT_REGULAR,
|
|
19744
|
-
disabled: FONT_WEIGHT_REGULAR
|
|
19745
|
-
};
|
|
19746
|
-
var fontSizeMobile = {
|
|
19747
|
-
info: fallbackValues.fontSize.pXXS,
|
|
19748
|
-
warn: fallbackValues.fontSize.pXXS,
|
|
19749
|
-
primary: fallbackValues.fontSize.pXXS,
|
|
19750
|
-
primaryHeadline: fallbackValues.fontSize.pXS,
|
|
19751
|
-
secondary: fallbackValues.fontSize.pXXS,
|
|
19752
|
-
secondaryHeadline: fallbackValues.fontSize.pXS,
|
|
19753
|
-
success: fallbackValues.fontSize.pXXS,
|
|
19754
|
-
disabled: fallbackValues.fontSize.pXXS
|
|
19755
|
-
};
|
|
19756
|
-
var fontSizeDesktop = {
|
|
19757
|
-
info: fallbackValues.fontSize.pXS,
|
|
19758
|
-
warn: fallbackValues.fontSize.pXS,
|
|
19759
|
-
primary: fallbackValues.fontSize.pXS,
|
|
19760
|
-
primaryHeadline: fallbackValues.fontSize.pS,
|
|
19761
|
-
secondary: fallbackValues.fontSize.pXS,
|
|
19762
|
-
secondaryHeadline: fallbackValues.fontSize.pS,
|
|
19763
|
-
success: fallbackValues.fontSize.pXS,
|
|
19764
|
-
disabled: fallbackValues.fontSize.pXS
|
|
19765
|
-
};
|
|
19766
19728
|
var fallbackValues$7 = {
|
|
19767
19729
|
background: background$1,
|
|
19768
|
-
color: color$5
|
|
19769
|
-
fontWeight: fontWeight$1,
|
|
19770
|
-
fontSizeMobile: fontSizeMobile,
|
|
19771
|
-
fontSizeDesktop: fontSizeDesktop
|
|
19730
|
+
color: color$5
|
|
19772
19731
|
};
|
|
19773
19732
|
|
|
19774
19733
|
var StyledBadgeContainer = styled(Box).withConfig({
|
|
@@ -19778,31 +19737,22 @@ var StyledBadgeContainer = styled(Box).withConfig({
|
|
|
19778
19737
|
var StyledBadge = styled(Text$1).withConfig({
|
|
19779
19738
|
displayName: "Badge__StyledBadge",
|
|
19780
19739
|
componentId: "sc-1g438j-1"
|
|
19781
|
-
})(["line-height:150%;letter-spacing:
|
|
19782
|
-
return props.isMobile ? "0.2px" : "0.24px";
|
|
19783
|
-
});
|
|
19740
|
+
})(["font-family:\"Public Sans\",sans-serif;font-size:10px;font-style:normal;font-weight:400;line-height:150%;letter-spacing:0.2px;white-space:nowrap;@media screen and (min-width:1049px){font-size:12px;line-height:150%;letter-spacing:0.24px;}"]);
|
|
19784
19741
|
var Badge = function Badge(_ref) {
|
|
19785
19742
|
var label = _ref.label,
|
|
19786
19743
|
Icon = _ref.Icon,
|
|
19787
19744
|
themeValues = _ref.themeValues,
|
|
19788
19745
|
_ref$iconOnLeft = _ref.iconOnLeft,
|
|
19789
19746
|
iconOnLeft = _ref$iconOnLeft === void 0 ? true : _ref$iconOnLeft,
|
|
19790
|
-
id = _ref.id
|
|
19791
|
-
extraStyles = _ref.extraStyles;
|
|
19792
|
-
var _useContext = useContext(ThemeContext),
|
|
19793
|
-
isMobile = _useContext.isMobile;
|
|
19747
|
+
id = _ref.id;
|
|
19794
19748
|
return /*#__PURE__*/React__default.createElement(StyledBadgeContainer, {
|
|
19795
19749
|
background: themeValues.background,
|
|
19796
|
-
id: id
|
|
19797
|
-
extraStyles: extraStyles
|
|
19750
|
+
id: id
|
|
19798
19751
|
}, iconOnLeft && Icon && /*#__PURE__*/React__default.createElement(Icon, {
|
|
19799
19752
|
color: themeValues.color,
|
|
19800
19753
|
fill: themeValues.color
|
|
19801
19754
|
}), /*#__PURE__*/React__default.createElement(StyledBadge, {
|
|
19802
|
-
color: themeValues.color
|
|
19803
|
-
weight: themeValues.fontWeight,
|
|
19804
|
-
fontSize: isMobile ? themeValues.fontSizeMobile : themeValues.fontSizeDesktop,
|
|
19805
|
-
isMobile: isMobile
|
|
19755
|
+
color: themeValues.color
|
|
19806
19756
|
}, label), !iconOnLeft && Icon && /*#__PURE__*/React__default.createElement(Icon, {
|
|
19807
19757
|
color: themeValues.color,
|
|
19808
19758
|
fill: themeValues.color
|
|
@@ -21192,7 +21142,7 @@ var activeColor$2 = "".concat(STORM_GREY$1);
|
|
|
21192
21142
|
var activeBreadcrumbColor = "".concat(STORM_GREY$1);
|
|
21193
21143
|
var fontSize$2 = "0.875rem";
|
|
21194
21144
|
var lineHeight = "1.25rem";
|
|
21195
|
-
var fontWeight$
|
|
21145
|
+
var fontWeight$1 = "400";
|
|
21196
21146
|
var margin = "0.5rem";
|
|
21197
21147
|
var hover = "text-decoration: ".concat(LINK_TEXT_DECORATION$2, ";");
|
|
21198
21148
|
var fallbackValues$9 = {
|
|
@@ -21201,7 +21151,7 @@ var fallbackValues$9 = {
|
|
|
21201
21151
|
activeBreadcrumbColor: activeBreadcrumbColor,
|
|
21202
21152
|
fontSize: fontSize$2,
|
|
21203
21153
|
lineHeight: lineHeight,
|
|
21204
|
-
fontWeight: fontWeight$
|
|
21154
|
+
fontWeight: fontWeight$1,
|
|
21205
21155
|
margin: margin,
|
|
21206
21156
|
hover: hover
|
|
21207
21157
|
};
|
|
@@ -23795,7 +23745,8 @@ var Dropdown = function Dropdown(_ref13) {
|
|
|
23795
23745
|
_ref13$ariaInvalid = _ref13.ariaInvalid,
|
|
23796
23746
|
ariaInvalid = _ref13$ariaInvalid === void 0 ? false : _ref13$ariaInvalid,
|
|
23797
23747
|
_ref13$isRequired = _ref13.isRequired,
|
|
23798
|
-
isRequired = _ref13$isRequired === void 0 ? false : _ref13$isRequired
|
|
23748
|
+
isRequired = _ref13$isRequired === void 0 ? false : _ref13$isRequired,
|
|
23749
|
+
extraStyles = _ref13.extraStyles;
|
|
23799
23750
|
var _useState = useState(""),
|
|
23800
23751
|
_useState2 = _slicedToArray(_useState, 2),
|
|
23801
23752
|
inputValue = _useState2[0],
|
|
@@ -23992,7 +23943,7 @@ var Dropdown = function Dropdown(_ref13) {
|
|
|
23992
23943
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
23993
23944
|
padding: "0",
|
|
23994
23945
|
background: isOpen ? themeValues.hoverColor : WHITE,
|
|
23995
|
-
extraStyles: "position: relative;",
|
|
23946
|
+
extraStyles: "position: relative;".concat(extraStyles ? " ".concat(extraStyles) : ""),
|
|
23996
23947
|
minWidth: "100%",
|
|
23997
23948
|
onClick: function onClick() {
|
|
23998
23949
|
if (!isOpen) {
|
|
@@ -24162,7 +24113,7 @@ var errorFontSize = {
|
|
|
24162
24113
|
"default": "0.75rem",
|
|
24163
24114
|
disabled: "0.75rem"
|
|
24164
24115
|
};
|
|
24165
|
-
var fontWeight$
|
|
24116
|
+
var fontWeight$2 = {
|
|
24166
24117
|
"default": "".concat(FONT_WEIGHT_REGULAR),
|
|
24167
24118
|
disabled: "".concat(FONT_WEIGHT_REGULAR)
|
|
24168
24119
|
};
|
|
@@ -24180,7 +24131,7 @@ var fallbackValues$j = {
|
|
|
24180
24131
|
lineHeight: lineHeight$1,
|
|
24181
24132
|
fontSize: fontSize$4,
|
|
24182
24133
|
errorFontSize: errorFontSize,
|
|
24183
|
-
fontWeight: fontWeight$
|
|
24134
|
+
fontWeight: fontWeight$2,
|
|
24184
24135
|
hoverFocusStyles: hoverFocusStyles
|
|
24185
24136
|
};
|
|
24186
24137
|
|
|
@@ -25906,7 +25857,7 @@ var errorFontSize$1 = {
|
|
|
25906
25857
|
"default": "0.75rem",
|
|
25907
25858
|
disabled: "0.75rem"
|
|
25908
25859
|
};
|
|
25909
|
-
var fontWeight$
|
|
25860
|
+
var fontWeight$3 = {
|
|
25910
25861
|
"default": "".concat(FONT_WEIGHT_REGULAR),
|
|
25911
25862
|
disabled: "".concat(FONT_WEIGHT_REGULAR)
|
|
25912
25863
|
};
|
|
@@ -25927,7 +25878,7 @@ var fallbackValues$n = {
|
|
|
25927
25878
|
lineHeight: lineHeight$2,
|
|
25928
25879
|
fontSize: fontSize$6,
|
|
25929
25880
|
errorFontSize: errorFontSize$1,
|
|
25930
|
-
fontWeight: fontWeight$
|
|
25881
|
+
fontWeight: fontWeight$3,
|
|
25931
25882
|
hoverFocusStyles: hoverFocusStyles$1,
|
|
25932
25883
|
formFooterPanel: formFooterPanel
|
|
25933
25884
|
};
|
|
@@ -26891,7 +26842,7 @@ var Jumbo = function Jumbo(_ref) {
|
|
|
26891
26842
|
};
|
|
26892
26843
|
var Jumbo$1 = withWindowSize(Jumbo);
|
|
26893
26844
|
|
|
26894
|
-
var fontWeight$
|
|
26845
|
+
var fontWeight$4 = {
|
|
26895
26846
|
// v1 variants
|
|
26896
26847
|
"default": "600",
|
|
26897
26848
|
pS: "600",
|
|
@@ -26908,7 +26859,7 @@ var fontWeight$5 = {
|
|
|
26908
26859
|
large: "700" // fontsize Title small
|
|
26909
26860
|
};
|
|
26910
26861
|
var fallbackValues$t = {
|
|
26911
|
-
fontWeight: fontWeight$
|
|
26862
|
+
fontWeight: fontWeight$4
|
|
26912
26863
|
};
|
|
26913
26864
|
|
|
26914
26865
|
var LabeledAmountV1 = function LabeledAmountV1(_ref) {
|
|
@@ -38986,7 +38937,7 @@ var fontSize$9 = {
|
|
|
38986
38937
|
largeTitle: "1.75rem",
|
|
38987
38938
|
small: "1.25rem"
|
|
38988
38939
|
};
|
|
38989
|
-
var fontWeight$
|
|
38940
|
+
var fontWeight$5 = {
|
|
38990
38941
|
"default": "600",
|
|
38991
38942
|
largeTitle: "700",
|
|
38992
38943
|
small: "600"
|
|
@@ -39033,7 +38984,7 @@ var backgroundColor$7 = {
|
|
|
39033
38984
|
};
|
|
39034
38985
|
var fallbackValues$G = {
|
|
39035
38986
|
fontSize: fontSize$9,
|
|
39036
|
-
fontWeight: fontWeight$
|
|
38987
|
+
fontWeight: fontWeight$5,
|
|
39037
38988
|
fontColor: fontColor,
|
|
39038
38989
|
lineHeight: lineHeight$3,
|
|
39039
38990
|
textAlign: textAlign,
|
|
@@ -47674,7 +47625,7 @@ var fontSize$a = {
|
|
|
47674
47625
|
var lineHeight$4 = {
|
|
47675
47626
|
"default": "1.5rem"
|
|
47676
47627
|
};
|
|
47677
|
-
var fontWeight$
|
|
47628
|
+
var fontWeight$6 = {
|
|
47678
47629
|
"default": FONT_WEIGHT_REGULAR
|
|
47679
47630
|
};
|
|
47680
47631
|
var modalLinkHoverFocus = {
|
|
@@ -47687,7 +47638,7 @@ var fallbackValues$R = {
|
|
|
47687
47638
|
linkColor: linkColor$4,
|
|
47688
47639
|
fontSize: fontSize$a,
|
|
47689
47640
|
lineHeight: lineHeight$4,
|
|
47690
|
-
fontWeight: fontWeight$
|
|
47641
|
+
fontWeight: fontWeight$6,
|
|
47691
47642
|
modalLinkHoverFocus: modalLinkHoverFocus,
|
|
47692
47643
|
linkTextDecoration: linkTextDecoration
|
|
47693
47644
|
};
|
|
@@ -47769,7 +47720,7 @@ var lineHeight$5 = {
|
|
|
47769
47720
|
"default": "1.5rem",
|
|
47770
47721
|
footer: "1.25rem"
|
|
47771
47722
|
};
|
|
47772
|
-
var fontWeight$
|
|
47723
|
+
var fontWeight$7 = {
|
|
47773
47724
|
"default": FONT_WEIGHT_REGULAR,
|
|
47774
47725
|
footer: FONT_WEIGHT_SEMIBOLD
|
|
47775
47726
|
};
|
|
@@ -47788,7 +47739,7 @@ var fallbackValues$S = {
|
|
|
47788
47739
|
border: border$3,
|
|
47789
47740
|
fontSize: fontSize$b,
|
|
47790
47741
|
lineHeight: lineHeight$5,
|
|
47791
|
-
fontWeight: fontWeight$
|
|
47742
|
+
fontWeight: fontWeight$7,
|
|
47792
47743
|
modalLinkHoverFocus: modalLinkHoverFocus$1,
|
|
47793
47744
|
modalLinkTextDecoration: modalLinkTextDecoration
|
|
47794
47745
|
};
|
|
@@ -49645,13 +49596,13 @@ var ToastNotification = function ToastNotification(_ref) {
|
|
|
49645
49596
|
}));
|
|
49646
49597
|
};
|
|
49647
49598
|
|
|
49648
|
-
var fontWeight$
|
|
49599
|
+
var fontWeight$8 = "600";
|
|
49649
49600
|
var fontColor$1 = WHITE;
|
|
49650
49601
|
var textAlign$1 = "left";
|
|
49651
49602
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49652
49603
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49653
49604
|
var fallbackValues$Z = {
|
|
49654
|
-
fontWeight: fontWeight$
|
|
49605
|
+
fontWeight: fontWeight$8,
|
|
49655
49606
|
fontColor: fontColor$1,
|
|
49656
49607
|
textAlign: textAlign$1,
|
|
49657
49608
|
headerBackgroundColor: headerBackgroundColor$1,
|