@bit-sun/business-component 1.1.28 → 1.1.31

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.
Files changed (33) hide show
  1. package/.editorconfig +16 -16
  2. package/.fatherrc.ts +4 -4
  3. package/.gitlab-ci.yml +174 -174
  4. package/.prettierignore +7 -7
  5. package/.prettierrc +11 -11
  6. package/.umirc.ts +28 -28
  7. package/README.md +27 -27
  8. package/dist/index.esm.js +3586 -1922
  9. package/dist/index.js +3588 -1924
  10. package/dist/utils/CheckOneUser/index.d.ts +1 -1
  11. package/docs/index.md +21 -21
  12. package/package.json +50 -50
  13. package/src/components/Business/CommodityEntry/index.md +69 -69
  14. package/src/components/Business/CommodityEntry/index.tsx +75 -75
  15. package/src/components/Business/SearchSelect/BusinessUtils.ts +948 -909
  16. package/src/components/Business/SearchSelect/common.ts +34 -34
  17. package/src/components/Business/SearchSelect/index.md +1004 -903
  18. package/src/components/Business/SearchSelect/index.tsx +43 -43
  19. package/src/components/Business/SearchSelect/utils.ts +74 -74
  20. package/src/components/Functional/DataValidation/index.less +63 -63
  21. package/src/components/Functional/DataValidation/index.md +38 -38
  22. package/src/components/Functional/DataValidation/index.tsx +666 -661
  23. package/src/components/Functional/QueryMutipleInput/index.less +37 -37
  24. package/src/components/Functional/QueryMutipleInput/index.md +33 -33
  25. package/src/components/Functional/QueryMutipleInput/index.tsx +128 -128
  26. package/src/components/Functional/SearchSelect/index.less +115 -115
  27. package/src/components/Functional/SearchSelect/index.md +141 -141
  28. package/src/components/Functional/SearchSelect/index.tsx +714 -653
  29. package/src/index.ts +21 -21
  30. package/src/utils/CheckOneUser/index.md +39 -39
  31. package/src/utils/CheckOneUser/index.ts +51 -51
  32. package/tsconfig.json +29 -29
  33. package/typings.d.ts +2 -2
@@ -1,34 +1,34 @@
1
- const shopFileType = [
2
- {
3
- text: "线上",
4
- value: 'online',
5
- },
6
- {
7
- text: "线下",
8
- value: 'offline',
9
- }
10
- ]
11
-
12
- const arrivalPaySupportList = [
13
- {
14
- text: "支持",
15
- value: 1,
16
- },
17
- {
18
- text: "不支持",
19
- value: 0,
20
- }
21
- ]
22
-
23
- const sharingType = [
24
- {
25
- text: "共享",
26
- value: '10',
27
- },
28
- {
29
- text: "私有",
30
- value: '20',
31
- }
32
- ]
33
-
34
- export { shopFileType, arrivalPaySupportList, sharingType }
1
+ const shopFileType = [
2
+ {
3
+ text: "线上",
4
+ value: 'online',
5
+ },
6
+ {
7
+ text: "线下",
8
+ value: 'offline',
9
+ }
10
+ ]
11
+
12
+ const arrivalPaySupportList = [
13
+ {
14
+ text: "支持",
15
+ value: 1,
16
+ },
17
+ {
18
+ text: "不支持",
19
+ value: 0,
20
+ }
21
+ ]
22
+
23
+ const sharingType = [
24
+ {
25
+ text: "共享",
26
+ value: '10',
27
+ },
28
+ {
29
+ text: "私有",
30
+ value: '20',
31
+ }
32
+ ]
33
+
34
+ export { shopFileType, arrivalPaySupportList, sharingType }