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