@plumeria/core 7.3.1 → 7.3.3

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.
Files changed (2) hide show
  1. package/package.json +3 -1
  2. package/types/css.d.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/core",
3
- "version": "7.3.1",
3
+ "version": "7.3.3",
4
4
  "description": "A type-only atomic CSS framework.",
5
5
  "author": "Refirst 11",
6
6
  "license": "MIT",
@@ -22,6 +22,8 @@
22
22
  "stylex",
23
23
  "react-native-web"
24
24
  ],
25
+ "main": "types/css.d.ts",
26
+ "module": "types/css.d.ts",
25
27
  "types": "types/css.d.ts",
26
28
  "files": [
27
29
  "types"
package/types/css.d.ts CHANGED
@@ -25,7 +25,6 @@ declare module '@plumeria/core' {
25
25
  export type Variants = import('./definitions').Variants;
26
26
  export type Marker = import('./definitions').Marker;
27
27
  export type Extended<I extends string, P extends string> = import('./definitions').Extended<I, P>;
28
- export type ContainerStyleQuery = import('./definitions').ContainerStyleQuery;
29
28
  export type create = <const T extends Record<string, CSSProperties>>(_rule: CreateStyleType<T>)=> ReturnType<T>;
30
29
  export type props = (..._rules: (false | CSSProperties | null | undefined)[])=> string;
31
30
  export type createTheme = <const T extends CreateTheme>(_rule: T)=> ReturnVariableType<T>;