@anov/cic-standard-sdk 0.0.23 → 0.0.24

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.
@@ -20,8 +20,11 @@ export interface VarsParams {
20
20
  exclude?: string[];
21
21
  }
22
22
  export interface NavigateInternalParams {
23
- name: string;
24
- params?: Record<string, any>;
23
+ path?: string;
24
+ name?: string;
25
+ params?: Record<string, string | string[]>;
26
+ query?: Record<string, string | string[]>;
27
+ hash?: string;
25
28
  }
26
29
  export interface NavigateExternalParams {
27
30
  url: string;
@@ -415,7 +415,7 @@ export interface CICManifest {
415
415
  * 组件命名规范,决定从文件名生成组件名的方式。
416
416
  * 支持内置规范(PascalCase 最常用)和自定义字符串。
417
417
  */
418
- naming?: 'kebab-case' | 'PascalCase' | 'camelCase' | (string & {});
418
+ naming?: 'kebab-case' | 'PascalCase' | 'camelCase' | string;
419
419
  /**
420
420
  * 静态组件注册表(key: 组件名,value: 模块路径)。
421
421
  * 优先级高于 adapters 动态匹配。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anov/cic-standard-sdk",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "CIC Standard SDK with TypeScript support",
5
5
  "main": "dist/cic-sdk.cjs.js",
6
6
  "module": "dist/cic-sdk.es.js",