@synerise/ds-core 1.10.0 → 1.10.1
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 +6 -0
- package/dist/js/toaster/constants.js +3 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.10.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.10.0...@synerise/ds-core@1.10.1) (2026-01-29)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **toast:** wire up dismiss ([094da31](https://github.com/synerise/synerise-design/commit/094da318d43f99fb8dd64262efce6ee1c95b46a1))
|
|
11
|
+
|
|
6
12
|
# [1.10.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.9.1...@synerise/ds-core@1.10.0) (2026-01-19)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-core",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "Core Components for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -17,20 +17,20 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"build": "
|
|
20
|
+
"build": "pnpm run build:js && pnpm run vars && pnpm run copy && pnpm run build:css && pnpm run defs",
|
|
21
21
|
"build:css": "node ../../../scripts/style/less.js",
|
|
22
22
|
"build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
|
23
|
-
"build:watch": "
|
|
23
|
+
"build:watch": "pnpm run build:js -- --watch",
|
|
24
24
|
"copy": "node ./build/copy.js",
|
|
25
25
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
26
26
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
27
|
-
"prepublish": "
|
|
27
|
+
"prepublish": "pnpm run build",
|
|
28
28
|
"test": "jest && pnpm test:timezones",
|
|
29
29
|
"test:timezone-ny": "TZ=America/New_York jest -t TimezoneTesting",
|
|
30
30
|
"test:timezone-utc": "TZ=UTC jest -t TimezoneTesting",
|
|
31
31
|
"test:timezone-waw": "TZ=Europe/Warsaw jest -t TimezoneTesting",
|
|
32
32
|
"test:timezones": "pnpm test:timezone-utc && pnpm test:timezone-ny && pnpm test:timezone-waw",
|
|
33
|
-
"test:watch": "
|
|
33
|
+
"test:watch": "pnpm run test -- --watchAll",
|
|
34
34
|
"types": "tsc --noEmit",
|
|
35
35
|
"check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
|
|
36
36
|
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"hex-rgb": "^5.0.0",
|
|
58
58
|
"less-vars-to-js": "^1.3.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "e1a3b7417480ba1bbf0b68becf985dd2d5f5a924"
|
|
61
61
|
}
|