@cgboiler/biz-mobile 1.1.2 → 1.2.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.
Files changed (39) hide show
  1. package/es/index.d.ts +4 -2
  2. package/es/index.js +5 -1
  3. package/es/org-picker/OrgPicker.d.ts +49 -0
  4. package/es/org-picker/OrgPicker.js +111 -0
  5. package/es/org-picker/_atomic.css +32 -0
  6. package/es/org-picker/index.css +1 -0
  7. package/es/org-picker/index.d.ts +3 -0
  8. package/es/org-picker/index.js +6 -0
  9. package/es/org-picker/index.less +96 -0
  10. package/es/org-picker/style/index.d.ts +1 -0
  11. package/es/org-picker/style/index.js +1 -0
  12. package/es/org-picker/style/less.d.ts +1 -0
  13. package/es/org-picker/style/less.js +1 -0
  14. package/es/org-picker/types.d.ts +27 -0
  15. package/es/org-picker/types.js +23 -0
  16. package/es/org-picker/useApi.d.ts +13 -0
  17. package/es/org-picker/useApi.js +792 -0
  18. package/es/project-select/index.css +1 -1
  19. package/es/project-select/index.less +4 -1
  20. package/lib/index.d.ts +4 -2
  21. package/lib/index.js +5 -1
  22. package/lib/org-picker/OrgPicker.d.ts +49 -0
  23. package/lib/org-picker/OrgPicker.js +130 -0
  24. package/lib/org-picker/_atomic.css +32 -0
  25. package/lib/org-picker/index.css +1 -0
  26. package/lib/org-picker/index.d.ts +3 -0
  27. package/lib/org-picker/index.js +36 -0
  28. package/lib/org-picker/index.less +96 -0
  29. package/lib/org-picker/style/index.d.ts +1 -0
  30. package/lib/org-picker/style/index.js +1 -0
  31. package/lib/org-picker/style/less.d.ts +1 -0
  32. package/lib/org-picker/style/less.js +1 -0
  33. package/lib/org-picker/types.d.ts +27 -0
  34. package/lib/org-picker/types.js +42 -0
  35. package/lib/org-picker/useApi.d.ts +13 -0
  36. package/lib/org-picker/useApi.js +811 -0
  37. package/lib/project-select/index.css +1 -1
  38. package/lib/project-select/index.less +4 -1
  39. package/package.json +2 -2
@@ -1 +1 @@
1
- .project-list{height:70vh;display:flex;flex-direction:column}.project-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.project-list .van-list{flex:1;overflow-y:auto;padding:0 16px}.project-list .project-item{padding:12px 0;border-bottom:1px solid #eee;cursor:pointer}.project-list .project-item.selected{color:var(--van-primary-color)}.project-list .project-item .project-name{font-size:14px}.project-list .project-item:last-child{border-bottom:none}
1
+ :root:root{--van-action-sheet-max-height: 100%}.project-list{height:90vh;display:flex;flex-direction:column}.project-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.project-list .van-list{flex:1;overflow-y:auto;padding:0 16px}.project-list .project-item{padding:12px 0;border-bottom:1px solid #eee;cursor:pointer}.project-list .project-item.selected{color:var(--van-primary-color)}.project-list .project-item .project-name{font-size:14px}.project-list .project-item:last-child{border-bottom:none}
@@ -1,5 +1,8 @@
1
+ :root:root {
2
+ --van-action-sheet-max-height: 100%;
3
+ }
1
4
  .project-list {
2
- height: 70vh;
5
+ height: 90vh;
3
6
  display: flex;
4
7
  flex-direction: column;
5
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgboiler/biz-mobile",
3
- "version": "1.1.2",
3
+ "version": "1.2.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -42,7 +42,7 @@
42
42
  ],
43
43
  "dependencies": {
44
44
  "vant": "^4.9.19",
45
- "@cgboiler/core": "1.0.0"
45
+ "@cgboiler/core": "1.1.0"
46
46
  },
47
47
  "scripts": {
48
48
  "dev": "cg-cli dev",