@ttoss/ui 5.3.0 → 5.4.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/esm/index.js CHANGED
@@ -647,11 +647,11 @@ var Label = ({
647
647
  onClick: onTooltipClick,
648
648
  children: [/* @__PURE__ */jsx14(Icon6, {
649
649
  inline: true,
650
- icon: "info"
650
+ icon: "fluent:info-24-regular"
651
651
  }), /* @__PURE__ */jsx14(Tooltip, {
652
652
  id: tooltipId,
653
653
  clickable: onTooltipClick ? true : false,
654
- place: "right",
654
+ place: "top",
655
655
  children: tooltip
656
656
  })]
657
657
  })]
@@ -986,13 +986,15 @@ var Tooltip = props => {
986
986
  return {
987
987
  ".tooltip-component": {
988
988
  fontFamily: fonts?.body,
989
- backgroundColor: themeColors?.feedback?.background?.muted?.default,
989
+ backgroundColor: themeColors?.feedback?.background?.primary?.default,
990
990
  paddingY: "2",
991
991
  paddingX: "3",
992
992
  color: themeColors?.feedback?.text?.secondary?.default,
993
993
  border: "sm",
994
994
  borderRadius: "xl",
995
- borderColor: themeColors?.feedback?.border?.muted?.default
995
+ borderColor: themeColors?.feedback?.border?.primary?.default,
996
+ zIndex: "tooltip",
997
+ opacity: "1"
996
998
  }
997
999
  };
998
1000
  },
@@ -1005,8 +1007,8 @@ var Tooltip = props => {
1005
1007
  };
1006
1008
 
1007
1009
  // src/theme/ThemeProvider.tsx
1010
+ import { css, Global } from "@emotion/react";
1008
1011
  import { BruttalFonts, BruttalTheme } from "@ttoss/theme/Bruttal";
1009
- import { Global, css } from "@emotion/react";
1010
1012
  import { ThemeUIProvider } from "theme-ui";
1011
1013
  import { Fragment, jsx as jsx21, jsxs as jsxs9 } from "react/jsx-runtime";
1012
1014
  var ThemeProvider = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/ui",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "Primitive layout, typographic, and other components for styling applications.",
5
5
  "license": "MIT",
6
6
  "author": "ttoss",
@@ -28,7 +28,7 @@
28
28
  "react-select": "^5.9.0",
29
29
  "react-tooltip": "^5.28.0",
30
30
  "theme-ui": "^0.17.1",
31
- "@ttoss/theme": "^2.3.0"
31
+ "@ttoss/theme": "^2.4.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@emotion/react": "^11",