zartui 2.0.46 → 2.0.47

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/es/index.js CHANGED
@@ -74,7 +74,7 @@ import Tag from './tag';
74
74
  import Timeline from './timeline';
75
75
  import Toast from './toast';
76
76
  import Uploader from './uploader';
77
- var version = '2.0.46';
77
+ var version = '2.0.47';
78
78
 
79
79
  function install(Vue) {
80
80
  var components = [ActionSheet, Area, Avatar, BackTop, Badge, Button, Calendar, Cascader, Cell, CellGroup, Checkbox, CheckboxGroup, Col, Collapse, CollapseItem, CountDown, DatetimePicker, Dialog, Divider, DropdownItem, DropdownMenu, Empty, Field, FoldDialog, Form, Grid, GridItem, HierarchySelect, Icon, Image, ImagePreview, IndexAnchor, IndexBar, Info, Lazyload, List, Loading, Locale, MediaPicker, MediaPlayer, MultiplePicker, NavBar, NoticeBar, NumberKeyboard, Overlay, PasswordInput, Picker, Popover, Popup, PullRefresh, Radio, RadioGroup, Rate, Row, Search, Signature, Skeleton, Slider, Step, Stepper, Steps, Sticky, Swipe, SwipeCell, SwipeItem, Switch, SwitchCell, Tab, Tabbar, TabbarItem, Table, Tabs, Tag, Timeline, Toast, Uploader];
@@ -145,10 +145,22 @@ export default createComponent({
145
145
  }
146
146
 
147
147
  return h("div", {
148
+ "directives": [{
149
+ name: "show",
150
+ value: item.department || item.human
151
+ }],
148
152
  "class": bem("human-box" + " half-border-bottom")
149
153
  }, [h("span", {
154
+ "directives": [{
155
+ name: "show",
156
+ value: item.department
157
+ }],
150
158
  "class": bem("depart")
151
159
  }, ["" + item.department]), h("span", {
160
+ "directives": [{
161
+ name: "show",
162
+ value: item.human
163
+ }],
152
164
  "class": bem("human")
153
165
  }, ["[" + item.human + "]"])]);
154
166
  },
package/lib/index.js CHANGED
@@ -309,7 +309,7 @@ exports.Toast = _toast.default;
309
309
  var _uploader = _interopRequireDefault(require("./uploader"));
310
310
 
311
311
  exports.Uploader = _uploader.default;
312
- var version = '2.0.46';
312
+ var version = '2.0.47';
313
313
  exports.version = version;
314
314
 
315
315
  function install(Vue) {
@@ -155,10 +155,22 @@ var _default2 = createComponent({
155
155
  }
156
156
 
157
157
  return h("div", {
158
+ "directives": [{
159
+ name: "show",
160
+ value: item.department || item.human
161
+ }],
158
162
  "class": bem("human-box" + " half-border-bottom")
159
163
  }, [h("span", {
164
+ "directives": [{
165
+ name: "show",
166
+ value: item.department
167
+ }],
160
168
  "class": bem("depart")
161
169
  }, ["" + item.department]), h("span", {
170
+ "directives": [{
171
+ name: "show",
172
+ value: item.human
173
+ }],
162
174
  "class": bem("human")
163
175
  }, ["[" + item.human + "]"])]);
164
176
  },
package/lib/zart.js CHANGED
@@ -28624,10 +28624,22 @@ var timeline_defaultData = function defaultData() {
28624
28624
  }
28625
28625
 
28626
28626
  return h("div", {
28627
+ "directives": [{
28628
+ name: "show",
28629
+ value: item.department || item.human
28630
+ }],
28627
28631
  "class": timeline_bem("human-box" + " half-border-bottom")
28628
28632
  }, [h("span", {
28633
+ "directives": [{
28634
+ name: "show",
28635
+ value: item.department
28636
+ }],
28629
28637
  "class": timeline_bem("depart")
28630
28638
  }, ["" + item.department]), h("span", {
28639
+ "directives": [{
28640
+ name: "show",
28641
+ value: item.human
28642
+ }],
28631
28643
  "class": timeline_bem("human")
28632
28644
  }, ["[" + item.human + "]"])]);
28633
28645
  },
@@ -29478,7 +29490,7 @@ var uploader_createNamespace = Object(utils["b" /* createNamespace */])('uploade
29478
29490
 
29479
29491
 
29480
29492
 
29481
- var version = '2.0.46';
29493
+ var version = '2.0.47';
29482
29494
 
29483
29495
  function install(Vue) {
29484
29496
  var components = [action_sheet, es_area, avatar, back_top, badge, es_button, calendar, cascader, cell, cell_group, es_checkbox, checkbox_group, col, collapse, collapse_item, count_down, datetime_picker, dialog, divider, dropdown_item, dropdown_menu, empty, es_field, fold_dialog, es_form, grid, grid_item, hierarchy_select, es_icon, es_image, image_preview, index_anchor, index_bar, es_info, lazyload, es_list, es_loading, locale["a" /* default */], media_picker, media_player, multiple_picker, nav_bar, notice_bar, number_keyboard, es_overlay, password_input, es_picker, popover, popup, pull_refresh, es_radio, radio_group, rate, row, search, signature, skeleton, slider, es_step, stepper, es_steps, es_sticky, swipe, swipe_cell, swipe_item, es_switch, switch_cell, tab, tabbar, tabbar_item, table, tabs, es_tag, timeline, es_toast, uploader];