@winchsa/ui 0.1.41 → 0.1.43

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.
@@ -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"
@@ -222,7 +222,7 @@ onBeforeUnmount(() => {
222
222
  v-show="isFocus"
223
223
  :id="`vc-calendar-container-${elementId}`"
224
224
  class="position-absolute"
225
- style="z-index: 1005;"
225
+ style="z-index: 2012;"
226
226
  dir="ltr"
227
227
  :style="{
228
228
  left: `${customPosition().left - 20}px`,
@@ -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;
@@ -885,7 +885,7 @@ $btn-hover-overlay-opacity: (
885
885
  .app-textarea,
886
886
  .app-picker-field {
887
887
  .v-text-field .v-input__details {
888
- padding-inline-start: 0;
888
+ padding-inline-start: 0 !important;
889
889
  }
890
890
 
891
891
  .v-field--variant-outlined.v-field--focused .v-field__outline {
@@ -18616,7 +18616,7 @@ body {
18616
18616
  .v-application .app-combobox .v-text-field .v-input__details,
18617
18617
  .v-application .app-textarea .v-text-field .v-input__details,
18618
18618
  .v-application .app-picker-field .v-text-field .v-input__details {
18619
- padding-inline-start: 0;
18619
+ padding-inline-start: 0 !important;
18620
18620
  }
18621
18621
  .v-application .app-text-field .v-field--variant-outlined.v-field--focused .v-field__outline,
18622
18622
  .v-application .app-select .v-field--variant-outlined.v-field--focused .v-field__outline,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winchsa/ui",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {