quasar-ui-danx 0.3.2 → 0.3.4
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 +3830 -3767
- 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 +2 -2
- package/src/components/ActionTable/Form/Fields/SelectDrawer.vue +1 -0
- package/src/components/Navigation/NavigationMenu.vue +86 -0
- package/src/components/Navigation/index.ts +1 -0
- package/src/components/Utility/Files/FilePreview.vue +2 -3
- 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