@synerise/ds-footer 1.0.45 → 1.0.47

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.47](https://github.com/Synerise/synerise-design/compare/@synerise/ds-footer@1.0.46...@synerise/ds-footer@1.0.47) (2026-03-24)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-footer
9
+
10
+ ## [1.0.46](https://github.com/Synerise/synerise-design/compare/@synerise/ds-footer@1.0.45...@synerise/ds-footer@1.0.46) (2026-03-20)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-footer
13
+
6
14
  ## [1.0.45](https://github.com/Synerise/synerise-design/compare/@synerise/ds-footer@1.0.44...@synerise/ds-footer@1.0.45) (2026-03-09)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-footer
package/README.md CHANGED
@@ -11,6 +11,8 @@ Footer UI Component
11
11
  npm i @synerise/ds-footer
12
12
  or
13
13
  yarn add @synerise/ds-footer
14
+ or
15
+ pnpm add @synerise/ds-footer
14
16
  ```
15
17
 
16
18
  ## Usage
package/dist/Footer.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import React, { type CSSProperties, type ReactNode } from 'react';
1
+ import { default as React, CSSProperties, ReactNode } from 'react';
2
2
  export type FooterProps = {
3
3
  style?: CSSProperties;
4
4
  className?: string;
package/dist/Footer.js CHANGED
@@ -1,12 +1,10 @@
1
- import React from 'react';
2
- import * as S from './Footer.styles';
3
- var Footer = function Footer(_ref) {
4
- var children = _ref.children,
5
- className = _ref.className,
6
- style = _ref.style;
7
- return /*#__PURE__*/React.createElement(S.Footer, {
8
- style: style,
9
- className: className
10
- }, children);
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Footer as Footer$1 } from "./Footer.styles.js";
3
+ const Footer = ({
4
+ children,
5
+ className,
6
+ style
7
+ }) => /* @__PURE__ */ jsx(Footer$1, { style, className, children });
8
+ export {
9
+ Footer as default
11
10
  };
12
- export default Footer;
@@ -1 +1 @@
1
- export declare const Footer: import("styled-components").StyledComponent<"footer", any, {}, never>;
1
+ export declare const Footer: import('styled-components').StyledComponent<"footer", any, {}, never>;
@@ -1,7 +1,8 @@
1
- import styled from 'styled-components';
2
- export var Footer = styled.footer.withConfig({
1
+ import styled from "styled-components";
2
+ const Footer = /* @__PURE__ */ styled.footer.withConfig({
3
3
  displayName: "Footerstyles__Footer",
4
4
  componentId: "sc-5ho17k-0"
5
- })(["padding:16px 0;border-top:1px solid ", ";"], function (props) {
6
- return props.theme.palette['grey-200'];
7
- });
5
+ })(["padding:16px 0;border-top:1px solid ", ";"], (props) => props.theme.palette["grey-200"]);
6
+ export {
7
+ Footer
8
+ };
package/dist/index.js CHANGED
@@ -1 +1,4 @@
1
- export { default } from './Footer';
1
+ import { default as default2 } from "./Footer.js";
2
+ export {
3
+ default2 as default
4
+ };
package/dist/modules.d.js CHANGED
@@ -1 +1 @@
1
- import '@testing-library/jest-dom';
1
+ import "@testing-library/jest-dom";
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-footer",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Footer UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -16,10 +16,10 @@
16
16
  "access": "public"
17
17
  },
18
18
  "scripts": {
19
- "build": "pnpm run build:js && pnpm run build:css && pnpm run defs",
19
+ "build": "vite build",
20
20
  "build:css": "node ../../../scripts/style/less.js",
21
21
  "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
- "build:watch": "pnpm run build:js -- --watch",
22
+ "build:watch": "vite build --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
24
  "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
25
25
  "prepublish": "pnpm run build",
@@ -35,12 +35,12 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.16"
38
+ "@synerise/ds-button": "^1.5.18"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@synerise/ds-core": "*",
42
42
  "react": ">=16.9.0 <= 18.3.1",
43
43
  "styled-components": "^5.3.3"
44
44
  },
45
- "gitHead": "8dfafc5d7278f09d430f1e7499782d05c76b47c0"
45
+ "gitHead": "e4ecca8944fc9b41c1b9d59c8bcad5e5e2013225"
46
46
  }
@@ -1 +0,0 @@
1
- export {};