@schorts/shared-kernel 5.2.0 → 5.2.1

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.
@@ -1,6 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TourGuide = void 0;
4
- var tour_guide_1 = require("./tour-guide");
5
- Object.defineProperty(exports, "TourGuide", { enumerable: true, get: function () { return tour_guide_1.TourGuide; } });
6
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":";;;AAAA,2CAAyC;AAAhC,uGAAA,SAAS,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":""}
@@ -1,15 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TourGuide = void 0;
4
- class TourGuide {
5
- steps;
6
- constructor(steps = []) {
7
- this.steps = steps;
8
- }
9
- addStep(step) {
10
- this.steps.push(step);
11
- return this;
12
- }
13
- }
14
- exports.TourGuide = TourGuide;
15
3
  //# sourceMappingURL=tour-guide.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tour-guide.js","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":";;;AAEA,MAAsB,SAAS;IACZ,KAAK,CAAkB;IAExC,YAAY,QAAyB,EAAE;QACrC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAED,OAAO,CAAC,IAAc;QACpB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAEtB,OAAO,IAAI,CAAC;IACd,CAAC;CAGF;AAdD,8BAcC"}
1
+ {"version":3,"file":"tour-guide.js","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":""}
@@ -1,6 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TourGuide = void 0;
4
- var tour_guide_1 = require("./tour-guide");
5
- Object.defineProperty(exports, "TourGuide", { enumerable: true, get: function () { return tour_guide_1.TourGuide; } });
6
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":";;;AAAA,2CAAyC;AAAhC,uGAAA,SAAS,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":""}
@@ -1,15 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TourGuide = void 0;
4
- class TourGuide {
5
- steps;
6
- constructor(steps = []) {
7
- this.steps = steps;
8
- }
9
- addStep(step) {
10
- this.steps.push(step);
11
- return this;
12
- }
13
- }
14
- exports.TourGuide = TourGuide;
15
3
  //# sourceMappingURL=tour-guide.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tour-guide.js","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":";;;AAEA,MAAsB,SAAS;IACZ,KAAK,CAAkB;IAExC,YAAY,QAAyB,EAAE;QACrC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAED,OAAO,CAAC,IAAc;QACpB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAEtB,OAAO,IAAI,CAAC;IACd,CAAC;CAGF;AAdD,8BAcC"}
1
+ {"version":3,"file":"tour-guide.js","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
- export { TourGuide } from "./tour-guide";
1
+ export type { TourGuide } from "./tour-guide";
2
2
  export type { TourStep } from "./tour-step";
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tour-guide/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC"}
@@ -1,8 +1,6 @@
1
1
  import { TourStep } from "./tour-step";
2
- export declare abstract class TourGuide {
3
- private readonly steps;
4
- constructor(steps?: Array<TourStep>);
2
+ export interface TourGuide {
5
3
  addStep(step: TourStep): TourGuide;
6
- abstract startTour(): void;
4
+ startTour(): void;
7
5
  }
8
6
  //# sourceMappingURL=tour-guide.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tour-guide.d.ts","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAEtC,8BAAsB,SAAS;IAC7B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAkB;gBAE5B,KAAK,GAAE,KAAK,CAAC,QAAQ,CAAM;IAIvC,OAAO,CAAC,IAAI,EAAE,QAAQ,GAAG,SAAS;IAMlC,QAAQ,CAAC,SAAS,IAAI,IAAI;CAC3B"}
1
+ {"version":3,"file":"tour-guide.d.ts","sourceRoot":"","sources":["../../../src/tour-guide/tour-guide.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAEtC,MAAM,WAAW,SAAS;IACxB,OAAO,CAAC,IAAI,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,SAAS,IAAI,IAAI,CAAC;CACnB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schorts/shared-kernel",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "A modular, type-safe foundation for building expressive, maintainable applications. This package provides core abstractions for domain modeling, HTTP integration, authentication, state management, and more — designed to be framework-agnostic and highly extensible.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",