@alicloud/console-base-theme 1.9.0 → 1.9.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Alibaba Cloud
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -2,9 +2,9 @@ import { ThemeColors, COLOR_LIGHT as COLOR } from '@alicloud/console-base-theme-
2
2
  import TYPO from './typo';
3
3
  import SIZE from './size';
4
4
  import Z_INDEX from './z-index';
5
- declare type TThemeTypo = typeof TYPO;
6
- declare type TThemeSize = typeof SIZE;
7
- declare type TThemeZIndex = typeof Z_INDEX;
5
+ type TThemeTypo = typeof TYPO;
6
+ type TThemeSize = typeof SIZE;
7
+ type TThemeZIndex = typeof Z_INDEX;
8
8
  /**
9
9
  * 默认主题(亮色)的所有变量
10
10
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/console-base-theme",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "控制台主题 - 基于 css variable 和 styled-components",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
@@ -23,21 +23,22 @@
23
23
  "devDependencies": {
24
24
  "@alicloud/console-toolkit-cli": "^1.2.30",
25
25
  "@alicloud/console-toolkit-preset-component": "^1.2.61",
26
- "@alicloud/demo-rc-elements": "^1.10.13",
27
- "@types/lodash": "^4.14.188",
26
+ "@alicloud/demo-rc-elements": "^1.11.1",
27
+ "@alicloud/ts-config": "^1.1.1",
28
+ "@types/lodash": "^4.14.191",
28
29
  "@types/react": "^17.0.48",
29
30
  "@types/styled-components": "^5.1.26",
30
31
  "lodash": "^4.17.21",
31
32
  "react": "^17.0.2",
32
33
  "styled-components": "^5.3.6",
33
- "typescript": "^4.8.4"
34
+ "typescript": "^4.9.4"
34
35
  },
35
36
  "peerDependencies": {
36
37
  "styled-components": ">=5"
37
38
  },
38
39
  "dependencies": {
39
- "@alicloud/console-base-theme-color": "^1.5.6",
40
- "@alicloud/mere-dom": "^1.6.9"
40
+ "@alicloud/console-base-theme-color": "^1.5.8",
41
+ "@alicloud/mere-dom": "^1.6.10"
41
42
  },
42
43
  "scripts": {
43
44
  "start": "breezr start-storybook",
@@ -50,5 +51,5 @@
50
51
  "clean": "rm -rf build",
51
52
  "prepublishOnly": "yarn clean && yarn build"
52
53
  },
53
- "gitHead": "e3daf0b177915f37e8beae4ecee204d8c62f9507"
54
+ "gitHead": "97c30e1d77fdd1ea054bd11d30555658f4752223"
54
55
  }