@next-core/next-docs 1.2.374 → 1.2.376

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.
@@ -0,0 +1,21 @@
1
+ ---
2
+ id: brick-types.baserouteconf.iid
3
+ title: BaseRouteConf.iid
4
+ hide_title: true
5
+ custom_edit_url: null
6
+ ---
7
+
8
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
9
+
10
+ [API Reference](./index.md) &gt; [@next-core/brick-types](./brick-types.md) &gt; [BaseRouteConf](./brick-types.baserouteconf.md) &gt; [iid](./brick-types.baserouteconf.iid.md)
11
+
12
+ ## BaseRouteConf.iid property
13
+
14
+ 构件编排 ID
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ iid?: string;
20
+ ```
21
+
@@ -30,6 +30,7 @@ export interface BaseRouteConf
30
30
  | [exact](./brick-types.baserouteconf.exact.md) | boolean | 是否精确匹配(未设置时系统默认会匹配路由地址及其所有子目录地址)。 |
31
31
  | [hybrid](./brick-types.baserouteconf.hybrid.md) | boolean | 标记为混合的路由,将转换 <code>legacy: iframe</code> 模式。例如对于标记了 <code>legacy: iframe</code> 的应用, 其中 <code>hybrid: true</code> 的路由将使用普通模式渲染页面;而对于其它应用,其中 <code>hybrid: true</code> 的路由将使用 iframe 模式渲染页面。 |
32
32
  | [if](./brick-types.baserouteconf.if.md) | string \| boolean | 条件配置,根据 <code>if</code> 的计算结果来决定是否展示路由 |
33
+ | [iid](./brick-types.baserouteconf.iid.md) | string | 构件编排 ID |
33
34
  | [menu](./brick-types.baserouteconf.menu.md) | [MenuConf](./brick-types.menuconf.md) | 菜单配置。 |
34
35
  | [path](./brick-types.baserouteconf.path.md) | string | 路由地址,通常应使用 <code>${APP.homepage}</code> 开头。 |
35
36
  | [permissionsPreCheck](./brick-types.baserouteconf.permissionsprecheck.md) | string\[\] | 预校验的动态权限列表,在编排中可以通过 <code>&lt;% PERMISSIONS.check(&quot;your-action&quot;) %&gt;</code>来校验权限点。 当被校验的权限点为已知字符串,则框架会扫描收集统一校验,不需要在此处声明; 当被校验的权限点需要动态获得,例如通过 <code>QUERY</code>,<code>PATH</code>,<code>CTX</code> 等参数动态计算得到,则需要在 <code>permissionsPreCheck</code> 中提前声明。 如果某个权限点需要在接口中获得,也只需要在 Context 中通过异步 Resolve 提前赋值给 Context 即可。 |
@@ -0,0 +1,21 @@
1
+ ---
2
+ id: brick-types.customtemplate.iid
3
+ title: CustomTemplate.iid
4
+ hide_title: true
5
+ custom_edit_url: null
6
+ ---
7
+
8
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
9
+
10
+ [API Reference](./index.md) &gt; [@next-core/brick-types](./brick-types.md) &gt; [CustomTemplate](./brick-types.customtemplate.md) &gt; [iid](./brick-types.customtemplate.iid.md)
11
+
12
+ ## CustomTemplate.iid property
13
+
14
+ 构件编排 ID
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ iid?: string;
20
+ ```
21
+
@@ -25,6 +25,7 @@ export interface CustomTemplate
25
25
  | --- | --- | --- |
26
26
  | [bricks](./brick-types.customtemplate.bricks.md) | [BrickConfInTemplate](./brick-types.brickconfintemplate.md)<!-- -->\[\] | 自定义模板渲染的构件配置列表。 |
27
27
  | [contracts](./brick-types.customtemplate.contracts.md) | [Contract](./brick-types.contract.md)<!-- -->\[\] | 契约的定义,只有 widget 才有该字段 |
28
+ | [iid](./brick-types.customtemplate.iid.md) | string | 构件编排 ID |
28
29
  | [name](./brick-types.customtemplate.name.md) | string | 自定义模板的名称。 |
29
30
  | [proxy](./brick-types.customtemplate.proxy.md) | [CustomTemplateProxy](./brick-types.customtemplateproxy.md) | 自定义模板的代理配置。 |
30
31
  | [state](./brick-types.customtemplate.state.md) | [CustomTemplateState](./brick-types.customtemplatestate.md)<!-- -->\[\] | 状态数据配置列表。 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/next-docs",
3
- "version": "1.2.374",
3
+ "version": "1.2.376",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/next-docs",
6
6
  "license": "GPL-3.0",
@@ -32,9 +32,9 @@
32
32
  "sideEffects": false,
33
33
  "devDependencies": {
34
34
  "@easyops-cn/brick-next-pipes": "^0.3.17",
35
- "@next-core/brick-kit": "^2.154.9",
36
- "@next-core/brick-types": "^2.81.7",
35
+ "@next-core/brick-kit": "^2.154.11",
36
+ "@next-core/brick-types": "^2.81.8",
37
37
  "fs-extra": "^10.1.0"
38
38
  },
39
- "gitHead": "3bb25b66d128cee6223ab358e6127453fb3f78eb"
39
+ "gitHead": "430d0efb56fcc53abd043c4d1f86d6fb769dc639"
40
40
  }