@indfnd/common 1.0.128 → 1.1.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.1.0](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.0.128...v1.1.0) (2025-08-29)
6
+
5
7
  ### [1.0.128](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.0.127...v1.0.128) (2025-08-27)
6
8
 
7
9
  ### [1.0.127](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.0.126...v1.0.127) (2025-08-27)
@@ -5460,7 +5460,7 @@ var lodash = { exports: {} };
5460
5460
  })(lodash, lodash.exports);
5461
5461
  var _ = lodash.exports;
5462
5462
  const name$1 = "@indfnd/common";
5463
- const version = "1.0.127";
5463
+ const version = "1.0.128";
5464
5464
  const author = "huxuetong";
5465
5465
  const publishConfig = {
5466
5466
  registry: "https://registry.npmjs.org/"
@@ -5504,7 +5504,7 @@ const scripts = {
5504
5504
  build: "yarn build:prod && yarn build:style",
5505
5505
  "type-check": "vue-tsc --noEmit -p tsconfig.check.json --composite false",
5506
5506
  dts: "vue-tsc -p tsconfig.types.json",
5507
- release: "node build/auto-build.js && yarn release-patch && git push --follow-tags && yarn re-publish",
5507
+ release: "node build/auto-build.js && yarn release-minor && git push --follow-tags && yarn re-publish",
5508
5508
  "release-major": "standard-version --release-as major",
5509
5509
  "release-minor": "standard-version --release-as minor",
5510
5510
  "release-patch": "standard-version --release-as patch",
@@ -49725,7 +49725,26 @@ var FormImpl = {
49725
49725
  }
49726
49726
  },
49727
49727
  [
49728
- this.scopedSlots[d.formKey] ? this.scopedSlots[d.formKey]({
49728
+ d.checkAble ? h("div", { style: { display: "flex" } }, [
49729
+ this.scopedSlots[d.formKey] ? this.scopedSlots[d.formKey]({
49730
+ form: this.form,
49731
+ item: d
49732
+ }) : itemInner,
49733
+ h(
49734
+ "Checkbox",
49735
+ {
49736
+ props: {
49737
+ label: d.formKey,
49738
+ value: d.checked
49739
+ },
49740
+ style: {
49741
+ flexShrink: 0,
49742
+ marginLeft: "10px"
49743
+ }
49744
+ },
49745
+ [d.checkLabel || "\u5206\u7EC4"]
49746
+ )
49747
+ ]) : this.scopedSlots[d.formKey] ? this.scopedSlots[d.formKey]({
49729
49748
  form: this.form,
49730
49749
  item: d
49731
49750
  }) : itemInner
@@ -72263,6 +72282,17 @@ const install = function(Vue2, opts = { theme: "" }) {
72263
72282
  if (!location.pathname.includes("scyxweb")) {
72264
72283
  initWps();
72265
72284
  }
72285
+ const addScript2 = function(src, cb) {
72286
+ var script = document.createElement("script");
72287
+ script.src = src;
72288
+ document.getElementsByTagName("head")[0].appendChild(script);
72289
+ script.onload = function() {
72290
+ if (!!cb) {
72291
+ cb();
72292
+ }
72293
+ };
72294
+ };
72295
+ addScript2(`//${location.host}/ind-uc-ext/vendor/exceljs.min.js`);
72266
72296
  const theme = opts.theme || getDefaultTheme();
72267
72297
  doChangeTheme(theme);
72268
72298
  if (!location.pathname.includes("scyxweb")) {