@contractspec/example.learning-journey-ui-gamified 0.0.0-canary-20260119224109 → 0.0.0-canary-20260119224949

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.
@@ -44,7 +44,7 @@ $ tsdown
44
44
  ℹ dist/components/FlashCard.d.ts 0.53 kB │ gzip: 0.31 kB
45
45
  ℹ dist/views/Overview.d.ts 0.45 kB │ gzip: 0.29 kB
46
46
  ℹ dist/components/MasteryRing.d.ts 0.45 kB │ gzip: 0.28 kB
47
- ℹ dist/components/DayCalendar.d.ts 0.41 kB │ gzip: 0.24 kB
47
+ ℹ dist/components/DayCalendar.d.ts 0.41 kB │ gzip: 0.25 kB
48
48
  ℹ dist/views/Steps.d.ts 0.36 kB │ gzip: 0.25 kB
49
49
  ℹ dist/views/Progress.d.ts 0.35 kB │ gzip: 0.24 kB
50
50
  ℹ dist/views/Timeline.d.ts 0.35 kB │ gzip: 0.24 kB
@@ -54,4 +54,4 @@ $ tsdown
54
54
  ℹ dist/docs/index.d.ts 0.01 kB │ gzip: 0.03 kB
55
55
  ℹ dist/docs/learning-journey-ui-gamified.docblock.d.ts 0.01 kB │ gzip: 0.03 kB
56
56
  ℹ 47 files, total: 81.90 kB
57
- ✔ Build complete in 16896ms
57
+ ✔ Build complete in 18882ms
@@ -55,4 +55,4 @@ $ tsdown
55
55
  ℹ dist/docs/index.d.ts 0.01 kB │ gzip: 0.03 kB
56
56
  ℹ dist/docs/learning-journey-ui-gamified.docblock.d.ts 0.01 kB │ gzip: 0.03 kB
57
57
  ℹ 47 files, total: 81.90 kB
58
- ✔ Build complete in 7204ms
58
+ ✔ Build complete in 22637ms
package/CHANGELOG.md CHANGED
@@ -1,17 +1,17 @@
1
1
  # @contractspec/example.learning-journey-ui-gamified
2
2
 
3
- ## 0.0.0-canary-20260119224109
3
+ ## 0.0.0-canary-20260119224949
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies [c560ee7]
8
8
  - Updated dependencies [1536bf3]
9
- - @contractspec/lib.design-system@0.0.0-canary-20260119224109
10
- - @contractspec/lib.contracts@0.0.0-canary-20260119224109
11
- - @contractspec/example.learning-journey-ui-shared@0.0.0-canary-20260119224109
12
- - @contractspec/example.learning-journey-duo-drills@0.0.0-canary-20260119224109
13
- - @contractspec/example.learning-journey-quest-challenges@0.0.0-canary-20260119224109
14
- - @contractspec/module.learning-journey@0.0.0-canary-20260119224109
9
+ - @contractspec/lib.design-system@0.0.0-canary-20260119224949
10
+ - @contractspec/lib.contracts@0.0.0-canary-20260119224949
11
+ - @contractspec/example.learning-journey-ui-shared@0.0.0-canary-20260119224949
12
+ - @contractspec/example.learning-journey-duo-drills@0.0.0-canary-20260119224949
13
+ - @contractspec/example.learning-journey-quest-challenges@0.0.0-canary-20260119224949
14
+ - @contractspec/module.learning-journey@0.0.0-canary-20260119224949
15
15
 
16
16
  ## 1.48.0
17
17
 
@@ -1,5 +1,5 @@
1
1
  import { LearningMiniAppProps } from "@contractspec/example.learning-journey-ui-shared";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime6 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/GamifiedMiniApp.d.ts
5
5
  type GamifiedMiniAppProps = Omit<LearningMiniAppProps, 'progress'> & {
@@ -11,7 +11,7 @@ declare function GamifiedMiniApp({
11
11
  onStepComplete: externalOnStepComplete,
12
12
  onViewChange,
13
13
  initialView
14
- }: GamifiedMiniAppProps): react_jsx_runtime0.JSX.Element;
14
+ }: GamifiedMiniAppProps): react_jsx_runtime6.JSX.Element;
15
15
  //#endregion
16
16
  export { GamifiedMiniApp };
17
17
  //# sourceMappingURL=GamifiedMiniApp.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime5 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/components/DayCalendar.d.ts
