@thecb/components 8.3.1-beta.10 → 8.3.1-beta.11

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.d.ts CHANGED
@@ -698,5 +698,126 @@ interface DefaultPageTemplateProps {
698
698
  declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
699
699
  React.HTMLAttributes<HTMLElement>>;
700
700
 
701
- export { AddValidatorAction, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps, BankIconLarge, BankIconLargeProps, Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, ChargebackIconMedium, ChargebackIconMediumProps, ChargebackIconSmall, ChargebackIconSmallProps, ChargebackReversalIconMedium, ChargebackReversalIconMediumProps, ChargebackReversalIconSmall, ChargebackReversalIconSmallProps, ClearAction, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, EditableTable, EditableTableProps, ErrorMessageDictionary, ExternalLink, ExternalLinkProps, Field, FieldActionPayload, FieldActions, FooterWithSubfooter, FooterWithSubfooterProps, FormInput, FormInputProps, FormSelect, FormSelectOption, FormSelectProps, GuidedCheckoutImage, HistoryIconSmall, InternalLink, InternalLinkProps, KioskImage, Loading, LoadingProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, PointOfSaleImage, Popover, PopoverProps, ProfileImage, ReduxAction, RefundIconMedium, RefundIconMediumProps, RefundIconSmall, RefundIconSmallProps, RemoveValidatorAction, RevenueManagementImage, SetAction, 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, ValidatorFn, XCircleIconMedium, XCircleIconMediumProps, XCircleIconSmall, XCircleIconSmallProps };
701
+ type Color = string;
702
+
703
+ type ColorSet = {
704
+ background: Color;
705
+ border: Color;
706
+ iconBackground: Color;
707
+ iconFill: Color;
708
+ };
709
+
710
+ declare const BLACK: Color;
711
+ declare const TRANSPARENT:Color;
712
+ // WHITE
713
+ declare const WHITE: Color;
714
+ declare const SOLITUDE_WHITE: Color;
715
+ declare const SEASHELL_WHITE: Color;
716
+ declare const ALABASTER_WHITE: Color;
717
+ declare const AQUA_HAZE_WHITE: Color;
718
+ declare const BLEACH_WHITE: Color;
719
+ declare const CATSKILL_WHITE: Color;
720
+ declare const HALF_COLONIAL_WHITE: Color;
721
+ // GREY
722
+ declare const ATHENS_GREY: Color;
723
+ declare const ALTO_GREY: Color;
724
+ declare const SILVER_GREY: Color;
725
+ declare const PEWTER_GREY: Color;
726
+ declare const ASH_GREY: Color;
727
+ declare const IRON_GREY: Color;
728
+ declare const GHOST_GREY: Color;
729
+ declare const DUSTY_GREY: Color;
730
+ declare const REGENT_GREY: Color;
731
+ declare const STORM_GREY: Color;
732
+ declare const TROUT_GREY: Color;
733
+ declare const MINESHAFT_GREY: Color;
734
+ declare const SOOT_GREY: Color;
735
+ declare const FIREFLY_GREY: Color;
736
+ declare const BRIGHT_GREY: Color;
737
+ declare const CHARADE_GREY: Color;
738
+ declare const GRECIAN_GREY: Color;
739
+ declare const BLACK_SQUEEZE: Color;
740
+ declare const GREY_CHATEAU: Color;
741
+ declare const COOL_GREY_05: Color;
742
+ // BLUE
743
+ declare const CLOUDBURST_BLUE: Color;
744
+ declare const ZODIAC_BLUE: Color;
745
+ declare const CONGRESS_BLUE: Color;
746
+ declare const SCIENCE_BLUE: Color;
747
+ declare const MARINER_BLUE: Color;
748
+ declare const CURIOUS_BLUE: Color;
749
+ declare const SELAGO_BLUE: Color;
750
+ declare const ONAHAU_BLUE: Color;
751
+ declare const PICKLED_BLUE: Color;
752
+ declare const CERULEAN_BLUE: Color;
753
+ declare const FOAM_BLUE: Color;
754
+ declare const CELLO_BLUE: Color;
755
+ declare const BOSTON_BLUE: Color;
756
+ declare const INFO_BLUE: Color;
757
+ declare const CORNFLOWER_BLUE: Color;
758
+ declare const HOVER_LIGHT_BLUE: Color;
759
+ declare const MATISSE_BLUE: Color;
760
+ declare const ROYAL_BLUE: Color;
761
+ declare const ROYAL_BLUE_VIVID: Color;
762
+ declare const ASTRAL_BLUE: Color;
763
+ declare const SAPPHIRE_BLUE: Color;
764
+ declare const PEACOCK_BLUE: Color;
765
+ // GREEN
766
+ declare const FOREST_GREEN: Color;
767
+ declare const MEADOW_GREEN: Color;
768
+ declare const POLAR_GREEN: Color;
769
+ declare const ICE_GREEN: Color;
770
+ declare const HAZE_GREEN: Color;
771
+ declare const EMERALD_GREEN: Color;
772
+ declare const HINT_GREEN: Color;
773
+ declare const SEA_GREEN: Color;
774
+ // YELLOW
775
+ declare const SELECTIVE_YELLOW: Color;
776
+ declare const MUSTARD_YELLOW: Color;
777
+ declare const FIRE_YELLOW: Color;
778
+ // ORANGE
779
+ declare const CARROT_ORANGE: Color;
780
+ declare const ZEST_ORANGE: Color;
781
+ declare const APRICOT_ORANGE: Color;
782
+ // RED
783
+ declare const RED: Color;
784
+ declare const CRIMSON_RED: Color;
785
+ declare const THUNDERBIRD_RED: Color;
786
+ declare const RAZZMATAZZ_RED: Color;
787
+ declare const RASPBERRY: Color;
788
+ declare const FANTASY_RED: Color;
789
+ declare const COSMOS_RED: Color;
790
+ declare const BLUSH_RED: Color;
791
+
792
+ declare const ERROR_COLOR: Color;
793
+
794
+ declare const ALERT_COLORS: {
795
+ warn: ColorSet;
796
+ info: ColorSet;
797
+ error: ColorSet;
798
+ success: ColorSet;
799
+ text: Color;
800
+ link: Color;
801
+ };
802
+
803
+ declare const PILL_COLORS: {
804
+ danger: {
805
+ background: Color;
806
+ text: Color;
807
+ };
808
+ neutral: {
809
+ background: Color;
810
+ text: Color;
811
+ };
812
+ success: {
813
+ background: Color;
814
+ text: Color;
815
+ };
816
+ warning: {
817
+ background: Color;
818
+ text: Color;
819
+ };
820
+ };
821
+
822
+ export { ALABASTER_WHITE, ALERT_COLORS, ALTO_GREY, APRICOT_ORANGE, AQUA_HAZE_WHITE, ASH_GREY, ASTRAL_BLUE, ATHENS_GREY, AddValidatorAction, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps, BLACK, BLACK_SQUEEZE, BLEACH_WHITE, BLUSH_RED, BOSTON_BLUE, BRIGHT_GREY, BankIconLarge, BankIconLargeProps, Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, CARROT_ORANGE, CATSKILL_WHITE, CELLO_BLUE, CERULEAN_BLUE, CHARADE_GREY, CLOUDBURST_BLUE, CONGRESS_BLUE, COOL_GREY_05, CORNFLOWER_BLUE, COSMOS_RED, CRIMSON_RED, CURIOUS_BLUE, Card, CardProps, Center, CenterProps, ChargebackIconMedium, ChargebackIconMediumProps, ChargebackIconSmall, ChargebackIconSmallProps, ChargebackReversalIconMedium, ChargebackReversalIconMediumProps, ChargebackReversalIconSmall, ChargebackReversalIconSmallProps, ClearAction, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DUSTY_GREY, DefaultPageTemplate, DefaultPageTemplateProps, EMERALD_GREEN, ERROR_COLOR, EditableTable, EditableTableProps, ErrorMessageDictionary, ExternalLink, ExternalLinkProps, FANTASY_RED, FIREFLY_GREY, FIRE_YELLOW, FOAM_BLUE, FOREST_GREEN, Field, FieldActionPayload, FieldActions, FooterWithSubfooter, FooterWithSubfooterProps, FormInput, FormInputProps, FormSelect, FormSelectOption, FormSelectProps, GHOST_GREY, GRECIAN_GREY, GREY_CHATEAU, GuidedCheckoutImage, HALF_COLONIAL_WHITE, HAZE_GREEN, HINT_GREEN, HOVER_LIGHT_BLUE, HistoryIconSmall, ICE_GREEN, INFO_BLUE, IRON_GREY, InternalLink, InternalLinkProps, KioskImage, Loading, LoadingProps, MARINER_BLUE, MATISSE_BLUE, MEADOW_GREEN, MINESHAFT_GREY, MUSTARD_YELLOW, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, ONAHAU_BLUE, PEACOCK_BLUE, PEWTER_GREY, PICKLED_BLUE, PILL_COLORS, POLAR_GREEN, Paragraph, ParagraphProps, PointOfSaleImage, Popover, PopoverProps, ProfileImage, RASPBERRY, RAZZMATAZZ_RED, RED, REGENT_GREY, ROYAL_BLUE, ROYAL_BLUE_VIVID, ReduxAction, RefundIconMedium, RefundIconMediumProps, RefundIconSmall, RefundIconSmallProps, RemoveValidatorAction, RevenueManagementImage, SAPPHIRE_BLUE, SCIENCE_BLUE, SEASHELL_WHITE, SEA_GREEN, SELAGO_BLUE, SELECTIVE_YELLOW, SILVER_GREY, SOLITUDE_WHITE, SOOT_GREY, STORM_GREY, SetAction, Spinner, SpinnerProps, Stack, StackProps, StandardCheckoutImage, SuccessfulIconMedium, SuccessfulIconMediumProps, SuccessfulIconSmall, SuccessfulIconSmallProps, Switcher, SwitcherProps, THUNDERBIRD_RED, TRANSPARENT, TROUT_GREY, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeading, TableHeadingProps, TableListItem, TableListItemProps, TableProps, TableRow, TableRowProps, Text, TextProps, Title, TitleProps, ValidatorFn, WHITE, XCircleIconMedium, XCircleIconMediumProps, XCircleIconSmall, XCircleIconSmallProps, ZEST_ORANGE, ZODIAC_BLUE };
702
823
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.3.1-beta.10",
3
+ "version": "8.3.1-beta.11",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
package/src/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "./components";
2
2
  export * from "./types/common";
3
+ export * from "./constants";