@thecb/components 10.12.1 → 10.12.2-beta.1
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 +252 -124
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +251 -125
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- 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/dist/index.d.ts
CHANGED
|
@@ -1350,7 +1350,9 @@ interface MultipleSelectFilterProps {
|
|
|
1350
1350
|
actions: FieldActions;
|
|
1351
1351
|
autocompleteValue?: boolean;
|
|
1352
1352
|
btnContentOverride?: JSX.Element;
|
|
1353
|
+
btnExtraStyles?: string;
|
|
1353
1354
|
disabled: boolean;
|
|
1355
|
+
dropdownExtraStyles?: string;
|
|
1354
1356
|
extraStyles?: string;
|
|
1355
1357
|
fields: {
|
|
1356
1358
|
searchTerm: Field;
|
|
@@ -1364,8 +1366,6 @@ interface MultipleSelectFilterProps {
|
|
|
1364
1366
|
options: SearchableSelectOption[];
|
|
1365
1367
|
placeholder?: string;
|
|
1366
1368
|
searchable?: boolean;
|
|
1367
|
-
selectedOptions: SearchableSelectOption[];
|
|
1368
|
-
setSelectedOptions: (options: SearchableSelectOption[]) => void;
|
|
1369
1369
|
themeValues?: any[];
|
|
1370
1370
|
truncateBtnTextWidth?: string;
|
|
1371
1371
|
}
|