@next-core/next-docs 1.2.553 → 1.2.554
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,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.instantiatemodalstack
|
|
3
|
+
title: instantiateModalStack()
|
|
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) > [instantiateModalStack](./brick-kit.instantiatemodalstack.md)
|
|
11
|
+
|
|
12
|
+
## instantiateModalStack() function
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
export declare function instantiateModalStack(initialIndex?: number): ModalStack;
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Parameters
|
|
21
|
+
|
|
22
|
+
| Parameter | Type | Description |
|
|
23
|
+
| --- | --- | --- |
|
|
24
|
+
| initialIndex | number | |
|
|
25
|
+
|
|
26
|
+
**Returns:**
|
|
27
|
+
|
|
28
|
+
[ModalStack](./brick-kit.modalstack.md)
|
|
29
|
+
|
package/dist/brick-kit.md
CHANGED
|
@@ -48,6 +48,7 @@ The core kit of Brick Next.
|
|
|
48
48
|
| [handleHttpError](./brick-kit.handlehttperror.md) | 处理 http 请求错误(使用 AntDesign 模态框弹出错误信息)。 |
|
|
49
49
|
| [httpErrorToString](./brick-kit.httperrortostring.md) | 将 http 请求错误转换为可读的字符串。 |
|
|
50
50
|
| [i18nText](./brick-kit.i18ntext.md) | |
|
|
51
|
+
| [instantiateModalStack](./brick-kit.instantiatemodalstack.md) | |
|
|
51
52
|
| [isLoggedIn](./brick-kit.isloggedin.md) | 查看当前是否已登录。 |
|
|
52
53
|
| [looseCheckIfByTransform](./brick-kit.loosecheckifbytransform.md) | 给定一个数据源,根据表达式计算条件判断的结果。 |
|
|
53
54
|
| [method](./brick-kit.method.md) | 构件方法装饰器。 |
|
|
@@ -75,6 +76,7 @@ The core kit of Brick Next.
|
|
|
75
76
|
| [EventEmitter](./brick-kit.eventemitter.md) | 事件发送器 |
|
|
76
77
|
| [GetMicroAppsOptions](./brick-kit.getmicroappsoptions.md) | 查询微应用列表时的选项。 |
|
|
77
78
|
| [IfContainer](./brick-kit.ifcontainer.md) | 包含 <code>if</code> 条件判断的对象。 |
|
|
79
|
+
| [ModalStack](./brick-kit.modalstack.md) | |
|
|
78
80
|
| [PreviewOption](./brick-kit.previewoption.md) | |
|
|
79
81
|
| [PreviewStoryboardPatch](./brick-kit.previewstoryboardpatch.md) | |
|
|
80
82
|
| [PropertyDeclaration](./brick-kit.propertydeclaration.md) | Defines options for a property accessor. |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.modalstack
|
|
3
|
+
title: ModalStack
|
|
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) > [ModalStack](./brick-kit.modalstack.md)
|
|
11
|
+
|
|
12
|
+
## ModalStack interface
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
export interface ModalStack
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
| Property | Type | Description |
|
|
23
|
+
| --- | --- | --- |
|
|
24
|
+
| [pull](./brick-kit.modalstack.pull.md) | () => void | |
|
|
25
|
+
| [push](./brick-kit.modalstack.push.md) | () => number | |
|
|
26
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.modalstack.pull
|
|
3
|
+
title: ModalStack.pull
|
|
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) > [ModalStack](./brick-kit.modalstack.md) > [pull](./brick-kit.modalstack.pull.md)
|
|
11
|
+
|
|
12
|
+
## ModalStack.pull property
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
pull: () => void;
|
|
18
|
+
```
|
|
19
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.modalstack.push
|
|
3
|
+
title: ModalStack.push
|
|
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) > [ModalStack](./brick-kit.modalstack.md) > [push](./brick-kit.modalstack.push.md)
|
|
11
|
+
|
|
12
|
+
## ModalStack.push property
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
push: () => number;
|
|
18
|
+
```
|
|
19
|
+
|
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.554",
|
|
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.7.1",
|
|
35
|
-
"@next-core/brick-kit": "^2.
|
|
35
|
+
"@next-core/brick-kit": "^2.201.0",
|
|
36
36
|
"@next-core/brick-types": "^2.98.1",
|
|
37
37
|
"fs-extra": "^10.1.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "3f19367500c3cf68fc2dee9b4014e4b6086a73a9"
|
|
40
40
|
}
|