@alicloud/console-base-theme 1.9.6 → 1.9.7
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/build/cjs/mixin/reset.js +1 -1
- package/build/{es → esm}/mixin/reset.js +1 -1
- package/package.json +5 -5
- /package/build/{es → esm}/global-style-font-family-for-ja/index.js +0 -0
- /package/build/{es → esm}/global-style-theme-dark/index.js +0 -0
- /package/build/{es → esm}/global-style-theme-dark/var/index.js +0 -0
- /package/build/{es → esm}/global-style-theme-light/index.js +0 -0
- /package/build/{es → esm}/index.js +0 -0
- /package/build/{es → esm}/mixin/bg.js +0 -0
- /package/build/{es → esm}/mixin/border-radius.js +0 -0
- /package/build/{es → esm}/mixin/border.js +0 -0
- /package/build/{es → esm}/mixin/button.js +0 -0
- /package/build/{es → esm}/mixin/index.js +0 -0
- /package/build/{es → esm}/mixin/input.js +0 -0
- /package/build/{es → esm}/mixin/link.js +0 -0
- /package/build/{es → esm}/mixin/shadow.js +0 -0
- /package/build/{es → esm}/mixin/text.js +0 -0
- /package/build/{es → esm}/mixin/typo.js +0 -0
- /package/build/{es → esm}/types/index.js +0 -0
- /package/build/{es → esm}/util/create-theme-global-style.js +0 -0
- /package/build/{es → esm}/util/index.js +0 -0
- /package/build/{es → esm}/util/toggle-body-class.js +0 -0
- /package/build/{es → esm}/var/index.js +0 -0
- /package/build/{es → esm}/var/size.js +0 -0
- /package/build/{es → esm}/var/typo.js +0 -0
- /package/build/{es → esm}/var/z-index.js +0 -0
package/build/cjs/mixin/reset.js
CHANGED
|
@@ -19,5 +19,5 @@ var mixinInputReset = (0, _styledComponents.css)(["border:1px solid transparent;
|
|
|
19
19
|
* 4. 定义 disabled 的基础样式
|
|
20
20
|
*/
|
|
21
21
|
exports.mixinInputReset = mixinInputReset;
|
|
22
|
-
var mixinButtonReset = (0, _styledComponents.css)(["padding:0;border:1px solid transparent;box-sizing:border-box;outline:none;background:none;line-height:inherit;cursor:pointer;font-family:inherit;font-size:inherit;text-align:center;text-decoration:none;color:inherit;transition:all ease-out 0.3s;&:hover,&:link:hover{text-decoration:none;}&:focus-visible{outline:
|
|
22
|
+
var mixinButtonReset = (0, _styledComponents.css)(["padding:0;border:1px solid transparent;box-sizing:border-box;outline:none;background:none;line-height:inherit;cursor:pointer;font-family:inherit;font-size:inherit;text-align:center;text-decoration:none;color:inherit;transition:all ease-out 0.3s;&:hover,&:link:hover{text-decoration:none;}&:focus-visible{outline:1px solid ", ";}&[disabled]{cursor:not-allowed;}"], _var.COLOR.BORDER_ACCENT_HOVER);
|
|
23
23
|
exports.mixinButtonReset = mixinButtonReset;
|
|
@@ -12,4 +12,4 @@ export var mixinInputReset = css(["border:1px solid transparent;box-sizing:borde
|
|
|
12
12
|
* 3. 避免 link hover 的样式干扰
|
|
13
13
|
* 4. 定义 disabled 的基础样式
|
|
14
14
|
*/
|
|
15
|
-
export var mixinButtonReset = css(["padding:0;border:1px solid transparent;box-sizing:border-box;outline:none;background:none;line-height:inherit;cursor:pointer;font-family:inherit;font-size:inherit;text-align:center;text-decoration:none;color:inherit;transition:all ease-out 0.3s;&:hover,&:link:hover{text-decoration:none;}&:focus-visible{outline:
|
|
15
|
+
export var mixinButtonReset = css(["padding:0;border:1px solid transparent;box-sizing:border-box;outline:none;background:none;line-height:inherit;cursor:pointer;font-family:inherit;font-size:inherit;text-align:center;text-decoration:none;color:inherit;transition:all ease-out 0.3s;&:hover,&:link:hover{text-decoration:none;}&:focus-visible{outline:1px solid ", ";}&[disabled]{cursor:not-allowed;}"], COLOR.BORDER_ACCENT_HOVER);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/console-base-theme",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.7",
|
|
4
4
|
"description": "控制台主题 - 基于 css variable 和 styled-components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "build/cjs/index.js",
|
|
8
|
-
"module": "build/
|
|
8
|
+
"module": "build/esm/index.js",
|
|
9
9
|
"types": "build/types/index.d.ts",
|
|
10
10
|
"homepage": "https://github.com/aliyun/alibabacloud-console-base/tree/master/packages-theme/console-base-theme",
|
|
11
11
|
"author": {
|
|
@@ -23,7 +23,7 @@
|
|
|
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.
|
|
26
|
+
"@alicloud/demo-rc-elements": "^1.12.2",
|
|
27
27
|
"@alicloud/ts-config": "^1.1.3",
|
|
28
28
|
"@types/lodash-es": "^4.17.7",
|
|
29
29
|
"@types/react": "^17.0.58",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"build:esm": "breezr build --engine babel --es-module",
|
|
47
47
|
"build:cjs": "breezr build --engine babel",
|
|
48
48
|
"build:bundle": "breezr build --engine webpack",
|
|
49
|
-
"build:
|
|
50
|
-
"build": "yarn build:esm && yarn build:cjs && yarn build:
|
|
49
|
+
"build:types": "tsc -p tsconfig-declaration.json --outDir build/types --declaration --emitDeclarationOnly",
|
|
50
|
+
"build": "yarn build:esm && yarn build:cjs && yarn build:types",
|
|
51
51
|
"clean": "rm -rf build",
|
|
52
52
|
"prepublishOnly": "yarn clean && yarn build"
|
|
53
53
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|