@next-core/next-docs 1.2.350 → 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.
- package/dist/brick-kit.getrealvalue.md +33 -0
- package/dist/brick-kit.md +1 -0
- package/package.json +3 -3
|
@@ -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) > [@next-core/brick-kit](./brick-kit.md) > [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 模态框弹出错误信息)。 |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-core/next-docs",
|
|
3
|
-
"version": "1.2.
|
|
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.
|
|
35
|
+
"@next-core/brick-kit": "^2.151.0",
|
|
36
36
|
"@next-core/brick-types": "^2.79.3",
|
|
37
37
|
"fs-extra": "^10.1.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "3e8bb0cce3768b7982da8fb143905062990d49fc"
|
|
40
40
|
}
|