@thecb/components 11.2.4-beta.1 → 11.2.5-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 +138 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +138 -24
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/obligation/modules/InactiveTitleModule.js +1 -1
- package/src/components/molecules/registration-banner/RegistrationBanner.js +111 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.mdx +15 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +83 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +45 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +11 -0
- package/src/components/molecules/registration-banner/index.d.ts +15 -0
- package/src/components/molecules/registration-banner/index.js +3 -0
package/dist/index.esm.js
CHANGED
|
@@ -47249,7 +47249,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
47249
47249
|
variant: "extraSmall",
|
|
47250
47250
|
as: "p",
|
|
47251
47251
|
color: BLACK
|
|
47252
|
-
}, "This may mean the
|
|
47252
|
+
}, "This may mean that the account has been paid off or there was an error loading it. If you have questions about this account, please contact us.".concat(autoPayEnabled ? " You may disable autopay for this account by pressing the 'Turn off Autopay' button." : ""))));
|
|
47253
47253
|
};
|
|
47254
47254
|
|
|
47255
47255
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
@@ -49724,6 +49724,120 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49724
49724
|
};
|
|
49725
49725
|
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$T);
|
|
49726
49726
|
|
|
49727
|
+
var fallbackValues$U = {
|
|
49728
|
+
primaryColor: ROYAL_BLUE_VIVID,
|
|
49729
|
+
secondaryColor: CHARADE_GREY,
|
|
49730
|
+
background: CORNFLOWER_BLUE
|
|
49731
|
+
};
|
|
49732
|
+
|
|
49733
|
+
var BannerContainer = styled(Cluster).withConfig({
|
|
49734
|
+
displayName: "RegistrationBannerstyled__BannerContainer",
|
|
49735
|
+
componentId: "sc-1m1lm4y-0"
|
|
49736
|
+
})(["background:", ";padding:", ";"], function (_ref) {
|
|
49737
|
+
var themeValues = _ref.themeValues;
|
|
49738
|
+
return adjustHexColor(themeValues.background, 10, "lighten");
|
|
49739
|
+
}, function (_ref2) {
|
|
49740
|
+
var isMobile = _ref2.isMobile;
|
|
49741
|
+
return isMobile ? "1rem 2rem" : " 2rem 1rem";
|
|
49742
|
+
});
|
|
49743
|
+
var ContentContainer = styled(Cluster).withConfig({
|
|
49744
|
+
displayName: "RegistrationBannerstyled__ContentContainer",
|
|
49745
|
+
componentId: "sc-1m1lm4y-1"
|
|
49746
|
+
})(["padding:0;width:", ";> div{flex-direction:", ";}"], function (_ref3) {
|
|
49747
|
+
var isMobile = _ref3.isMobile;
|
|
49748
|
+
return isMobile ? "100%" : " 1224px";
|
|
49749
|
+
}, function (_ref4) {
|
|
49750
|
+
var isMobile = _ref4.isMobile;
|
|
49751
|
+
return isMobile ? "column" : "row";
|
|
49752
|
+
});
|
|
49753
|
+
var ButtonContainer = styled(Stack).withConfig({
|
|
49754
|
+
displayName: "RegistrationBannerstyled__ButtonContainer",
|
|
49755
|
+
componentId: "sc-1m1lm4y-2"
|
|
49756
|
+
})(["align-items:center;> a{width:", ";}padding-left:", ";"], function (_ref5) {
|
|
49757
|
+
var isMobile = _ref5.isMobile;
|
|
49758
|
+
return isMobile ? "100%" : "222px";
|
|
49759
|
+
}, function (_ref6) {
|
|
49760
|
+
var isMobile = _ref6.isMobile;
|
|
49761
|
+
return isMobile ? "0" : " 2rem";
|
|
49762
|
+
});
|
|
49763
|
+
var RegisterLink = styled(ButtonWithLink).withConfig({
|
|
49764
|
+
displayName: "RegistrationBannerstyled__RegisterLink",
|
|
49765
|
+
componentId: "sc-1m1lm4y-3"
|
|
49766
|
+
})(["border-radius:100px;margin:0;width:100%;"]);
|
|
49767
|
+
var LoginLink = styled(ButtonWithLink).withConfig({
|
|
49768
|
+
displayName: "RegistrationBannerstyled__LoginLink",
|
|
49769
|
+
componentId: "sc-1m1lm4y-4"
|
|
49770
|
+
})(["border-radius:100px;padding:0;margin:0;width:100%;min-height:2rem;margin-top:0px;border:none;&:hover{text-decoration:none;}"]);
|
|
49771
|
+
|
|
49772
|
+
var RegistrationBanner = function RegistrationBanner(_ref) {
|
|
49773
|
+
var clientName = _ref.clientName,
|
|
49774
|
+
extraStyles = _ref.extraStyles,
|
|
49775
|
+
_ref$loginLink = _ref.loginLink,
|
|
49776
|
+
loginLink = _ref$loginLink === void 0 ? "/login" : _ref$loginLink,
|
|
49777
|
+
_ref$registrationLink = _ref.registrationLink,
|
|
49778
|
+
registrationLink = _ref$registrationLink === void 0 ? "/registration" : _ref$registrationLink,
|
|
49779
|
+
themeValues = _ref.themeValues,
|
|
49780
|
+
titleAs = _ref.titleAs,
|
|
49781
|
+
titleVariant = _ref.titleVariant;
|
|
49782
|
+
var themeContext = useContext(ThemeContext);
|
|
49783
|
+
var isMobile = themeContext.isMobile;
|
|
49784
|
+
return /*#__PURE__*/React.createElement(BannerContainer, {
|
|
49785
|
+
extraStyles: extraStyles,
|
|
49786
|
+
themeValues: themeValues,
|
|
49787
|
+
isMobile: isMobile,
|
|
49788
|
+
"aria-label": "Registration Banner",
|
|
49789
|
+
justify: "center"
|
|
49790
|
+
}, /*#__PURE__*/React.createElement(ContentContainer, {
|
|
49791
|
+
align: "center",
|
|
49792
|
+
justify: "space-between",
|
|
49793
|
+
overflow: "visible",
|
|
49794
|
+
isMobile: isMobile,
|
|
49795
|
+
nowrap: true
|
|
49796
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
49797
|
+
padding: "0",
|
|
49798
|
+
textAlign: "left"
|
|
49799
|
+
}, /*#__PURE__*/React.createElement(Heading$1, {
|
|
49800
|
+
as: titleAs,
|
|
49801
|
+
color: themeValues.primaryColor,
|
|
49802
|
+
fontSize: isMobile ? FONT_SIZE.XL : "1.5rem",
|
|
49803
|
+
variant: titleVariant,
|
|
49804
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49805
|
+
}, "Register for a ", clientName, " Wallet Account"), /*#__PURE__*/React.createElement(Text$1, {
|
|
49806
|
+
extraStyles: "\n display: block;\n padding: ".concat(isMobile ? ".125rem 0 1rem" : "0", "\n "),
|
|
49807
|
+
fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.LG,
|
|
49808
|
+
color: themeValues.secondaryColor
|
|
49809
|
+
}, "Save payment methods and information for fast, easy, and safe payments with ", clientName)), /*#__PURE__*/React.createElement(ButtonContainer, {
|
|
49810
|
+
justify: "space-between",
|
|
49811
|
+
fullHeight: true,
|
|
49812
|
+
childGap: "0.5rem",
|
|
49813
|
+
isMobile: isMobile
|
|
49814
|
+
}, /*#__PURE__*/React.createElement(RegisterLink, {
|
|
49815
|
+
variant: "secondary",
|
|
49816
|
+
color: themeValues.primaryColor,
|
|
49817
|
+
contentOverride: true,
|
|
49818
|
+
fontWeight: FONT_WEIGHT_SEMIBOLD,
|
|
49819
|
+
url: registrationLink
|
|
49820
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
49821
|
+
justify: "center",
|
|
49822
|
+
align: "center"
|
|
49823
|
+
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
49824
|
+
extraStyles: "margin-right: 0.5rem",
|
|
49825
|
+
fontSize: isMobile ? FONT_SIZE.MD : FONT_SIZE.LG,
|
|
49826
|
+
color: themeValues.primaryColor,
|
|
49827
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49828
|
+
}, "Register Now"), /*#__PURE__*/React.createElement(ArrowRightIcon, null))), /*#__PURE__*/React.createElement(LoginLink, {
|
|
49829
|
+
text: "Log In",
|
|
49830
|
+
variant: "secondary",
|
|
49831
|
+
contentOverride: true,
|
|
49832
|
+
url: loginLink
|
|
49833
|
+
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
49834
|
+
fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.MD,
|
|
49835
|
+
color: themeValues.primaryColor,
|
|
49836
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49837
|
+
}, "or Log In")))));
|
|
49838
|
+
};
|
|
49839
|
+
var RegistrationBanner$1 = withWindowSize(themeComponent(RegistrationBanner, "RegistrationBanner", fallbackValues$U));
|
|
49840
|
+
|
|
49727
49841
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49728
49842
|
var clearOnDismount = _ref.clearOnDismount,
|
|
49729
49843
|
fields = _ref.fields,
|
|
@@ -49842,13 +49956,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49842
49956
|
|
|
49843
49957
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49844
49958
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49845
|
-
var fallbackValues$
|
|
49959
|
+
var fallbackValues$V = {
|
|
49846
49960
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49847
49961
|
};
|
|
49848
49962
|
|
|
49849
49963
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49850
49964
|
var themeContext = useContext(ThemeContext);
|
|
49851
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49965
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$V, "ResetConfirmationForm");
|
|
49852
49966
|
var isMobile = themeContext.isMobile;
|
|
49853
49967
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49854
49968
|
padding: "0",
|
|
@@ -49963,13 +50077,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49963
50077
|
|
|
49964
50078
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49965
50079
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49966
|
-
var fallbackValues$
|
|
50080
|
+
var fallbackValues$W = {
|
|
49967
50081
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49968
50082
|
};
|
|
49969
50083
|
|
|
49970
50084
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49971
50085
|
var themeContext = useContext(ThemeContext);
|
|
49972
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
50086
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$W, "ResetPasswordSuccess");
|
|
49973
50087
|
var isMobile = themeContext.isMobile;
|
|
49974
50088
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49975
50089
|
padding: "0",
|
|
@@ -50018,7 +50132,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
50018
50132
|
var activeTabBackground = "#FFFFFF";
|
|
50019
50133
|
var activeTabAccent = "#15749D";
|
|
50020
50134
|
var activeTabHover = "#B8D5E1";
|
|
50021
|
-
var fallbackValues$
|
|
50135
|
+
var fallbackValues$X = {
|
|
50022
50136
|
activeTabBackground: activeTabBackground,
|
|
50023
50137
|
activeTabAccent: activeTabAccent,
|
|
50024
50138
|
activeTabHover: activeTabHover
|
|
@@ -50086,12 +50200,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
50086
50200
|
}, tab.content);
|
|
50087
50201
|
}))));
|
|
50088
50202
|
};
|
|
50089
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
50203
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$X);
|
|
50090
50204
|
|
|
50091
50205
|
var activeTabBackground$1 = "#FFFFFF";
|
|
50092
50206
|
var activeTabAccent$1 = "#15749D";
|
|
50093
50207
|
var activeTabHover$1 = "#B8D5E1";
|
|
50094
|
-
var fallbackValues$
|
|
50208
|
+
var fallbackValues$Y = {
|
|
50095
50209
|
activeTabBackground: activeTabBackground$1,
|
|
50096
50210
|
activeTabAccent: activeTabAccent$1,
|
|
50097
50211
|
activeTabHover: activeTabHover$1
|
|
@@ -50148,7 +50262,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
50148
50262
|
}, text)))));
|
|
50149
50263
|
})));
|
|
50150
50264
|
};
|
|
50151
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
50265
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Y);
|
|
50152
50266
|
|
|
50153
50267
|
var Timeout = function Timeout(_ref) {
|
|
50154
50268
|
var onLogout = _ref.onLogout;
|
|
@@ -50269,7 +50383,7 @@ var fontColor$1 = WHITE;
|
|
|
50269
50383
|
var textAlign$1 = "left";
|
|
50270
50384
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
50271
50385
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
50272
|
-
var fallbackValues$
|
|
50386
|
+
var fallbackValues$Z = {
|
|
50273
50387
|
fontWeight: fontWeight$8,
|
|
50274
50388
|
fontColor: fontColor$1,
|
|
50275
50389
|
textAlign: textAlign$1,
|
|
@@ -50314,7 +50428,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50314
50428
|
src: welcomeImage
|
|
50315
50429
|
})))));
|
|
50316
50430
|
};
|
|
50317
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50431
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Z));
|
|
50318
50432
|
|
|
50319
50433
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50320
50434
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50374,7 +50488,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50374
50488
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50375
50489
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50376
50490
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50377
|
-
var fallbackValues$
|
|
50491
|
+
var fallbackValues$_ = {
|
|
50378
50492
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50379
50493
|
menuItemColor: menuItemColor,
|
|
50380
50494
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50441,13 +50555,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50441
50555
|
extraStyles: textExtraStyles
|
|
50442
50556
|
}, text)));
|
|
50443
50557
|
};
|
|
50444
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50558
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$_);
|
|
50445
50559
|
|
|
50446
50560
|
var hoverColor$5 = "#116285";
|
|
50447
50561
|
var activeColor$a = "#0E506D";
|
|
50448
50562
|
var menuTriggerColor = "#15749D";
|
|
50449
50563
|
var backgroundColor$e = "white";
|
|
50450
|
-
var fallbackValues
|
|
50564
|
+
var fallbackValues$$ = {
|
|
50451
50565
|
hoverColor: hoverColor$5,
|
|
50452
50566
|
activeColor: activeColor$a,
|
|
50453
50567
|
menuTriggerColor: menuTriggerColor,
|
|
@@ -50583,13 +50697,13 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50583
50697
|
}, item));
|
|
50584
50698
|
})));
|
|
50585
50699
|
};
|
|
50586
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues
|
|
50700
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$$);
|
|
50587
50701
|
|
|
50588
50702
|
var primaryColor$1 = WHITE;
|
|
50589
50703
|
var primaryHoverColor = INFO_BLUE;
|
|
50590
50704
|
var secondaryColor = MATISSE_BLUE;
|
|
50591
50705
|
var secondaryHoverColor = "#115D7E";
|
|
50592
|
-
var fallbackValues
|
|
50706
|
+
var fallbackValues$10 = {
|
|
50593
50707
|
primaryColor: primaryColor$1,
|
|
50594
50708
|
primaryHoverColor: primaryHoverColor,
|
|
50595
50709
|
secondaryColor: secondaryColor,
|
|
@@ -51291,7 +51405,7 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
|
|
|
51291
51405
|
ariaLabel: "Apply all filters"
|
|
51292
51406
|
}))));
|
|
51293
51407
|
};
|
|
51294
|
-
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues
|
|
51408
|
+
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$10);
|
|
51295
51409
|
|
|
51296
51410
|
var TextWrapStyles = css(["word-wrap:break-word;overflow-wrap:break-word;white-space:normal;max-width:100%;"]);
|
|
51297
51411
|
var Container$1 = styled(Box).withConfig({
|
|
@@ -51413,7 +51527,7 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
51413
51527
|
};
|
|
51414
51528
|
|
|
51415
51529
|
var pageBackground = "#FBFCFD";
|
|
51416
|
-
var fallbackValues$
|
|
51530
|
+
var fallbackValues$11 = {
|
|
51417
51531
|
pageBackground: pageBackground
|
|
51418
51532
|
};
|
|
51419
51533
|
|
|
@@ -51461,7 +51575,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
51461
51575
|
padding: "0"
|
|
51462
51576
|
})));
|
|
51463
51577
|
};
|
|
51464
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
51578
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$11));
|
|
51465
51579
|
|
|
51466
51580
|
var CenterStack = function CenterStack(_ref) {
|
|
51467
51581
|
var header = _ref.header,
|
|
@@ -51504,7 +51618,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
51504
51618
|
padding: "0"
|
|
51505
51619
|
})));
|
|
51506
51620
|
};
|
|
51507
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
51621
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$11));
|
|
51508
51622
|
|
|
51509
51623
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
51510
51624
|
var header = _ref.header,
|
|
@@ -51550,7 +51664,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
51550
51664
|
padding: "0"
|
|
51551
51665
|
})));
|
|
51552
51666
|
};
|
|
51553
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
51667
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$11));
|
|
51554
51668
|
|
|
51555
51669
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
51556
51670
|
var header = _ref.header,
|
|
@@ -51603,7 +51717,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
51603
51717
|
padding: "0"
|
|
51604
51718
|
})));
|
|
51605
51719
|
};
|
|
51606
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
51720
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$11));
|
|
51607
51721
|
|
|
51608
51722
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
51609
51723
|
var header = _ref.header,
|
|
@@ -51673,7 +51787,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
51673
51787
|
key: "footer-box"
|
|
51674
51788
|
})));
|
|
51675
51789
|
};
|
|
51676
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
51790
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$11));
|
|
51677
51791
|
|
|
51678
51792
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
51679
51793
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -51744,5 +51858,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
51744
51858
|
useLogoutTimers: useLogoutTimers
|
|
51745
51859
|
});
|
|
51746
51860
|
|
|
51747
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, 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, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, 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, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, 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$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, 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, 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, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
51861
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, 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, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, 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, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, 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$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationBanner$1 as RegistrationBanner, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, 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, 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, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
51748
51862
|
//# sourceMappingURL=index.esm.js.map
|