@plumeria/core 0.7.5 → 0.7.6
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/package.json +2 -2
- package/types/css.d.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumeria/core",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "Near Zero-runtime CSS-in-JS for efficient design systems.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"zss-engine": "0.2.18",
|
|
43
|
-
"@plumeria/collection": "0.5.
|
|
43
|
+
"@plumeria/collection": "0.5.1"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
package/types/css.d.ts
CHANGED
|
@@ -100,7 +100,6 @@ declare class css {
|
|
|
100
100
|
readonly cue: (str: string) => "::cue()";
|
|
101
101
|
readonly dir: (str: string) => ":dir()";
|
|
102
102
|
readonly has: (str: string) => ":has()";
|
|
103
|
-
readonly highlight: (str: string) => "::highlight()";
|
|
104
103
|
readonly host: (str: string) => ":host()";
|
|
105
104
|
readonly hostContext: (str: string) => ":host-context()";
|
|
106
105
|
readonly is: (str: string) => ":is()";
|
|
@@ -110,13 +109,15 @@ declare class css {
|
|
|
110
109
|
readonly nthLastOfType: (str: string) => ":nth-last-of-type()";
|
|
111
110
|
readonly nthOfType: (str: string) => ":nth-of-type()";
|
|
112
111
|
readonly not: (str: string) => ":not()";
|
|
113
|
-
readonly slotted: (str: string) => "::slotted()";
|
|
114
112
|
readonly state: (str: string) => ":state()";
|
|
113
|
+
readonly where: (str: string) => ":where()";
|
|
114
|
+
readonly highlight: (str: string) => "::highlight()";
|
|
115
|
+
readonly part: (str: string) => "::part()";
|
|
116
|
+
readonly slotted: (str: string) => "::slotted()";
|
|
115
117
|
readonly viewTransitionImagePair: (str: string) => "::view-transition-image-pair()";
|
|
116
118
|
readonly viewTransitionGroup: (str: string) => "::view-transition-group()";
|
|
117
119
|
readonly viewTransitionOld: (str: string) => "::view-transition-old()";
|
|
118
120
|
readonly viewTransitionNew: (str: string) => "::view-transition-new()";
|
|
119
|
-
readonly where: (str: string) => ":where()";
|
|
120
121
|
};
|
|
121
122
|
};
|
|
122
123
|
static colors: {
|