clickgo 3.16.2 → 3.16.3
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 +1 -1
- package/dist/app/demo/form/control/button/button.js +1 -0
- package/dist/app/demo/form/control/button/button.xml +3 -2
- package/dist/app/demo/form/control/dialog/dialog.js +1 -0
- package/dist/app/demo/form/control/dialog/dialog.xml +5 -2
- package/dist/app/demo/form/control/group/group.js +1 -0
- package/dist/app/demo/form/control/group/group.xml +2 -2
- package/dist/app/demo/form/control/table/table.js +1 -0
- package/dist/app/demo/form/control/table/table.xml +3 -0
- package/dist/clickgo.js +1 -1
- package/dist/clickgo.ts +1 -1
- package/dist/control/arteditor.cgc +0 -0
- package/dist/control/box.cgc +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/desc.cgc +0 -0
- package/dist/control/drawer.cgc +0 -0
- package/dist/control/echarts.cgc +0 -0
- package/dist/control/form.cgc +0 -0
- package/dist/control/iconview.cgc +0 -0
- package/dist/control/jodit.cgc +0 -0
- package/dist/control/map.cgc +0 -0
- package/dist/control/monaco.cgc +0 -0
- package/dist/control/nav.cgc +0 -0
- package/dist/control/page.cgc +0 -0
- package/dist/control/pdf.cgc +0 -0
- package/dist/control/property.cgc +0 -0
- package/dist/control/qrcode.cgc +0 -0
- package/dist/control/table.cgc +0 -0
- package/dist/control/task.cgc +0 -0
- package/dist/control/tuieditor.cgc +0 -0
- package/dist/control/tuiviewer.cgc +0 -0
- package/dist/control/xterm.cgc +0 -0
- package/dist/theme/blue.cgt +0 -0
- package/dist/theme/byterun.cgt +0 -0
- package/dist/theme/light.cgt +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Load the module loader first, and then load it using the module loader.
|
|
|
25
25
|
**index.html**
|
|
26
26
|
|
|
27
27
|
```html
|
|
28
|
-
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.8/dist/loader.min.js?path=index&npm={'clickgo':'3.16.
|
|
28
|
+
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.8/dist/loader.min.js?path=index&npm={'clickgo':'3.16.3'}"></script>
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
**index.js**
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
</layout>
|
|
112
112
|
<label>Other:</label>
|
|
113
113
|
<layout gutter="10" align-v="center">
|
|
114
|
-
<button size="xl">Size xl</button>
|
|
115
|
-
<button size="l" area="split">
|
|
114
|
+
<button size="xl" :sizeh="sizeh">Size xl</button>
|
|
115
|
+
<button size="l" area="split" :sizeh="sizeh">
|
|
116
116
|
Size l with pop
|
|
117
117
|
<template v-slot:pop>
|
|
118
118
|
<menulist>
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
</menulist>
|
|
121
121
|
</template>
|
|
122
122
|
</button>
|
|
123
|
+
<button @click="sizeh = !sizeh">{{sizeh ? '' : '!'}}sizeh</button>
|
|
123
124
|
</layout>
|
|
124
125
|
<label>Bgroup:</label>
|
|
125
126
|
<bgroup plain>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<layout direction="v" gutter="10" style="flex: 1; width: 0;">
|
|
3
3
|
<layout align-h="center" align-v="center" style="flex: 1;">
|
|
4
4
|
<form title="Title" :min="false" :max="false" :resize="false" width="auto" height="auto" direction="v">
|
|
5
|
-
<dialog @select="btn = $event" :buttons="buttons" :direction="message === 'lines' ? 'v' : 'h'" :width="width ? 300 : undefined" :height="width ? 300 : undefined">
|
|
5
|
+
<dialog @select="btn = $event" :buttons="buttons" :direction="message === 'lines' ? 'v' : 'h'" :width="width ? 300 : undefined" :height="width ? 300 : undefined" :padding="padding">
|
|
6
6
|
<template v-if="message === 'message'">Message</template>
|
|
7
7
|
<template v-else-if="message === 'buttons'"><button style="flex: 1;">Button1</button><button style="margin-left: 10px; flex: 1;">Button2</button></template>
|
|
8
8
|
<template v-else-if="message === 'lines'"><block v-for="i of 5">Line {{i}}.</block></template>
|
|
@@ -19,11 +19,14 @@
|
|
|
19
19
|
<button style="flex: 1;" @click="message = 'message'">Message</button>
|
|
20
20
|
<button style="flex: 1;" @click="message = 'long'">Long</button>
|
|
21
21
|
<button style="flex: 1;" @click="message = 'buttons'">Two buttons</button>
|
|
22
|
+
</layout>
|
|
23
|
+
<layout gutter="10">
|
|
24
|
+
<button style="flex: 1;" @click="padding = !padding">padding</button>
|
|
22
25
|
<button style="flex: 1;" @click="message = 'lines'">Multiple lines</button>
|
|
26
|
+
<button @click="width = !width">{{width ? '' : '!'}}w/h300</button>
|
|
23
27
|
</layout>
|
|
24
28
|
<layout gutter="10" align-v="center">
|
|
25
29
|
<label style="flex: 1;">You click: {{btn}}.</label>
|
|
26
|
-
<button @click="width = !width">{{width ? '' : '!'}}w/h300</button>
|
|
27
30
|
</layout>
|
|
28
31
|
</layout>
|
|
29
32
|
</form>
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
<label>123</label>
|
|
20
20
|
<title type="info">Info title</title>
|
|
21
21
|
<label>123</label>
|
|
22
|
-
<title type="warning">Warning title</title>
|
|
23
|
-
<label>123</label>
|
|
22
|
+
<title type="warning" v-model:arrow="warrow">Warning title</title>
|
|
23
|
+
<label v-if="warrow">123</label>
|
|
24
24
|
<title type="danger">Danger title</title>
|
|
25
25
|
<label>123</label>
|
|
26
26
|
</flow>
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
<check :modelValue="checkinfo.selected > 0" @change="onHeaderCheck" :indeterminate="checkinfo.selected > 0 && checkinfo.selected < checkinfo.total">index</check>
|
|
28
28
|
</layout>
|
|
29
29
|
</template>
|
|
30
|
+
<!-- top -->
|
|
31
|
+
<template v-if="top" v-slot:top="d">index: {{d.index}}</template>
|
|
30
32
|
<!-- bottom -->
|
|
31
33
|
<template v-if="bottom" v-slot:bottom="d">
|
|
32
34
|
<desc v-if="d.index !== 1" style="flex: 1;">
|
|
@@ -87,6 +89,7 @@
|
|
|
87
89
|
<select v-model="fixed" :data="['undefined', 'left', 'right', 'both']" style="flex: 1;"></select>
|
|
88
90
|
<label>mode</label>
|
|
89
91
|
<select v-model="mode" :data="['default','view', 'iview']" style="flex: 1;"></select>
|
|
92
|
+
<button style="flex: 1;" @click="top = !top">{{top ? '' : '!'}}top</button>
|
|
90
93
|
</layout>
|
|
91
94
|
</template>
|
|
92
95
|
<button v-else @click="load">Load</button>
|
package/dist/clickgo.js
CHANGED
package/dist/clickgo.ts
CHANGED
|
Binary file
|
package/dist/control/box.cgc
CHANGED
|
Binary file
|
package/dist/control/common.cgc
CHANGED
|
Binary file
|
package/dist/control/desc.cgc
CHANGED
|
Binary file
|
package/dist/control/drawer.cgc
CHANGED
|
Binary file
|
package/dist/control/echarts.cgc
CHANGED
|
Binary file
|
package/dist/control/form.cgc
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/control/jodit.cgc
CHANGED
|
Binary file
|
package/dist/control/map.cgc
CHANGED
|
Binary file
|
package/dist/control/monaco.cgc
CHANGED
|
Binary file
|
package/dist/control/nav.cgc
CHANGED
|
Binary file
|
package/dist/control/page.cgc
CHANGED
|
Binary file
|
package/dist/control/pdf.cgc
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/control/qrcode.cgc
CHANGED
|
Binary file
|
package/dist/control/table.cgc
CHANGED
|
Binary file
|
package/dist/control/task.cgc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/control/xterm.cgc
CHANGED
|
Binary file
|
package/dist/theme/blue.cgt
CHANGED
|
Binary file
|
package/dist/theme/byterun.cgt
CHANGED
|
Binary file
|
package/dist/theme/light.cgt
CHANGED
|
Binary file
|