clickgo 3.15.13 → 3.15.14
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.xml +6 -0
- package/dist/app/demo/form/main.xml +1 -1
- package/dist/clickgo.js +1 -1
- package/dist/clickgo.ts +1 -1
- package/dist/control/common.cgc +0 -0
- package/dist/control/drawer.cgc +0 -0
- package/dist/control/table.cgc +0 -0
- package/dist/lib/control.ts +1 -1
- 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.7/dist/loader.min.js?path=index&npm={'clickgo':'3.15.
|
|
28
|
+
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.7/dist/loader.min.js?path=index&npm={'clickgo':'3.15.14'}"></script>
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
**index.js**
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
<button @click="openForm('cempty')">Empty</button>
|
|
10
10
|
</layout>
|
|
11
11
|
<layout gutter="10">
|
|
12
|
+
<button @click="openForm('cbutton')">Button + Bgroup</button>
|
|
12
13
|
<button @click="openForm('cimg')">Img</button>
|
|
13
|
-
<button @click="openForm('cbutton')">Button</button>
|
|
14
14
|
<button @click="openForm('ctext')">Text</button>
|
|
15
15
|
</layout>
|
|
16
16
|
<layout gutter="10">
|
package/dist/clickgo.js
CHANGED
package/dist/clickgo.ts
CHANGED
package/dist/control/common.cgc
CHANGED
|
Binary file
|
package/dist/control/drawer.cgc
CHANGED
|
Binary file
|
package/dist/control/table.cgc
CHANGED
|
Binary file
|
package/dist/lib/control.ts
CHANGED
|
@@ -298,7 +298,7 @@ export abstract class AbstractControl {
|
|
|
298
298
|
/**
|
|
299
299
|
* --- 获取上层控件 ---
|
|
300
300
|
*/
|
|
301
|
-
public get parent(): AbstractControl & form.AbstractForm {
|
|
301
|
+
public get parent(): AbstractControl & form.AbstractForm & Record<string, any> {
|
|
302
302
|
return (this as any).$parent;
|
|
303
303
|
}
|
|
304
304
|
|