@next-core/next-docs 1.2.349 → 1.2.351

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,33 @@
1
+ ---
2
+ id: brick-kit.getrealvalue
3
+ title: getRealValue()
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-kit](./brick-kit.md) &gt; [getRealValue](./brick-kit.getrealvalue.md)
11
+
12
+ ## getRealValue() function
13
+
14
+ An equivalent of `computeRealValue` but for external usages, with no custom context or options.
15
+
16
+ **Signature:**
17
+
18
+ ```typescript
19
+ export declare function getRealValue(value: unknown): unknown;
20
+ ```
21
+
22
+ ## Parameters
23
+
24
+ | Parameter | Type | Description |
25
+ | --- | --- | --- |
26
+ | value | unknown | Any value which may contains evaluations or placeholders. |
27
+
28
+ **Returns:**
29
+
30
+ unknown
31
+
32
+ Computed real value.
33
+
package/dist/brick-kit.md CHANGED
@@ -34,6 +34,7 @@ The core kit of Brick Next.
34
34
  | [getCssPropertyValue](./brick-kit.getcsspropertyvalue.md) | |
35
35
  | [getCurrentTheme](./brick-kit.getcurrenttheme.md) | |
36
36
  | [getHistory](./brick-kit.gethistory.md) | 获取系统会话历史管理器。 |
37
+ | [getRealValue](./brick-kit.getrealvalue.md) | An equivalent of <code>computeRealValue</code> but for external usages, with no custom context or options. |
37
38
  | [getRuntime](./brick-kit.getruntime.md) | 获取系统运行时对象。 |
38
39
  | [getRuntimeMisc](./brick-kit.getruntimemisc.md) | |
39
40
  | [handleHttpError](./brick-kit.handlehttperror.md) | 处理 http 请求错误(使用 AntDesign 模态框弹出错误信息)。 |
@@ -0,0 +1,19 @@
1
+ ---
2
+ id: brick-types.navtip.backgroundcolor
3
+ title: NavTip.backgroundColor
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; [NavTip](./brick-types.navtip.md) &gt; [backgroundColor](./brick-types.navtip.backgroundcolor.md)
11
+
12
+ ## NavTip.backgroundColor property
13
+
14
+ **Signature:**
15
+
16
+ ```typescript
17
+ backgroundColor?: string;
18
+ ```
19
+
@@ -1,19 +1,19 @@
1
1
  ---
2
- id: brick-types.navtip.closeable
3
- title: NavTip.closeable
2
+ id: brick-types.navtip.closable
3
+ title: NavTip.closable
4
4
  hide_title: true
5
5
  custom_edit_url: null
6
6
  ---
7
7
 
8
8
  <!-- Do not edit this file. It is automatically generated by API Documenter. -->
9
9
 
10
- [API Reference](./index.md) &gt; [@next-core/brick-types](./brick-types.md) &gt; [NavTip](./brick-types.navtip.md) &gt; [closeable](./brick-types.navtip.closeable.md)
10
+ [API Reference](./index.md) &gt; [@next-core/brick-types](./brick-types.md) &gt; [NavTip](./brick-types.navtip.md) &gt; [closable](./brick-types.navtip.closable.md)
11
11
 
12
- ## NavTip.closeable property
12
+ ## NavTip.closable property
13
13
 
14
14
  **Signature:**
15
15
 
16
16
  ```typescript
17
- closeable?: boolean;
17
+ closable?: boolean;
18
18
  ```
19
19
 
@@ -0,0 +1,19 @@
1
+ ---
2
+ id: brick-types.navtip.iscenter
3
+ title: NavTip.isCenter
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; [NavTip](./brick-types.navtip.md) &gt; [isCenter](./brick-types.navtip.iscenter.md)
11
+
12
+ ## NavTip.isCenter property
13
+
14
+ **Signature:**
15
+
16
+ ```typescript
17
+ isCenter?: boolean;
18
+ ```
19
+
@@ -21,7 +21,10 @@ export interface NavTip
21
21
 
22
22
  | Property | Type | Description |
23
23
  | --- | --- | --- |
24
- | [closeable](./brick-types.navtip.closeable.md) | boolean | |
24
+ | [backgroundColor](./brick-types.navtip.backgroundcolor.md) | string | |
25
+ | [closable](./brick-types.navtip.closable.md) | boolean | |
25
26
  | [info](./brick-types.navtip.info.md) | { url: string; label: string; } | |
27
+ | [isCenter](./brick-types.navtip.iscenter.md) | boolean | |
26
28
  | [text](./brick-types.navtip.text.md) | string | |
29
+ | [tipKey](./brick-types.navtip.tipkey.md) | string | |
27
30
 
@@ -0,0 +1,19 @@
1
+ ---
2
+ id: brick-types.navtip.tipkey
3
+ title: NavTip.tipKey
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; [NavTip](./brick-types.navtip.md) &gt; [tipKey](./brick-types.navtip.tipkey.md)
11
+
12
+ ## NavTip.tipKey property
13
+
14
+ **Signature:**
15
+
16
+ ```typescript
17
+ tipKey: string;
18
+ ```
19
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/next-docs",
3
- "version": "1.2.349",
3
+ "version": "1.2.351",
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.149.1",
36
- "@next-core/brick-types": "^2.79.2",
35
+ "@next-core/brick-kit": "^2.151.0",
36
+ "@next-core/brick-types": "^2.79.3",
37
37
  "fs-extra": "^10.1.0"
38
38
  },
39
- "gitHead": "27505a20c6e18b45e2ec59ab7d5874f9e1189606"
39
+ "gitHead": "3e8bb0cce3768b7982da8fb143905062990d49fc"
40
40
  }