zartui 1.0.20 → 1.0.21
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 +1 -1
- package/es/media-picker/index.js +2 -0
- package/es/uploader/index.js +3 -1
- package/lib/index.js +1 -1
- package/lib/media-picker/index.js +2 -0
- package/lib/uploader/index.js +3 -1
- package/lib/zart.js +1293 -1053
- package/lib/zart.min.js +3 -3
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -77,7 +77,7 @@ import Tag from './tag';
|
|
|
77
77
|
import Timeline from './timeline';
|
|
78
78
|
import Toast from './toast';
|
|
79
79
|
import Uploader from './uploader';
|
|
80
|
-
var version = '1.0.
|
|
80
|
+
var version = '1.0.21';
|
|
81
81
|
|
|
82
82
|
function install(Vue) {
|
|
83
83
|
var components = [ActionSheet, Area, Avatar, BackTop, Badge, Button, Calendar, Cascader, Cell, CellGroup, Checkbox, CheckboxGroup, Circle, 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, PdfViewer, PdfViewerV2, 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];
|
package/es/media-picker/index.js
CHANGED
|
@@ -475,6 +475,8 @@ export default createComponent({
|
|
|
475
475
|
address: _this4.watermarkOptions.address || "",
|
|
476
476
|
humanName: _this4.watermarkOptions.humanName || "",
|
|
477
477
|
projectName: _this4.watermarkOptions.projectName || "",
|
|
478
|
+
logo: _this4.watermarkOptions.logo || "",
|
|
479
|
+
applicationName: _this4.watermarkOptions.applicationName || "",
|
|
478
480
|
watermarkTime: new Date()
|
|
479
481
|
}
|
|
480
482
|
});
|
package/es/uploader/index.js
CHANGED
|
@@ -150,7 +150,9 @@ export default createComponent({
|
|
|
150
150
|
address: _this.watermarkOptions.address || "",
|
|
151
151
|
watermarkTime: new Date(),
|
|
152
152
|
humanName: _this.watermarkOptions.humanName || "",
|
|
153
|
-
projectName: _this.watermarkOptions.projectName || ""
|
|
153
|
+
projectName: _this.watermarkOptions.projectName || "",
|
|
154
|
+
logo: _this.watermarkOptions.logo || "",
|
|
155
|
+
applicationName: _this.watermarkOptions.applicationName || ""
|
|
154
156
|
});
|
|
155
157
|
var watermarkOptions = new WatermarkOptions({
|
|
156
158
|
enabled: true,
|
package/lib/index.js
CHANGED
|
@@ -321,7 +321,7 @@ exports.Toast = _toast.default;
|
|
|
321
321
|
var _uploader = _interopRequireDefault(require("./uploader"));
|
|
322
322
|
|
|
323
323
|
exports.Uploader = _uploader.default;
|
|
324
|
-
var version = '1.0.
|
|
324
|
+
var version = '1.0.21';
|
|
325
325
|
exports.version = version;
|
|
326
326
|
|
|
327
327
|
function install(Vue) {
|
|
@@ -508,6 +508,8 @@ var _default2 = createComponent({
|
|
|
508
508
|
address: _this4.watermarkOptions.address || "",
|
|
509
509
|
humanName: _this4.watermarkOptions.humanName || "",
|
|
510
510
|
projectName: _this4.watermarkOptions.projectName || "",
|
|
511
|
+
logo: _this4.watermarkOptions.logo || "",
|
|
512
|
+
applicationName: _this4.watermarkOptions.applicationName || "",
|
|
511
513
|
watermarkTime: new Date()
|
|
512
514
|
}
|
|
513
515
|
});
|
package/lib/uploader/index.js
CHANGED
|
@@ -166,7 +166,9 @@ var _default2 = createComponent({
|
|
|
166
166
|
address: _this.watermarkOptions.address || "",
|
|
167
167
|
watermarkTime: new Date(),
|
|
168
168
|
humanName: _this.watermarkOptions.humanName || "",
|
|
169
|
-
projectName: _this.watermarkOptions.projectName || ""
|
|
169
|
+
projectName: _this.watermarkOptions.projectName || "",
|
|
170
|
+
logo: _this.watermarkOptions.logo || "",
|
|
171
|
+
applicationName: _this.watermarkOptions.applicationName || ""
|
|
170
172
|
});
|
|
171
173
|
var watermarkOptions = new _media.WatermarkOptions({
|
|
172
174
|
enabled: true,
|