@kengic/vue 0.31.13 → 0.31.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.
@@ -273,6 +273,13 @@ export declare class KgUtil {
273
273
  * @param fid 界面标识.
274
274
  */
275
275
  static getCloneFromFid(fid: string | null | undefined): string;
276
+ /**
277
+ * 是否是克隆的界面标识.
278
+ * <p>如果界面标识的格式为 `CLONE[AAA]TO[BBB]`, 表示这个界面的真实的界面标识为 BBB, 它的所有配置数据要从 AAA 这个界面克隆而来, 该方法会解析并返回这个 AAA.</p>
279
+ *
280
+ * @param fid 界面标识.
281
+ */
282
+ static isCloneFid(fid: string | null | undefined): boolean;
276
283
  /**
277
284
  * <p>获取查询请求相关的请求头.</p>
278
285
  * <p>根据查询条件拼接 SQL 语句片段.</p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.31.13",
3
+ "version": "0.31.14",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build--development": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",