@marigold/system 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +6 -5
package/dist/index.d.ts CHANGED
@@ -414,7 +414,7 @@ declare type NormalizedElement = keyof typeof normalize;
414
414
  * Type-safe helper to get normalization. If no normalization is found,
415
415
  * returns the *base* normalization.
416
416
  */
417
- declare const getNormalizedStyles: (val?: ElementType<any> | undefined) => {
417
+ declare const getNormalizedStyles: (val?: ElementType) => {
418
418
  readonly boxSizing: "border-box";
419
419
  readonly margin: 0;
420
420
  readonly minWidth: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marigold/system",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Marigold System Library",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -27,9 +27,9 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@emotion/react": "11.9.0",
30
- "@marigold/types": "0.5.0",
30
+ "@marigold/types": "0.5.1",
31
31
  "@theme-ui/css": "0.14.5",
32
- "csstype": "3.0.11",
32
+ "csstype": "3.1.0",
33
33
  "deepmerge": "^4.2.2",
34
34
  "react-fast-compare": "^3.2.0"
35
35
  },
@@ -41,11 +41,12 @@
41
41
  "@babel/core": "7.17.12",
42
42
  "@marigold/tsconfig": "0.3.0",
43
43
  "react": "17.0.2",
44
- "tsup": "5.12.8"
44
+ "tsup": "6.0.1"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "tsup src/index.ts",
48
48
  "watch": "tsup src/index.ts --watch",
49
49
  "clean": "rm -rf node_modules && rm -rf dist"
50
- }
50
+ },
51
+ "readme": "# `@marigold/system`\n\n> Marigold system\n"
51
52
  }