revdev-components 0.246.0 → 0.247.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.
@@ -15,5 +15,6 @@ export interface IconDivisionProps {
15
15
  direction?: "row" | "column";
16
16
  elementRev?: React.Ref<any>;
17
17
  style?: React.CSSProperties;
18
+ title?: string;
18
19
  }
19
20
  export declare const IconDivision: React.FC<IconDivisionProps>;
package/build/index.js CHANGED
@@ -2319,8 +2319,8 @@ var AppTooltip = function (_a) {
2319
2319
 
2320
2320
  var IconBoxContent = function (_a) {
2321
2321
  var _b;
2322
- var flexRoot = _a.flexRoot, icon = _a.icon, rightIcon = _a.rightIcon, children = _a.children, className = _a.className, contentClassName = _a.contentClassName, onClick = _a.onClick, _c = _a.direction, direction = _c === void 0 ? "row" : _c, elementRev = _a.elementRev, style = _a.style;
2323
- return (React.createElement("div", { ref: elementRev, style: style, className: classNames(s$G.root, (_b = {},
2322
+ var flexRoot = _a.flexRoot, icon = _a.icon, rightIcon = _a.rightIcon, children = _a.children, className = _a.className, contentClassName = _a.contentClassName, onClick = _a.onClick, _c = _a.direction, direction = _c === void 0 ? "row" : _c, elementRev = _a.elementRev, style = _a.style, title = _a.title;
2323
+ return (React.createElement("div", { ref: elementRev, style: style, title: title, className: classNames(s$G.root, (_b = {},
2324
2324
  _b[s$G.flex] = flexRoot,
2325
2325
  _b[s$G.button] = !!onClick,
2326
2326
  _b[s$G.column] = direction === "column",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.246.0",
3
+ "version": "0.247.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {