@1001-digital/components 2.0.0 → 2.0.1
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/package.json +1 -1
- package/src/base/components/BottomNav.vue +1 -1
- package/src/base/components/Combobox.vue +1 -1
- package/src/base/components/Dropdown.vue +1 -1
- package/src/base/components/FormDatePicker.vue +1 -1
- package/src/base/components/Sidebar.vue +10 -2
- package/src/base/components/Tooltip.vue +1 -1
package/package.json
CHANGED
|
@@ -187,7 +187,7 @@ const open = defineModel<boolean>('open')
|
|
|
187
187
|
const placeholderValue = ref(props.placeholder) as ReturnType<typeof ref<DateValue | undefined>>
|
|
188
188
|
</script>
|
|
189
189
|
|
|
190
|
-
<style>
|
|
190
|
+
<style scoped>
|
|
191
191
|
@layer components {
|
|
192
192
|
.form-date-picker-anchor {
|
|
193
193
|
display: inline-flex;
|
|
@@ -25,7 +25,15 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script setup lang="ts">
|
|
28
|
-
import {
|
|
28
|
+
import {
|
|
29
|
+
ref,
|
|
30
|
+
reactive,
|
|
31
|
+
computed,
|
|
32
|
+
watch,
|
|
33
|
+
watchEffect,
|
|
34
|
+
onMounted,
|
|
35
|
+
onBeforeUnmount,
|
|
36
|
+
} from 'vue'
|
|
29
37
|
import { useMediaQuery, useScrollLock, useElementSize } from '@vueuse/core'
|
|
30
38
|
|
|
31
39
|
const open = defineModel<boolean>('open', { default: false })
|
|
@@ -206,7 +214,7 @@ defineExpose({
|
|
|
206
214
|
})
|
|
207
215
|
</script>
|
|
208
216
|
|
|
209
|
-
<style>
|
|
217
|
+
<style scoped>
|
|
210
218
|
@layer components {
|
|
211
219
|
.sidebar {
|
|
212
220
|
position: fixed;
|