quasar-ui-danx 0.3.1 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -1
- package/danx-local.sh +1 -0
- package/dist/danx.es.js +4084 -4008
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Filters/FilterListToggle.vue +5 -1
- package/src/components/ActionTable/Form/Fields/SelectDrawer.vue +1 -0
- package/src/components/ActionTable/Form/RenderedForm.vue +29 -16
- package/src/components/Navigation/NavigationMenu.vue +85 -0
- package/src/components/Navigation/index.ts +1 -0
- package/src/components/index.ts +1 -0
- package/src/styles/general.scss +18 -0
- package/src/styles/index.scss +1 -0
package/README.md
CHANGED
@@ -86,7 +86,8 @@ export default ({ command }) => {
|
|
86
86
|
* NOTE: Setting this up w/ `npm link` or trying to modify tsconfig.json / vite.config.ts only can be quite
|
87
87
|
challenging to get everything configured correctly. I found this to be the best solution.
|
88
88
|
* copy/paste and run `./danx-local.sh`
|
89
|
-
* (recommended)
|
89
|
+
* (recommended) Configure yarn / npm to always run this after updating packages
|
90
|
+
* Add `{"scripts: {..., "postinstall": "./danx-local.sh"}}` to your package.json
|
90
91
|
* (or manually symlink node_modules/quasar-ui-danx to ../../quasar-ui-danx/ui/src)
|
91
92
|
* Directory structure of your project relative to quasar-ui-danx:
|
92
93
|
|
package/danx-local.sh
CHANGED