@kengic/vue 0.28.1-beta.8 → 0.28.1-beta.8003

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.
@@ -614,6 +614,11 @@ export interface IKgVarSubmitConfigProperties {
614
614
  * <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
615
615
  */
616
616
  export interface IKgVarButtonProperties {
617
+ /**
618
+ * <p>执行成功之后--重新请求表格数据时, 是否请求第一页的数据. 默认为 true, 如果为 false 表示请求当前页的数据.</p>
619
+ * <p>如果是「更新按钮」, 则默认为 false, 即更新成功之后默认查询当前页的数据.</p>
620
+ */
621
+ $AfterOk$isRequestFirstPage?: boolean;
617
622
  }
618
623
  /**
619
624
  * <p>额外的配置属性. 对应 {@link VarButtonConfig#props} 字段.</p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.1-beta.8",
3
+ "version": "0.28.1-beta.8003",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
@@ -23,7 +23,7 @@
23
23
  "bump:patch": "npm run use-node && tsx script/bump.ts patch",
24
24
  "bump:beta": "npm run use-node && tsx script/bump.ts beta",
25
25
  "---- ---------------------------------------------": "",
26
- "publish:npm": "npm run use-node && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"
26
+ "publish:npm": "npm run use-node && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public --tag latest"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "vue": "3.2.43"