ui-thing 0.0.25 → 0.0.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.
- package/CHANGELOG.md +16 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/comps.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.26
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.25...v0.0.26)
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **multiselect:** Change the way css is imported ([c9c37a4](https://github.com/BayBreezy/ui-thing-cli/commit/c9c37a4))
|
|
10
|
+
|
|
11
|
+
### 🏡 Chore
|
|
12
|
+
|
|
13
|
+
- Update deps ([e1d6110](https://github.com/BayBreezy/ui-thing-cli/commit/e1d6110))
|
|
14
|
+
|
|
15
|
+
### ❤️ Contributors
|
|
16
|
+
|
|
17
|
+
- BayBreezy <behon.baker@yahoo.com>
|
|
18
|
+
|
|
3
19
|
## v0.0.25
|
|
4
20
|
|
|
5
21
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.24...v0.0.25)
|
package/dist/index.js
CHANGED
|
@@ -8809,6 +8809,9 @@ export { toast, useToast };
|
|
|
8809
8809
|
|
|
8810
8810
|
<script setup lang="ts">
|
|
8811
8811
|
import Multiselect from "@vueform/multiselect";
|
|
8812
|
+
|
|
8813
|
+
import "@vueform/multiselect/themes/default.css";
|
|
8814
|
+
|
|
8812
8815
|
import { useId } from "radix-vue";
|
|
8813
8816
|
|
|
8814
8817
|
const multiselect = shallowRef<InstanceType<typeof Multiselect> | null>(null);
|
|
@@ -8868,7 +8871,6 @@ export { toast, useToast };
|
|
|
8868
8871
|
});
|
|
8869
8872
|
</script>
|
|
8870
8873
|
|
|
8871
|
-
<style src="@vueform/multiselect/themes/default.css"></style>
|
|
8872
8874
|
<style>
|
|
8873
8875
|
:root {
|
|
8874
8876
|
--ms-font-size: theme("fontSize.sm");
|