@indfnd/common-mobile 1.0.26 → 1.0.27
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 +13 -0
- package/dist/ind-common-mobile.es.js +7 -2
- package/dist/ind-common-mobile.umd.cjs +7 -7
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/src/styles/variables/theme/emerald-green/common.less +36 -1
- package/src/styles/variables/theme/gleam-golden/common.less +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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.0.27](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.26...v1.0.27) (2026-01-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 文件上传上下文兼容湖北 ([92aecfa](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/92aecfad6bfc59563ac3d4e59e55018213041f07))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* 更新 ([9f4e142](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/9f4e142c192619079cc199a8c4cefc2f62ef8ba6))
|
|
16
|
+
* 更新 ([20c996b](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/20c996bbdd668232f6072b6eb42c725352128f96))
|
|
17
|
+
|
|
5
18
|
### [1.0.26](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.25...v1.0.26) (2026-01-23)
|
|
6
19
|
|
|
7
20
|
### [1.0.25](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.24...v1.0.25) (2026-01-23)
|
|
@@ -3,7 +3,7 @@ import { getQuarterNum, getHalfYearNum, formatDate, useConfig, getLocalStorage,
|
|
|
3
3
|
import Vue$1 from "vue";
|
|
4
4
|
import { DropdownMenu as DropdownMenu$1, DropdownItem as DropdownItem$1, Message, LoadingBar, Spin } from "view-design";
|
|
5
5
|
const name$1 = "@indfnd/common-mobile";
|
|
6
|
-
const version$2 = "1.0.
|
|
6
|
+
const version$2 = "1.0.26";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -29787,7 +29787,7 @@ const __vue2_script$1 = {
|
|
|
29787
29787
|
},
|
|
29788
29788
|
padding: {
|
|
29789
29789
|
type: String,
|
|
29790
|
-
default: "
|
|
29790
|
+
default: "10px 10px 0px 10px"
|
|
29791
29791
|
},
|
|
29792
29792
|
margin: {
|
|
29793
29793
|
type: String,
|
|
@@ -32151,6 +32151,11 @@ const install = function(Vue2, opts = { theme: "" }) {
|
|
|
32151
32151
|
}
|
|
32152
32152
|
Vue2.prototype.$config = _.merge({}, Vue2.prototype.$config || {}, ret);
|
|
32153
32153
|
console.log("\u7CFB\u7EDF\u914D\u7F6E\u5DF2\u52A0\u8F7D", Vue2.prototype.$config);
|
|
32154
|
+
setTimeout(() => {
|
|
32155
|
+
if (ret.systemDefaultConfig.changeUI == "1") {
|
|
32156
|
+
doChangeTheme(theme + " " + ret.systemDefaultConfig.theme);
|
|
32157
|
+
}
|
|
32158
|
+
}, 0);
|
|
32154
32159
|
} catch (error) {
|
|
32155
32160
|
console.error("\u89E3\u6790 settingInfo \u5931\u8D25:", error);
|
|
32156
32161
|
}
|