@westartcom/bread-quasar-fields 0.0.5 → 0.0.7
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/README.md +8 -0
- package/fields/DateTimeField.vue +1 -1
- package/package.json +2 -1
- package/tsconfig.json +2 -1
package/README.md
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
+
# Introduction
|
|
2
|
+
|
|
1
3
|
This is a library to enable quasar in the bread framework. You are meant to import these fields into your `ModelForm.vue` file.
|
|
4
|
+
|
|
5
|
+
# TODO
|
|
6
|
+
|
|
7
|
+
- [ ] Think about the dependencies of this library, it's not really optional depending on what fields you are using, right now it's forcing install of all dependices even though you might not be using the field at all.
|
|
8
|
+
- [ ] Interfaces and Enums, should they be in this library or in the install of the bread framework?
|
|
9
|
+
- [ ] `RepeatableNestedFieldsField.vue` requires `ModelForm.vue` which is not included in this library, should it be?
|
package/fields/DateTimeField.vue
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@westartcom/bread-quasar-fields",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Quasar compatible fields for bread package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
|
+
"private": false,
|
|
9
10
|
"author": "Christoffer",
|
|
10
11
|
"license": "ISC",
|
|
11
12
|
"dependencies": {
|