clickgo 5.2.0 → 5.4.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/app/demo.cga +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/form.cgc +0 -0
- package/dist/control/nav.cgc +0 -0
- package/dist/global.css +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +2 -0
- package/dist/theme/modern.cgt +0 -0
- package/doc/clickgo-rag.md +168 -139
- package/package.json +1 -1
package/dist/lib/control.d.ts
CHANGED
|
@@ -200,12 +200,14 @@ export interface ICustomEvent {
|
|
|
200
200
|
}
|
|
201
201
|
export interface ICheckChangeEvent extends ICustomEvent {
|
|
202
202
|
'detail': {
|
|
203
|
+
'name': string;
|
|
203
204
|
'value': boolean;
|
|
204
205
|
'indeterminate': boolean;
|
|
205
206
|
};
|
|
206
207
|
}
|
|
207
208
|
export interface ICheckChangedEvent {
|
|
208
209
|
'detail': {
|
|
210
|
+
'name': string;
|
|
209
211
|
'value': boolean;
|
|
210
212
|
'indeterminate': boolean;
|
|
211
213
|
};
|
|
Binary file
|