boss-css 0.0.25 → 0.0.26

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.
@@ -1,5 +1,5 @@
1
1
  //#region src/use/token/propMap.d.ts
2
- declare const propMap: Map<string, Set<string> | string[]>;
2
+ declare const propMap: Map<string, string[] | Set<string>>;
3
3
  declare const getTokenGroupsForProp: (prop: string) => string[];
4
4
  declare const getTokenGroupForProp: (prop: string) => string;
5
5
  declare const setTokenPropGroups: (groups: Record<string, string[]>) => void;
@@ -1,5 +1,5 @@
1
1
  //#region src/use/token/propMap.d.ts
2
- declare const propMap: Map<string, Set<string> | string[]>;
2
+ declare const propMap: Map<string, string[] | Set<string>>;
3
3
  declare const getTokenGroupsForProp: (prop: string) => string[];
4
4
  declare const getTokenGroupForProp: (prop: string) => string;
5
5
  declare const setTokenPropGroups: (groups: Record<string, string[]>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boss-css",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "Polymorphic, usage-driven CSS-in-JS.",
5
5
  "bin": {
6
6
  "boss": "./dist/cli/index.cjs",
@@ -287,8 +287,8 @@
287
287
  "vitest": "^4.0.18"
288
288
  },
289
289
  "dependencies": {
290
- "@boss-css/document-create-element": "1.0.0",
291
- "@boss-css/is-css-prop": "1.0.0",
290
+ "@boss-css/document-create-element": "1.0.1",
291
+ "@boss-css/is-css-prop": "1.0.1",
292
292
  "@clack/prompts": "^1.1.0",
293
293
  "@emotion/hash": "^0.9.2",
294
294
  "@parcel/watcher": "^2.5.6",