@next-core/next-docs 1.2.208 → 1.2.212

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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.2.212](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.211...@next-core/next-docs@1.2.212) (2022-02-21)
7
+
8
+ **Note:** Version bump only for package @next-core/next-docs
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.2.211](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.210...@next-core/next-docs@1.2.211) (2022-02-17)
15
+
16
+ **Note:** Version bump only for package @next-core/next-docs
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.2.210](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.209...@next-core/next-docs@1.2.210) (2022-02-17)
23
+
24
+ **Note:** Version bump only for package @next-core/next-docs
25
+
26
+
27
+
28
+
29
+
30
+ ## [1.2.209](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.208...@next-core/next-docs@1.2.209) (2022-02-17)
31
+
32
+ **Note:** Version bump only for package @next-core/next-docs
33
+
34
+
35
+
36
+
37
+
6
38
  ## [1.2.208](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.207...@next-core/next-docs@1.2.208) (2022-02-15)
7
39
 
8
40
  **Note:** Version bump only for package @next-core/next-docs
@@ -0,0 +1,21 @@
1
+ ---
2
+ id: brick-types.brickconf.iid
3
+ title: BrickConf.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; [BrickConf](./brick-types.brickconf.md) &gt; [iid](./brick-types.brickconf.iid.md)
11
+
12
+ ## BrickConf.iid property
13
+
14
+ 构件编排 ID
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ iid?: string;
20
+ ```
21
+
@@ -28,6 +28,7 @@ export interface BrickConf
28
28
  | [context](./brick-types.brickconf.context.md) | [ContextConf](./brick-types.contextconf.md)<!-- -->\[\] | 上下文配置列表。 |
29
29
  | [events](./brick-types.brickconf.events.md) | [BrickEventsMap](./brick-types.brickeventsmap.md) | 构件的事件配置表。 |
30
30
  | [if](./brick-types.brickconf.if.md) | string \| boolean \| [ResolveConf](./brick-types.resolveconf.md) | 条件渲染配置,根据 <code>if</code> 的计算结果来决定是否渲染该构件。 |
31
+ | [iid](./brick-types.brickconf.iid.md) | string | 构件编排 ID |
31
32
  | [lifeCycle](./brick-types.brickconf.lifecycle.md) | [BrickLifeCycle](./brick-types.bricklifecycle.md) | 构件生命周期配置。 |
32
33
  | [params](./brick-types.brickconf.params.md) | Record&lt;string, unknown&gt; | (老)模板的参数表。 |
33
34
  | [permissionsPreCheck](./brick-types.brickconf.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 即可。 |
@@ -29,6 +29,7 @@ export interface PluginRuntimeContext
29
29
  | [flags](./brick-types.pluginruntimecontext.flags.md) | [FeatureFlags](./brick-types.featureflags.md) | 特性开关字典。 |
30
30
  | [hash](./brick-types.pluginruntimecontext.hash.md) | string | 当前的 hash 参数 |
31
31
  | [overrideApp](./brick-types.pluginruntimecontext.overrideapp.md) | [MicroApp](./brick-types.microapp.md) | 用于跨应用菜单注入等场景的应用重载。 |
32
+ | [pathname](./brick-types.pluginruntimecontext.pathname.md) | string | 当前的 pathname 参数 |
32
33
  | [query](./brick-types.pluginruntimecontext.query.md) | URLSearchParams | 当前的 query 参数。 |
33
34
  | [segues](./brick-types.pluginruntimecontext.segues.md) | [SeguesConf](./brick-types.seguesconf.md) | 当前应用的页面切换配置。 |
34
35
  | [sys](./brick-types.pluginruntimecontext.sys.md) | [SystemInfo](./brick-types.systeminfo.md) | 系统会话信息。 |
@@ -0,0 +1,21 @@
1
+ ---
2
+ id: brick-types.pluginruntimecontext.pathname
3
+ title: PluginRuntimeContext.pathname
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; [PluginRuntimeContext](./brick-types.pluginruntimecontext.md) &gt; [pathname](./brick-types.pluginruntimecontext.pathname.md)
11
+
12
+ ## PluginRuntimeContext.pathname property
13
+
14
+ 当前的 pathname 参数
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ pathname?: string;
20
+ ```
21
+
@@ -0,0 +1,21 @@
1
+ ---
2
+ id: brick-types.usesinglebrickconf.iid
3
+ title: UseSingleBrickConf.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; [UseSingleBrickConf](./brick-types.usesinglebrickconf.md) &gt; [iid](./brick-types.usesinglebrickconf.iid.md)
11
+
12
+ ## UseSingleBrickConf.iid property
13
+
14
+ 构件编排 ID
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ iid?: string;
20
+ ```
21
+
@@ -26,6 +26,7 @@ export interface UseSingleBrickConf
26
26
  | [brick](./brick-types.usesinglebrickconf.brick.md) | string | 构件名。 |
27
27
  | [events](./brick-types.usesinglebrickconf.events.md) | [BrickEventsMap](./brick-types.brickeventsmap.md) | 构件的事件配置表。 |
28
28
  | [if](./brick-types.usesinglebrickconf.if.md) | string \| boolean \| [ResolveConf](./brick-types.resolveconf.md) | 条件渲染配置,根据 <code>if</code> 的计算结果来决定是否渲染该构件。 |
29
+ | [iid](./brick-types.usesinglebrickconf.iid.md) | string | 构件编排 ID |
29
30
  | [lifeCycle](./brick-types.usesinglebrickconf.lifecycle.md) | Pick&lt;[BrickLifeCycle](./brick-types.bricklifecycle.md)<!-- -->, "useResolves"&gt; | 构件生命周期配置。在 <code>useBrick</code> 中仅支持 <code>useResolves</code>。 |
30
31
  | [properties](./brick-types.usesinglebrickconf.properties.md) | Record&lt;string, unknown&gt; | 构件属性。 |
31
32
  | [slots](./brick-types.usesinglebrickconf.slots.md) | [UseBrickSlotsConf](./brick-types.usebrickslotsconf.md) | 在 <code>useBrick</code> 中使用的插槽配置表。 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/next-docs",
3
- "version": "1.2.208",
3
+ "version": "1.2.212",
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",
@@ -21,9 +21,9 @@
21
21
  "sideEffects": false,
22
22
  "devDependencies": {
23
23
  "@easyops-cn/brick-next-pipes": "^0.3.12",
24
- "@next-core/brick-kit": "^2.104.6",
25
- "@next-core/brick-types": "^2.57.0",
24
+ "@next-core/brick-kit": "^2.106.0",
25
+ "@next-core/brick-types": "^2.59.0",
26
26
  "fs-extra": "^10.0.0"
27
27
  },
28
- "gitHead": "109c4bb73b68e9b6ca8f00359ee38e5317103734"
28
+ "gitHead": "05eb864c4cf662ef3cb7e5b1cf507408662a532b"
29
29
  }