@kaizen/tailwind 1.0.4 → 1.1.0

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,8 +1,8 @@
1
1
  import { ThemeConfig } from "tailwindcss/types/config";
2
2
  export type KaizenTailwindTheme = Partial<ThemeConfig>;
3
- export interface KaizenTailwindPreset {
3
+ export type KaizenTailwindPreset = {
4
4
  theme: KaizenTailwindTheme;
5
- }
5
+ };
6
6
  export declare const kaizenTailwindTheme: KaizenTailwindTheme;
7
7
  export declare const Preset: KaizenTailwindPreset;
8
8
  //# sourceMappingURL=tailwind-presets.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tailwind-presets.d.ts","sourceRoot":"","sources":["../src/tailwind-presets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AAItD,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAA;AACtD,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,mBAAmB,CAAA;CAC3B;AAGD,eAAO,MAAM,mBAAmB,EAAE,mBAmGjC,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,oBAEpB,CAAA"}
1
+ {"version":3,"file":"tailwind-presets.d.ts","sourceRoot":"","sources":["../src/tailwind-presets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AAItD,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAA;AACtD,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,mBAAmB,CAAA;CAC3B,CAAA;AAGD,eAAO,MAAM,mBAAmB,EAAE,mBAmGjC,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,oBAEpB,CAAA"}
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@kaizen/tailwind",
3
- "version": "1.0.4",
3
+ "version": "1.1.0",
4
4
  "description": "Kaizen Tailwind presets",
5
5
  "scripts": {
6
- "build": "yarn prepublish",
6
+ "build": "yarn clean && yarn prepublishOnly",
7
7
  "build:ts": "tsc --project tsconfig.dist.json",
8
- "prepublish": "tsc --project tsconfig.dist.json",
8
+ "prepublishOnly": "tsc --project tsconfig.dist.json",
9
9
  "clean": "rimraf -g '**/*.d.ts' '**/*.js' '**/*.map'"
10
10
  },
11
11
  "repository": {
@@ -25,14 +25,9 @@
25
25
  "private": false,
26
26
  "license": "MIT",
27
27
  "dependencies": {
28
- "@kaizen/design-tokens": "^10.3.10",
29
- "classnames": "^2.3.2"
30
- },
31
- "devDependencies": {
32
- "@kaizen/draft-divider": "^2.2.11",
33
- "tailwindcss": "^3.3.2"
28
+ "@kaizen/design-tokens": "^10.3.12"
34
29
  },
35
30
  "peerDependencies": {
36
- "react": "^16.14.0 || ^17.0.0 || ^18.0.0"
31
+ "tailwindcss": "^3.3.3"
37
32
  }
38
33
  }
@@ -3,7 +3,7 @@ import { defaultTheme } from "@kaizen/design-tokens"
3
3
  import { kzSpacing } from "./kz-spacing"
4
4
 
5
5
  export type KaizenTailwindTheme = Partial<ThemeConfig>
6
- export interface KaizenTailwindPreset {
6
+ export type KaizenTailwindPreset = {
7
7
  theme: KaizenTailwindTheme
8
8
  }
9
9