@contractspec/example.learning-journey-ui-onboarding 3.2.0 → 3.3.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.
@@ -2,11 +2,12 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=14
6
- Bundled 14 modules in 32ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=15
6
+ Bundled 15 modules in 47ms
7
7
 
8
8
  ./OnboardingMiniApp.js 45.50 KB (entry point)
9
- ./index.js 49.71 KB (entry point)
9
+ ./index.js 50.35 KB (entry point)
10
+ ./learning-journey-ui-onboarding.feature.js 0.66 KB (entry point)
10
11
  views/index.js 42.79 KB (entry point)
11
12
  views/Overview.js 11.1 KB (entry point)
12
13
  views/Progress.js 12.10 KB (entry point)
@@ -20,11 +21,12 @@ Bundled 14 modules in 32ms
20
21
  docs/learning-journey-ui-onboarding.docblock.js 0.81 KB (entry point)
21
22
  ./example.js 0.95 KB (entry point)
22
23
 
23
- [contractspec-bun-build] transpile target=node root=src entries=14
24
- Bundled 14 modules in 24ms
24
+ [contractspec-bun-build] transpile target=node root=src entries=15
25
+ Bundled 15 modules in 23ms
25
26
 
26
27
  ./OnboardingMiniApp.js 45.44 KB (entry point)
27
- ./index.js 49.63 KB (entry point)
28
+ ./index.js 50.28 KB (entry point)
29
+ ./learning-journey-ui-onboarding.feature.js 0.66 KB (entry point)
28
30
  views/index.js 42.73 KB (entry point)
29
31
  views/Overview.js 11.1 KB (entry point)
30
32
  views/Progress.js 12.1 KB (entry point)
@@ -38,11 +40,12 @@ Bundled 14 modules in 24ms
38
40
  docs/learning-journey-ui-onboarding.docblock.js 0.80 KB (entry point)
39
41
  ./example.js 0.94 KB (entry point)
40
42
 
41
- [contractspec-bun-build] transpile target=browser root=src entries=14
42
- Bundled 14 modules in 23ms
43
+ [contractspec-bun-build] transpile target=browser root=src entries=15
44
+ Bundled 15 modules in 32ms
43
45
 
44
46
  ./OnboardingMiniApp.js 45.44 KB (entry point)
45
- ./index.js 49.63 KB (entry point)
47
+ ./index.js 50.28 KB (entry point)
48
+ ./learning-journey-ui-onboarding.feature.js 0.66 KB (entry point)
46
49
  views/index.js 42.73 KB (entry point)
47
50
  views/Overview.js 11.1 KB (entry point)
48
51
  views/Progress.js 12.1 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @contractspec/example.learning-journey-ui-onboarding
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 890a0da: fix: stability improvements
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [890a0da]
12
+ - @contractspec/example.learning-journey-studio-onboarding@3.3.0
13
+ - @contractspec/example.learning-journey-platform-tour@3.3.0
14
+ - @contractspec/example.learning-journey-ui-shared@3.3.0
15
+ - @contractspec/module.learning-journey@3.3.0
16
+ - @contractspec/lib.contracts-spec@3.3.0
17
+ - @contractspec/lib.design-system@3.3.0
18
+ - @contractspec/lib.ui-kit-core@3.3.0
19
+ - @contractspec/lib.ui-kit-web@3.3.0
20
+
3
21
  ## 3.2.0
4
22
 
5
23
  ### Minor Changes
@@ -1103,6 +1103,21 @@ var example = defineExample({
1103
1103
  }
1104
1104
  });
1105
1105
  var example_default = example;
1106
+ // src/learning-journey-ui-onboarding.feature.ts
1107
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
1108
+ var LearningJourneyUiOnboardingFeature = defineFeature({
1109
+ meta: {
1110
+ key: "learning-journey-ui-onboarding",
1111
+ version: "1.0.0",
1112
+ title: "Learning Journey UI: Onboarding",
1113
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
1114
+ domain: "learning-journey",
1115
+ owners: ["@examples"],
1116
+ tags: ["learning", "ui", "onboarding", "checklists"],
1117
+ stability: "experimental"
1118
+ },
1119
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
1120
+ });
1106
1121
  export {
1107
1122
  example_default as example,
1108
1123
  Timeline,
@@ -1111,6 +1126,7 @@ export {
1111
1126
  ProgressView as Progress,
1112
1127
  Overview,
1113
1128
  OnboardingMiniApp,
1129
+ LearningJourneyUiOnboardingFeature,
1114
1130
  JourneyMap,
1115
1131
  CodeSnippet
1116
1132
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-ui-onboarding.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyUiOnboardingFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-ui-onboarding",
6
+ version: "1.0.0",
7
+ title: "Learning Journey UI: Onboarding",
8
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "ui", "onboarding", "checklists"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
15
+ });
16
+ export {
17
+ LearningJourneyUiOnboardingFeature
18
+ };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { OnboardingMiniApp } from './OnboardingMiniApp';
2
2
  export { Overview, Steps, Progress, Timeline } from './views';
