@mptw/skylens-ui 1.3.5 → 1.3.7

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.
@@ -421,7 +421,7 @@ export default defineComponent({
421
421
 
422
422
 
423
423
  .input-group
424
- @apply flex flex-nowrap text-base leading-normal
424
+ @apply flex flex-nowrap w-full text-base leading-normal
425
425
 
426
426
  &.is-focus
427
427
  .input
@@ -442,12 +442,12 @@ export default defineComponent({
442
442
  .inputs
443
443
  @apply relative flex-grow flex items-center p-2 bg-white rounded-r border border-l-0 border-primary-light text-base text-gray-2
444
444
 
445
- div
446
- input
447
- @apply w-full bg-transparent text-base text-gray-2 text-left placeholder-gray-4 s('focus:outline-none')
445
+ input
446
+ @apply flex-grow bg-transparent text-base text-gray-2 text-left placeholder-gray-4 s('focus:outline-none')
447
+ width: calc((100% - 25px) / 2)
448
448
 
449
449
  .date-range-split
450
- @apply s('mx-0.5')
450
+ @apply flex-grow-0 flex-shrink-0 s('mx-0.5')
451
451
 
452
452
  .icon
453
453
  @apply absolute right-0 mr-2 text-danger-hover hidden
@@ -458,3 +458,4 @@ export default defineComponent({
458
458
  .invalid-feedback
459
459
  @apply hidden text-danger text-xs
460
460
  </style>
461
+
@@ -62,7 +62,7 @@
62
62
  v-else
63
63
  :colspan="columnSpans[index]"
64
64
  :key="`${itemIndex}-${field.key}`"
65
- :class='[tdBorderColor, field._class, { sortable: field.sortable }]'
65
+ :class='[tdBorderColor, field._colClass, { sortable: field.sortable }]'
66
66
  ) {{ item[field.key] }}
67
67
  template(v-for="(item, itemIndex) in items" :key="itemIndex")
68
68
  tr(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mptw/skylens-ui",
3
3
  "type": "module",
4
- "version": "1.3.5",
4
+ "version": "1.3.7",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",