@ttoss/ui 5.5.8 → 5.5.9
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 +4 -1
- package/dist/index.d.ts +1 -4
- package/package.json +3 -3
package/dist/esm/index.js
CHANGED
|
@@ -361,13 +361,16 @@ var IconButton = props => {
|
|
|
361
361
|
return /* @__PURE__ */jsx9(IconButtonUi, {
|
|
362
362
|
type: "button",
|
|
363
363
|
...restProps,
|
|
364
|
+
sx: {
|
|
365
|
+
borderRadius: "sm",
|
|
366
|
+
...restProps.sx
|
|
367
|
+
},
|
|
364
368
|
children: icon ? /* @__PURE__ */jsx9(Icon4, {
|
|
365
369
|
inline: true,
|
|
366
370
|
icon
|
|
367
371
|
}) : children
|
|
368
372
|
});
|
|
369
373
|
};
|
|
370
|
-
IconButton.displayName = "IconButton";
|
|
371
374
|
|
|
372
375
|
// src/components/Image.tsx
|
|
373
376
|
import { Image } from "theme-ui";
|
package/dist/index.d.ts
CHANGED
|
@@ -57,10 +57,7 @@ declare const HelpText: ({ sx, disabled, negative, ...props }: HelpTextProps) =>
|
|
|
57
57
|
type IconButtonProps = IconButtonProps$1 & {
|
|
58
58
|
icon?: string;
|
|
59
59
|
};
|
|
60
|
-
declare const IconButton:
|
|
61
|
-
(props: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
62
|
-
displayName: string;
|
|
63
|
-
};
|
|
60
|
+
declare const IconButton: (props: IconButtonProps) => react_jsx_runtime.JSX.Element;
|
|
64
61
|
|
|
65
62
|
declare const InfiniteLinearProgress: () => react_jsx_runtime.JSX.Element;
|
|
66
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/ui",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.9",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"jest": "^29.7.0",
|
|
44
44
|
"react": "^19.0.0",
|
|
45
45
|
"tsup": "^8.3.5",
|
|
46
|
-
"@ttoss/test-utils": "^2.1.23",
|
|
47
46
|
"@ttoss/react-icons": "^0.4.11",
|
|
48
|
-
"@ttoss/config": "^1.35.3"
|
|
47
|
+
"@ttoss/config": "^1.35.3",
|
|
48
|
+
"@ttoss/test-utils": "^2.1.23"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
51
51
|
"React",
|