4
4
  interface DayCalendarProps {
@@ -10,7 +10,7 @@ declare function DayCalendar({
10
10
  totalDays,
11
11
  currentDay,
12
12
  completedDays
13
- }: DayCalendarProps): react_jsx_runtime0.JSX.Element;
13
+ }: DayCalendarProps): react_jsx_runtime5.JSX.Element;
14
14
  //#endregion
15
15
  export { DayCalendar };
16
16
  //# sourceMappingURL=DayCalendar.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime1 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
2
2
  import { LearningJourneyStepSpec } from "@contractspec/module.learning-journey/track-spec";
3
3
 
4
4
  //#region src/components/FlashCard.d.ts
@@ -13,7 +13,7 @@ declare function FlashCard({
13
13
  isCompleted,
14
14
  isCurrent,
15
15
  onComplete
16
- }: FlashCardProps): react_jsx_runtime1.JSX.Element;
16
+ }: FlashCardProps): react_jsx_runtime0.JSX.Element;
17
17
  //#endregion
18
18
  export { FlashCard };
19
19
  //# sourceMappingURL=FlashCard.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime2 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/components/MasteryRing.d.ts
4
4
  interface MasteryRingProps {
@@ -12,7 +12,7 @@ declare function MasteryRing({
12
12
  percentage,
13
13
  size,
14
14
  color
15
- }: MasteryRingProps): react_jsx_runtime2.JSX.Element;
15
+ }: MasteryRingProps): react_jsx_runtime0.JSX.Element;
16
16
  //#endregion
17
17
  export { MasteryRing };
18
18
  //# sourceMappingURL=MasteryRing.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { LearningViewProps } from "@contractspec/example.learning-journey-ui-shared";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/views/Overview.d.ts
5
5
  interface GamifiedOverviewProps extends LearningViewProps {
@@ -9,7 +9,7 @@ declare function Overview({
9
9
  track,
10
10
  progress,
11
11
  onStart
12
- }: GamifiedOverviewProps): react_jsx_runtime6.JSX.Element;
12
+ }: GamifiedOverviewProps): react_jsx_runtime1.JSX.Element;
13
13
  //#endregion
14
14
  export { Overview };
15
15
  //# sourceMappingURL=Overview.d.ts.map
@@ -1,11 +1,11 @@
1
1
  import { LearningViewProps } from "@contractspec/example.learning-journey-ui-shared";
2
- import * as react_jsx_runtime5 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime2 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/views/Progress.d.ts
5
5
  declare function Progress({
6
6
  track,
7
7
  progress
8
- }: LearningViewProps): react_jsx_runtime5.JSX.Element;
8
+ }: LearningViewProps): react_jsx_runtime2.JSX.Element;
9
9
  //#endregion
10
10
  export { Progress };
11
11
  //# sourceMappingURL=Progress.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ui-gamified",
3
- "version": "0.0.0-canary-20260119224109",
3
+ "version": "0.0.0-canary-20260119224949",
4
4
  "description": "Duolingo-style gamified learning UI for drills and quests.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -35,12 +35,12 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@contractspec/lib.contracts": "0.0.0-canary-20260119224109",
39
- "@contractspec/example.learning-journey-ui-shared": "0.0.0-canary-20260119224109",
40
- "@contractspec/example.learning-journey-duo-drills": "0.0.0-canary-20260119224109",
41
- "@contractspec/example.learning-journey-quest-challenges": "0.0.0-canary-20260119224109",
42
- "@contractspec/module.learning-journey": "0.0.0-canary-20260119224109",
43
- "@contractspec/lib.design-system": "0.0.0-canary-20260119224109",
38
+ "@contractspec/lib.contracts": "0.0.0-canary-20260119224949",
39
+ "@contractspec/example.learning-journey-ui-shared": "0.0.0-canary-20260119224949",
40
+ "@contractspec/example.learning-journey-duo-drills": "0.0.0-canary-20260119224949",
41
+ "@contractspec/example.learning-journey-quest-challenges": "0.0.0-canary-20260119224949",
42
+ "@contractspec/module.learning-journey": "0.0.0-canary-20260119224949",
43
+ "@contractspec/lib.design-system": "0.0.0-canary-20260119224949",
44
44
  "@contractspec/lib.ui-kit-web": "1.48.0",
45
45
  "react": "19.2.3"
46
46
  },