solid-tiny-utils 0.7.0 → 0.7.1

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/dom/css.d.ts CHANGED
@@ -13,6 +13,6 @@ import { JSX } from 'solid-js/jsx-runtime';
13
13
  declare function mountStyle(style: string, id: string, refresh?: boolean): void;
14
14
  declare function stringStyleToObject(style: string): JSX.CSSProperties;
15
15
  declare function combineStyle(a: JSX.CSSProperties, b: JSX.CSSProperties | string | undefined): JSX.CSSProperties | string;
16
- declare function combineClass(defaultClass: string, ...otherClass: string[]): string;
16
+ declare function combineClass(defaultClass: string, ...otherClass: (string | undefined | null)[]): string;
17
17
 
18
18
  export { combineClass, combineStyle, mountStyle, stringStyleToObject };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-tiny-utils",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "A collection of tiny utilities for SolidJS applications",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",