@slidejs/context 0.1.5 → 0.1.6

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.
package/dist/index.cjs CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="0.1.6";exports.__contextVersion=e;
2
2
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["/**\n * @slidejs/context\n *\n * Slide DSL Context 接口定义\n */\n\nexport type {\n SlideContext,\n SlideMetadata,\n ContentItem,\n ContentGroup,\n ContextAdapter,\n} from './types';\n\n// 导出空对象以确保生成有效的运行时代码\n// 这个包主要提供类型定义,但需要有效的运行时导出以通过构建验证\nexport const __contextVersion = '0.1.6';\n"],"names":["__contextVersion"],"mappings":"gFAgBO,MAAMA,EAAmB"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export declare const __contextVersion = "0.1.6";
2
+
1
3
  /**
2
4
  * 内容分组/章节
3
5
  */
package/dist/index.mjs CHANGED
@@ -1,2 +1,5 @@
1
-
1
+ const o = "0.1.6";
2
+ export {
3
+ o as __contextVersion
4
+ };
2
5
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["/**\n * @slidejs/context\n *\n * Slide DSL Context 接口定义\n */\n\nexport type {\n SlideContext,\n SlideMetadata,\n ContentItem,\n ContentGroup,\n ContextAdapter,\n} from './types';\n\n// 导出空对象以确保生成有效的运行时代码\n// 这个包主要提供类型定义,但需要有效的运行时导出以通过构建验证\nexport const __contextVersion = '0.1.6';\n"],"names":["__contextVersion"],"mappings":"AAgBO,MAAMA,IAAmB;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slidejs/context",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Slide DSL Context 接口定义",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",