@synerise/ds-completed-within 1.2.8 → 1.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +3 -3
  3. package/package.json +12 -12
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.2.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-completed-within@1.2.9...@synerise/ds-completed-within@1.2.10) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-completed-within
9
+
10
+ ## [1.2.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-completed-within@1.2.8...@synerise/ds-completed-within@1.2.9) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-completed-within
13
+
6
14
  ## [1.2.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-completed-within@1.2.7...@synerise/ds-completed-within@1.2.8) (2026-02-26)
7
15
 
8
16
  ### Bug Fixes
package/README.md CHANGED
@@ -34,8 +34,8 @@ import CompletedWithin from '@synerise/ds-completed-within'
34
34
  | Property | Description | Type | Default |
35
35
  | ----------- | ---------------------------------------------------------------------------- | ---------------------------- | ------------------------------------ |
36
36
  | text | Custom labels and tooltips | CompletedWithinTexts | - |
37
- | value | Selected value | PeriodValue | { value: undefined, period: 'YEARS'} |
38
- | maxValue | Max value | PeriodValue[value] | Number.MAX_SAFE_INTEGER |
37
+ | value | Selected value | PeriodValue | - |
38
+ | maxValue | Max value; value is clamped to this on dropdown close | number | - |
39
39
  | onSetValue | Function called when user has closed the settings with set value, and period | (value: PeriodValue) => void | - |
40
40
  | periods | Custom list of periods | CustomPeriod[] | - |
41
41
  | placeholder | Trigger button label | string | - |
@@ -63,4 +63,4 @@ import CompletedWithin from '@synerise/ds-completed-within'
63
63
  | Property | Description | Type | Default |
64
64
  | -------- | ---------------------- | -------- | ------- |
65
65
  | value | Key of custom period | `string` | - |
66
- | label | Label of custom period | `string` | - |
66
+ | label | Label of custom period | `ReactNode` | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-completed-within",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
4
4
  "description": "CompletedWithin 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,14 +35,14 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.15",
39
- "@synerise/ds-dropdown": "^1.2.7",
40
- "@synerise/ds-icon": "^1.14.1",
41
- "@synerise/ds-input": "^1.6.7",
42
- "@synerise/ds-input-number": "^1.2.32",
43
- "@synerise/ds-select": "^1.3.17",
44
- "@synerise/ds-tooltip": "^1.4.7",
45
- "@synerise/ds-utils": "^1.6.0"
38
+ "@synerise/ds-button": "^1.5.17",
39
+ "@synerise/ds-dropdown": "^1.3.1",
40
+ "@synerise/ds-icon": "^1.15.0",
41
+ "@synerise/ds-input": "^1.6.9",
42
+ "@synerise/ds-input-number": "^1.2.34",
43
+ "@synerise/ds-select": "^1.3.19",
44
+ "@synerise/ds-tooltip": "^1.4.9",
45
+ "@synerise/ds-utils": "^1.7.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "vitest": "4"
@@ -54,5 +54,5 @@
54
54
  "react-intl": ">=3.12.0 <= 6.8",
55
55
  "styled-components": "^5.3.3"
56
56
  },
57
- "gitHead": "4ffbd56e9bf6277c4507efeaf000b66b9bb09781"
57
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
58
58
  }