ui-thing 0.1.29 → 0.1.31
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/.github/dependabot.yml +12 -0
- package/CHANGELOG.md +33 -0
- package/dist/index.js +54 -20
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/comps.ts +6 -6
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Please see the documentation for all configuration options:
|
|
2
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
3
|
+
|
|
4
|
+
version: 2
|
|
5
|
+
updates:
|
|
6
|
+
- package-ecosystem: "npm"
|
|
7
|
+
directory: "/"
|
|
8
|
+
schedule:
|
|
9
|
+
interval: "weekly"
|
|
10
|
+
day: "sunday"
|
|
11
|
+
time: "06:00"
|
|
12
|
+
timezone: "America/Jamaica"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.1.31
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.30...v0.1.31)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Update table styles ([f3a697e](https://github.com/BayBreezy/ui-thing-cli/commit/f3a697e))
|
|
10
|
+
|
|
11
|
+
### 🏡 Chore
|
|
12
|
+
|
|
13
|
+
- Bump deps ([9ffc32d](https://github.com/BayBreezy/ui-thing-cli/commit/9ffc32d))
|
|
14
|
+
|
|
15
|
+
### ❤️ Contributors
|
|
16
|
+
|
|
17
|
+
- Behon Baker ([@BayBreezy](http://github.com/BayBreezy))
|
|
18
|
+
|
|
19
|
+
## v0.1.30
|
|
20
|
+
|
|
21
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.29...v0.1.30)
|
|
22
|
+
|
|
23
|
+
### 🚀 Enhancements
|
|
24
|
+
|
|
25
|
+
- Update vee-input component ([302c4fd](https://github.com/BayBreezy/ui-thing-cli/commit/302c4fd))
|
|
26
|
+
|
|
27
|
+
### 🏡 Chore
|
|
28
|
+
|
|
29
|
+
- Bump deps ([a4140b2](https://github.com/BayBreezy/ui-thing-cli/commit/a4140b2))
|
|
30
|
+
- Add dependabot config ([fae5b34](https://github.com/BayBreezy/ui-thing-cli/commit/fae5b34))
|
|
31
|
+
|
|
32
|
+
### ❤️ Contributors
|
|
33
|
+
|
|
34
|
+
- Behon Baker ([@BayBreezy](http://github.com/BayBreezy))
|
|
35
|
+
|
|
3
36
|
## v0.1.29
|
|
4
37
|
|
|
5
38
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.28...v0.1.29)
|