@hostlink/nuxt-light 1.10.23 → 1.11.0
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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -20,6 +20,7 @@ const module = defineNuxtModule({
|
|
|
20
20
|
nuxt.options.css.push("@quasar/extras/material-icons-outlined/material-icons-outlined.css");
|
|
21
21
|
nuxt.options.css.push("@quasar/extras/fontawesome-v6/fontawesome-v6.css");
|
|
22
22
|
nuxt.options.css.push("@quasar/extras/fontawesome-v5/fontawesome-v5.css");
|
|
23
|
+
nuxt.options.css.push("@quasar/extras/mdi-v7/mdi-v7.css");
|
|
23
24
|
nuxt.options.app.head.link = nuxt.options.app.head.link || [];
|
|
24
25
|
nuxt.options.app.head.link.push({
|
|
25
26
|
rel: "stylesheet",
|
|
@@ -213,8 +213,8 @@ const menusOnly = computed(() => {
|
|
|
213
213
|
<q-dialog v-model="showMove">
|
|
214
214
|
<l-card>
|
|
215
215
|
<q-card-section>
|
|
216
|
-
<q-tree :nodes="menus" :selected-color="$light.color" default-expand-all
|
|
217
|
-
node-key="uuid" ref="tree2" />
|
|
216
|
+
<q-tree :nodes="menus" :selected-color="$light.color" default-expand-all
|
|
217
|
+
v-model:selected="moveTarget" node-key="uuid" ref="tree2" />
|
|
218
218
|
</q-card-section>
|
|
219
219
|
|
|
220
220
|
<q-card-actions align="right">
|
|
@@ -298,13 +298,31 @@ const menusOnly = computed(() => {
|
|
|
298
298
|
<div class="q-gutter-md">
|
|
299
299
|
<l-input label="Label" v-model="selectedNode.label" />
|
|
300
300
|
<l-input label="To" v-model="selectedNode.to" />
|
|
301
|
-
<l-input label="Icon" v-model="selectedNode.icon"
|
|
301
|
+
<l-input label="Icon" v-model="selectedNode.icon"
|
|
302
|
+
hint="example: sym_o_add, fas fa-ambulance, mdi-alert-circle-outline" />
|
|
302
303
|
<l-input label="Permission" v-model="selectedNode.permission" />
|
|
303
304
|
<l-input label="UUID" v-model="selectedNode.uuid" readonly />
|
|
304
305
|
</div>
|
|
305
306
|
|
|
306
307
|
<div>
|
|
307
|
-
<
|
|
308
|
+
<ul>
|
|
309
|
+
<li>
|
|
310
|
+
<a href="https://fonts.google.com/icons" target="_blank">Material Icons</a>
|
|
311
|
+
</li>
|
|
312
|
+
<li>
|
|
313
|
+
<a href="https://fontawesome.com/search" target="_blank">Font Awesome</a>
|
|
314
|
+
</li>
|
|
315
|
+
|
|
316
|
+
<li>
|
|
317
|
+
<a href="https://materialdesignicons.com/" target="_blank">Material Design
|
|
318
|
+
Icons</a>
|
|
319
|
+
</li>
|
|
320
|
+
<li>
|
|
321
|
+
<a href="https://quasar.dev/vue-components/icon#webfont-usage" target="_blank">Quasar
|
|
322
|
+
Icons</a>
|
|
323
|
+
</li>
|
|
324
|
+
</ul>
|
|
325
|
+
|
|
308
326
|
</div>
|
|
309
327
|
|
|
310
328
|
</template>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hostlink/nuxt-light",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "HostLink Nuxt Light Framework",
|
|
5
5
|
"repository": "@hostlink/nuxt-light",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
|
|
29
29
|
"release:org": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
30
30
|
"release": "npm run prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
|
|
31
|
+
"publish": "npm run prepack && npm publish --access=public && git push --follow-tags",
|
|
31
32
|
"lint": "eslint .",
|
|
32
33
|
"test": "vitest run",
|
|
33
34
|
"test:watch": "vitest watch",
|