ketekny-ui-kit 1.0.52 → 1.0.53

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 +14 -9
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -5,26 +5,27 @@ Vue 3 UI component library with Tailwind CSS styling and utility plugins.
5
5
  ## Requirements
6
6
 
7
7
  - `vue`: `^3.0.0` (peer dependency)
8
- - Tailwind CSS build pipeline in your app (`tailwindcss`, `postcss`, `autoprefixer`)
8
+ - Tailwind CSS 3 build pipeline in your app (`tailwindcss`, `postcss`, `autoprefixer`)
9
+ - This package is built and tested against Tailwind CSS 3.x; Tailwind CSS 4 is not supported by the current setup
9
10
 
10
11
  ## Installation
11
12
 
12
- ```bash
13
- npm install ketekny-ui-kit
14
- ```
15
-
16
- Required peer dependency:
13
+ Needed packages (install what is missing)
17
14
 
18
15
  ```bash
16
+ # Required peer dependency:
19
17
  npm install vue
20
- ```
21
18
 
22
- If your app does not already use Tailwind CSS:
19
+ # If your app does not already use Tailwind CSS 3:
20
+ npm install -D tailwindcss@^3 postcss autoprefixer
21
+ ```
23
22
 
24
23
  ```bash
25
- npm install -D tailwindcss postcss autoprefixer
24
+ npm install ketekny-ui-kit
26
25
  ```
27
26
 
27
+
28
+
28
29
  ## Quick Start
29
30
 
30
31
  In your app entry (`main.js` / `main.ts`):
@@ -89,6 +90,8 @@ function save() {
89
90
 
90
91
  Use the provided preset to include semantic tokens and safelist patterns used by dynamic component classes.
91
92
 
93
+ This README assumes Tailwind CSS 3. The `tailwind.config.js` / `tailwind.config.cjs` examples below are the supported integration path for this kit.
94
+
92
95
  `tailwind.config.js` (ESM):
93
96
 
94
97
  ```js
@@ -169,6 +172,8 @@ Other exports:
169
172
  - Tailwind classes from the kit are not applied:
170
173
  - Confirm `tailwind.config` includes `./node_modules/ketekny-ui-kit/**/*.{vue,js,ts,jsx,tsx}` in `content`.
171
174
  - Confirm `presets: [tailwindPreset]` is present.
175
+ - Date/time pickers fail to resolve `dayjs/plugin/customParseFormat.js`:
176
+ - Upgrade to `ketekny-ui-kit` `1.0.36` or newer.
172
177
  - Vue peer dependency warning:
173
178
  - Install/update Vue 3 in your app: `npm install vue@^3`.
174
179
  - Dynamic semantic classes are purged:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ketekny-ui-kit",
3
3
  "type": "module",
4
- "version": "1.0.52",
4
+ "version": "1.0.53",
5
5
  "description": "A Vue 3 UI component library with Tailwind CSS styling",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -42,6 +42,7 @@
42
42
  "@vuepic/vue-datepicker": "^11.0.2",
43
43
  "class-variance-authority": "^0.7.1",
44
44
  "clsx": "^2.1.1",
45
+ "dayjs": "1.11.19",
45
46
  "element-plus": "^2.13.5",
46
47
  "lucide-vue-next": "^0.511.0",
47
48
  "moment": "^2.30.1",