@mixd-id/web-scaffold 0.1.240411062 → 0.1.250801002
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/package.json +1 -1
- package/src/components/Alert.vue +1 -1
- package/src/components/Button.vue +1 -1
- package/src/components/Confirm.vue +5 -5
- package/src/components/ContextMenu.vue +3 -3
- package/src/components/HTMLEditor.vue +5 -4
- package/src/components/List.vue +6 -3
- package/src/components/MarkdownEdit.vue +123 -0
- package/src/components/Modal.vue +1 -1
- package/src/components/MultilineText.vue +1 -4
- package/src/components/Textarea.vue +0 -3
- package/src/components/TreeMenu.vue +2 -2
- package/src/components/TreeViewItem2.vue +1 -1
- package/src/components/VirtualTable.vue +3 -3
- package/src/index.js +1 -0
- package/src/themes/default/index.js +16 -24
- package/src/widgets/Dashboard/DataTableSetting.vue +0 -4
- package/src/widgets/Dashboard/VirtualTableSetting.vue +0 -4
- package/src/widgets/Dashboard.vue +0 -4
- package/src/widgets/PresetBar.vue +1 -5
- package/src/widgets/PresetBarPivot.vue +0 -4
package/package.json
CHANGED
package/src/components/Alert.vue
CHANGED
|
@@ -204,7 +204,7 @@ export default{
|
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
.alert>*{
|
|
207
|
-
@apply max-h-[60vh] overflow-y-auto bg-base-
|
|
207
|
+
@apply max-h-[60vh] overflow-y-auto bg-base-400 dark:bg-base-300 rounded-xl;
|
|
208
208
|
@apply border-[1px] border-text-50;
|
|
209
209
|
@apply min-w-[280px] max-w-[80vw] md:max-w-[480px];
|
|
210
210
|
}
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
20
|
<div class="mt-4 flex flex-row gap-2">
|
|
21
|
-
<Button ref="btnOK" @click="onConfirm" class="min-w-[88px]" tabindex="0">
|
|
21
|
+
<Button ref="btnOK" @click="onConfirm" class="min-w-[88px] text-lg" tabindex="0">
|
|
22
22
|
<strong class="px-4">
|
|
23
23
|
{{ buttonText[0] }}
|
|
24
24
|
</strong>
|
|
25
25
|
</Button>
|
|
26
|
-
<Button variant="minimal" @click="onDismiss" class="min-w-[88px] px-4 hover:text-primary">
|
|
26
|
+
<Button variant="minimal" @click="onDismiss" class="min-w-[88px] px-4 hover:text-primary text-lg">
|
|
27
27
|
{{ buttonText[1] }}
|
|
28
28
|
</Button>
|
|
29
29
|
</div>
|
|
@@ -122,7 +122,7 @@ export default{
|
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
.confirm>*{
|
|
125
|
-
@apply max-h-[60vh] overflow-y-auto bg-base-
|
|
125
|
+
@apply max-h-[60vh] overflow-y-auto bg-base-400 dark:bg-base-300 rounded-xl;
|
|
126
126
|
@apply border-[1px] border-text-50;
|
|
127
127
|
@apply min-w-[280px] max-w-[80vw] md:max-w-[480px];
|
|
128
128
|
}
|
|
@@ -132,7 +132,7 @@ export default{
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
.cont2{
|
|
135
|
-
@apply my-4 text-center flex-1 overflow-y-auto;
|
|
135
|
+
@apply my-4 text-center flex-1 overflow-y-auto px-6;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
.title{
|
|
@@ -140,7 +140,7 @@ export default{
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
.description{
|
|
143
|
-
@apply overflow-y-auto whitespace-pre-line text-center;
|
|
143
|
+
@apply overflow-y-auto whitespace-pre-line text-center text-lg;
|
|
144
144
|
overflow-wrap: break-word;
|
|
145
145
|
word-wrap: break-word;
|
|
146
146
|
-ms-word-break: break-all;
|
|
@@ -241,15 +241,15 @@ export default {
|
|
|
241
241
|
<style module>
|
|
242
242
|
|
|
243
243
|
.contextMenu{
|
|
244
|
-
@apply fixed bg-base-300 min-w-[150px] overflow-y-auto rounded-
|
|
245
|
-
@apply whitespace-nowrap shadow-2xl border-[1px] border-text-
|
|
244
|
+
@apply fixed bg-base-400 dark:bg-base-300 min-w-[150px] overflow-y-auto rounded-lg;
|
|
245
|
+
@apply whitespace-nowrap shadow-2xl border-[1px] border-text-50 mt-[1px];
|
|
246
246
|
z-index: 180;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
@media screen and (min-width: 640px){
|
|
250
250
|
|
|
251
251
|
.contextMenu{
|
|
252
|
-
@apply fixed min-w-[150px] overflow-y-auto
|
|
252
|
+
@apply fixed min-w-[150px] overflow-y-auto;
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div :class="$style.comp">
|
|
3
3
|
|
|
4
|
-
<div class="overflow-x-auto bg-
|
|
4
|
+
<div class="overflow-x-auto bg-base-400" :class="containerClass" v-if="!readonly">
|
|
5
5
|
<div class="flex flex-row">
|
|
6
6
|
<button class="p-3" type="button" @click="format('bold')">
|
|
7
7
|
<svg width="14" height="14" class="fill-text-400 hover:fill-primary" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z"/></svg>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<button class="p-3" type="button" @click="removeFormat">
|
|
31
31
|
<svg width="14" height="14" class="fill-text-400 hover:fill-primary" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>
|
|
32
32
|
</button>
|
|
33
|
-
<button @click="createTable">Table</button>
|
|
33
|
+
<button @click="createTable" class="text-text-400">Table</button>
|
|
34
34
|
</div>
|
|
35
35
|
</div>
|
|
36
36
|
|
|
@@ -382,6 +382,7 @@ export default{
|
|
|
382
382
|
</tr>
|
|
383
383
|
</table>`);
|
|
384
384
|
|
|
385
|
+
this.$refs.tableModal.close()
|
|
385
386
|
},
|
|
386
387
|
|
|
387
388
|
removeFormat(){
|
|
@@ -553,11 +554,11 @@ export default{
|
|
|
553
554
|
<style module>
|
|
554
555
|
|
|
555
556
|
.comp{
|
|
556
|
-
@apply flex-1 flex flex-col border-[1px] border-text-200 rounded-lg;
|
|
557
|
+
@apply flex-1 flex flex-col border-[1px] border-text-200 rounded-lg overflow-hidden;
|
|
557
558
|
}
|
|
558
559
|
|
|
559
560
|
.comp article {
|
|
560
|
-
@apply min-h-[var(--h-cp)] w-full outline-none p-
|
|
561
|
+
@apply min-h-[var(--h-cp)] w-full outline-none p-3 leading-6 bg-base-300;
|
|
561
562
|
@apply flex-1 overflow-auto;
|
|
562
563
|
}
|
|
563
564
|
|
package/src/components/List.vue
CHANGED
|
@@ -88,14 +88,17 @@
|
|
|
88
88
|
</div>
|
|
89
89
|
|
|
90
90
|
<div class="flex flex-row gap-2 gap-1" v-if="Boolean(toolbar)">
|
|
91
|
-
<Textbox v-if="canSearch"
|
|
91
|
+
<Textbox v-if="canSearch"
|
|
92
|
+
class="flex-1 md:w-[240px] bg-base-400 border-text-50"
|
|
93
|
+
placeholder="Search..."
|
|
94
|
+
clearable="1"
|
|
92
95
|
maxlength="100"
|
|
93
96
|
v-model="preset.search"
|
|
94
97
|
@clear="delete preset.search; load()"
|
|
95
98
|
@keyup.enter="load">
|
|
96
99
|
<template #start>
|
|
97
100
|
<div class="p-2 pr-0">
|
|
98
|
-
<svg width="
|
|
101
|
+
<svg width="14" height="14" class="fill-text-300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M504.1 471l-134-134C399.1 301.5 415.1 256.8 415.1 208c0-114.9-93.13-208-208-208S-.0002 93.13-.0002 208S93.12 416 207.1 416c48.79 0 93.55-16.91 129-45.04l134 134C475.7 509.7 481.9 512 488 512s12.28-2.344 16.97-7.031C514.3 495.6 514.3 480.4 504.1 471zM48 208c0-88.22 71.78-160 160-160s160 71.78 160 160s-71.78 160-160 160S48 296.2 48 208z"/></svg>
|
|
99
102
|
</div>
|
|
100
103
|
</template>
|
|
101
104
|
</Textbox>
|
|
@@ -133,7 +136,7 @@
|
|
|
133
136
|
<VirtualTable
|
|
134
137
|
ref="table"
|
|
135
138
|
:columns="columns"
|
|
136
|
-
class="flex-1 bg-base-
|
|
139
|
+
class="flex-1 bg-base-400"
|
|
137
140
|
:items="dataItems"
|
|
138
141
|
:enumCache="enumCache"
|
|
139
142
|
:freeze-left="freezeLeft"
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex flex-col divide-y divide-text-50 relative">
|
|
3
|
+
<div class="flex flex-row divide-x divide-text-50 px-3">
|
|
4
|
+
<button type="button" class="p-3" @click="addMarkdown('table')">
|
|
5
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M448 32H64.05C28.7 32 .0492 60.65 .0492 96v320c0 35.35 28.65 64 64 64h383.1c35.35 0 64-28.65 64-64V96C512 60.65 483.4 32 448 32zM224 416H64v-96h160V416zM224 256H64V160h160V256zM448 416h-160v-96h160V416zM448 256h-160V160h160V256z"/></svg>
|
|
6
|
+
</button>
|
|
7
|
+
<button type="button" class="p-3" @click="addMarkdown('unordered-list')">
|
|
8
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M48 208C21.49 208 0 229.5 0 256s21.49 48 48 48S96 282.5 96 256S74.51 208 48 208zM48 368C21.49 368 0 389.5 0 416s21.49 48 48 48S96 442.5 96 416S74.51 368 48 368zM48 48C21.49 48 0 69.49 0 96s21.49 48 48 48S96 122.5 96 96S74.51 48 48 48zM192 128h288c17.67 0 32-14.33 32-31.1S497.7 64 480 64H192C174.3 64 160 78.33 160 95.1S174.3 128 192 128zM480 224H192C174.3 224 160 238.3 160 256s14.33 32 32 32h288c17.67 0 32-14.33 32-32S497.7 224 480 224zM480 384H192c-17.67 0-32 14.33-32 32s14.33 32 32 32h288c17.67 0 32-14.33 32-32S497.7 384 480 384z"/></svg>
|
|
9
|
+
</button>
|
|
10
|
+
<button type="button" class="p-3" @click="addMarkdown('ordered-list')">
|
|
11
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M480 224H224C206.3 224 192 238.3 192 256s14.33 32 32 32h256c17.67 0 32-14.33 32-32S497.7 224 480 224zM224 128h256c17.67 0 32-14.33 32-32s-14.33-32-32-32H224C206.3 64 192 78.33 192 96S206.3 128 224 128zM480 384H224c-17.67 0-32 14.33-32 32s14.33 32 32 32h256c17.67 0 32-14.33 32-32S497.7 384 480 384zM40 224h80C133.3 224 144 213.3 144 199.1s-10.75-24-24-24h-16V55.99c0-8.594-4.594-16.53-12.06-20.81C84.5 30.91 75.28 30.95 67.91 35.25l-32 18.67C24.47 60.61 20.59 75.3 27.28 86.75C33.13 96.85 45.31 101.1 56 97.29v78.71h-16c-13.25 0-24 10.75-24 24S26.75 224 40 224zM136.3 432h-49.44l36.4-32.48c29.92-25.83 33.54-71.36 8.049-101.5C118.6 282.1 100.7 273.8 80.89 272.2C61.27 270.7 41.93 276.9 26.92 289.9L14.42 300.7c-10.04 8.656-11.17 23.81-2.527 33.86c8.672 10.06 23.8 11.14 33.78 2.516l12.51-10.79c5.24-4.531 12.1-6.672 18.96-6.156c6.926 .5469 13.2 3.734 17.62 8.969c8.703 10.28 7.486 25.26-3.057 34.36l-83.7 74.67c-7.424 6.625-9.982 17.16-6.457 26.47C5.119 473.8 14.01 480 23.96 480h112.4c13.23 0 23.96-10.75 23.96-23.1C160.3 442.8 149.5 432 136.3 432z"/></svg>
|
|
12
|
+
</button>
|
|
13
|
+
<button type="button" class="p-3" @click="addMarkdown('bold')">
|
|
14
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M321.1 242.4C340.1 220.1 352 191.6 352 160c0-70.59-57.42-128-128-128L32 32.01c-17.67 0-32 14.31-32 32s14.33 32 32 32h16v320H32c-17.67 0-32 14.31-32 32s14.33 32 32 32h224c70.58 0 128-57.41 128-128C384 305.3 358.6 264.8 321.1 242.4zM112 96.01H224c35.3 0 64 28.72 64 64s-28.7 64-64 64H112V96.01zM256 416H112v-128H256c35.3 0 64 28.71 64 63.1S291.3 416 256 416z"/></svg>
|
|
15
|
+
</button>
|
|
16
|
+
<button type="button" class="p-3" @click="addMarkdown('italic')">
|
|
17
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M384 64.01c0 17.69-14.31 32-32 32h-58.67l-133.3 320H224c17.69 0 32 14.31 32 32s-14.31 32-32 32H32c-17.69 0-32-14.31-32-32s14.31-32 32-32h58.67l133.3-320H160c-17.69 0-32-14.31-32-32s14.31-32 32-32h192C369.7 32.01 384 46.33 384 64.01z"/></svg>
|
|
18
|
+
</button>
|
|
19
|
+
<button type="button" class="p-3" @click="addMarkdown('heading1')">
|
|
20
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M544 384h-32v-288c0-11.09-5.75-21.38-15.17-27.22c-9.438-5.844-21.23-6.344-31.14-1.406l-64 32c-15.81 7.906-22.22 27.12-14.31 42.94c7.906 15.78 27.09 22.16 42.94 14.31L448 147.8v236.2h-32c-17.67 0-32 14.31-32 32s14.33 32 32 32h128c17.67 0 32-14.31 32-32S561.7 384 544 384zM288 64.01c-17.67 0-32 14.31-32 32v128H64v-128c0-17.69-14.33-32-32-32s-32 14.31-32 32v320c0 17.69 14.33 32 32 32s32-14.31 32-32v-128h192v128c0 17.69 14.33 32 32 32s32-14.31 32-32v-320C320 78.33 305.7 64.01 288 64.01z"/></svg>
|
|
21
|
+
</button>
|
|
22
|
+
<button type="button" class="p-3" @click="addMarkdown('heading2')">
|
|
23
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M608 384h-126l100.4-92.5c51.84-47.75 56.81-127.3 11.3-181.2c-22.75-26.94-54.64-43.28-89.8-46.09c-35.09-2.938-69.25 8.344-95.97 31.38l-25.09 21.59c-13.39 11.53-14.91 31.72-3.375 45.13c11.55 13.38 31.72 14.94 45.13 3.375l25.09-21.59c13.69-11.78 31.05-17.66 49.16-16.06c18 1.438 34.33 9.812 45.98 23.59c23.31 27.56 20.77 68.34-5.781 92.81l-160.7 148c-9.703 8.938-12.94 22.88-8.141 35.16S386.8 448 400 448H608c17.67 0 32-14.31 32-32S625.7 384 608 384zM288 64.01c-17.67 0-32 14.31-32 32v128H64v-128c0-17.69-14.33-32-32-32s-32 14.31-32 32v320c0 17.69 14.33 32 32 32s32-14.31 32-32v-128h192v128c0 17.69 14.33 32 32 32s32-14.31 32-32v-320C320 78.33 305.7 64.01 288 64.01z"/></svg>
|
|
24
|
+
</button>
|
|
25
|
+
<button type="button" class="p-3" @click="addMarkdown('heading3')">
|
|
26
|
+
<svg width="13" height="13" class="fill-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.0.0-alpha3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M523.9 211.7l91.03-93.38c8.984-9.219 11.58-22.91 6.578-34.78C616.5 71.73 604.9 64.01 592 64.01l-192-.0778c-17.67 0-32 14.39-32 32.08s14.33 32 32 32h116.1l-91.02 93.34c-8.984 9.219-11.58 22.91-6.578 34.78C423.5 267.1 435.1 275.7 448 275.7h73.84C551.7 275.7 576 299.1 576 329.9s-24.3 54.16-54.16 54.16h-62.53c-13.16 0-24.8-8.375-28.95-20.88c-5.578-16.75-23.69-25.88-40.48-20.22c-16.77 5.594-25.83 23.72-20.23 40.47c12.89 38.66 48.94 64.63 89.67 64.63h62.53C587 448 640 395 640 329.9C640 265.4 588.1 212.8 523.9 211.7zM288 64.01c-17.67 0-32 14.31-32 32v128H64v-128c0-17.69-14.33-32-32-32s-32 14.31-32 32v320c0 17.69 14.33 32 32 32s32-14.31 32-32v-128h192v128c0 17.69 14.33 32 32 32s32-14.31 32-32v-320C320 78.33 305.7 64.01 288 64.01z"/></svg>
|
|
27
|
+
</button>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<textarea ref="textarea" class="flex-1 outline-none p-6 bg-transparent" :value="modelValue" />
|
|
31
|
+
</div>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script>
|
|
35
|
+
|
|
36
|
+
export default{
|
|
37
|
+
|
|
38
|
+
props: {
|
|
39
|
+
|
|
40
|
+
modelValue: String
|
|
41
|
+
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
methods: {
|
|
45
|
+
|
|
46
|
+
addMarkdown(type){
|
|
47
|
+
let content = ''
|
|
48
|
+
|
|
49
|
+
switch(type){
|
|
50
|
+
|
|
51
|
+
case 'table':
|
|
52
|
+
content = `| Header 1 | Header 2 |\n| -------- | -------- |\n| Cell 1 | Cell 2 |\n| Cell 3 | Cell 4 |\n`;
|
|
53
|
+
break;
|
|
54
|
+
|
|
55
|
+
case 'unordered-list':
|
|
56
|
+
content = `- Item 1\n- Item 2\n- Item 3\n`;
|
|
57
|
+
break;
|
|
58
|
+
|
|
59
|
+
case 'ordered-list':
|
|
60
|
+
content = `1. Item 1\n2. Item 2\n3. Item 3\n`;
|
|
61
|
+
break;
|
|
62
|
+
|
|
63
|
+
case 'bold':
|
|
64
|
+
content = `**Bold Text**`;
|
|
65
|
+
break;
|
|
66
|
+
|
|
67
|
+
case 'italic':
|
|
68
|
+
content = `*Italic Text*`;
|
|
69
|
+
break;
|
|
70
|
+
|
|
71
|
+
case 'heading1':
|
|
72
|
+
content = `# Heading 1\n`;
|
|
73
|
+
break;
|
|
74
|
+
|
|
75
|
+
case 'heading2':
|
|
76
|
+
content = `## Heading 2\n`;
|
|
77
|
+
break;
|
|
78
|
+
|
|
79
|
+
case 'heading3':
|
|
80
|
+
content = `### Heading 3\n`;
|
|
81
|
+
break;
|
|
82
|
+
|
|
83
|
+
case 'line':
|
|
84
|
+
content = `---\n`;
|
|
85
|
+
break;
|
|
86
|
+
|
|
87
|
+
case 'component-template-1':
|
|
88
|
+
content = `#### ⏰ TLDR;
|
|
89
|
+
\`\`\`html
|
|
90
|
+
|
|
91
|
+
\`\`\`
|
|
92
|
+
|
|
93
|
+
\`\`\`javascript
|
|
94
|
+
|
|
95
|
+
\`\`\`
|
|
96
|
+
---
|
|
97
|
+
### Properties
|
|
98
|
+
| Key | Type | Required | Remark |
|
|
99
|
+
| -------- | -------- | -------- | -------- |
|
|
100
|
+
### Events
|
|
101
|
+
| Event | Arguments | Remark |
|
|
102
|
+
| -------- | -------- | -------- |
|
|
103
|
+
`
|
|
104
|
+
break
|
|
105
|
+
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
this.$emit('update:modelValue', this.modelValue + content)
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
</script>
|
|
116
|
+
|
|
117
|
+
<style module>
|
|
118
|
+
|
|
119
|
+
.comp{
|
|
120
|
+
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
</style>
|
package/src/components/Modal.vue
CHANGED
|
@@ -358,7 +358,7 @@ export default{
|
|
|
358
358
|
|
|
359
359
|
.modal{
|
|
360
360
|
@apply fixed;
|
|
361
|
-
@apply bg-base-
|
|
361
|
+
@apply bg-base-400 dark:bg-base-300 w-full;
|
|
362
362
|
@apply border-[1px] border-text-50 flex max-h-[90vh] max-w-full;
|
|
363
363
|
@apply rounded-xl overflow-hidden transition-all;
|
|
364
364
|
z-index: 101;
|
|
@@ -137,7 +137,7 @@ export default{
|
|
|
137
137
|
<style module>
|
|
138
138
|
|
|
139
139
|
.textarea{
|
|
140
|
-
@apply flex items-start border-[1px] border-text-200 bg-base-
|
|
140
|
+
@apply flex items-start border-[1px] border-text-200 bg-base-400 rounded-lg overflow-hidden;
|
|
141
141
|
}
|
|
142
142
|
.textarea textarea{
|
|
143
143
|
@apply flex-1 outline-none p-2 bg-transparent resize-none;
|
|
@@ -148,9 +148,6 @@ export default{
|
|
|
148
148
|
.textarea>textarea::-webkit-scrollbar{
|
|
149
149
|
display: none;
|
|
150
150
|
}
|
|
151
|
-
.textarea>textarea::placeholder{
|
|
152
|
-
@apply text-text-200;
|
|
153
|
-
}
|
|
154
151
|
.textarea.readonly{
|
|
155
152
|
@apply bg-text-50;
|
|
156
153
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
{{ menu.text }}
|
|
17
17
|
</router-link>
|
|
18
18
|
|
|
19
|
-
<ContextMenu class="rounded-none"
|
|
19
|
+
<ContextMenu class="rounded-none bg-base-300"
|
|
20
20
|
@dismiss="submenu1State = null"
|
|
21
21
|
:ref="`menu-${index}`">
|
|
22
22
|
<div class="divide-y divide-text-50 min-w-[200px] flex flex-col">
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
{{ submenu.text }}
|
|
42
42
|
</router-link>
|
|
43
43
|
|
|
44
|
-
<ContextMenu :ref="`menu-${index}-${submenuIndex}`" class="rounded-none" position="right">
|
|
44
|
+
<ContextMenu :ref="`menu-${index}-${submenuIndex}`" class="rounded-none bg-base-300" position="right">
|
|
45
45
|
<div class="divide-y divide-text-50 min-w-[200px] flex flex-col">
|
|
46
46
|
<div v-for="(submenu2, submenuIndex) in submenu.items" class="flex-1 flex flex-col">
|
|
47
47
|
<div v-if="submenu2.items" class="flex flex-col menu-item">
|
|
@@ -848,7 +848,7 @@ export default{
|
|
|
848
848
|
<style module>
|
|
849
849
|
|
|
850
850
|
.comp{
|
|
851
|
-
@apply flex flex-col overflow-hidden
|
|
851
|
+
@apply flex flex-col overflow-hidden;
|
|
852
852
|
@apply border-[1px] border-text-50 rounded-lg;
|
|
853
853
|
}
|
|
854
854
|
|
|
@@ -898,11 +898,11 @@ export default{
|
|
|
898
898
|
}
|
|
899
899
|
|
|
900
900
|
.table tbody tr.trHover{
|
|
901
|
-
@apply bg-
|
|
901
|
+
@apply bg-text-50;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
904
|
.table tbody tr.trSelected{
|
|
905
|
-
@apply bg-
|
|
905
|
+
@apply bg-text-100;
|
|
906
906
|
}
|
|
907
907
|
|
|
908
908
|
.highlight{
|
package/src/index.js
CHANGED
|
@@ -634,6 +634,7 @@ export default{
|
|
|
634
634
|
app.component('Checkout', defineAsyncComponent(() => import("./components/Checkout.vue")))
|
|
635
635
|
app.component('CheckoutSetting', defineAsyncComponent(() => import("./widgets/CheckoutSetting.vue")))
|
|
636
636
|
app.component('TreeMenu', defineAsyncComponent(() => import("./components/TreeMenu.vue")))
|
|
637
|
+
app.component('MarkdownEdit', defineAsyncComponent(() => import("./components/MarkdownEdit.vue")))
|
|
637
638
|
}
|
|
638
639
|
|
|
639
640
|
}
|
|
@@ -17,13 +17,13 @@ const plugin = Plugin(function({ addBase, addUtilities, config, theme }) {
|
|
|
17
17
|
"--h-cp-lg": '3.6rem',
|
|
18
18
|
|
|
19
19
|
'--base-50': '235, 237, 240',
|
|
20
|
-
'--base-300': '
|
|
21
|
-
'--base-400': '
|
|
22
|
-
'--base-500': '
|
|
20
|
+
'--base-300': '239, 240, 241',
|
|
21
|
+
'--base-400': '249, 250, 251',
|
|
22
|
+
'--base-500': '255, 255, 255',
|
|
23
23
|
'--base': '255, 255, 255',
|
|
24
24
|
|
|
25
|
-
"--text-50": '
|
|
26
|
-
"--text-100": '
|
|
25
|
+
"--text-50": '233, 233, 233',
|
|
26
|
+
"--text-100": '226, 226, 226',
|
|
27
27
|
"--text-200": '217, 217, 217',
|
|
28
28
|
"--text-300": '176, 176, 176',
|
|
29
29
|
"--text-400": '116, 116, 116',
|
|
@@ -58,28 +58,20 @@ const plugin = Plugin(function({ addBase, addUtilities, config, theme }) {
|
|
|
58
58
|
'--whatsapp-500': '0, 93, 75',
|
|
59
59
|
|
|
60
60
|
'--facebook-100': '205, 215, 231',
|
|
61
|
-
'--facebook-500': '8, 102, 255'
|
|
62
|
-
|
|
63
|
-
'--panel-none': 'transparent',
|
|
64
|
-
'--panel-300': 'rgb(235, 237, 240)',
|
|
65
|
-
'--panel-400': 'rgb(245, 247, 250)',
|
|
66
|
-
'--panel-500': 'rgb(255, 255, 255)',
|
|
61
|
+
'--facebook-500': '8, 102, 255'
|
|
67
62
|
},
|
|
68
63
|
|
|
69
64
|
'html[data-theme="dark"], .html[data-theme="dark"]': {
|
|
70
65
|
|
|
71
|
-
"--base-
|
|
72
|
-
"--base-
|
|
73
|
-
"--base-
|
|
74
|
-
|
|
75
|
-
"--
|
|
76
|
-
|
|
77
|
-
"--text-
|
|
78
|
-
"--text-
|
|
79
|
-
"--text-
|
|
80
|
-
"--text-300": '87, 87, 87',
|
|
81
|
-
"--text-400": '191, 193, 197',
|
|
82
|
-
"--text-500": '191, 193, 197',
|
|
66
|
+
"--base-300": '12, 13, 14',
|
|
67
|
+
"--base-400": '17, 21, 28',
|
|
68
|
+
"--base-500": '27, 31, 39',
|
|
69
|
+
|
|
70
|
+
"--text-50": '28, 34, 41',
|
|
71
|
+
"--text-100": '36, 40, 47',
|
|
72
|
+
"--text-200": '65, 67, 69',
|
|
73
|
+
"--text-300": '81, 82, 83',
|
|
74
|
+
"--text-500": '234, 234, 236',
|
|
83
75
|
"--text": '234, 234, 236',
|
|
84
76
|
|
|
85
77
|
"--primary-50": '24, 34, 51',
|
|
@@ -109,7 +101,7 @@ const plugin = Plugin(function({ addBase, addUtilities, config, theme }) {
|
|
|
109
101
|
'text-rendering': 'optimizeLegibility',
|
|
110
102
|
'fontSize': '15px',
|
|
111
103
|
'touchAction': "pan-x pan-y",
|
|
112
|
-
'backgroundColor': 'rgb(var(--base-
|
|
104
|
+
'backgroundColor': 'rgb(var(--base-300))'
|
|
113
105
|
},
|
|
114
106
|
|
|
115
107
|
'@media screen and (orientation: portrait)': {
|
|
@@ -1843,10 +1843,6 @@ export default {
|
|
|
1843
1843
|
@apply hover:border-primary-300 hover:bg-primary-100;
|
|
1844
1844
|
}
|
|
1845
1845
|
|
|
1846
|
-
.columnTextbox input::placeholder {
|
|
1847
|
-
@apply text-text;
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
1846
|
.listMenu{
|
|
1851
1847
|
@apply flex flex-row items-center gap-1 hover:bg-text-50 px-3 rounded-xl;
|
|
1852
1848
|
}
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
<slot name="toolbar" :edit="true"></slot>
|
|
159
159
|
</div>
|
|
160
160
|
|
|
161
|
-
<div class="flex items-center justify-center border-b-[1px] border-text-
|
|
161
|
+
<div class="flex items-center justify-center border-b-[1px] border-text-50 px-3">
|
|
162
162
|
<Tabs :items="tabItems[config.type ?? 'list']" v-model="configParams.presetBarTabIndex" />
|
|
163
163
|
</div>
|
|
164
164
|
|
|
@@ -963,10 +963,6 @@ export default{
|
|
|
963
963
|
@apply flex flex-col relative;
|
|
964
964
|
}
|
|
965
965
|
|
|
966
|
-
.columnTextbox input::placeholder{
|
|
967
|
-
@apply text-text;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
966
|
.presetBtn{
|
|
971
967
|
@apply flex flex-row items-center gap-3 px-3 p-2 hover:bg-text-50;
|
|
972
968
|
}
|