2021-12-15 15:34:31 +08:00
|
|
|
import * as style from "./style.module.css";
|
2021-12-17 03:42:44 +08:00
|
|
|
import { local1, local2, local3, local4, ident } from "./style.module.css";
|
2021-12-15 15:34:31 +08:00
|
|
|
|
|
|
|
export default {
|
2021-12-15 16:03:06 +08:00
|
|
|
global: style.global,
|
2021-12-15 15:34:31 +08:00
|
|
|
class: style.class,
|
2021-12-15 16:03:06 +08:00
|
|
|
local: `${local1} ${local2} ${local3} ${local4}`,
|
|
|
|
local2: `${style.local5} ${style.local6}`,
|
2021-12-17 03:42:44 +08:00
|
|
|
nested: `${style.nested1} ${style.nested2} ${style.nested3}`,
|
2023-03-27 01:31:57 +08:00
|
|
|
notWmultiParams: `${style.local7}`,
|
2023-03-27 16:11:53 +08:00
|
|
|
isWmultiParams: `${style.local8}`,
|
2023-03-28 15:54:20 +08:00
|
|
|
matchesWmultiParams: `${style.local9}`,
|
|
|
|
whereWmultiParams: `${style.local10}`,
|
|
|
|
hasWmultiParams: `${style.local11}`,
|
|
|
|
currentWmultiParams: `${style.local12}`,
|
|
|
|
pastWmultiParams: `${style.local13}`,
|
|
|
|
futureWmultiParams: `${style.local14}`,
|
|
|
|
mozAnyWmultiParams: `${style.local15}`,
|
|
|
|
webkitAnyWmultiParams: `${style.local16}`,
|
2021-12-17 03:42:44 +08:00
|
|
|
ident,
|
|
|
|
keyframes: style.localkeyframes,
|
2023-04-06 07:09:08 +08:00
|
|
|
keyframesUPPERCASE: style.localkeyframesUPPERCASE,
|
|
|
|
localkeyframes2UPPPERCASE: style.localkeyframes2UPPPERCASE,
|
2021-12-17 03:42:44 +08:00
|
|
|
animation: style.animation,
|
2022-04-14 23:33:00 +08:00
|
|
|
vars: `${style["local-color"]} ${style.vars} ${style["global-color"]} ${style.globalVars}`,
|
|
|
|
media: style.wideScreenClass,
|
2022-05-27 21:21:44 +08:00
|
|
|
mediaWithOperator: style.narrowScreenClass,
|
2022-04-14 23:33:00 +08:00
|
|
|
supports: style.displayGridInSupports,
|
2022-05-27 21:21:44 +08:00
|
|
|
supportsWithOperator: style.floatRightInNegativeSupports,
|
|
|
|
mediaInSupports: style.displayFlexInMediaInSupports,
|
|
|
|
supportsInMedia: style.displayFlexInSupportsInMedia,
|
2023-04-06 07:09:08 +08:00
|
|
|
displayFlexInSupportsInMediaUpperCase: style.displayFlexInSupportsInMediaUpperCase,
|
|
|
|
VARS: `${style["LOCAL-COLOR"]} ${style.VARS} ${style["GLOBAL-COLOR"]} ${style.globalVarsUpperCase}`,
|
2023-04-17 20:14:40 +08:00
|
|
|
inSupportScope: style.inSupportScope,
|
2023-04-13 01:32:38 +08:00
|
|
|
animationName: style.animationName,
|
2023-04-13 01:46:19 +08:00
|
|
|
mozAnimationName: style.mozAnimationName,
|
2023-05-04 20:26:00 +08:00
|
|
|
myColor: style['my-color'],
|
|
|
|
paddingSm: style['padding-sm'],
|
|
|
|
paddingLg: style['padding-lg'],
|
2023-05-05 00:18:13 +08:00
|
|
|
inLocalGlobalScope: style['in-local-global-scope'],
|
|
|
|
classLocalScope: style['class-local-scope'],
|
2023-05-05 01:24:37 +08:00
|
|
|
classInContainer: style['class-in-container'],
|
|
|
|
deepClassInContainer: style['deep-class-in-container'],
|
2021-12-15 15:34:31 +08:00
|
|
|
};
|