@thecb/components 10.12.0 → 10.12.1-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 +537 -374
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -7
- package/dist/index.esm.js +537 -374
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/card/Card.js +0 -9
- package/src/components/atoms/card/CardText.js +11 -34
- package/src/components/atoms/card/index.d.ts +1 -7
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.js +53 -279
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.stories.js +1 -1
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.styled.js +4 -4
- package/src/components/molecules/multiple-select-filter/__private__/ActionLinkButton.js +24 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterButton.js +85 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterDropdown.js +23 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterableList.js +144 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterableListItem.js +67 -0
- package/src/components/molecules/multiple-select-filter/__private__/SearchBox.js +38 -0
- package/src/components/molecules/multiple-select-filter/__private__/useKeyboardNavigation.js +84 -0
- package/src/components/molecules/multiple-select-filter/__private__/util.js +31 -0
- package/src/components/atoms/.DS_Store +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -576,10 +576,8 @@ declare const ButtonWithLink: React.FC<Expand<ButtonWithLinkProps> &
|
|
|
576
576
|
React.HTMLAttributes<HTMLElement>>;
|
|
577
577
|
|
|
578
578
|
interface CardProps {
|
|
579
|
-
text?: string
|
|
580
|
-
textAs?: string;
|
|
579
|
+
text?: string;
|
|
581
580
|
titleText?: string;
|
|
582
|
-
titleAs?: string;
|
|
583
581
|
titleVariant?: string;
|
|
584
582
|
extraStyles?: string;
|
|
585
583
|
imgSrc?: string;
|
|
@@ -603,10 +601,6 @@ interface CardProps {
|
|
|
603
601
|
borderRadius?: string;
|
|
604
602
|
width?: string;
|
|
605
603
|
padding?: string;
|
|
606
|
-
showQuitLink?: boolean;
|
|
607
|
-
onQuitClick?: (
|
|
608
|
-
event: React.MouseEvent<HTMLElement> | React.TouchEvent<HTMLElement>
|
|
609
|
-
) => void;
|
|
610
604
|
}
|
|
611
605
|
|
|
612
606
|
declare const Card: React.FC<Expand<CardProps> &
|