@synerise/ds-cascader 1.1.24 → 1.1.26

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +2 -2
  3. package/package.json +11 -11
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.1.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-cascader@1.1.25...@synerise/ds-cascader@1.1.26) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-cascader
9
+
10
+ ## [1.1.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-cascader@1.1.24...@synerise/ds-cascader@1.1.25) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-cascader
13
+
6
14
  ## [1.1.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-cascader@1.1.23...@synerise/ds-cascader@1.1.24) (2026-02-26)
7
15
 
8
16
  ### Bug Fixes
package/README.md CHANGED
@@ -54,7 +54,7 @@ const rootCategory = {
54
54
  | Property | Description | Type | Default |
55
55
  | ---------------------- | --------------------------------------------------------------- | ------------------------------------------- | ------- |
56
56
  | categorySuffix | Suffix element displayed when hovering on category | string / React.ReactNode | - |
57
- | maxHeight | Max height of the content in pixels (In order to enable scroll) | number /string | - |
57
+ | maxHeight | Max height of the content in pixels (In order to enable scroll) | number | - |
58
58
  | contentStyles | Additional styles applied to the content | React.CSSProperties | - |
59
59
  | onCategorySelect | Callback executed when category is selected | (item: Category, selected: boolean) => void | - |
60
60
  | rootCategory | Root (default) category displayed in dropdown | Category | - |
@@ -67,5 +67,5 @@ const rootCategory = {
67
67
  | Property | Description | Type | Default |
68
68
  | -------- | ------------------------------------------------------------------------------- | --------------- | ------- |
69
69
  | id | Unique id of category | React.ReactText | - |
70
- | name | Name of the category | number | - |
70
+ | name | Name of the category | string | - |
71
71
  | path | Path of the category. Each element of an array represents one level of nesting. | string[] | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-cascader",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
4
4
  "description": "Cascader UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -23,8 +23,8 @@
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",
26
- "test": "vitest",
27
- "test:watch": "pnpm run test -- --watch",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
28
  "types": "tsc --noEmit",
29
29
  "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
30
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
@@ -35,13 +35,13 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-divider": "^1.2.17",
39
- "@synerise/ds-icon": "^1.14.1",
40
- "@synerise/ds-list-item": "^1.4.7",
41
- "@synerise/ds-scrollbar": "^1.2.14",
42
- "@synerise/ds-search": "^1.5.7",
43
- "@synerise/ds-search-bar": "^1.4.17",
44
- "@synerise/ds-utils": "^1.6.0"
38
+ "@synerise/ds-divider": "^1.3.1",
39
+ "@synerise/ds-icon": "^1.15.0",
40
+ "@synerise/ds-list-item": "^1.4.9",
41
+ "@synerise/ds-scrollbar": "^1.2.16",
42
+ "@synerise/ds-search": "^1.5.9",
43
+ "@synerise/ds-search-bar": "^1.4.19",
44
+ "@synerise/ds-utils": "^1.7.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "vitest": "4"
@@ -51,5 +51,5 @@
51
51
  "react": ">=16.9.0 <= 18.3.1",
52
52
  "styled-components": "^5.3.3"
53
53
  },
54
- "gitHead": "4ffbd56e9bf6277c4507efeaf000b66b9bb09781"
54
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
55
55
  }