g-ui-web 1.4.61 → 1.4.63
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/lib/floating-ai/index.d.ts +15 -0
- package/lib/floating-ai/src/index.vue.d.ts +9 -0
- package/lib/g-ui-web.cjs +2 -2
- package/lib/g-ui-web.iife.js +2 -2
- package/lib/g-ui-web.iife.js.gz +0 -0
- package/lib/g-ui-web.js +12 -7
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +2 -2
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/utils/DataSource/DataProvider.d.ts +1 -1
- package/package.json +1 -1
package/lib/style.css.gz
CHANGED
|
Binary file
|
|
@@ -126,7 +126,7 @@ declare class DataSource {
|
|
|
126
126
|
/**
|
|
127
127
|
* 刷新数据(参数变更时重新请求,或手动更新数据)
|
|
128
128
|
* @param key 数据源标识
|
|
129
|
-
* @param paramsOrData
|
|
129
|
+
* @param paramsOrData 请求参数或直接更新的数据,支持特殊字段 _url 用于修改请求地址
|
|
130
130
|
* @param manual 是否手动更新本地数据(true: 直接更新本地数据,false: 从数据源加载)
|
|
131
131
|
*/
|
|
132
132
|
refreshData<T = any>(key: string, paramsOrData?: Record<string, any> | T, manual?: boolean): Promise<T>;
|