@winchsa/ui 0.1.41 → 0.1.42

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/README.md CHANGED
@@ -130,3 +130,5 @@ The `bump` command in `package.json` does the following:
130
130
  **Publishing**
131
131
 
132
132
  After running `pnpm run bump`, go to **GitHub** → **Releases** and create a new release based on the commit generated. This will trigger the `publish.yaml` GitHub Actions workflow, which handles the actual publishing process
133
+
134
+ npm publish --access public
@@ -23,7 +23,6 @@ const isLoadingVisible = computed(() => props.isLoading);
23
23
  <style>
24
24
  .background-loading {
25
25
  background: rgb(var(--v-loading-background)) !important;
26
- border: 1px solid rgb(var(--v-theme-gray-200)) !important;
27
26
  }
28
27
  .background-loading .v-overlay__scrim {
29
28
  background: none !important;
@@ -43,7 +43,7 @@ function getItemOnChange() {
43
43
  </script>
44
44
 
45
45
  <template>
46
- <AppCard class="h-100">
46
+ <AppCard class="h-100" style="border:1px solid rgb(var(--v-theme-gray-200)) !important">
47
47
  <!-- title card -->
48
48
  <VCardItem
49
49
  class="text-center"
@@ -280,7 +280,6 @@ onBeforeUnmount(() => {
280
280
  --vc-accent-700: #fdc930;
281
281
  --vc-accent-800: #fdc930;
282
282
  --vc-accent-900: #fdc930;
283
- color: #000 !important;
284
283
  }
285
284
 
286
285
  .vc-calender-custom {
@@ -288,7 +287,7 @@ onBeforeUnmount(() => {
288
287
  }
289
288
 
290
289
  :deep(.vc-nav-item.is-active) {
291
- color: #000 !important;
290
+ color: rgb(var(--v-theme-on-surface)) !important;
292
291
  }
293
292
 
294
293
  :deep(.vc-monthly) .is-not-in-month * {
@@ -301,6 +300,31 @@ onBeforeUnmount(() => {
301
300
  --vc-focus-ring: none !important;
302
301
  }
303
302
 
303
+ :deep(.vc-dark) {
304
+ --vc-bg: rgb(var(--v-theme-surface));
305
+ --vc-border: rgba(var(--v-theme-gray-300));
306
+ --vc-color: rgb(var(--v-theme-on-surface));
307
+ --vc-gray-100: rgb(var(--v-theme-gray-100));
308
+ --vc-gray-200: rgb(var(--v-theme-gray-200));
309
+ --vc-gray-300: rgb(var(--v-theme-gray-300));
310
+ --vc-gray-400: rgb(var(--v-theme-gray-400));
311
+ --vc-gray-500: rgb(var(--v-theme-gray-500));
312
+ --vc-gray-600: rgb(var(--v-theme-gray-600));
313
+ --vc-gray-700: rgb(var(--v-theme-gray-700));
314
+ --vc-gray-800: rgb(var(--v-theme-gray-700));
315
+ --vc-gray-900: rgb(var(--v-theme-gray-700));
316
+ --vc-header-title-color:rgb(var(--v-theme-dark-gray));
317
+ --vc-accent-100: rgba(var(--v-theme-primary), 0.1);
318
+ --vc-accent-200: rgba(var(--v-theme-primary), 0.2);
319
+ --vc-accent-300: rgba(var(--v-theme-primary), 0.3);
320
+ --vc-accent-400: rgba(var(--v-theme-primary), 0.4);
321
+ --vc-accent-500: rgb(var(--v-theme-primary));
322
+ --vc-accent-600: rgb(var(--v-theme-primary));
323
+ --vc-accent-700: rgb(var(--v-theme-primary));
324
+ --vc-accent-800: rgb(var(--v-theme-primary));
325
+ --vc-accent-900: rgb(var(--v-theme-primary));
326
+ }
327
+
304
328
  :deep(.vc-title) span {
305
329
  font-weight: 500 !important;
306
330
  font-size: 16px !important;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winchsa/ui",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {