adata-ui 2.0.55 → 2.0.57

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/app.config.ts CHANGED
@@ -13,7 +13,6 @@ declare module '@nuxt/schema' {
13
13
  oldVersion?: string
14
14
  landingUrl?: string
15
15
  pkUrl?: string
16
- oldPkUrl?: string
17
16
  tenderUrl?: string
18
17
  workUrl?: string
19
18
  avtoUrl?: string
@@ -110,14 +110,14 @@ const props = defineProps<{
110
110
  </svg>
111
111
 
112
112
  <div class="absolute left-6 top-6 flex flex-col gap-4 pr-6">
113
- <div class="flex items-center gap-2">
114
- <div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1 ">
113
+ <div class="flex items-center gap-2 title">
114
+ <div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1">
115
115
  <component
116
116
  :is="icon"
117
117
  class="size-6 shrink-0"
118
118
  />
119
119
  </div>
120
- <p class="text-base title font-semibold">
120
+ <p class="text-base font-semibold">
121
121
  {{ title }}
122
122
  </p>
123
123
  </div>
@@ -214,6 +214,10 @@ const props = defineProps<{
214
214
  .active-item .border-path {
215
215
  fill: #0070EB1A;
216
216
  }
217
+ .active-item .icon-item {
218
+ background: #2C3E500D;
219
+ }
220
+
217
221
  .curve-block:hover .border-path,
218
222
  .curve-block:hover .animated-border {
219
223
  transition: stroke-dashoffset 2s ease, fill 2s ease;
@@ -256,10 +260,16 @@ const props = defineProps<{
256
260
  .active-item .title {
257
261
  color: #1b98e2;
258
262
  }
263
+
259
264
  .active-item .border-path {
260
- fill: rgba(23, 146, 221, 0.38);
265
+ fill: #1B98E21A;
261
266
  }
262
267
 
268
+ .active-item .icon-item {
269
+ background: #E3E5E80D;
270
+ }
271
+
272
+
263
273
  .curve-block:hover .icon-item {
264
274
  background-color: rgba(30, 88, 156, 0.6);
265
275
  color: #1b98e2;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.55",
4
+ "version": "2.0.57",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",