@kaizen/components 1.2.0 → 1.3.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.3.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/components@1.2.0...@kaizen/components@1.3.0) (2023-02-15)
7
+
8
+
9
+ ### Features
10
+
11
+ * 44-processing-tailwind-css ([#3273](https://github.com/cultureamp/kaizen-design-system/issues/3273)) ([4f2ace5](https://github.com/cultureamp/kaizen-design-system/commit/4f2ace55edb1d3b5fc0005b65165fd584357a0d2))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.2.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/components@1.1.0...@kaizen/components@1.2.0) (2023-02-13)
7
18
 
8
19
 
@@ -7,6 +7,6 @@ exports.ExampleComponent = void 0;
7
7
  var react_1 = __importDefault(require("react"));
8
8
  var ExampleComponent_module_scss_1 = __importDefault(require("./ExampleComponent.module.scss"));
9
9
  // Placeholder for illustration DO NOT COPY
10
- var ExampleComponent = function () { return (react_1["default"].createElement("div", { className: ExampleComponent_module_scss_1["default"].exampleComponent }, "ExampleComponent FUTURE")); };
10
+ var ExampleComponent = function () { return (react_1["default"].createElement("div", { className: "".concat(ExampleComponent_module_scss_1["default"].exampleComponent, " bg-purple-600") }, "ExampleComponent FUTURE")); };
11
11
  exports.ExampleComponent = ExampleComponent;
12
12
  //# sourceMappingURL=ExampleComponent.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ExampleComponent.js","sourceRoot":"","sources":["../../../src/__future__/ExampleComponent/ExampleComponent.tsx"],"names":[],"mappings":";;;;;;AAAA,gDAAyB;AACzB,gGAAmD;AAEnD,2CAA2C;AACpC,IAAM,gBAAgB,GAAG,cAAmB,OAAA,CACjD,0CAAK,SAAS,EAAE,yCAAM,CAAC,gBAAgB,8BAA+B,CACvE,EAFkD,CAElD,CAAA;AAFY,QAAA,gBAAgB,oBAE5B"}
1
+ {"version":3,"file":"ExampleComponent.js","sourceRoot":"","sources":["../../../src/__future__/ExampleComponent/ExampleComponent.tsx"],"names":[],"mappings":";;;;;;AAAA,gDAAyB;AACzB,gGAAmD;AAEnD,2CAA2C;AACpC,IAAM,gBAAgB,GAAG,cAAmB,OAAA,CACjD,0CAAK,SAAS,EAAE,UAAG,yCAAM,CAAC,gBAAgB,mBAAgB,8BAEpD,CACP,EAJkD,CAIlD,CAAA;AAJY,QAAA,gBAAgB,oBAI5B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Kaizen component library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,8 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "prepublish": "tsc --project tsconfig.dist.json",
13
- "build": "yarn clean && yarn prepublish",
13
+ "build": "yarn clean && yarn build:css && yarn prepublish",
14
+ "build:css": "node esbuild.config.js",
14
15
  "build:watch": "yarn clean && yarn prepublish --watch",
15
16
  "clean": "rimraf 'dist'"
16
17
  },
@@ -27,9 +28,16 @@
27
28
  "dependencies": {
28
29
  "classnames": "^2.3.2"
29
30
  },
31
+ "devDependencies": {
32
+ "@deanc/esbuild-plugin-postcss": "^1.0.2",
33
+ "@kaizen/tailwind": "^0.4.0",
34
+ "autoprefixer": "^10.4.13",
35
+ "esbuild": "^0.17.8",
36
+ "tailwindcss": "^3.2.6"
37
+ },
30
38
  "peerDependencies": {
31
39
  "@kaizen/design-tokens": "^2.10.3 || ^3.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
32
40
  "react": "^16.14.0 || ^17.0.0 || ^18.0.0"
33
41
  },
34
- "gitHead": "eff16687da5abe5db2541d576c4f2f6c590e3566"
42
+ "gitHead": "74d7931f3be473414ab087ae14771e55c9e3b4b6"
35
43
  }