@tongfun/tf-widget 0.1.24 → 0.1.25

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 (95) hide show
  1. package/README.md +61 -54
  2. package/lib/tf-widget.common.js +456 -445
  3. package/lib/tf-widget.css +1 -1
  4. package/lib/tf-widget.umd.js +456 -445
  5. package/lib/tf-widget.umd.min.js +4 -4
  6. package/package/svg-icon/index.js +8 -8
  7. package/package/svg-icon/src/SvgIcon.vue +59 -59
  8. package/package/t-data-list/index.js +6 -6
  9. package/package/t-data-list/main.vue +193 -193
  10. package/package/t-data-list/src/condition-input/basic.vue +31 -31
  11. package/package/t-data-list/src/condition-input/date.vue +106 -106
  12. package/package/t-data-list/src/condition-input/index.vue +100 -100
  13. package/package/t-data-list/src/condition-input/input.vue +31 -31
  14. package/package/t-data-list/src/condition-input/number.vue +115 -115
  15. package/package/t-data-list/src/condition-input/select.vue +86 -86
  16. package/package/t-data-list/src/js/fieldTypeEnum.js +10 -10
  17. package/package/t-data-list/src/js/operatorEnum.js +108 -108
  18. package/package/t-data-list/src/js/qureyParamsEnum.js +4 -4
  19. package/package/t-data-list/src/js/util.js +34 -34
  20. package/package/t-data-list/src/mixins/button-controll-mixin.js +93 -93
  21. package/package/t-data-list/src/pushdown/push-down.vue +158 -158
  22. package/package/t-data-list/src/t-list-search.vue +36 -36
  23. package/package/t-data-list/src/t-plan/condition-always-item.vue +143 -143
  24. package/package/t-data-list/src/t-plan/condition-mult-item.vue +222 -222
  25. package/package/t-data-list/src/t-plan/index.vue +195 -195
  26. package/package/t-data-list/src/t-plan/plan-content.vue +389 -389
  27. package/package/t-data-list/src/t-table/index.vue +129 -129
  28. package/package/t-data-list/src/t-table/table-group-item-edit.vue +238 -238
  29. package/package/t-data-list/src/t-table/table-group-item.vue +87 -87
  30. package/package/t-data-list/src/t-table/table-group.vue +180 -180
  31. package/package/t-data-list/src/t-table/table-records-header-popover.vue +246 -246
  32. package/package/t-data-list/src/t-table/table-records-selected.vue +159 -159
  33. package/package/t-data-list/src/t-table/table-records.vue +336 -336
  34. package/package/t-input/children/address.vue +101 -101
  35. package/package/t-input/children/basic-display.vue +41 -41
  36. package/package/t-input/children/basic.vue +263 -254
  37. package/package/t-input/children/date.vue +89 -89
  38. package/package/t-input/children/group-components/group-dialog.vue +344 -344
  39. package/package/t-input/children/group.vue +126 -126
  40. package/package/t-input/children/input.vue +72 -72
  41. package/package/t-input/children/number.vue +74 -74
  42. package/package/t-input/children/select.vue +89 -89
  43. package/package/t-input/children/tfile/fiile-enclosure.vue +233 -233
  44. package/package/t-input/index.js +7 -7
  45. package/package/t-input/index.vue +337 -337
  46. package/package/t-input/tInputCache.js +24 -24
  47. package/package/tf-icon-picker/README.md +7 -7
  48. package/package/tf-icon-picker/index.js +8 -8
  49. package/package/tf-icon-picker/src/tf-icon-picker.vue +266 -266
  50. package/package/tf-layout/README.md +115 -115
  51. package/package/tf-layout/index.js +8 -8
  52. package/package/tf-layout/src/components/tf-labelbar.vue +394 -394
  53. package/package/tf-layout/src/components/tf-menu.vue +180 -180
  54. package/package/tf-layout/src/components/tf-right-menu.vue +89 -89
  55. package/package/tf-layout/src/components/tf-rotate-box.vue +50 -50
  56. package/package/tf-layout/src/tf-layout.vue +140 -140
  57. package/package/tf-widget/index.js +8 -8
  58. package/package/tf-widget/src/assets/common-input.less +10 -10
  59. package/package/tf-widget/src/children/basic-data/basic-data.vue +361 -361
  60. package/package/tf-widget/src/children/basic-data/dependcy/basic-data-selector.vue +1087 -1087
  61. package/package/tf-widget/src/children/basic-data/dependcy/common-table.vue +750 -750
  62. package/package/tf-widget/src/children/basic-data/dependcy/condition-filter.vue +519 -519
  63. package/package/tf-widget/src/children/basic-data/dependcy/pagination.vue +93 -93
  64. package/package/tf-widget/src/children/basic-data/dependcy/table-control.vue +240 -240
  65. package/package/tf-widget/src/children/basic-data/dependcy/view-picture.vue +108 -108
  66. package/package/tf-widget/src/children/date-time.vue +103 -103
  67. package/package/tf-widget/src/children/date.vue +103 -103
  68. package/package/tf-widget/src/children/decimal.vue +115 -115
  69. package/package/tf-widget/src/children/integer.vue +104 -104
  70. package/package/tf-widget/src/children/property.vue +59 -59
  71. package/package/tf-widget/src/children/single-line-text.vue +82 -82
  72. package/package/tf-widget/src/children/small-pictures.vue +223 -223
  73. package/package/tf-widget/src/children/text-area.vue +74 -74
  74. package/package/tf-widget/src/children/tf-select.vue +113 -113
  75. package/package/tf-widget/src/tf-widget.vue +175 -175
  76. package/package.json +44 -44
  77. package/postinstall.js +1 -1
  78. package/src/api/edit.js +97 -97
  79. package/src/api/file-enclosure.js +26 -26
  80. package/src/api/push-down.js +19 -19
  81. package/src/api/table.js +294 -294
  82. package/src/api/tableV3.js +166 -166
  83. package/src/assets/images/icons/index.js +9 -9
  84. package/src/assets/images/icons/svg/add.svg +5 -5
  85. package/src/assets/images/icons/svg/push-down.svg +1 -1
  86. package/src/assets/images/icons/svg/remove.svg +1 -1
  87. package/src/assets/styles/common-table.less +202 -202
  88. package/src/directives/debounce.js +24 -24
  89. package/src/index.js +31 -31
  90. package/src/mixins/t-data-query-mixin.js +290 -290
  91. package/src/utils/auth.js +22 -22
  92. package/src/utils/request.js +42 -42
  93. package/src/utils/stato-anormale.js +59 -59
  94. package/src/utils/utils.js +109 -109
  95. package/src/utils/validate.js +84 -84
