zartui 0.1.65 → 0.1.66
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/field/index.js +2 -3
- package/es/index.js +1 -1
- package/lib/7893e51cf0a4877dac80.worker.js +10 -0
- package/lib/be09b519a460e229fd8d.worker.js +2527 -0
- package/lib/field/index.js +2 -2
- package/lib/index.js +1 -1
- package/lib/zart.js +10394 -42730
- package/lib/zart.min.js +4 -4
- package/package.json +1 -1
- package/es/utils/device.js +0 -8
- package/lib/a037f57fc4d92a8a1f1e.worker.js +0 -60600
- package/lib/b7cf90b4775181215df7.worker.js +0 -10
- package/lib/utils/device.js +0 -15
package/es/field/index.js
CHANGED
|
@@ -14,7 +14,6 @@ import Cell from '../cell';
|
|
|
14
14
|
import { cellProps } from '../cell/shared';
|
|
15
15
|
import SearchIcon from "./SearchIcon";
|
|
16
16
|
import ClearIcon from "./ClearIcon";
|
|
17
|
-
import icon from '../icon';
|
|
18
17
|
|
|
19
18
|
var _createNamespace = createNamespace('field'),
|
|
20
19
|
createComponent = _createNamespace[0],
|
|
@@ -668,11 +667,11 @@ export default createComponent({
|
|
|
668
667
|
"click": this.togglePwdVisible
|
|
669
668
|
},
|
|
670
669
|
"style": "width:20px;height:20px;margin-left:12px;display:flex;justify-content:center;align-items:center;color:rgba(0,0,0,.4);"
|
|
671
|
-
}, [this.showPassword ? h(
|
|
670
|
+
}, [this.showPassword ? h(Icon, {
|
|
672
671
|
"attrs": {
|
|
673
672
|
"name": "eye-open"
|
|
674
673
|
}
|
|
675
|
-
}) : h(
|
|
674
|
+
}) : h(Icon, {
|
|
676
675
|
"attrs": {
|
|
677
676
|
"name": "eye-closed"
|
|
678
677
|
}
|
package/es/index.js
CHANGED
|
@@ -70,7 +70,7 @@ import Tabs from './tabs';
|
|
|
70
70
|
import Tag from './tag';
|
|
71
71
|
import Toast from './toast';
|
|
72
72
|
import Uploader from './uploader';
|
|
73
|
-
var version = '0.1.
|
|
73
|
+
var version = '0.1.66';
|
|
74
74
|
|
|
75
75
|
function install(Vue) {
|
|
76
76
|
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, HierarchySelect, Icon, Image, ImagePreview, IndexAnchor, IndexBar, Info, Lazyload, List, Loading, Locale, MultiplePicker, NavBar, NoticeBar, NumberKeyboard, Overlay, PasswordInput, PdfViewer, 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, Toast, Uploader];
|