@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 +5 -5
- package/dist/ui.css +2 -0
- package/dist/ui.esm.js +1029 -993
- package/dist/ui.js +27 -27
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +179 -178
- package/dist/ui.scss +3 -1
- package/esm/components/QCheckbox/QCheckbox.d.ts +17 -1
- package/esm/components/QCheckbox/QCheckbox.d.ts.map +1 -1
- package/esm/components/QCheckbox/QCheckbox.vue.js +62 -45
- package/esm/components/QCheckbox/QCheckboxLabel.d.ts +21 -0
- package/esm/components/QCheckbox/QCheckboxLabel.d.ts.map +1 -0
- package/esm/components/QCheckbox/QCheckboxLabel.vue.js +31 -0
- package/esm/components/QCheckbox/QCheckboxLabel.vue2.js +4 -0
- package/esm/components/QCheckbox/types.d.ts +7 -5
- package/esm/components/QCheckbox/types.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +105 -105
- package/package.json +1 -1
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
|
-
```
|
|
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
|
-
|
|
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;
|