shared-ritm 1.3.69 → 1.3.70

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.3.69",
3
+ "version": "1.3.70",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <q-checkbox v-bind="$props" v-model="model" :class="$style['app-checkbox']" />
2
+ <q-checkbox v-bind="$props" :class="$style['app-checkbox']" />
3
3
  </template>
4
4
 
5
5
  <script setup lang="ts">
@@ -18,8 +18,6 @@ const props = withDefaults(defineProps<QCheckboxProps & Props>(), {
18
18
  borderWidth: '2px',
19
19
  })
20
20
 
21
- const model = defineModel<any>()
22
-
23
21
  const qBorderColor = computed(() => colors.getPaletteColor(props.borderColor))
24
22
  </script>
25
23
  <style module lang="scss">
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div>
3
- <q-toggle v-bind="$props" v-model="model" />
3
+ <q-toggle v-bind="$props" />
4
4
  </div>
5
5
  </template>
6
6
 
@@ -9,6 +9,4 @@ import { defineProps } from 'vue'
9
9
  import { QToggleProps } from 'quasar'
10
10
 
11
11
  defineProps<QToggleProps>()
12
-
13
- const model = defineModel<any>()
14
12
  </script>