cnhis-design-vue 2.0.1 → 2.0.4
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/CHANGELOG.md +34 -2
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +266 -238
- package/es/big-table/style.css +1 -1
- package/es/button/index.js +2 -2
- package/es/captcha/index.js +3 -3
- package/es/checkbox/index.js +1 -1
- package/es/color-picker/index.js +1 -1
- package/es/drag-layout/index.js +3 -3
- package/es/editor/index.js +51 -24
- package/es/editor/style.css +1 -1
- package/es/fabric-chart/index.js +9 -9
- package/es/form-table/index.js +17 -17
- package/es/index/index.js +568 -518
- package/es/index/style.css +1 -1
- package/es/input/index.js +1 -1
- package/es/map/index.js +1 -1
- package/es/multi-chat/index.js +90 -74
- package/es/multi-chat/style.css +1 -1
- package/es/multi-chat-client/index.js +57 -41
- package/es/multi-chat-client/style.css +1 -1
- package/es/multi-chat-history/index.js +27 -27
- package/es/multi-chat-history/style.css +1 -1
- package/es/multi-chat-record/index.js +27 -27
- package/es/multi-chat-record/style.css +1 -1
- package/es/multi-chat-setting/index.js +59 -43
- package/es/multi-chat-setting/style.css +1 -1
- package/es/multi-chat-sip/index.js +1 -1
- package/es/radio/index.js +1 -1
- package/es/scale-view/index.js +24 -24
- package/es/select/index.js +3 -3
- package/es/select-label/index.js +3 -3
- package/es/select-person/index.js +2 -2
- package/es/table-filter/index.js +48 -48
- package/es/table-filter/style.css +1 -1
- package/es/tag/index.js +1 -1
- package/es/verification-code/index.js +2 -2
- package/package.json +4 -2
- package/packages/big-table/src/BigTable.vue +13 -1
- package/packages/editor/src/Editor.vue +6 -1
- package/packages/multi-chat/chat/chatHistory.vue +1 -1
- package/packages/multi-chat/chat/chatMain.vue +1 -1
- package/packages/multi-chat/chat/messageRecord.vue +1 -1
- package/packages/multi-chat/chat/mixins/base.js +5 -0
- package/packages/multi-chat/setting/sessionList/messageRecord.vue +1 -1
- package/packages/table-filter/src/base-search-com/BaseSearch.vue +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
|
-
# Changelog
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [2.0.4](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/compare/v2.0.3...v2.0.4) (2022-05-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* docs更改cdn添加deploy发布 ([6f1ecd3](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/6f1ecd3829bc312c65a5f717eac576ef5125a138))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* 按需引入组件时$xss未挂载 ([4d2c7ea](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/4d2c7ea6390b2e9bd099ed22749c3083e6cee299))
|
|
16
|
+
|
|
17
|
+
### [2.0.3](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/compare/v2.0.2...v2.0.3) (2022-05-17)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* 表格、富文本、聊天组件xss防止注入 ([d478fa7](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/d478fa7dffb1a0c4fd103905318a5efdfa9a3356))
|
|
23
|
+
|
|
24
|
+
### [2.0.2](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/compare/v2.0.1...v2.0.2) (2022-05-16)
|
|
2
25
|
|
|
3
|
-
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* 选人组件调整 ([1a8c5e8](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/1a8c5e88b06be86c06c2ccbb30108ed6033bb1f0))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* 量表跳题逻辑bugfix ([8dacfc8](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/8dacfc8add02dedd7a51d579c41b209b8a15f32a))
|
|
35
|
+
* searchPlaceHolder预留宽度变为45 ([6f66283](http://120.25.59.85:3000/cnhis-frontend/cnhis-design-vue/commit/6f66283c34aaed4665d6dc7bfafadfa622f0491d))
|
|
4
36
|
|
|
5
37
|
### 2.0.1 (2022-05-12)
|
|
6
38
|
|
package/es/age/index.js
CHANGED
|
@@ -3177,7 +3177,7 @@ var es_function_name_js_ = __webpack_require__("db0a");
|
|
|
3177
3177
|
// EXTERNAL MODULE: ./packages/base/index.js
|
|
3178
3178
|
var base = __webpack_require__("3edf");
|
|
3179
3179
|
|
|
3180
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3180
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"5c08ca1f-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/age/src/age/index.vue?vue&type=template&id=1a38c998&scoped=true&
|
|
3181
3181
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('a-input-group',{staticClass:"age-input",staticStyle:{"display":"flex"},attrs:{"compact":""}},[_c('a-input-number',_vm._g(_vm._b({attrs:{"value":_vm.number}},'a-input-number',_vm.config,false),_vm.inputListeners)),(_vm.unitconfig.option && _vm.unitconfig.option.length > 0)?_c('a-select',_vm._g(_vm._b({attrs:{"value":_vm.unit}},'a-select',_vm.unitconfig,false),_vm.selectListeners),_vm._l((_vm.unitconfig.option),function(v,k){return _c('a-select-option',{key:k,attrs:{"value":v.value}},[_vm._v(" "+_vm._s(v.text)+" ")])}),1):_vm._e()],1)],1)}
|
|
3182
3182
|
var staticRenderFns = []
|
|
3183
3183
|
|
|
@@ -3378,7 +3378,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
3378
3378
|
)
|
|
3379
3379
|
|
|
3380
3380
|
/* harmony default export */ var age = (component.exports);
|
|
3381
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3381
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"5c08ca1f-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/age/src/age-com/index.vue?vue&type=template&id=0e1dea56&scoped=true&
|
|
3382
3382
|
var age_comvue_type_template_id_0e1dea56_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container age-com"},[(_vm.showType.includes('YYYY'))?_vm._t("default",function(){return [_c('a-input-number',{attrs:{"min":0,"value":_vm.ageValue.year,"disabled":_vm.isDisabled},on:{"focus":function($event){return _vm.handlerInputFocus(1)},"change":_vm.handleYearChange}}),_c('span',{staticClass:"age-com-suffix"},[_vm._v("岁")])]}):_vm._e(),(_vm.showType.includes('MM'))?_vm._t("default",function(){return [_c('a-input-number',{attrs:{"min":0,"value":_vm.ageValue.month,"disabled":_vm.isDisabled},on:{"focus":function($event){return _vm.handlerInputFocus(2)},"change":_vm.handleMonthChange}}),_c('span',{staticClass:"age-com-suffix"},[_vm._v("月")])]}):_vm._e(),(_vm.showType.includes('DD'))?_vm._t("default",function(){return [_c('a-input-number',{attrs:{"min":0,"value":_vm.ageValue.day,"disabled":_vm.isDisabled},on:{"change":_vm.handleDayChange,"focus":function($event){return _vm.handlerInputFocus(3)}}}),_c('span',{staticClass:"age-com-suffix"},[_vm._v("日")])]}):_vm._e()],2)}
|
|
3383
3383
|
var age_comvue_type_template_id_0e1dea56_scoped_true_staticRenderFns = []
|
|
3384
3384
|
|