@quidgest/ui 0.14.7 → 0.14.9

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
@@ -44,17 +44,17 @@ createApp(App).use(framework).mount('#app')
44
44
 
45
45
  Once installed, components can be used like so:
46
46
 
47
- ```ts
47
+ ```vue
48
48
  <template>
49
49
  <q-button @click="handleClick">Click me</q-button>
50
50
  </template>
51
51
 
52
52
  <script setup lang="ts">
53
- import { QButton } from '@quidgest/ui'
53
+ import { QButton } from '@quidgest/ui/components'
54
54
 
55
- function handleClick() {
56
- console.log("Parallel lines have so much in common. It's a shame they'll never meet.")
57
- }
55
+ function handleClick() {
56
+ console.log("Parallel lines have so much in common. It's a shame they'll never meet.")
57
+ }
58
58
  </script>
59
59
  ```
60
60
 
package/dist/ui.css CHANGED
@@ -697,6 +697,7 @@ body *::-webkit-scrollbar-track {
697
697
  }
698
698
  .q-checkbox__input {
699
699
  display: flex;
700
+ align-self: flex-start;
700
701
  align-items: center;
701
702
  justify-content: center;
702
703
  width: var(--box-size);
@@ -879,6 +880,7 @@ body *::-webkit-scrollbar-track {
879
880
  display: grid;
880
881
  grid-template-rows: 0fr;
881
882
  transition: 0.5s;
883
+ width: 100%;
882
884
  }
883
885
  .q-collapsible__content-wrapper:not(.q-collapsible__content-show) {
884
886
  pointer-events: none;