@oliasoft-open-source/react-ui-library 4.20.6 → 4.20.7-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.d.ts +1 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -4674,6 +4674,7 @@ const TriggerTooltip = ({
|
|
|
4674
4674
|
};
|
|
4675
4675
|
const Trigger$1 = React__default.forwardRef(
|
|
4676
4676
|
({
|
|
4677
|
+
active: active2,
|
|
4677
4678
|
isDisabled,
|
|
4678
4679
|
badgeTitle,
|
|
4679
4680
|
badgeDot,
|
|
@@ -4712,7 +4713,7 @@ const Trigger$1 = React__default.forwardRef(
|
|
|
4712
4713
|
loading,
|
|
4713
4714
|
error: error2,
|
|
4714
4715
|
warning: warning2,
|
|
4715
|
-
active: isOpen2,
|
|
4716
|
+
active: isOpen2 || active2,
|
|
4716
4717
|
tabIndex
|
|
4717
4718
|
}
|
|
4718
4719
|
) : trigger2 === TriggerType.TEXT ? /* @__PURE__ */ jsx(
|
|
@@ -4880,7 +4881,8 @@ const DropDownMenu = ({
|
|
|
4880
4881
|
error: error2,
|
|
4881
4882
|
warning: warning2,
|
|
4882
4883
|
selected: selected2,
|
|
4883
|
-
tabIndex
|
|
4884
|
+
tabIndex,
|
|
4885
|
+
active: active2
|
|
4884
4886
|
}) => {
|
|
4885
4887
|
const disabledContext = useContext(DisabledContext);
|
|
4886
4888
|
const {
|
|
@@ -4946,6 +4948,7 @@ const DropDownMenu = ({
|
|
|
4946
4948
|
component: component2,
|
|
4947
4949
|
groupOrder,
|
|
4948
4950
|
isOpen: isOpen2,
|
|
4951
|
+
active: active2,
|
|
4949
4952
|
tooltip: tooltip2,
|
|
4950
4953
|
error: error2,
|
|
4951
4954
|
warning: warning2,
|