@linzjs/lui 21.9.0 → 21.9.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/CHANGELOG.md +7 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +2 -2
- package/dist/lui.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [21.9.1](https://github.com/linz/lui/compare/v21.9.0...v21.9.1) (2023-11-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove non supported prop being passed into Tippy ([#1030](https://github.com/linz/lui/issues/1030)) ([0ff1892](https://github.com/linz/lui/commit/0ff1892413e23829ef5d15a501b8b3340737d371))
|
|
7
|
+
|
|
1
8
|
# [21.9.0](https://github.com/linz/lui/compare/v21.8.1...v21.9.0) (2023-11-08)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -46715,8 +46715,8 @@ var Tippy = index;
|
|
|
46715
46715
|
|
|
46716
46716
|
var LuiTooltip = function (props) {
|
|
46717
46717
|
var _a;
|
|
46718
|
-
var children = props.children,
|
|
46719
|
-
var tippyProps = __assign(__assign({}, rest), { content:
|
|
46718
|
+
var children = props.children, message = props.message, _b = props.theme, theme = _b === void 0 ? (_a = props.mode) !== null && _a !== void 0 ? _a : 'default' : _b, _c = props.offset, offset = _c === void 0 ? [0, 4] : _c, _d = props.arrow, arrow = _d === void 0 ? false : _d, plugins = props.plugins, rest = __rest(props, ["children", "message", "theme", "offset", "arrow", "plugins"]);
|
|
46719
|
+
var tippyProps = __assign(__assign({}, rest), { content: message, theme: theme, offset: offset, arrow: arrow, plugins: __spreadArray(__spreadArray([], (plugins || []), true), [followCursor], false) });
|
|
46720
46720
|
return React__default["default"].createElement(Tippy, __assign({}, tippyProps), children);
|
|
46721
46721
|
};
|
|
46722
46722
|
|