@next-core/next-docs 1.2.333 → 1.2.335
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,22 @@
|
|
|
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.335](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.334...@next-core/next-docs@1.2.335) (2022-09-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.2.334](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.333...@next-core/next-docs@1.2.334) (2022-09-20)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.2.333](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.332...@next-core/next-docs@1.2.333) (2022-09-19)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @next-core/next-docs
|
|
@@ -42,6 +42,7 @@ export interface MicroApp
|
|
|
42
42
|
| [name](./brick-types.microapp.name.md) | string | 应用名称。 |
|
|
43
43
|
| [noAuthGuard](./brick-types.microapp.noauthguard.md) | boolean | 整个应用不启用登录守卫。 |
|
|
44
44
|
| [private](./brick-types.microapp.private.md) | boolean | 标记为私有的应用不会出现在应用商店中。 |
|
|
45
|
+
| [standaloneMode](./brick-types.microapp.standalonemode.md) | boolean | 该应用是否是独立打包应用 |
|
|
45
46
|
| [status](./brick-types.microapp.status.md) | "developing" \| "enabled" \| "disabled" | 应用状态。 |
|
|
46
47
|
| [theme](./brick-types.microapp.theme.md) | "light" \| "dark-v2" | 该应用所属主题, dark 已经被用大屏模式,这里使用 dark-v2 |
|
|
47
48
|
| [userConfig](./brick-types.microapp.userconfig.md) | Record<string, unknown> | 应用的用户配置,在运行环境由用户维护。 |
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-types.microapp.standalonemode
|
|
3
|
+
title: MicroApp.standaloneMode
|
|
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-types](./brick-types.md) > [MicroApp](./brick-types.microapp.md) > [standaloneMode](./brick-types.microapp.standalonemode.md)
|
|
11
|
+
|
|
12
|
+
## MicroApp.standaloneMode property
|
|
13
|
+
|
|
14
|
+
该应用是否是独立打包应用
|
|
15
|
+
|
|
16
|
+
**Signature:**
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
standaloneMode?: boolean;
|
|
20
|
+
```
|
|
21
|
+
|
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.335",
|
|
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.
|
|
25
|
-
"@next-core/brick-types": "^2.
|
|
24
|
+
"@next-core/brick-kit": "^2.143.0",
|
|
25
|
+
"@next-core/brick-types": "^2.76.0",
|
|
26
26
|
"fs-extra": "^10.1.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "9d8a0693861d56427a15baf3b3c1417883136b36"
|
|
29
29
|
}
|