package/README.md CHANGED
@@ -1,54 +1,61 @@
1
- # TF-Widget
2
- ## 版本更新记录
3
-
4
- ## 🍎 0.1.23
5
- ⭐ 1,t-input type = 'group' 控件无法展示分组数据
6
-
7
- ## 🍎 0.1.22
8
- ⭐ 1,更新通用列表的api请求文件
9
- ## 🍎 0.1.21
10
- ⭐ 1.添加关闭当前页事件
11
- ## 🍎 0.1.20
12
-
13
- ⭐ 1.第三版通用列表脱离测试阶段,开始进入使用
14
- ⭐ 2.通用列表中的防抖指令使用局部引入方式,避免和应用的冲突和重复注册
15
-
16
- ## 🍎 0.1.18
17
-
18
- ⭐ 1.列表表头输入框搜索建议bug修复
19
-
20
- ## 🍎 0.1.7
21
-
22
- ⭐ 1.去除小数,整数组件禁用状态下的Lock图标
23
-
24
-
25
- ## 🍎 0.1.6
26
-
27
- ⭐ 1.input组件添加可清空选项
28
- ⭐ 2.input,select,text-area,date等组件更新禁用状态下输入框的背景色
29
- ⭐ 3.添加proxy代理以便本地测试组件
30
-
31
- ## 🍎 0.1.5
32
-
33
- ⭐ 1.新增基础资料组件默认值参数
34
-
35
- ## 🍎 0.1.4
36
-
37
- ⭐ 1.新增图片组件
38
-
39
- ## 🍎 0.1.3
40
-
41
- ⭐ 1.优化基础资料组件(默认展示head__name字段,但此字段可控)
42
-
43
- ## 🍎 0.1.2
44
-
45
- ⭐ 1.添加postinstall信息
46
- ⭐ 2.添加babel插件
47
-
48
- ## 🍎 0.1.1
49
-
50
- ⭐ 1.组件库初始化
51
-
52
-
53
- ## 使用文档
54
-
1
+ # TF-Widget
2
+ ## 版本更新记录
3
+
4
+ ## 🍎 0.1.25
5
+ ⭐ 修复Tinput基础资料弹窗,因解决单据体抖动的代码导致的数据查询在布局查询之前,从而导致搜索范围限定失效,的,问题
6
+
7
+ ## 🍎 0.1.24
8
+ ⭐ 1,修复关闭当前页标签缓存异常问题
9
+ ⭐ 2,修复第三版通用列表,表头过滤器不显示的问题
10
+
11
+ ## 🍎 0.1.23
12
+ ⭐ 1,t-input type = 'group' 控件无法展示分组数据
13
+
14
+ ## 🍎 0.1.22
15
+ ⭐ 1,更新通用列表的api请求文件
16
+ ## 🍎 0.1.21
17
+ ⭐ 1.添加关闭当前页事件
18
+ ## 🍎 0.1.20
19
+
20
+ ⭐ 1.第三版通用列表脱离测试阶段,开始进入使用
21
+ ⭐ 2.通用列表中的防抖指令使用局部引入方式,避免和应用的冲突和重复注册
22
+
23
+ ## 🍎 0.1.18
24
+
25
+ ⭐ 1.列表表头输入框搜索建议bug修复
26
+
27
+ ## 🍎 0.1.7
28
+
29
+ ⭐ 1.去除小数,整数组件禁用状态下的Lock图标
30
+
31
+
32
+ ## 🍎 0.1.6
33
+
34
+ ⭐ 1.input组件添加可清空选项
35
+ ⭐ 2.input,select,text-area,date等组件更新禁用状态下输入框的背景色
36
+ ⭐ 3.添加proxy代理以便本地测试组件
37
+
38
+ ## 🍎 0.1.5
39
+
40
+ ⭐ 1.新增基础资料组件默认值参数
41
+
42
+ ## 🍎 0.1.4
43
+
44
+ ⭐ 1.新增图片组件
45
+
46
+ ## 🍎 0.1.3
47
+
48
+ ⭐ 1.优化基础资料组件(默认展示head__name字段,但此字段可控)
49
+
50
+ ## 🍎 0.1.2
51
+
52
+ ⭐ 1.添加postinstall信息
53
+ ⭐ 2.添加babel插件
54
+
55
+ ## 🍎 0.1.1
56
+
57
+ ⭐ 1.组件库初始化
58
+
59
+
60
+ ## 使用文档
61
+