@contractspec/example.learning-journey-ui-shared 1.52.0 → 1.54.0
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/.turbo/turbo-build$colon$bundle.log +1 -1
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +31 -0
- package/dist/components/BadgeDisplay.d.ts +2 -2
- package/dist/components/StreakCounter.d.ts +2 -2
- package/dist/components/XpBar.d.ts +2 -2
- package/package.json +9 -9
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -45,4 +45,4 @@ $ tsdown
|
|
|
45
45
|
[34mℹ[39m [2mdist/[22m[32m[1mdocs/index.d.ts[22m[39m [2m0.01 kB[22m [2m│ gzip: 0.03 kB[22m
|
|
46
46
|
[34mℹ[39m [2mdist/[22m[32m[1mdocs/learning-journey-ui-shared.docblock.d.ts[22m[39m [2m0.01 kB[22m [2m│ gzip: 0.03 kB[22m
|
|
47
47
|
[34mℹ[39m 38 files, total: 31.97 kB
|
|
48
|
-
[32m✔[39m Build complete in [
|
|
48
|
+
[32m✔[39m Build complete in [32m26923ms[39m
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -46,4 +46,4 @@ $ tsdown
|
|
|
46
46
|
[34mℹ[39m [2mdist/[22m[32m[1mdocs/index.d.ts[22m[39m [2m0.01 kB[22m [2m│ gzip: 0.03 kB[22m
|
|
47
47
|
[34mℹ[39m [2mdist/[22m[32m[1mdocs/learning-journey-ui-shared.docblock.d.ts[22m[39m [2m0.01 kB[22m [2m│ gzip: 0.03 kB[22m
|
|
48
48
|
[34mℹ[39m 38 files, total: 31.97 kB
|
|
49
|
-
[32m✔[39m Build complete in [
|
|
49
|
+
[32m✔[39m Build complete in [32m27825ms[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @contractspec/example.learning-journey-ui-shared
|
|
2
2
|
|
|
3
|
+
## 1.54.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ec5e95c: chore: upgrade dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [ec5e95c]
|
|
12
|
+
- @contractspec/lib.design-system@1.54.0
|
|
13
|
+
- @contractspec/lib.ui-kit-web@1.54.0
|
|
14
|
+
- @contractspec/lib.contracts@1.54.0
|
|
15
|
+
- @contractspec/module.learning-journey@1.54.0
|
|
16
|
+
|
|
17
|
+
## 1.53.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- f4180d4: fix: performance improvement
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [eefeb1b]
|
|
26
|
+
- Updated dependencies [5b371b1]
|
|
27
|
+
- Updated dependencies [f4180d4]
|
|
28
|
+
- Updated dependencies [64d84e1]
|
|
29
|
+
- @contractspec/lib.design-system@1.53.0
|
|
30
|
+
- @contractspec/lib.contracts@1.53.0
|
|
31
|
+
- @contractspec/lib.ui-kit-web@1.53.0
|
|
32
|
+
- @contractspec/module.learning-journey@1.53.0
|
|
33
|
+
|
|
3
34
|
## 1.52.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { BadgeDisplayProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/BadgeDisplay.d.ts
|
|
5
5
|
declare function BadgeDisplay({
|
|
6
6
|
badges,
|
|
7
7
|
maxVisible,
|
|
8
8
|
size
|
|
9
|
-
}: BadgeDisplayProps):
|
|
9
|
+
}: BadgeDisplayProps): react_jsx_runtime0.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { BadgeDisplay };
|
|
12
12
|
//# sourceMappingURL=BadgeDisplay.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { StreakCounterProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/StreakCounter.d.ts
|
|
5
5
|
declare function StreakCounter({
|
|
6
6
|
days,
|
|
7
7
|
isActive,
|
|
8
8
|
size
|
|
9
|
-
}: StreakCounterProps):
|
|
9
|
+
}: StreakCounterProps): react_jsx_runtime1.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { StreakCounter };
|
|
12
12
|
//# sourceMappingURL=StreakCounter.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XpBarProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/XpBar.d.ts
|
|
5
5
|
declare function XpBar({
|
|
@@ -8,7 +8,7 @@ declare function XpBar({
|
|
|
8
8
|
level,
|
|
9
9
|
showLabel,
|
|
10
10
|
size
|
|
11
|
-
}: XpBarProps):
|
|
11
|
+
}: XpBarProps): react_jsx_runtime2.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { XpBar };
|
|
14
14
|
//# sourceMappingURL=XpBar.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.learning-journey-ui-shared",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.54.0",
|
|
4
4
|
"description": "Shared UI components and hooks for learning journey mini-apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -33,21 +33,21 @@
|
|
|
33
33
|
"test": "bun test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@contractspec/lib.contracts": "1.
|
|
37
|
-
"@contractspec/module.learning-journey": "1.
|
|
38
|
-
"@contractspec/lib.design-system": "1.
|
|
39
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
40
|
-
"react": "19.2.
|
|
36
|
+
"@contractspec/lib.contracts": "1.54.0",
|
|
37
|
+
"@contractspec/module.learning-journey": "1.54.0",
|
|
38
|
+
"@contractspec/lib.design-system": "1.54.0",
|
|
39
|
+
"@contractspec/lib.ui-kit-web": "1.54.0",
|
|
40
|
+
"react": "19.2.4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@contractspec/tool.tsdown": "1.
|
|
44
|
-
"@contractspec/tool.typescript": "1.
|
|
43
|
+
"@contractspec/tool.tsdown": "1.54.0",
|
|
44
|
+
"@contractspec/tool.typescript": "1.54.0",
|
|
45
45
|
"@types/react": "^19.2.8",
|
|
46
46
|
"tsdown": "^0.19.0",
|
|
47
47
|
"typescript": "^5.9.3"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"react": "^19.2.
|
|
50
|
+
"react": "^19.2.4"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"exports": {
|