@fy-/fws-vue 0.3.24 → 0.3.26
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.
|
@@ -235,7 +235,7 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
235
235
|
@blur="handleBlur"
|
|
236
236
|
/>
|
|
237
237
|
<div
|
|
238
|
-
class="relative w-11 h-6 bg-fv-neutral-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-fv-primary-300 dark:peer-focus:ring-fv-primary-800 rounded-full peer dark:bg-fv-neutral-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-fv-neutral-300 after:border after:rounded-full after:w-5 after:h-5 after:transition-all dark:border-fv-neutral-600 peer-checked:bg-fv-primary-600"
|
|
238
|
+
class="relative flex-0 flex-shrink-0 w-11 h-6 bg-fv-neutral-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-fv-primary-300 dark:peer-focus:ring-fv-primary-800 rounded-full peer dark:bg-fv-neutral-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-fv-neutral-300 after:border after:rounded-full after:w-5 after:h-5 after:transition-all dark:border-fv-neutral-600 peer-checked:bg-fv-primary-600"
|
|
239
239
|
></div>
|
|
240
240
|
<span
|
|
241
241
|
class="ms-3 text-sm font-medium text-fv-neutral-900 dark:text-fv-neutral-300"
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
>
|
|
15
15
|
<span v-for="(tag, index) in tags" :key="index" :class="`tag ${color}`">
|
|
16
16
|
{{ tag }}
|
|
17
|
-
<button @click.
|
|
17
|
+
<button type="button" @click.prevent="removeTag(index)">
|
|
18
18
|
<svg
|
|
19
|
-
class="w-
|
|
19
|
+
class="w-4 h-4"
|
|
20
20
|
xmlns="http://www.w3.org/2000/svg"
|
|
21
21
|
fill="none"
|
|
22
22
|
viewBox="0 0 24 24"
|
package/index.ts
CHANGED
|
@@ -41,6 +41,7 @@ import DefaultSidebar from "./components/ui/DefaultSidebar.vue";
|
|
|
41
41
|
import DefaultGallery from "./components/ui/DefaultGallery.vue";
|
|
42
42
|
import DefaultDropdown from "./components/ui/DefaultDropdown.vue";
|
|
43
43
|
import DefaultDropdownLink from "./components/ui/DefaultDropdownLink.vue";
|
|
44
|
+
import DefaultTagInput from "./components/ui/DefaultTagInput.vue";
|
|
44
45
|
// Components/FWS
|
|
45
46
|
import UserFlow from "./components/fws/UserFlow.vue";
|
|
46
47
|
import DataTable from "./components/fws/DataTable.vue";
|
|
@@ -125,6 +126,7 @@ export {
|
|
|
125
126
|
DefaultGallery,
|
|
126
127
|
DefaultDropdown,
|
|
127
128
|
DefaultDropdownLink,
|
|
129
|
+
DefaultTagInput,
|
|
128
130
|
|
|
129
131
|
// FWS
|
|
130
132
|
UserFlow,
|