css-engine-test-pb 0.0.1 → 0.0.3
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/dist/types.d.ts +0 -3
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -75,7 +75,6 @@ export interface CSSProperties {
|
|
|
75
75
|
zIndex?: CSSValue;
|
|
76
76
|
visibility?: CSSValue;
|
|
77
77
|
content?: CSSValue;
|
|
78
|
-
[key: string]: CSSValue | undefined;
|
|
79
78
|
}
|
|
80
79
|
export interface CSSPseudos {
|
|
81
80
|
':hover'?: CSSProperties;
|
|
@@ -88,7 +87,6 @@ export interface CSSPseudos {
|
|
|
88
87
|
'::before'?: CSSProperties;
|
|
89
88
|
'::after'?: CSSProperties;
|
|
90
89
|
'::placeholder'?: CSSProperties;
|
|
91
|
-
[key: string]: CSSProperties | undefined;
|
|
92
90
|
}
|
|
93
91
|
export interface CSSMediaQueries {
|
|
94
92
|
'@media (min-width: 480px)'?: CSSProperties & CSSPseudos;
|
|
@@ -97,7 +95,6 @@ export interface CSSMediaQueries {
|
|
|
97
95
|
'@media (min-width: 1440px)'?: CSSProperties & CSSPseudos;
|
|
98
96
|
'@media (prefers-color-scheme: dark)'?: CSSProperties & CSSPseudos;
|
|
99
97
|
'@media (prefers-reduced-motion: reduce)'?: CSSProperties & CSSPseudos;
|
|
100
|
-
[key: string]: (CSSProperties & CSSPseudos) | undefined;
|
|
101
98
|
}
|
|
102
99
|
export type StyleRule = CSSProperties & CSSPseudos & CSSMediaQueries;
|
|
103
100
|
export type StyleDefinition = StyleRule | (() => StyleRule);
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "css-engine-test-pb",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"import": "./dist/index.
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
11
|
"require": "./dist/index.js",
|
|
12
12
|
"types": "./dist/index.d.ts"
|
|
13
13
|
}
|