ketekny-ui-kit 1.0.73 → 1.0.74

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ketekny-ui-kit",
3
3
  "type": "module",
4
- "version": "1.0.73",
4
+ "version": "1.0.74",
5
5
  "description": "A Vue 3 UI component library with Tailwind CSS styling",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -38,16 +38,12 @@
38
38
  "vite": "^6.3.5"
39
39
  },
40
40
  "dependencies": {
41
- "@primeuix/themes": "^1.1.1",
42
- "@vuepic/vue-datepicker": "^11.0.2",
43
41
  "class-variance-authority": "^0.7.1",
44
42
  "clsx": "^2.1.1",
45
43
  "dayjs": "1.11.19",
46
44
  "element-plus": "^2.13.5",
47
45
  "lucide-vue-next": "^0.511.0",
48
46
  "moment": "^2.30.1",
49
- "primeicons": "^7.0.0",
50
- "primevue": "^4.3.4",
51
47
  "reka-ui": "^2.8.2",
52
48
  "simple-code-editor": "^2.0.9",
53
49
  "tailwind-merge": "^3.5.0",
@@ -1,6 +1,3 @@
1
-
2
- @import "primeicons/primeicons.css";
3
-
4
1
  @tailwind base;
5
2
  @tailwind components;
6
3
  @tailwind utilities;
@@ -1,19 +1,15 @@
1
1
  <template>
2
2
  <div class="flex items-center justify-center w-16 space-x-1" v-if="type == 'line'">
3
- <i class="ml-1 text-primary dark:text-sky-200 pi pi-wave-pulse" />
3
+ <span class="spinner-ring spinner-ring--sm ml-1 text-primary dark:text-sky-200" aria-hidden="true" />
4
4
  <div class="w-2 h-2 rounded-full bg-primary dark:bg-sky-200 animate-fade" :style="{ animationDelay: '0s' }"></div>
5
5
  <div class="w-2 h-2 rounded-full bg-primary dark:bg-sky-200 animate-fade" :style="{ animationDelay: '0.15s' }"></div>
6
6
  <div class="w-2 h-2 rounded-full bg-primary dark:bg-sky-200 animate-fade" :style="{ animationDelay: '0.3s' }"></div>
7
7
  <div class="w-2 h-2 rounded-full bg-primary dark:bg-sky-200 animate-fade" :style="{ animationDelay: '0.45s' }"></div>
8
8
  </div>
9
9
 
10
- <Loader class="w-6 h-6 mr-2 animate-spin text-primary dark:text-sky-200" style="animation-duration: 1.5s" v-else-if="type == 'circle'" />
10
+ <span class="spinner-ring mr-2 text-primary dark:text-sky-200" aria-hidden="true" v-else-if="type == 'circle'" />
11
11
  </template>
12
12
 
13
- <script setup>
14
- import { Loader } from "lucide-vue-next";
15
- </script>
16
-
17
13
  <script>
18
14
  export default {
19
15
  name: "FourDotSpinner",
@@ -35,4 +31,25 @@ export default {
35
31
  .animate-fade {
36
32
  animation: fade 1s ease-in-out infinite;
37
33
  }
34
+
35
+ .spinner-ring {
36
+ width: 1.5rem;
37
+ height: 1.5rem;
38
+ border-radius: 9999px;
39
+ border: 2px solid currentColor;
40
+ border-top-color: transparent;
41
+ animation: spin 1s linear infinite;
42
+ display: inline-block;
43
+ }
44
+
45
+ .spinner-ring--sm {
46
+ width: 1rem;
47
+ height: 1rem;
48
+ }
49
+
50
+ @keyframes spin {
51
+ to {
52
+ transform: rotate(360deg);
53
+ }
54
+ }
38
55
  </style>