@oliasoft-open-source/react-ui-library 3.2.4 → 3.2.5

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9866,6 +9866,7 @@ const Section$1 = ({
9866
9866
  case "Menu":
9867
9867
  return /* @__PURE__ */ jsx(DropDownMenu, {
9868
9868
  menu: section.menu,
9869
+ title: section.title,
9869
9870
  closeOnOptionClick,
9870
9871
  isNested: true,
9871
9872
  closeParent: close,
@@ -10252,6 +10253,7 @@ const Button = ({
10252
10253
  };
10253
10254
  const Text$1 = ({
10254
10255
  label: label2,
10256
+ title: title2,
10255
10257
  carat,
10256
10258
  disabled: disabled2,
10257
10259
  isOpen: isOpen2
@@ -10260,7 +10262,7 @@ const Text$1 = ({
10260
10262
  className: cx(styles$L.trigger, disabled2 ? styles$L.disabled : null, isOpen2 ? styles$L.active : null),
10261
10263
  children: [/* @__PURE__ */ jsx("span", {
10262
10264
  className: styles$L.label,
10263
- title: label2,
10265
+ title: title2 || label2,
10264
10266
  children: label2
10265
10267
  }), carat && carat === "right" ? /* @__PURE__ */ jsx(FaAngleRight, {
10266
10268
  className: styles$L.arrow
@@ -10288,6 +10290,7 @@ const Trigger$2 = React__default.forwardRef(({
10288
10290
  width,
10289
10291
  trigger: trigger2,
10290
10292
  label: label2,
10293
+ title: title2,
10291
10294
  onClickTrigger,
10292
10295
  colored: colored2,
10293
10296
  small: small2,
@@ -10310,6 +10313,7 @@ const Trigger$2 = React__default.forwardRef(({
10310
10313
  loading
10311
10314
  }) : trigger2 === "Text" ? /* @__PURE__ */ jsx(Text$1, {
10312
10315
  label: label2,
10316
+ title: title2,
10313
10317
  disabled: isDisabled,
10314
10318
  carat: !contextMenu && (isNested ? "right" : "down"),
10315
10319
  isOpen: isOpen2
@@ -10478,6 +10482,7 @@ const DropDownMenu = ({
10478
10482
  const disabledContext = useContext(DisabledContext);
10479
10483
  const {
10480
10484
  label: label2,
10485
+ title: title2,
10481
10486
  trigger: trigger2,
10482
10487
  fullHeightTrigger,
10483
10488
  colored: colored2,
@@ -10532,6 +10537,7 @@ const DropDownMenu = ({
10532
10537
  fullHeight: fullHeightTrigger,
10533
10538
  trigger: trigger2,
10534
10539
  label: label2,
10540
+ title: title2,
10535
10541
  onClickTrigger,
10536
10542
  colored: colored2,
10537
10543
  small: small2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "3.2.4",
3
+ "version": "3.2.5",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "module": "./dist/index.js",
6
6
  "main": "./dist/index.js",