@fy-/fws-vue 2.0.28 → 2.0.30

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.
@@ -102,7 +102,6 @@ useSchemaOrg([
102
102
  />
103
103
  </div>
104
104
  <article itemscope itemtype="https://schema.org/Article">
105
- <meta itemprop="mainEntityOfPage" content="#webpage" />
106
105
  <meta itemprop="wordCount" :content="post.WordCount" />
107
106
  <meta itemprop="datePublished" :content="post.CreatedAt.iso" />
108
107
  <meta itemprop="dateModified" :content="post.UpdatedAt.iso" />
@@ -11,7 +11,7 @@ import {
11
11
  import type { ErrorObject } from "@vuelidate/core";
12
12
  import { useTranslation } from "../../composables/translations";
13
13
  import DefaultTagInput from "./DefaultTagInput.vue";
14
- import VueTailwindDatepicker from "vue-tailwind-datepicker";
14
+ //import VueTailwindDatepicker from "vue-tailwind-datepicker";
15
15
 
16
16
  type modelValueType = string | number | string[] | number[] | undefined;
17
17
 
@@ -153,6 +153,7 @@ defineExpose({ focus, blur, getInputRef });
153
153
  'mask',
154
154
  'date',
155
155
  'datetime',
156
+ 'datepicker',
156
157
  ].includes(type)
157
158
  "
158
159
  class="relative"
@@ -165,7 +166,7 @@ defineExpose({ focus, blur, getInputRef });
165
166
  </label>
166
167
  <input
167
168
  ref="inputRef"
168
- :type="type"
169
+ :type="type === 'datepicker' ? 'date' : type"
169
170
  :id="id"
170
171
  :name="id"
171
172
  :class="{
@@ -182,6 +183,7 @@ defineExpose({ focus, blur, getInputRef });
182
183
  @blur="handleBlur"
183
184
  />
184
185
  </div>
186
+ <!--
185
187
  <div v-if="type == 'datepicker'">
186
188
  <label
187
189
  :for="id"
@@ -190,7 +192,6 @@ defineExpose({ focus, blur, getInputRef });
190
192
  >{{ label ? label : placeholder }}
191
193
  </label>
192
194
  <div class="relative">
193
- <!-- @vue-skip -->
194
195
  <VueTailwindDatepicker
195
196
  v-model="model"
196
197
  :disable-date="disableDatesAdult"
@@ -203,6 +204,7 @@ defineExpose({ focus, blur, getInputRef });
203
204
  ></VueTailwindDatepicker>
204
205
  </div>
205
206
  </div>
207
+ -->
206
208
 
207
209
  <div v-if="type == 'chips' || type == 'tags'">
208
210
  <label
@@ -65,8 +65,7 @@ const isOpen = useStorage(`isOpenSidebar-${props.id}`, true);
65
65
  </template>
66
66
  <style lang="scss" scoped>
67
67
  .fui-sidebar {
68
- @apply w-60;
69
- transition: width 600ms ease-in-out;
68
+ @apply w-60 transition-all duration-300 ease-in-out;
70
69
  .fui-sidebar__controller {
71
70
  @apply py-3 flex items-center justify-end pr-3;
72
71
  svg {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.28",
3
+ "version": "2.0.30",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {