@thecb/components 7.5.0-beta.0 → 7.5.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 +338 -563
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -5
- package/dist/index.esm.js +338 -561
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/{ExternalLinkIcon.js → ExternalLinkicon.js} +0 -0
- package/src/components/atoms/icons/WalletIconSmall.js +3 -3
- package/src/components/atoms/icons/index.d.ts +0 -1
- package/src/components/atoms/icons/index.js +1 -3
- package/src/components/atoms/index.js +1 -2
- package/src/components/atoms/link/ExternalLink.d.ts +1 -1
- package/src/components/atoms/link/ExternalLink.js +42 -48
- package/src/components/atoms/link/ExternalLink.styled.js +2 -4
- package/src/components/atoms/link/InternalLink.d.ts +1 -1
- package/src/components/atoms/link/InternalLink.js +42 -48
- package/src/components/atoms/link/InternalLink.styled.js +3 -6
- package/src/components/{molecules/radio-section → atoms}/radio-button/RadioButton.js +2 -2
- package/src/components/atoms/radio-button/RadioButton.stories.js +34 -0
- package/src/components/{molecules/radio-section → atoms}/radio-button/RadioButton.theme.js +1 -1
- package/src/components/atoms/radio-button/index.js +3 -0
- package/src/components/molecules/index.js +1 -1
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +266 -0
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +26 -0
- package/src/components/molecules/internal-user-info-form/index.js +11 -0
- package/src/components/molecules/radio-section/RadioSection.js +1 -1
- package/src/components/molecules/radio-section/RadioSection.stories.js +1 -1
- package/src/components/atoms/icons/RevenueManagementImage.d.ts +0 -1
- package/src/components/atoms/icons/RevenueManagementImage.js +0 -449
- package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +0 -92
- package/src/components/atoms/radio-button-with-label/index.js +0 -3
- package/src/components/molecules/radio-group/RadioGroup.js +0 -62
- package/src/components/molecules/radio-group/RadioGroup.stories.js +0 -44
- package/src/components/molecules/radio-group/index.js +0 -3
package/dist/index.d.ts
CHANGED
|
@@ -63,8 +63,6 @@ declare const GuidedCheckoutImage: JSX.Element;
|
|
|
63
63
|
|
|
64
64
|
declare const ProfileImage: JSX.Element;
|
|
65
65
|
|
|
66
|
-
declare const RevenueManagementImage: JSX.Element;
|
|
67
|
-
|
|
68
66
|
declare const StandardCheckoutImage: JSX.Element;
|
|
69
67
|
|
|
70
68
|
interface BoxProps {
|
|
@@ -189,7 +187,7 @@ interface ExternalLinkProps {
|
|
|
189
187
|
}
|
|
190
188
|
|
|
191
189
|
declare const ExternalLink: React.FC<Expand<ExternalLinkProps> &
|
|
192
|
-
React.HTMLAttributes<HTMLElement
|
|
190
|
+
React.HTMLAttributes<HTMLElement>>;
|
|
193
191
|
|
|
194
192
|
interface InternalLinkProps {
|
|
195
193
|
to: string;
|
|
@@ -206,7 +204,7 @@ interface InternalLinkProps {
|
|
|
206
204
|
}
|
|
207
205
|
|
|
208
206
|
declare const InternalLink: React.FC<Expand<InternalLinkProps> &
|
|
209
|
-
React.HTMLAttributes<HTMLElement
|
|
207
|
+
React.HTMLAttributes<HTMLElement>>;
|
|
210
208
|
|
|
211
209
|
interface NavFooterProps {
|
|
212
210
|
leftContent?: JSX.Element;
|
|
@@ -400,5 +398,5 @@ interface DefaultPageTemplateProps {
|
|
|
400
398
|
declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
|
|
401
399
|
React.HTMLAttributes<HTMLElement>>;
|
|
402
400
|
|
|
403
|
-
export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, EditableTable, EditableTableProps, ExternalLink, ExternalLinkProps, FooterWithSubfooter, FooterWithSubfooterProps, GuidedCheckoutImage, InternalLink, InternalLinkProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, Popover, PopoverProps, ProfileImage,
|
|
401
|
+
export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, EditableTable, EditableTableProps, ExternalLink, ExternalLinkProps, FooterWithSubfooter, FooterWithSubfooterProps, GuidedCheckoutImage, InternalLink, InternalLinkProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, Popover, PopoverProps, ProfileImage, Stack, StackProps, StandardCheckoutImage, Switcher, SwitcherProps, TableListItem, TableListItemProps, Text, TextProps, Title, TitleProps };
|
|
404
402
|
//# sourceMappingURL=index.d.ts.map
|