@true-engineering/true-react-common-ui-kit 4.0.0-alpha31 → 4.0.0-alpha33
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/components/FiltersPane/index.d.ts +1 -0
- package/dist/components/FiltersPane/types.d.ts +2 -1
- package/dist/components/Select/Select.d.ts +2 -2
- package/dist/components/Select/types.d.ts +4 -0
- package/dist/true-react-common-ui-kit.js +5 -1
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +5 -1
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/FiltersPane/index.ts +1 -0
- package/src/components/FiltersPane/types.ts +2 -1
- package/src/components/Select/Select.tsx +5 -4
- package/src/components/Select/types.ts +3 -0
|
@@ -12567,7 +12567,9 @@
|
|
|
12567
12567
|
allOptionsLabel: shouldShowAllOption && allOptionsLabel,
|
|
12568
12568
|
areAllOptionsSelected,
|
|
12569
12569
|
customListHeader: customHeader,
|
|
12570
|
-
customListFooter: footer,
|
|
12570
|
+
customListFooter: trueReactPlatformHelpers.applyAction(footer, {
|
|
12571
|
+
filteredOptions
|
|
12572
|
+
}),
|
|
12571
12573
|
noMatchesLabel,
|
|
12572
12574
|
focusedIndex: focusedListCellIndex,
|
|
12573
12575
|
activeValue: value,
|
|
@@ -32722,6 +32724,8 @@
|
|
|
32722
32724
|
exports2.NewMoreMenu = NewMoreMenu;
|
|
32723
32725
|
exports2.Notification = Notification;
|
|
32724
32726
|
exports2.NumberInput = NumberInput;
|
|
32727
|
+
exports2.PERIODS = PERIODS;
|
|
32728
|
+
exports2.PERIODS_GETTERS = PERIODS_GETTERS;
|
|
32725
32729
|
exports2.PhoneInput = PhoneInput;
|
|
32726
32730
|
exports2.RadioButton = RadioButton;
|
|
32727
32731
|
exports2.SLIDE_UP_ANIMATION_DURATION = SLIDE_UP_ANIMATION_DURATION;
|