3
3
  export { StepChecklist, CodeSnippet, JourneyMap } from './components';
4
+ export * from './learning-journey-ui-onboarding.feature';
4
5
  export { default as example } from './example';
5
6
  import './docs';
package/dist/index.js CHANGED
@@ -1104,6 +1104,21 @@ var example = defineExample({
1104
1104
  }
1105
1105
  });
1106
1106
  var example_default = example;
1107
+ // src/learning-journey-ui-onboarding.feature.ts
1108
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
1109
+ var LearningJourneyUiOnboardingFeature = defineFeature({
1110
+ meta: {
1111
+ key: "learning-journey-ui-onboarding",
1112
+ version: "1.0.0",
1113
+ title: "Learning Journey UI: Onboarding",
1114
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
1115
+ domain: "learning-journey",
1116
+ owners: ["@examples"],
1117
+ tags: ["learning", "ui", "onboarding", "checklists"],
1118
+ stability: "experimental"
1119
+ },
1120
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
1121
+ });
1107
1122
  export {
1108
1123
  example_default as example,
1109
1124
  Timeline,
@@ -1112,6 +1127,7 @@ export {
1112
1127
  ProgressView as Progress,
1113
1128
  Overview,
1114
1129
  OnboardingMiniApp,
1130
+ LearningJourneyUiOnboardingFeature,
1115
1131
  JourneyMap,
1116
1132
  CodeSnippet
1117
1133
  };
@@ -0,0 +1 @@
1
+ export declare const LearningJourneyUiOnboardingFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,19 @@
1
+ // @bun
2
+ // src/learning-journey-ui-onboarding.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var LearningJourneyUiOnboardingFeature = defineFeature({
5
+ meta: {
6
+ key: "learning-journey-ui-onboarding",
7
+ version: "1.0.0",
8
+ title: "Learning Journey UI: Onboarding",
9
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
10
+ domain: "learning-journey",
11
+ owners: ["@examples"],
12
+ tags: ["learning", "ui", "onboarding", "checklists"],
13
+ stability: "experimental"
14
+ },
15
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
16
+ });
17
+ export {
18
+ LearningJourneyUiOnboardingFeature
19
+ };
@@ -1103,6 +1103,21 @@ var example = defineExample({
1103
1103
  }
1104
1104
  });
1105
1105
  var example_default = example;
1106
+ // src/learning-journey-ui-onboarding.feature.ts
1107
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
1108
+ var LearningJourneyUiOnboardingFeature = defineFeature({
1109
+ meta: {
1110
+ key: "learning-journey-ui-onboarding",
1111
+ version: "1.0.0",
1112
+ title: "Learning Journey UI: Onboarding",
1113
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
1114
+ domain: "learning-journey",
1115
+ owners: ["@examples"],
1116
+ tags: ["learning", "ui", "onboarding", "checklists"],
1117
+ stability: "experimental"
1118
+ },
1119
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
1120
+ });
1106
1121
  export {
1107
1122
  example_default as example,
1108
1123
  Timeline,
@@ -1111,6 +1126,7 @@ export {
1111
1126
  ProgressView as Progress,
1112
1127
  Overview,
1113
1128
  OnboardingMiniApp,
1129
+ LearningJourneyUiOnboardingFeature,
1114
1130
  JourneyMap,
1115
1131
  CodeSnippet
1116
1132
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-ui-onboarding.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyUiOnboardingFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-ui-onboarding",
6
+ version: "1.0.0",
7
+ title: "Learning Journey UI: Onboarding",
8
+ description: "Developer onboarding UI with checklists, journey maps, and step-by-step progress",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "ui", "onboarding", "checklists"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.examples.learning-journey-ui-onboarding"]
15
+ });
16
+ export {
17
+ LearningJourneyUiOnboardingFeature
18
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ui-onboarding",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Developer onboarding UI with checklists and journey maps.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -75,6 +75,13 @@
75
75
  "browser": "./dist/browser/example.js",
76
76
  "default": "./dist/example.js"
77
77
  },
