@thecb/components 7.5.1 → 7.6.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 +615 -352
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.esm.js +612 -352
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
- package/src/components/atoms/icons/FindIconSmall.js +49 -0
- package/src/components/atoms/icons/RevenueManagementImage.d.ts +1 -0
- package/src/components/atoms/icons/RevenueManagementImage.js +449 -0
- package/src/components/atoms/icons/index.d.ts +1 -0
- package/src/components/atoms/icons/index.js +5 -1
- package/src/components/atoms/index.js +2 -1
- package/src/components/atoms/link/ExternalLink.d.ts +1 -1
- package/src/components/atoms/link/ExternalLink.js +48 -42
- package/src/components/atoms/link/ExternalLink.styled.js +4 -2
- package/src/components/atoms/link/InternalLink.d.ts +1 -1
- package/src/components/atoms/link/InternalLink.js +48 -42
- package/src/components/atoms/link/InternalLink.styled.js +6 -3
- package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +92 -0
- package/src/components/atoms/radio-button-with-label/index.js +3 -0
- package/src/components/molecules/index.js +1 -1
- package/src/components/molecules/radio-group/RadioGroup.js +62 -0
- package/src/components/molecules/radio-group/RadioGroup.stories.js +44 -0
- package/src/components/molecules/radio-group/index.js +3 -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 → molecules/radio-section}/radio-button/RadioButton.js +2 -2
- package/src/components/{atoms → molecules/radio-section}/radio-button/RadioButton.theme.js +1 -1
- package/src/components/molecules/workflow-tile/WorkflowTile.js +13 -5
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/radio-button/RadioButton.stories.js +0 -34
- package/src/components/atoms/radio-button/index.js +0 -3
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +0 -266
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +0 -26
- package/src/components/molecules/internal-user-info-form/index.js +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -63,6 +63,8 @@ declare const GuidedCheckoutImage: JSX.Element;
|
|
|
63
63
|
|
|
64
64
|
declare const ProfileImage: JSX.Element;
|
|
65
65
|
|
|
66
|
+
declare const RevenueManagementImage: JSX.Element;
|
|
67
|
+
|
|
66
68
|
declare const StandardCheckoutImage: JSX.Element;
|
|
67
69
|
|
|
68
70
|
interface BoxProps {
|
|
@@ -187,7 +189,7 @@ interface ExternalLinkProps {
|
|
|
187
189
|
}
|
|
188
190
|
|
|
189
191
|
declare const ExternalLink: React.FC<Expand<ExternalLinkProps> &
|
|
190
|
-
React.HTMLAttributes<HTMLElement
|
|
192
|
+
React.HTMLAttributes<HTMLElement> & { ref?: React.Ref<HTMLLinkElement> }>;
|
|
191
193
|
|
|
192
194
|
interface InternalLinkProps {
|
|
193
195
|
to: string;
|
|
@@ -204,7 +206,7 @@ interface InternalLinkProps {
|
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
declare const InternalLink: React.FC<Expand<InternalLinkProps> &
|
|
207
|
-
React.HTMLAttributes<HTMLElement
|
|
209
|
+
React.HTMLAttributes<HTMLElement> & { ref?: React.Ref<HTMLLinkElement> }>;
|
|
208
210
|
|
|
209
211
|
interface NavFooterProps {
|
|
210
212
|
leftContent?: JSX.Element;
|
|
@@ -398,5 +400,5 @@ interface DefaultPageTemplateProps {
|
|
|
398
400
|
declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
|
|
399
401
|
React.HTMLAttributes<HTMLElement>>;
|
|
400
402
|
|
|
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 };
|
|
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, RevenueManagementImage, Stack, StackProps, StandardCheckoutImage, Switcher, SwitcherProps, TableListItem, TableListItemProps, Text, TextProps, Title, TitleProps };
|
|
402
404
|
//# sourceMappingURL=index.d.ts.map
|