@tokenami/config 0.0.86--canary.445.14696959737.0 → 0.0.86
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/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3,6 +3,8 @@ export { default as hash } from '@emotion/hash';
|
|
|
3
3
|
|
|
4
4
|
interface CSSProperties<TLength = (string & {}) | 0, TTime = string & {}> extends CSS.StandardPropertiesHyphen<TLength, TTime>, CSS.SvgPropertiesHyphen<TLength, TTime> {
|
|
5
5
|
}
|
|
6
|
+
interface CSSPropertiesWithVendor<TLength = (string & {}) | 0, TTime = string & {}> extends CSSProperties<TLength, TTime>, CSS.VendorPropertiesHyphen<TLength, TTime> {
|
|
7
|
+
}
|
|
6
8
|
type CSSProperty = keyof CSSProperties;
|
|
7
9
|
type Theme = {
|
|
8
10
|
[themeKey: string]: {
|
|
@@ -24,7 +26,7 @@ type Selector = string | string[];
|
|
|
24
26
|
type Selectors = {
|
|
25
27
|
[name: string]: Selector;
|
|
26
28
|
};
|
|
27
|
-
type Aliases = Record<string,
|
|
29
|
+
type Aliases = Record<string, (keyof CSSPropertiesWithVendor)[]>;
|
|
28
30
|
type Properties = Partial<Record<CSSProperty | (string & {}), string[]>>;
|
|
29
31
|
type CustomProperties = Record<string, string[]>;
|
|
30
32
|
type ExactTheme<T> = T extends ThemeModes ? {
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export { default as hash } from '@emotion/hash';
|
|
|
3
3
|
|
|
4
4
|
interface CSSProperties<TLength = (string & {}) | 0, TTime = string & {}> extends CSS.StandardPropertiesHyphen<TLength, TTime>, CSS.SvgPropertiesHyphen<TLength, TTime> {
|
|
5
5
|
}
|
|
6
|
+
interface CSSPropertiesWithVendor<TLength = (string & {}) | 0, TTime = string & {}> extends CSSProperties<TLength, TTime>, CSS.VendorPropertiesHyphen<TLength, TTime> {
|
|
7
|
+
}
|
|
6
8
|
type CSSProperty = keyof CSSProperties;
|
|
7
9
|
type Theme = {
|
|
8
10
|
[themeKey: string]: {
|
|
@@ -24,7 +26,7 @@ type Selector = string | string[];
|
|
|
24
26
|
type Selectors = {
|
|
25
27
|
[name: string]: Selector;
|
|
26
28
|
};
|
|
27
|
-
type Aliases = Record<string,
|
|
29
|
+
type Aliases = Record<string, (keyof CSSPropertiesWithVendor)[]>;
|
|
28
30
|
type Properties = Partial<Record<CSSProperty | (string & {}), string[]>>;
|
|
29
31
|
type CustomProperties = Record<string, string[]>;
|
|
30
32
|
type ExactTheme<T> = T extends ThemeModes ? {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokenami/config",
|
|
3
|
-
"version": "0.0.86
|
|
3
|
+
"version": "0.0.86",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"tsup": "^8.4.0",
|
|
40
40
|
"typescript": "^5.1.3"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "64d6c13c0642c7cc87506fce129208a29f1167a3"
|
|
43
43
|
}
|