@airpower/web 0.3.11 → 0.3.13

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img width="300" src="./docs/airpower-bg.svg"/>
2
+ <img width="300" src="assets/airpower-bg.svg"/>
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -44,7 +44,7 @@ cnpm install @airpower/web
44
44
 
45
45
  ## 📖 参考文档
46
46
 
47
- **我们提供了一系列的使用文档,你可以 [点击这里阅读](docs/README.md)**
47
+ 计划中,请稍后。
48
48
 
49
49
  ## ⏰ 欢迎反馈
50
50
 
@@ -63,7 +63,6 @@ export interface IModelConfig {
63
63
  permissionPrefix?: string;
64
64
  /**
65
65
  * ### 全局隐藏字段列选择器
66
- * 如设置 `true`, 则 `ATable` 传入的 `hideFieldSelector` 失效
67
66
  */
68
- hideFieldSelector?: boolean;
67
+ hideColumnSelector?: boolean;
69
68
  }
package/dist/main.js CHANGED
@@ -17421,7 +17421,7 @@ function useTableColumn(params) {
17421
17421
  });
17422
17422
  const showColumnList = ref([]);
17423
17423
  const isColumnSelectorEnabled = computed(() => {
17424
- if (modelConfig.hideFieldSelector) {
17424
+ if (modelConfig.hideColumnSelector) {
17425
17425
  return false;
17426
17426
  }
17427
17427
  return !hideColumnSelector;
package/dist/web.css CHANGED
@@ -463,6 +463,22 @@ textarea {
463
463
  }
464
464
  .a-desensitize .desensitize[data-v-30bf4899] {
465
465
  color: red;
466
+ }.web-dialog .main .body * {
467
+ user-select: text;
468
+ }
469
+ .web-dialog .main .body.el-loading-parent--relative {
470
+ overflow: hidden !important;
471
+ }
472
+ .shake {
473
+ animation: shake-in 0.2s infinite;
474
+ }
475
+ .dialog-selector .main .body {
476
+ display: flex;
477
+ flex-direction: column;
478
+ }
479
+ .dialog-selector .main .body .el-pagination {
480
+ border-top: 1px solid #eee;
481
+ padding-top: 10px;
466
482
  }.web-dialog[data-v-521067c3] {
467
483
  z-index: 99;
468
484
  position: fixed;
@@ -554,22 +570,6 @@ textarea {
554
570
  .web-dialog .fullscreen[data-v-521067c3] {
555
571
  min-width: 100% !important;
556
572
  min-height: 100% !important;
557
- }.web-dialog .main .body * {
558
- user-select: text;
559
- }
560
- .web-dialog .main .body.el-loading-parent--relative {
561
- overflow: hidden !important;
562
- }
563
- .shake {
564
- animation: shake-in 0.2s infinite;
565
- }
566
- .dialog-selector .main .body {
567
- display: flex;
568
- flex-direction: column;
569
- }
570
- .dialog-selector .main .body .el-pagination {
571
- border-top: 1px solid #eee;
572
- padding-top: 10px;
573
573
  }.a-empty[data-v-f633fb7c] {
574
574
  position: absolute;
575
575
  left: 0;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@airpower/web",
3
3
  "type": "module",
4
- "version": "0.3.11",
4
+ "version": "0.3.13",
5
5
  "description": "AirPower-Web",
6
6
  "author": {
7
7
  "name": "Hamm",
@@ -29,8 +29,8 @@
29
29
  "module": "dist/main.js",
30
30
  "types": "dist/index.d.ts",
31
31
  "files": [
32
- "dist",
33
- "docs"
32
+ "assets",
33
+ "dist"
34
34
  ],
35
35
  "scripts": {
36
36
  "build": "eslint && tsc && vite build",
package/docs/README.md DELETED
@@ -1,3 +0,0 @@
1
- ## 📖 开发参考文档
2
-
3
- COMING SOON...
File without changes
File without changes