demio-ui 5.3.18 → 5.3.19
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/bundle-analysis.html +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +3 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -513,7 +513,7 @@ type Props = {
|
|
|
513
513
|
/**
|
|
514
514
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
515
515
|
**/
|
|
516
|
-
declare function Tooltip({ align, alignOffset, children, className, collisionBoundary, container, content, defaultOpen, delayDuration, isCustomTrigger, isPortal, isTriggerAsChild, open, onOpenChange, side, sideOffset, skipDelayDuration, ...props }: Props): string | number | bigint | boolean |
|
|
516
|
+
declare function Tooltip({ align, alignOffset, children, className, collisionBoundary, container, content, defaultOpen, delayDuration, isCustomTrigger, isPortal, isTriggerAsChild, open, onOpenChange, side, sideOffset, skipDelayDuration, ...props }: Props): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | React__default.JSX.Element | null | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* PopoverTooltip is a wrapper around Popover that provides a tooltip-like experience.
|
|
519
519
|
**/
|
|
@@ -2206,9 +2206,8 @@ function _extends$c() { return _extends$c = Object.assign ? Object.assign.bind()
|
|
|
2206
2206
|
var SvgMagic = function SvgMagic(props) {
|
|
2207
2207
|
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
2208
2208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
fill: "none"
|
|
2209
|
+
fill: "none",
|
|
2210
|
+
viewBox: "0 0 24 24"
|
|
2212
2211
|
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
2213
2212
|
fill: "#02BF6F",
|
|
2214
2213
|
d: "M23.341 3.576 20.424.659A2.24 2.24 0 0 0 18.835 0c-.576 0-1.152.22-1.591.66L.659 17.242a2.25 2.25 0 0 0 0 3.181l2.917 2.917c.439.44 1.015.659 1.59.659s1.152-.22 1.592-.66L23.34 6.759c.879-.879.879-2.303 0-3.182M5.167 21.75 2.25 18.833 12.745 8.337l2.918 2.917zM17.254 9.663l-2.918-2.918 4.495-4.495h.003l2.916 2.917zM20.25 13.5 19 16l-2.5 1.25L19 18.5l1.25 2.5 1.25-2.5 2.5-1.25L21.5 16zm-9.75-9 .75-1.5 1.5-.75-1.5-.75L10.5 0l-.75 1.5-1.5.75 1.5.75zm-6.75 3L5 5l2.5-1.25L5 2.5 3.75 0 2.5 2.5 0 3.75 2.5 5z"
|