@sebgroup/green-react 3.14.1 → 3.15.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/index.esm.js CHANGED
@@ -1422,6 +1422,7 @@ var IconButton = function IconButton(_a) {
1422
1422
  "aria-controls": props['aria-controls'],
1423
1423
  "aria-expanded": props['aria-expanded'],
1424
1424
  type: (_b = props.type) !== null && _b !== void 0 ? _b : 'button',
1425
+ title: props.title,
1425
1426
  children: children
1426
1427
  });
1427
1428
  };
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@sebgroup/green-react",
3
- "version": "3.14.1",
3
+ "version": "3.15.0",
4
4
  "peerDependencies": {
5
5
  "react": "^17 || ^18",
6
6
  "react-dom": "^17 || ^18"
7
7
  },
8
8
  "dependencies": {
9
- "@sebgroup/green-core": "^1.35.0",
9
+ "@sebgroup/green-core": "^1.38.1",
10
10
  "@sebgroup/chlorophyll": "^3.4.1",
11
11
  "@sebgroup/extract": "^3.0.1",
12
12
  "@lit/react": "^1.0.2",
@@ -7,6 +7,7 @@ interface IconButtonInterface {
7
7
  'aria-expanded'?: boolean;
8
8
  'aria-controls'?: string;
9
9
  size?: 'small' | 'normal';
10
+ title?: string;
10
11
  }
11
12
  export declare const IconButton: ({ children, onClick, ...props }: IconButtonInterface) => import("react/jsx-runtime").JSX.Element;
12
13
  export {};