78
+ "./learning-journey-ui-onboarding.feature": {
79
+ "types": "./dist/learning-journey-ui-onboarding.feature.d.ts",
80
+ "bun": "./dist/learning-journey-ui-onboarding.feature.js",
81
+ "node": "./dist/node/learning-journey-ui-onboarding.feature.js",
82
+ "browser": "./dist/browser/learning-journey-ui-onboarding.feature.js",
83
+ "default": "./dist/learning-journey-ui-onboarding.feature.js"
84
+ },
78
85
  "./OnboardingMiniApp": {
79
86
  "types": "./dist/OnboardingMiniApp.d.ts",
80
87
  "bun": "./dist/OnboardingMiniApp.js",
@@ -141,21 +148,21 @@
141
148
  "typecheck": "tsc --noEmit"
142
149
  },
143
150
  "dependencies": {
144
- "@contractspec/lib.ui-kit-core": "3.2.0",
145
- "@contractspec/lib.contracts-spec": "3.2.0",
146
- "@contractspec/example.learning-journey-ui-shared": "3.2.0",
147
- "@contractspec/example.learning-journey-studio-onboarding": "3.2.0",
148
- "@contractspec/example.learning-journey-platform-tour": "3.2.0",
149
- "@contractspec/module.learning-journey": "3.2.0",
150
- "@contractspec/lib.design-system": "3.2.0",
151
- "@contractspec/lib.ui-kit-web": "3.2.0",
151
+ "@contractspec/lib.ui-kit-core": "3.3.0",
152
+ "@contractspec/lib.contracts-spec": "3.3.0",
153
+ "@contractspec/example.learning-journey-ui-shared": "3.3.0",
154
+ "@contractspec/example.learning-journey-studio-onboarding": "3.3.0",
155
+ "@contractspec/example.learning-journey-platform-tour": "3.3.0",
156
+ "@contractspec/module.learning-journey": "3.3.0",
157
+ "@contractspec/lib.design-system": "3.3.0",
158
+ "@contractspec/lib.ui-kit-web": "3.3.0",
152
159
  "react": "19.2.4"
153
160
  },
154
161
  "devDependencies": {
155
- "@contractspec/tool.typescript": "3.2.0",
162
+ "@contractspec/tool.typescript": "3.3.0",
156
163
  "@types/react": "^19.2.14",
157
164
  "typescript": "^5.9.3",
158
- "@contractspec/tool.bun": "3.2.0"
165
+ "@contractspec/tool.bun": "3.3.0"
159
166
  },
160
167
  "peerDependencies": {
161
168
  "react": "^19.2.4"
@@ -232,6 +239,13 @@
232
239
  "browser": "./dist/browser/example.js",
233
240
  "default": "./dist/example.js"
234
241
  },
242
+ "./learning-journey-ui-onboarding.feature": {
243
+ "types": "./dist/learning-journey-ui-onboarding.feature.d.ts",
244
+ "bun": "./dist/learning-journey-ui-onboarding.feature.js",
245
+ "node": "./dist/node/learning-journey-ui-onboarding.feature.js",
246
+ "browser": "./dist/browser/learning-journey-ui-onboarding.feature.js",
247
+ "default": "./dist/learning-journey-ui-onboarding.feature.js"
248
+ },
235
249
  "./OnboardingMiniApp": {
236
250
  "types": "./dist/OnboardingMiniApp.d.ts",
237
251
  "bun": "./dist/OnboardingMiniApp.js",
package/src/index.ts CHANGED
@@ -6,5 +6,6 @@ export { Overview, Steps, Progress, Timeline } from './views';
6
6
 
7
7
  // Components
8
8
  export { StepChecklist, CodeSnippet, JourneyMap } from './components';
9
+ export * from './learning-journey-ui-onboarding.feature';
9
10
  export { default as example } from './example';
10
11
  import './docs';
@@ -0,0 +1,17 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const LearningJourneyUiOnboardingFeature = defineFeature({
4
+ meta: {
5
+ key: 'learning-journey-ui-onboarding',
6
+ version: '1.0.0',
7
+ title: 'Learning Journey UI: Onboarding',
8
+ description:
9
+ 'Developer onboarding UI with checklists, journey maps, and step-by-step progress',
10
+ domain: 'learning-journey',
11
+ owners: ['@examples'],
12
+ tags: ['learning', 'ui', 'onboarding', 'checklists'],
13
+ stability: 'experimental',
14
+ },
15
+
16
+ docs: ['docs.examples.learning-journey-ui-onboarding'],
17
+ });