@pandacss/shared 0.0.0-dev-20230109182737 → 0.0.0-dev-20230110151021
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.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -55,6 +55,6 @@ type MapToRecord<K extends Map<string, any>> = {
|
|
|
55
55
|
};
|
|
56
56
|
declare function mapToJson<T extends Map<string, any>>(map: T): MapToRecord<T>;
|
|
57
57
|
|
|
58
|
-
declare function unionType(values: IterableIterator<string> | string[]): string;
|
|
58
|
+
declare function unionType(values: IterableIterator<string> | string[] | Set<string>): string;
|
|
59
59
|
|
|
60
60
|
export { CssVar, CssVarOptions, calc, capitalize, cssVar, dashCase, esc, flatten, getDotPath, getNegativePath, getUnit, isFunction, isObject, isString, mapToJson, memo, normalizeStyleObject, splitBy, splitDotPath, splitObject, toEm, toPx, toRem, uncapitalize, unionType };
|