tokenizer-ui-kit 0.0.1 → 0.0.2

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.
@@ -2,3 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.3](https://github.com/switchcase-devs/ui-kit/compare/v0.5.1...v0.0.3) (2025-08-07)
6
+
7
+ ### [0.0.2](https://github.com/switchcase-devs/ui-kit/compare/v0.5.1...v0.0.2) (2025-08-07)
8
+
9
+ ### 0.5.1 (2025-08-04)
10
+
11
+ ### Features
12
+
13
+ - edit logic of quickselectors ([015ce7a](https://github.com/switchcase-devs/ui-kit/commit/015ce7ae237aac655bf0511465397cb933f295e8))
14
+
15
+ # Changelog
16
+
17
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
@@ -1,23 +1,23 @@
1
- # 🧩 Company UI Library
2
-
3
- A modular and extensible UI component library built for internal use across all company products. Its goal is to ensure design consistency, accelerate frontend development, and provide a unified user experience.
4
-
5
- ---
6
-
7
- ## 📦 Installation
8
-
9
- ```bash
10
- npm i test-switchcase-uikit
11
- # or
12
- pnpm add test-switchcase-uikit
13
- ```
14
-
15
- ---
16
-
17
- ## 🧩 Component Usage Example
18
-
19
- If you're importing components:
20
-
21
- ```ts
22
- import { DatePicker } from 'test-switchcase-uikit'
23
- ```
1
+ # 🧩 Company UI Library
2
+
3
+ A modular and extensible UI component library built for internal use across all company products. Its goal is to ensure design consistency, accelerate frontend development, and provide a unified user experience.
4
+
5
+ ---
6
+
7
+ ## 📦 Installation
8
+
9
+ ```bash
10
+ npm i test-switchcase-uikit
11
+ # or
12
+ pnpm add test-switchcase-uikit
13
+ ```
14
+
15
+ ---
16
+
17
+ ## 🧩 Component Usage Example
18
+
19
+ If you're importing components:
20
+
21
+ ```ts
22
+ import { DatePicker } from 'test-switchcase-uikit'
23
+ ```
@@ -1,12 +1,12 @@
1
- <script setup lang="ts">
2
- import { DatePicker } from '@/lib'
3
- import { ref } from 'vue'
4
-
5
- const date = ref<Date[]>([])
6
- </script>
7
-
8
- <template>
9
- <div class="w-80 bg-gray-200 min-h-dvh">
10
- <DatePicker v-model="date" :is-clerable="false" />
11
- </div>
12
- </template>
1
+ <script setup lang="ts">
2
+ import { DatePicker } from "@/lib";
3
+ import { ref } from "vue";
4
+
5
+ const date = ref<Date[]>([]);
6
+ </script>
7
+
8
+ <template>
9
+ <div class="w-80 bg-gray-200 min-h-dvh">
10
+ <DatePicker v-model="date" :is-clerable="false" />
11
+ </div>
12
+ </template>
@@ -1,13 +1,13 @@
1
- <!doctype html>
2
- <html lang="">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <link rel="icon" href="/favicon.ico" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>Vite App</title>
8
- </head>
9
- <body>
10
- <div id="app"></div>
11
- <script type="module" src="/examples/main.ts"></script>
12
- </body>
13
- </html>
1
+ <!doctype html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" href="/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Vite App</title>
8
+ </head>
9
+ <body>
10
+ <div id="app"></div>
11
+ <script type="module" src="/examples/main.ts"></script>
12
+ </body>
13
+ </html>
@@ -1,59 +1,59 @@
1
- {
2
- "name": "date-picker",
3
- "description": "A Vue 3 UI Kit for Tokenizer",
4
- "main": "dist/test-switchcase-uikit.umd.cjs",
5
- "module": "dist/test-switchcase-uikit.es.js",
6
- "types": "dist/types/index.d.ts",
7
- "author": "TochJob",
8
- "license": "ISC",
9
- "version": "0.0.1",
10
- "type": "module",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/test-switchcase-uikit.es.js",
14
- "require": "./dist/test-switchcase-uikit.umd.cjs",
15
- "style": "./dist/test-switchcase-uikit.css",
16
- "types": "./dist/types/index.d.ts"
17
- },
18
- "./dist/test-switchcase-uikit.css": {
19
- "default": "./dist/test-switchcase-uikit.css"
20
- }
21
- },
22
- "scripts": {
23
- "dev": "vite",
24
- "preview": "vite preview",
25
- "build-only": "vite build && tsc -p tsconfig.build.json",
26
- "build": "run-p type-check \"build-only {@}\" --",
27
- "clean": "rm -rf dist",
28
- "type-check": "vue-tsc --build",
29
- "lint": "eslint . --fix",
30
- "format": "prettier --write src/",
31
- "release": "standard-version"
32
- },
33
- "dependencies": {
34
- "@tailwindcss/vite": "^4.1.11",
35
- "@vuepic/vue-datepicker": "^11.0.2",
36
- "date-fns": "^4.1.0",
37
- "tailwindcss": "^4.1.11",
38
- "vue": "^3.5.17"
39
- },
40
- "devDependencies": {
41
- "@tsconfig/node22": "^22.0.2",
42
- "@types/node": "^22.15.32",
43
- "@vitejs/plugin-vue": "^6.0.0",
44
- "@vue/eslint-config-prettier": "^10.2.0",
45
- "@vue/eslint-config-typescript": "^14.5.1",
46
- "@vue/tsconfig": "^0.7.0",
47
- "eslint": "^9.29.0",
48
- "eslint-plugin-vue": "~10.2.0",
49
- "jiti": "^2.4.2",
50
- "npm-run-all2": "^8.0.4",
51
- "prettier": "3.5.3",
52
- "sass-embedded": "^1.89.2",
53
- "standard-version": "^9.5.0",
54
- "typescript": "~5.8.0",
55
- "vite": "^7.0.0",
56
- "vite-plugin-vue-devtools": "^7.7.7",
57
- "vue-tsc": "^2.2.10"
58
- }
59
- }
1
+ {
2
+ "name": "date-picker",
3
+ "description": "A Vue 3 UI Kit for Tokenizer",
4
+ "main": "dist/test-switchcase-uikit.umd.cjs",
5
+ "module": "dist/test-switchcase-uikit.es.js",
6
+ "types": "dist/types/index.d.ts",
7
+ "author": "TochJob",
8
+ "license": "ISC",
9
+ "version": "0.0.3",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/test-switchcase-uikit.es.js",
14
+ "require": "./dist/test-switchcase-uikit.umd.cjs",
15
+ "style": "./dist/test-switchcase-uikit.css",
16
+ "types": "./dist/types/index.d.ts"
17
+ },
18
+ "./dist/test-switchcase-uikit.css": {
19
+ "default": "./dist/test-switchcase-uikit.css"
20
+ }
21
+ },
22
+ "scripts": {
23
+ "dev": "vite",
24
+ "preview": "vite preview",
25
+ "build-only": "vite build && tsc -p tsconfig.build.json",
26
+ "build": "run-p type-check \"build-only {@}\" --",
27
+ "clean": "rm -rf dist",
28
+ "type-check": "vue-tsc --build",
29
+ "lint": "eslint . --fix",
30
+ "format": "prettier --write src/",
31
+ "release": "standard-version"
32
+ },
33
+ "dependencies": {
34
+ "@tailwindcss/vite": "^4.1.11",
35
+ "@vuepic/vue-datepicker": "^11.0.2",
36
+ "date-fns": "^4.1.0",
37
+ "tailwindcss": "^4.1.11",
38
+ "vue": "^3.5.17"
39
+ },
40
+ "devDependencies": {
41
+ "@tsconfig/node22": "^22.0.2",
42
+ "@types/node": "^22.15.32",
43
+ "@vitejs/plugin-vue": "^6.0.0",
44
+ "@vue/eslint-config-prettier": "^10.2.0",
45
+ "@vue/eslint-config-typescript": "^14.5.1",
46
+ "@vue/tsconfig": "^0.7.0",
47
+ "eslint": "^9.29.0",
48
+ "eslint-plugin-vue": "~10.2.0",
49
+ "jiti": "^2.4.2",
50
+ "npm-run-all2": "^8.0.4",
51
+ "prettier": "3.5.3",
52
+ "sass-embedded": "^1.89.2",
53
+ "standard-version": "^9.5.0",
54
+ "typescript": "~5.8.0",
55
+ "vite": "^7.0.0",
56
+ "vite-plugin-vue-devtools": "^7.7.7",
57
+ "vue-tsc": "^2.2.10"
58
+ }
59
+ }