@thecb/components 7.13.3 → 7.13.4-beta.1
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 +80 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +80 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/cardAlt/CardAlt.js +113 -0
- package/src/components/atoms/cardAlt/index.js +3 -0
- package/src/components/atoms/index.js +1 -0
package/dist/index.esm.js
CHANGED
|
@@ -38020,6 +38020,85 @@ var Card = function Card(_ref) {
|
|
|
38020
38020
|
|
|
38021
38021
|
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$x);
|
|
38022
38022
|
|
|
38023
|
+
var CardAlt = function CardAlt(_ref) {
|
|
38024
|
+
var _ref$borderRadius = _ref.borderRadius,
|
|
38025
|
+
borderRadius = _ref$borderRadius === void 0 ? "4px" : _ref$borderRadius,
|
|
38026
|
+
extraStyles = _ref.extraStyles,
|
|
38027
|
+
_ref$headerAs = _ref.headerAs,
|
|
38028
|
+
headerAs = _ref$headerAs === void 0 ? "h2" : _ref$headerAs,
|
|
38029
|
+
headerText = _ref.headerText,
|
|
38030
|
+
_ref$headerVariant = _ref.headerVariant,
|
|
38031
|
+
headerVariant = _ref$headerVariant === void 0 ? "small" : _ref$headerVariant,
|
|
38032
|
+
imgSrc = _ref.imgSrc,
|
|
38033
|
+
Image = _ref.Image,
|
|
38034
|
+
_ref$imgHeight = _ref.imgHeight,
|
|
38035
|
+
imgHeight = _ref$imgHeight === void 0 ? "150px" : _ref$imgHeight,
|
|
38036
|
+
_ref$imgObjectFit = _ref.imgObjectFit,
|
|
38037
|
+
imgObjectFit = _ref$imgObjectFit === void 0 ? "none" : _ref$imgObjectFit,
|
|
38038
|
+
imgAltText = _ref.imgAltText,
|
|
38039
|
+
_ref$padding = _ref.padding,
|
|
38040
|
+
padding = _ref$padding === void 0 ? "24px" : _ref$padding,
|
|
38041
|
+
text = _ref.text,
|
|
38042
|
+
titleText = _ref.titleText,
|
|
38043
|
+
_ref$titleVariant = _ref.titleVariant,
|
|
38044
|
+
titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
|
|
38045
|
+
themeValues = _ref.themeValues,
|
|
38046
|
+
_ref$width = _ref.width,
|
|
38047
|
+
width = _ref$width === void 0 ? "276px" : _ref$width,
|
|
38048
|
+
children = _ref.children;
|
|
38049
|
+
var hasImage = Image || imgSrc;
|
|
38050
|
+
var numberOfChildren = (Array.isArray(children) ? children.length : 1) + (text ? 1 : 0) + (hasImage ? 1 : 0) + (headerText ? 1 : 0);
|
|
38051
|
+
return /*#__PURE__*/React.createElement(BoxWithShadow$1, {
|
|
38052
|
+
variant: "baseStandard",
|
|
38053
|
+
background: themeValues.backgroundColor,
|
|
38054
|
+
borderRadius: borderRadius,
|
|
38055
|
+
padding: "0",
|
|
38056
|
+
margin: "0",
|
|
38057
|
+
minWidth: width,
|
|
38058
|
+
extraStyles: extraStyles
|
|
38059
|
+
}, /*#__PURE__*/React.createElement(Cover, {
|
|
38060
|
+
singleChild: true,
|
|
38061
|
+
fillCenter: true
|
|
38062
|
+
}, /*#__PURE__*/React.createElement(Stack, {
|
|
38063
|
+
fullHeight: true,
|
|
38064
|
+
childGap: "0",
|
|
38065
|
+
bottomItem: numberOfChildren,
|
|
38066
|
+
direction: "row"
|
|
38067
|
+
}, headerText && /*#__PURE__*/React.createElement(CardHeader, {
|
|
38068
|
+
headerText: headerText,
|
|
38069
|
+
headerColor: themeValues.headerColor,
|
|
38070
|
+
headerVariant: headerVariant,
|
|
38071
|
+
backgroundColor: themeValues.headerBackgroundColor,
|
|
38072
|
+
borderRadius: borderRadius,
|
|
38073
|
+
padding: padding,
|
|
38074
|
+
as: headerAs
|
|
38075
|
+
}), Image && !imgSrc && /*#__PURE__*/React.createElement(Box, {
|
|
38076
|
+
minHeight: imgHeight,
|
|
38077
|
+
padding: "0",
|
|
38078
|
+
background: themeValues.imageBackgroundColor
|
|
38079
|
+
}, /*#__PURE__*/React.createElement(Cover, {
|
|
38080
|
+
minHeight: imgHeight,
|
|
38081
|
+
singleChild: true
|
|
38082
|
+
}, /*#__PURE__*/React.createElement(Center, {
|
|
38083
|
+
intrinsic: true
|
|
38084
|
+
}, /*#__PURE__*/React.createElement(Image, {
|
|
38085
|
+
alt: imgAltText
|
|
38086
|
+
})))), imgSrc && /*#__PURE__*/React.createElement(CardImage, {
|
|
38087
|
+
height: imgHeight,
|
|
38088
|
+
objectFit: imgObjectFit,
|
|
38089
|
+
backgroundColor: themeValues.imageBackgroundColor,
|
|
38090
|
+
src: imgSrc,
|
|
38091
|
+
alt: imgAltText
|
|
38092
|
+
}), text && /*#__PURE__*/React.createElement(CardText$1, {
|
|
38093
|
+
padding: padding,
|
|
38094
|
+
titleText: titleText,
|
|
38095
|
+
text: text,
|
|
38096
|
+
titleVariant: titleVariant
|
|
38097
|
+
}), children)));
|
|
38098
|
+
};
|
|
38099
|
+
|
|
38100
|
+
var CardAlt$1 = themeComponent(withWindowSize(CardAlt), "CardAlt", fallbackValues$x);
|
|
38101
|
+
|
|
38023
38102
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
38024
38103
|
var activeColor$6 = MATISSE_BLUE;
|
|
38025
38104
|
var linkColor$3 = CHARADE_GREY;
|
|
@@ -50021,5 +50100,5 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50021
50100
|
|
|
50022
50101
|
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
|
|
50023
50102
|
|
|
50024
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowUpCircleIconSmall, AutopayOnIcon, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
50103
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowUpCircleIconSmall, AutopayOnIcon, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CardAlt$1 as CardAlt, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
50025
50104
|
//# sourceMappingURL=index.esm.js.map
|