@fmdevui/fm-dev 1.0.38 → 1.0.39

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.
@@ -15,3 +15,8 @@ export declare enum AccountTypeEnum {
15
15
  NUMBER_987 = 987,
16
16
  NUMBER_999 = 999
17
17
  }
18
+ export declare enum JobCreateTypeEnum {
19
+ NUMBER_0 = 0,
20
+ NUMBER_1 = 1,
21
+ NUMBER_2 = 2
22
+ }
package/es/index.mjs CHANGED
@@ -13,7 +13,7 @@ export { useBaseApi } from './packages/core/api/base/index.mjs';
13
13
  export { feature, useSysApi } from './packages/core/api/sys/index.mjs';
14
14
  export { useLoginApi } from './packages/core/api/login/index.mjs';
15
15
  export { accessTokenKey, axiosInstance, cancelAllRequest, cancelRequest, clearAccessTokens, clearTokens, decryptJWT, getJWTDate, getToken, refreshAccessTokenKey, request2, service, tansParams } from './packages/core/api/utils/request.mjs';
16
- export { AccountTypeEnum } from './packages/core/api/index.mjs';
16
+ export { AccountTypeEnum, JobCreateTypeEnum } from './packages/core/api/index.mjs';
17
17
  export { directive } from './packages/core/directive/index.mjs';
18
18
  export { getCountryCode, i18n, iso_3166_1_CountryList, languageList, mergMessage, setupI18n } from './packages/core/locales/index.mjs';
19
19
  export { pinia } from './packages/core/stores/inpinia.mjs';
@@ -13,5 +13,11 @@ var AccountTypeEnum = /* @__PURE__ */ ((AccountTypeEnum2) => {
13
13
  AccountTypeEnum2[AccountTypeEnum2["NUMBER_999"] = 999] = "NUMBER_999";
14
14
  return AccountTypeEnum2;
15
15
  })(AccountTypeEnum || {});
16
+ var JobCreateTypeEnum = /* @__PURE__ */ ((JobCreateTypeEnum2) => {
17
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_0"] = 0] = "NUMBER_0";
18
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_1"] = 1] = "NUMBER_1";
19
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_2"] = 2] = "NUMBER_2";
20
+ return JobCreateTypeEnum2;
21
+ })(JobCreateTypeEnum || {});
16
22
 
17
- export { AccountTypeEnum };
23
+ export { AccountTypeEnum, JobCreateTypeEnum };
@@ -1,7 +1,7 @@
1
1
  export { FmDragImg, FmNoticeBar, FmTransfer } from './ui/components/index.mjs';
2
2
  export { FmLogin } from './ui/login/index.mjs';
3
3
  export { NextLoading } from './ui/loading/index.mjs';
4
- export { AccountTypeEnum } from './api/index.mjs';
4
+ export { AccountTypeEnum, JobCreateTypeEnum } from './api/index.mjs';
5
5
  export { directive } from './directive/index.mjs';
6
6
  export { getCountryCode, i18n, iso_3166_1_CountryList, languageList, mergMessage, setupI18n } from './locales/index.mjs';
7
7
  import './stores/index.mjs';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! fm-dev v1.0.38 */
1
+ /*! fm-dev v1.0.39 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('crypto'), require('url'), require('http'), require('https'), require('util'), require('stream'), require('assert'), require('zlib'), require('element-plus')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', 'vue', 'crypto', 'url', 'http', 'https', 'util', 'stream', 'assert', 'zlib', 'element-plus'], factory) :
@@ -30103,6 +30103,12 @@
30103
30103
  AccountTypeEnum2[AccountTypeEnum2["NUMBER_999"] = 999] = "NUMBER_999";
30104
30104
  return AccountTypeEnum2;
30105
30105
  })(AccountTypeEnum || {});
30106
+ var JobCreateTypeEnum = /* @__PURE__ */ ((JobCreateTypeEnum2) => {
30107
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_0"] = 0] = "NUMBER_0";
30108
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_1"] = 1] = "NUMBER_1";
30109
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_2"] = 2] = "NUMBER_2";
30110
+ return JobCreateTypeEnum2;
30111
+ })(JobCreateTypeEnum || {});
30106
30112
 
30107
30113
  var __create$1 = Object.create;
30108
30114
  var __defProp$1 = Object.defineProperty;
@@ -52260,6 +52266,7 @@
52260
52266
  exports.FmLogin = FmLogin;
52261
52267
  exports.FmNoticeBar = FmNoticeBar;
52262
52268
  exports.FmTransfer = FmTransfer;
52269
+ exports.JobCreateTypeEnum = JobCreateTypeEnum;
52263
52270
  exports.Local = Local;
52264
52271
  exports.NextLoading = NextLoading;
52265
52272
  exports.PUB = PUB;