@lssm/example.learning-journey-ui-shared 1.42.10 → 1.43.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.
@@ -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: 32.25 kB
48
- ✔ Build complete in 15416ms
48
+ ✔ Build complete in 9387ms
@@ -46,4 +46,4 @@ $ tsdown
46
46
  ℹ dist/docs/index.d.ts 0.01 kB │ gzip: 0.03 kB
47
47
  ℹ dist/docs/learning-journey-ui-shared.docblock.d.ts 0.01 kB │ gzip: 0.03 kB
48
48
  ℹ 38 files, total: 32.25 kB
49
- ✔ Build complete in 14757ms
49
+ ✔ Build complete in 11120ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @lssm/example.learning-journey-ui-shared
2
2
 
3
+ ## 1.43.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 042d072: feat: schema declaration using json schema, including zod
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [042d072]
12
+ - @lssm/module.learning-journey@1.43.0
13
+ - @lssm/lib.design-system@1.43.0
14
+ - @lssm/lib.ui-kit-web@1.43.0
15
+ - @lssm/lib.contracts@1.43.0
16
+ - @lssm/lib.schema@1.43.0
17
+
3
18
  ## 1.42.10
4
19
 
5
20
  ### Patch Changes
@@ -1,12 +1,12 @@
1
1
  import { BadgeDisplayProps } from "../types.js";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 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): react_jsx_runtime0.JSX.Element;
9
+ }: BadgeDisplayProps): react_jsx_runtime1.JSX.Element;
10
10
  //#endregion
11
11
  export { BadgeDisplay };
12
12
  //# sourceMappingURL=BadgeDisplay.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import { ViewTabsProps } from "../types.js";
2
- import * as react_jsx_runtime1 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 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_runtime1.JSX.Element;
9
+ }: ViewTabsProps): react_jsx_runtime0.JSX.Element;
10
10
  //#endregion
11
11
  export { ViewTabs };
12
12
  //# sourceMappingURL=ViewTabs.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.learning-journey-ui-shared",
3
- "version": "1.42.10",
3
+ "version": "1.43.0",
4
4
  "description": "Shared UI components and hooks for learning journey mini-apps.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "bun test"
35
35
  },
36
36
  "dependencies": {
37
- "@lssm/lib.schema": "1.42.10",
38
- "@lssm/lib.contracts": "1.42.10",
39
- "@lssm/module.learning-journey": "1.42.10",
40
- "@lssm/lib.design-system": "1.42.10",
41
- "@lssm/lib.ui-kit-web": "1.42.10",
37
+ "@lssm/lib.schema": "1.43.0",
38
+ "@lssm/lib.contracts": "1.43.0",
39
+ "@lssm/module.learning-journey": "1.43.0",
40
+ "@lssm/lib.design-system": "1.43.0",
41
+ "@lssm/lib.ui-kit-web": "1.43.0",
42
42
  "react": "19.2.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@lssm/tool.tsdown": "1.42.10",
46
- "@lssm/tool.typescript": "1.42.10",
45
+ "@lssm/tool.tsdown": "1.43.0",
46
+ "@lssm/tool.typescript": "1.43.0",
47
47
  "@types/react": "^19.1.6",
48
48
  "tsdown": "^0.18.3",
49
49
  "typescript": "^5.9.3"
@@ -70,5 +70,6 @@
70
70
  "type": "git",
71
71
  "url": "https://github.com/lssm-tech/contractspec.git",
72
72
  "directory": "packages/examples/learning-journey-ui-shared"
73
- }
73
+ },
74
+ "homepage": "https://contractspec.io"
74
75
  }