@aveonline/ui-react 1.5.3 → 1.5.4
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.
|
@@ -2,8 +2,9 @@ import { ITemplate } from '../../../types';
|
|
|
2
2
|
/**
|
|
3
3
|
* Molecule: Summary
|
|
4
4
|
*/
|
|
5
|
-
declare function Summary({ children, title, className, footer, ...rest }: ITemplate & {
|
|
5
|
+
declare function Summary({ children, title, className, classNameTitle, footer, ...rest }: ITemplate & {
|
|
6
6
|
title?: string;
|
|
7
|
+
classNameTitle?: string;
|
|
7
8
|
}): JSX.Element;
|
|
8
9
|
declare namespace Summary {
|
|
9
10
|
var Container: ({ children, className, ...rest }: ITemplate) => JSX.Element;
|
package/dist/ui-react.mjs
CHANGED
|
@@ -5972,7 +5972,7 @@ const Oi = Ie((A, e) => {
|
|
|
5972
5972
|
});
|
|
5973
5973
|
});
|
|
5974
5974
|
function zi({
|
|
5975
|
-
size: A
|
|
5975
|
+
size: A = "lg"
|
|
5976
5976
|
}) {
|
|
5977
5977
|
return /* @__PURE__ */ u("span", {
|
|
5978
5978
|
className: y("ui__spinner border-solid border-surface-neutral-default rounded-[50%] inline-block border-b-transparent", {
|
|
@@ -11186,16 +11186,17 @@ function En({
|
|
|
11186
11186
|
children: A,
|
|
11187
11187
|
title: e = "",
|
|
11188
11188
|
className: t,
|
|
11189
|
-
|
|
11190
|
-
|
|
11189
|
+
classNameTitle: r = "mb-xl",
|
|
11190
|
+
footer: n,
|
|
11191
|
+
...g
|
|
11191
11192
|
}) {
|
|
11192
11193
|
return /* @__PURE__ */ x("div", {
|
|
11193
11194
|
className: y(t, "m-0 p-0"),
|
|
11194
|
-
...
|
|
11195
|
+
...g,
|
|
11195
11196
|
children: [/* @__PURE__ */ u(xe, {
|
|
11196
11197
|
variant: "heading",
|
|
11197
11198
|
color: "default",
|
|
11198
|
-
className:
|
|
11199
|
+
className: r,
|
|
11199
11200
|
children: e
|
|
11200
11201
|
}), A]
|
|
11201
11202
|
});
|