@synerise/ds-block 1.0.18 → 1.0.20

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,25 @@
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.20](https://github.com/Synerise/synerise-design/compare/@synerise/ds-block@1.0.19...@synerise/ds-block@1.0.20) (2025-09-16)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-block
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.19](https://github.com/Synerise/synerise-design/compare/@synerise/ds-block@1.0.18...@synerise/ds-block@1.0.19) (2025-08-28)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **block:** mark as deprecated ([745f981](https://github.com/Synerise/synerise-design/commit/745f981ad66bd7cc649d6138bfc0261507e86158))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.0.18](https://github.com/Synerise/synerise-design/compare/@synerise/ds-block@1.0.17...@synerise/ds-block@1.0.18) (2025-08-14)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-block
package/dist/Block.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type BlockProps } from './Block.types';
3
+ /**
4
+ * @deprecated it will receive no further updates and will be removed from future DS versions
5
+ */
3
6
  declare const Block: React.FC<BlockProps>;
4
7
  export default Block;
package/dist/Block.js CHANGED
@@ -1,5 +1,8 @@
1
1
  import React from 'react';
2
2
  import * as S from './Block.styles';
3
+ /**
4
+ * @deprecated it will receive no further updates and will be removed from future DS versions
5
+ */
3
6
  var Block = function Block(_ref) {
4
7
  var className = _ref.className,
5
8
  children = _ref.children,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-block",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "description": "Block UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -26,6 +26,7 @@
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
28
28
  "types": "tsc --noEmit",
29
+ "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
29
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
30
31
  },
31
32
  "sideEffects": [
@@ -34,9 +35,9 @@
34
35
  ],
35
36
  "types": "dist/index.d.ts",
36
37
  "dependencies": {
37
- "@synerise/ds-icon": "^1.7.0",
38
- "@synerise/ds-typography": "^1.0.18",
39
- "@synerise/ds-utils": "^1.4.0"
38
+ "@synerise/ds-icon": "^1.7.2",
39
+ "@synerise/ds-typography": "^1.0.20",
40
+ "@synerise/ds-utils": "^1.4.2"
40
41
  },
41
42
  "peerDependencies": {
42
43
  "@synerise/ds-core": "*",
@@ -44,5 +45,5 @@
44
45
  "react": ">=16.9.0 <= 18.3.1",
45
46
  "styled-components": "^5.3.3"
46
47
  },
47
- "gitHead": "408d73cc145b6c8c61f3e70dce05badf3ad1ffde"
48
+ "gitHead": "5beb6ab5f2d77b9e98e04caab7dff20b8436078b"
48
49
  }