@kbach/react 0.1.3 → 0.1.4

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/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -12,7 +12,7 @@ Tailwind-like utility classes for **React (web)**. Classes are converted to inli
12
12
 
13
13
  ## Install
14
14
 
15
- ```bash
15
+ ```
16
16
  npm install @kbach/react
17
17
  ```
18
18
 
@@ -22,7 +22,7 @@ npm install @kbach/react
22
22
 
23
23
  **tsconfig.json**
24
24
 
25
- ```jsonc
25
+ ```
26
26
  {
27
27
  "compilerOptions": {
28
28
  "jsx": "react-jsx",
@@ -33,7 +33,7 @@ npm install @kbach/react
33
33
 
34
34
  **Vite**
35
35
 
36
- ```js
36
+ ```
37
37
  // vite.config.ts
38
38
  import { defineConfig } from 'vite';
39
39
  import react from '@vitejs/plugin-react';
@@ -45,7 +45,7 @@ export default defineConfig({
45
45
 
46
46
  **Babel**
47
47
 
48
- ```js
48
+ ```
49
49
  // babel.config.js
50
50
  module.exports = {
51
51
  presets: [
@@ -232,7 +232,7 @@ Available families: slate, gray, zinc, neutral, stone, red, orange, amber, yello
232
232
 
233
233
  ## Configuration
234
234
 
235
- ```js
235
+ ```
236
236
  // kbach.config.js
237
237
  module.exports = {
238
238
  darkMode: 'attribute', // 'attribute' | 'class' | 'media'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kbach/react",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "React / React Native components and hooks for the Kbach framework",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./dist/index.js",