@next-core/next-docs 1.2.184 → 1.2.188
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 +32 -0
- package/dist/brick-kit.getmockinfo.md +22 -0
- package/dist/brick-kit.md +2 -1
- package/dist/brick-kit.themesetting.basecolors.md +19 -0
- package/dist/brick-kit.themesetting.brandcolor.md +19 -0
- package/dist/brick-kit.themesetting.md +27 -0
- package/dist/brick-kit.themesetting.variables.md +19 -0
- package/package.json +4 -4
- package/dist/brick-kit.getmockid.md +0 -19
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.188](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.187...@next-core/next-docs@1.2.188) (2022-01-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.2.187](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.186...@next-core/next-docs@1.2.187) (2022-01-05)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [1.2.186](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.185...@next-core/next-docs@1.2.186) (2022-01-04)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [1.2.185](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.184...@next-core/next-docs@1.2.185) (2022-01-04)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @next-core/next-docs
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [1.2.184](https://github.com/easyops-cn/next-core/compare/@next-core/next-docs@1.2.183...@next-core/next-docs@1.2.184) (2021-12-31)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @next-core/next-docs
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.getmockinfo
|
|
3
|
+
title: getMockInfo
|
|
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) > [getMockInfo](./brick-kit.getmockinfo.md)
|
|
11
|
+
|
|
12
|
+
## getMockInfo variable
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
getMockInfo: (requestUrl: string) => {
|
|
18
|
+
url: string;
|
|
19
|
+
mockId: string;
|
|
20
|
+
} | undefined
|
|
21
|
+
```
|
|
22
|
+
|
package/dist/brick-kit.md
CHANGED
|
@@ -57,6 +57,7 @@ The core kit of Brick Next.
|
|
|
57
57
|
| [GetMicroAppsOptions](./brick-kit.getmicroappsoptions.md) | 查询微应用列表时的选项。 |
|
|
58
58
|
| [IfContainer](./brick-kit.ifcontainer.md) | 包含 <code>if</code> 条件判断的对象。 |
|
|
59
59
|
| [PropertyDeclaration](./brick-kit.propertydeclaration.md) | Defines options for a property accessor. |
|
|
60
|
+
| [ThemeSetting](./brick-kit.themesetting.md) | |
|
|
60
61
|
|
|
61
62
|
## Variables
|
|
62
63
|
|
|
@@ -64,6 +65,6 @@ The core kit of Brick Next.
|
|
|
64
65
|
| --- | --- |
|
|
65
66
|
| [FeatureFlagsProvider](./brick-kit.featureflagsprovider.md) | |
|
|
66
67
|
| [ForwardRefSingleBrickAsComponent](./brick-kit.forwardrefsinglebrickascomponent.md) | |
|
|
67
|
-
| [
|
|
68
|
+
| [getMockInfo](./brick-kit.getmockinfo.md) | |
|
|
68
69
|
| [SingleBrickAsComponent](./brick-kit.singlebrickascomponent.md) | 可以渲染单个 <code>useBrick</code> 的 React 组件。 |
|
|
69
70
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.themesetting.basecolors
|
|
3
|
+
title: ThemeSetting.baseColors
|
|
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) > [ThemeSetting](./brick-kit.themesetting.md) > [baseColors](./brick-kit.themesetting.basecolors.md)
|
|
11
|
+
|
|
12
|
+
## ThemeSetting.baseColors property
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
baseColors: Omit<ColorThemeOptionsByBaseColors, "type">;
|
|
18
|
+
```
|
|
19
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.themesetting.brandcolor
|
|
3
|
+
title: ThemeSetting.brandColor
|
|
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) > [ThemeSetting](./brick-kit.themesetting.md) > [brandColor](./brick-kit.themesetting.brandcolor.md)
|
|
11
|
+
|
|
12
|
+
## ThemeSetting.brandColor property
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
brandColor: Omit<ColorThemeOptionsByBrand, "type">;
|
|
18
|
+
```
|
|
19
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.themesetting
|
|
3
|
+
title: ThemeSetting
|
|
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) > [ThemeSetting](./brick-kit.themesetting.md)
|
|
11
|
+
|
|
12
|
+
## ThemeSetting interface
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
export interface ThemeSetting
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
| Property | Type | Description |
|
|
23
|
+
| --- | --- | --- |
|
|
24
|
+
| [baseColors](./brick-kit.themesetting.basecolors.md) | Omit<ColorThemeOptionsByBaseColors, "type"> | |
|
|
25
|
+
| [brandColor](./brick-kit.themesetting.brandcolor.md) | Omit<ColorThemeOptionsByBrand, "type"> | |
|
|
26
|
+
| [variables](./brick-kit.themesetting.variables.md) | Omit<ColorThemeOptionsByVariables, "type"> | |
|
|
27
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: brick-kit.themesetting.variables
|
|
3
|
+
title: ThemeSetting.variables
|
|
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) > [ThemeSetting](./brick-kit.themesetting.md) > [variables](./brick-kit.themesetting.variables.md)
|
|
11
|
+
|
|
12
|
+
## ThemeSetting.variables property
|
|
13
|
+
|
|
14
|
+
**Signature:**
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
variables: Omit<ColorThemeOptionsByVariables, "type">;
|
|
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.188",
|
|
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.101.1",
|
|
25
|
+
"@next-core/brick-types": "^2.55.0",
|
|
26
26
|
"fs-extra": "^10.0.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "836c0fb594cedd559bacae72e0db8c82f0ac8a74"
|
|
29
29
|
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
id: brick-kit.getmockid
|
|
3
|
-
title: getMockId
|
|
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) > [getMockId](./brick-kit.getmockid.md)
|
|
11
|
-
|
|
12
|
-
## getMockId variable
|
|
13
|
-
|
|
14
|
-
**Signature:**
|
|
15
|
-
|
|
16
|
-
```typescript
|
|
17
|
-
getMockId: (requestUrl: string) => string | undefined
|
|
18
|
-
```
|
|
19
|
-
|