@tongfun/tf-widget 0.1.5 → 0.1.9
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/.browserslistrc +3 -3
- package/.editorconfig +5 -5
- package/.eslintrc.js +17 -17
- package/README.md +39 -24
- package/dist/css/chunk-9c7a8e06.920744ef.css +1 -0
- package/dist/css/chunk-vendors.de967301.css +1 -0
- package/dist/css/index.9f1afeaf.css +1 -0
- package/dist/fonts/element-icons.535877f5.woff +0 -0
- package/dist/fonts/element-icons.732389de.ttf +0 -0
- package/dist/js/chunk-9c7a8e06.ffff58b5.js +1 -0
- package/dist/js/chunk-vendors.45086d09.js +39 -0
- package/dist/js/index.a3b16e45.js +1 -0
- package/lib/tf-widget.common.js +1294 -240
- package/lib/tf-widget.css +1 -1
- package/lib/tf-widget.umd.js +1294 -240
- package/lib/tf-widget.umd.min.js +3 -3
- package/package/t-data-list/index.js +6 -0
- package/package/t-data-list/main.vue +192 -0
- package/package/t-data-list/src/condition-input/basic.vue +31 -0
- package/package/t-data-list/src/condition-input/date.vue +106 -0
- package/package/t-data-list/src/condition-input/index.vue +100 -0
- package/package/t-data-list/src/condition-input/input.vue +31 -0
- package/package/t-data-list/src/condition-input/number.vue +115 -0
- package/package/t-data-list/src/condition-input/select.vue +86 -0
- package/package/t-data-list/src/js/fieldTypeEnum.js +10 -0
- package/package/t-data-list/src/js/operatorEnum.js +109 -0
- package/package/t-data-list/src/js/qureyParamsEnum.js +4 -0
- package/package/t-data-list/src/js/util.js +34 -0
- package/package/t-data-list/src/mixins/button-controll-mixin.js +77 -0
- package/package/t-data-list/src/pushdown/push-down.vue +158 -0
- package/package/t-data-list/src/t-list-search.vue +32 -0
- package/package/t-data-list/src/t-plan/condition-always-item.vue +143 -0
- package/package/t-data-list/src/t-plan/condition-mult-item.vue +222 -0
- package/package/t-data-list/src/t-plan/index.vue +190 -0
- package/package/t-data-list/src/t-plan/plan-content.vue +396 -0
- package/package/t-data-list/src/t-table/index.vue +120 -0
- package/package/t-data-list/src/t-table/table-group-item-edit.vue +238 -0
- package/package/t-data-list/src/t-table/table-group-item.vue +87 -0
- package/package/t-data-list/src/t-table/table-group.vue +179 -0
- package/package/t-data-list/src/t-table/table-records-header-popover.vue +250 -0
- package/package/t-data-list/src/t-table/table-records-selected.vue +159 -0
- package/package/t-data-list/src/t-table/table-records.vue +324 -0
- package/package/t-input/children/address.vue +101 -0
- package/package/t-input/children/basic-display.vue +41 -0
- package/package/t-input/children/basic.vue +251 -0
- package/package/t-input/children/date.vue +89 -0
- package/package/t-input/children/group-components/group-dialog.vue +350 -0
- package/package/t-input/children/group.vue +126 -0
- package/package/t-input/children/input.vue +72 -0
- package/package/t-input/children/number.vue +74 -0
- package/package/t-input/children/select.vue +89 -0
- package/package/t-input/children/tfile/fiile-enclosure.vue +233 -0
- package/package/t-input/children/tfile/file-img/comp.png +0 -0
- package/package/t-input/children/tfile/file-img/excel.png +0 -0
- package/package/t-input/children/tfile/file-img/img.png +0 -0
- package/package/t-input/children/tfile/file-img/pdf.png +0 -0
- package/package/t-input/children/tfile/file-img/word.png +0 -0
- package/package/t-input/index.js +7 -0
- package/package/t-input/index.vue +337 -0
- package/package/t-input/tInputCache.js +24 -0
- package/package/tf-layout/README.md +69 -0
- package/package/tf-layout/index.js +8 -0
- package/package/tf-layout/src/components/tf-labelbar.vue +376 -0
- package/package/tf-layout/src/components/tf-menu.vue +180 -0
- package/package/tf-layout/src/components/tf-right-menu.vue +89 -0
- package/package/tf-layout/src/components/tf-rotate-box.vue +50 -0
- package/package/tf-layout/src/tf-layout.vue +115 -0
- package/package/tf-widget/src/assets/common-input.less +11 -0
- package/package/tf-widget/src/children/basic-data/basic-data.vue +2 -1
- package/package/tf-widget/src/children/date-time.vue +1 -1
- package/package/tf-widget/src/children/date.vue +1 -0
- package/package/tf-widget/src/children/decimal.vue +20 -1
- package/package/tf-widget/src/children/integer.vue +31 -12
- package/package/tf-widget/src/children/single-line-text.vue +15 -7
- package/package/tf-widget/src/children/small-pictures.vue +5 -1
- package/package/tf-widget/src/children/text-area.vue +5 -4
- package/package/tf-widget/src/children/tf-select.vue +16 -7
- package/package.json +4 -2
- package/postinstall.js +10 -10
- package/src/api/file-enclosure.js +26 -0
- package/src/api/push-down.js +19 -0
- package/src/api/tableV3.js +186 -0
- package/src/index.js +11 -3
- package/src/mixins/t-data-query-mixin.js +289 -0
- package/src/utils/request.js +4 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.