@versini/ui-footer 3.0.9 → 3.0.10

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/index.d.ts CHANGED
@@ -31,6 +31,6 @@ type FooterProps = {
31
31
  row2?: React.ReactNode;
32
32
  };
33
33
 
34
- declare const Footer: ({ className, mode, row1, row2, noMargins, raw, }: FooterProps) => react_jsx_runtime.JSX.Element;
34
+ declare const Footer: ({ className, mode, row1, row2, noMargins, raw, ...otherProps }: FooterProps) => react_jsx_runtime.JSX.Element;
35
35
 
36
36
  export { FOOTER_CLASSNAME, Footer };
package/dist/index.js CHANGED
@@ -1,28 +1,29 @@
1
- import { jsxs as x, jsx as i } from "react/jsx-runtime";
2
- import m from "clsx";
1
+ import { jsxs as m, jsx as i } from "react/jsx-runtime";
2
+ import n from "clsx";
3
3
  /*!
4
- @versini/ui-footer v3.0.9
4
+ @versini/ui-footer v3.0.10
5
5
  © 2025 gizmette.com
6
6
  */
7
7
  try {
8
8
  window.__VERSINI_UI_FOOTER__ || (window.__VERSINI_UI_FOOTER__ = {
9
- version: "3.0.9",
10
- buildTime: "01/25/2025 10:55 PM EST",
9
+ version: "3.0.10",
10
+ buildTime: "02/16/2025 06:39 PM EST",
11
11
  homepage: "https://github.com/aversini/ui-components",
12
12
  license: "MIT"
13
13
  });
14
14
  } catch {
15
15
  }
16
- const n = "av-footer", d = ({
16
+ const p = "av-footer", _ = ({
17
17
  className: o,
18
18
  mode: e = "system",
19
19
  row1: s,
20
20
  row2: r,
21
21
  noMargins: c = !1,
22
- raw: t = !1
22
+ raw: t = !1,
23
+ ...l
23
24
  }) => {
24
- const l = m(
25
- n,
25
+ const x = n(
26
+ p,
26
27
  {
27
28
  "text-copy-dark": !t && e === "dark",
28
29
  "text-copy-lighter": !t && e === "light",
@@ -33,12 +34,12 @@ const n = "av-footer", d = ({
33
34
  },
34
35
  o
35
36
  );
36
- return /* @__PURE__ */ x("footer", { className: l, children: [
37
+ return /* @__PURE__ */ m("footer", { className: x, ...l, children: [
37
38
  s && /* @__PURE__ */ i("div", { children: s }),
38
39
  r && /* @__PURE__ */ i("div", { children: r })
39
40
  ] });
40
41
  };
41
42
  export {
42
- n as FOOTER_CLASSNAME,
43
- d as Footer
43
+ p as FOOTER_CLASSNAME,
44
+ _ as Footer
44
45
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-footer",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -39,7 +39,7 @@
39
39
  "react-dom": "^18.3.1 || ^19.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@versini/ui-types": "4.5.0"
42
+ "@versini/ui-types": "4.5.1"
43
43
  },
44
44
  "dependencies": {
45
45
  "@tailwindcss/typography": "0.5.16",
@@ -48,5 +48,5 @@
48
48
  "sideEffects": [
49
49
  "**/*.css"
50
50
  ],
51
- "gitHead": "95add63a475dc1307dd4ada55909553876a55b73"
51
+ "gitHead": "45b6ae437679028f6c1b791aa27f7b0a7fd66482"
52
52
  }