@contractspec/example.learning-journey-ui-shared 1.53.0 → 1.55.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.
@@ -37,7 +37,7 @@ $ tsdown
37
37
  ℹ dist/hooks/useLearningProgress.d.ts 0.72 kB │ gzip: 0.35 kB
38
38
  ℹ dist/components/StreakCounter.d.ts 0.35 kB │ gzip: 0.23 kB
39
39
  ℹ dist/components/BadgeDisplay.d.ts 0.35 kB │ gzip: 0.23 kB
40
- ℹ dist/components/ViewTabs.d.ts 0.34 kB │ gzip: 0.24 kB
40
+ ℹ dist/components/ViewTabs.d.ts 0.34 kB │ gzip: 0.23 kB
41
41
  ℹ dist/components/XpBar.d.ts 0.32 kB │ gzip: 0.23 kB
42
42
  ℹ dist/example.d.ts 0.25 kB │ gzip: 0.17 kB
43
43
  ℹ dist/components/index.d.ts 0.24 kB │ gzip: 0.12 kB
@@ -45,4 +45,4 @@ $ tsdown
45
45
  ℹ dist/docs/index.d.ts 0.01 kB │ gzip: 0.03 kB
46
46
  ℹ dist/docs/learning-journey-ui-shared.docblock.d.ts 0.01 kB │ gzip: 0.03 kB
47
47
  ℹ 38 files, total: 31.97 kB
48
- ✔ Build complete in 21941ms
48
+ ✔ Build complete in 25544ms
@@ -48,4 +48,4 @@
48
48
  ℹ dist/docs/index.d.ts 0.01 kB │ gzip: 0.03 kB
49
49
  ℹ dist/docs/learning-journey-ui-shared.docblock.d.ts 0.01 kB │ gzip: 0.03 kB
50
50
  ℹ 38 files, total: 31.97 kB
51
- ✔ Build complete in 9600ms
51
+ ✔ Build complete in 8330ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @contractspec/example.learning-journey-ui-shared
2
2
 
3
+ ## 1.55.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fix: unpublished packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @contractspec/module.learning-journey@1.55.0
13
+ - @contractspec/lib.design-system@1.55.0
14
+ - @contractspec/lib.ui-kit-web@1.55.0
15
+ - @contractspec/lib.contracts@1.55.0
16
+
17
+ ## 1.54.0
18
+
19
+ ### Minor Changes
20
+
21
+ - ec5e95c: chore: upgrade dependencies
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [ec5e95c]
26
+ - @contractspec/lib.design-system@1.54.0
27
+ - @contractspec/lib.ui-kit-web@1.54.0
28
+ - @contractspec/lib.contracts@1.54.0
29
+ - @contractspec/module.learning-journey@1.54.0
30
+
3
31
  ## 1.53.0
4
32
 
5
33
  ### Minor Changes
@@ -1,12 +1,12 @@
1
1
  import { ViewTabsProps } from "../types.js";
2
- import * as react_jsx_runtime2 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ViewTabs.d.ts
5
5
  declare function ViewTabs({
6
6
  currentView,
7
7
  onViewChange,
8
8
  availableViews
9
- }: ViewTabsProps): react_jsx_runtime2.JSX.Element;
9
+ }: ViewTabsProps): react_jsx_runtime1.JSX.Element;
10
10
  //#endregion
11
11
  export { ViewTabs };
12
12
  //# sourceMappingURL=ViewTabs.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { XpBarProps } from "../types.js";
2
- import * as react_jsx_runtime1 from "react/jsx-runtime";
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): react_jsx_runtime1.JSX.Element;
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.53.0",
3
+ "version": "1.55.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.53.0",
37
- "@contractspec/module.learning-journey": "1.53.0",
38
- "@contractspec/lib.design-system": "1.53.0",
39
- "@contractspec/lib.ui-kit-web": "1.53.0",
40
- "react": "19.2.3"
36
+ "@contractspec/lib.contracts": "1.55.0",
37
+ "@contractspec/module.learning-journey": "1.55.0",
38
+ "@contractspec/lib.design-system": "1.55.0",
39
+ "@contractspec/lib.ui-kit-web": "1.55.0",
40
+ "react": "19.2.4"
41
41
  },
42
42
  "devDependencies": {
43
- "@contractspec/tool.tsdown": "1.53.0",
44
- "@contractspec/tool.typescript": "1.53.0",
43
+ "@contractspec/tool.tsdown": "1.55.0",
44
+ "@contractspec/tool.typescript": "1.55.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.3"
50
+ "react": "^19.2.4"
51
51
  },
52
52
  "publishConfig": {
53
53
  "exports": {