@thecb/components 10.12.4 → 10.12.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 +304 -690
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +305 -689
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/card/CardText.js +3 -4
- package/src/components/atoms/checkbox/Checkbox.js +9 -22
- package/src/components/atoms/checkbox/Checkbox.stories.js +13 -17
- package/src/components/atoms/checkbox/Checkbox.theme.js +2 -6
- package/src/components/atoms/icons/icons.stories.js +1 -5
- package/src/components/atoms/icons/index.js +1 -5
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.js +25 -33
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.stories.js +4 -2
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.styled.js +7 -15
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.theme.js +3 -7
- package/src/components/molecules/multiple-select-filter/__private__/ActionLinkButton.js +13 -16
- package/src/components/molecules/multiple-select-filter/__private__/FilterButton.js +14 -24
- package/src/components/molecules/multiple-select-filter/__private__/FilterDropdown.js +18 -22
- package/src/components/molecules/multiple-select-filter/__private__/FilterableList.js +41 -43
- package/src/components/molecules/multiple-select-filter/__private__/FilterableListItem.js +41 -52
- package/src/components/molecules/multiple-select-filter/__private__/SearchBox.js +7 -10
- package/src/components/molecules/multiple-select-filter/index.d.ts +2 -2
- package/src/components/atoms/icons/CheckboxCheckmarkIcon.js +0 -45
- package/src/components/atoms/icons/PaymentStatusIcon.d.ts +0 -1
- package/src/components/atoms/icons/PaymentStatusIcon.js +0 -28
- package/src/components/atoms/icons/PersonIcon.d.ts +0 -1
- package/src/components/atoms/icons/PersonIcon.js +0 -28
package/dist/index.d.ts
CHANGED
|
@@ -1351,9 +1351,7 @@ interface MultipleSelectFilterProps {
|
|
|
1351
1351
|
actions: FieldActions;
|
|
1352
1352
|
autocompleteValue?: boolean;
|
|
1353
1353
|
btnContentOverride?: JSX.Element;
|
|
1354
|
-
btnExtraStyles?: string;
|
|
1355
1354
|
disabled: boolean;
|
|
1356
|
-
dropdownExtraStyles?: string;
|
|
1357
1355
|
extraStyles?: string;
|
|
1358
1356
|
fields: {
|
|
1359
1357
|
searchTerm: Field;
|
|
@@ -1367,6 +1365,8 @@ interface MultipleSelectFilterProps {
|
|
|
1367
1365
|
options: SearchableSelectOption[];
|
|
1368
1366
|
placeholder?: string;
|
|
1369
1367
|
searchable?: boolean;
|
|
1368
|
+
selectedOptions: SearchableSelectOption[];
|
|
1369
|
+
setSelectedOptions: (options: SearchableSelectOption[]) => void;
|
|
1370
1370
|
themeValues?: any[];
|
|
1371
1371
|
truncateBtnTextWidth?: string;
|
|
1372
1372
|
}
|