@atooyu/uxto-ui 1.0.9 → 1.1.1
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/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +12 -11
- package/package.json +1 -1
- package/src/components/u-icon/icons/location.svg +3 -0
- package/src/components/u-icon/icons/scan.svg +3 -0
- package/src/components/u-icon/index.ts +6 -0
- package/src/components/u-tabbar/u-tabbar.vue +1 -0
package/dist/index.js
CHANGED
|
@@ -501,6 +501,8 @@ const bookmark = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20xmlns=
|
|
|
501
501
|
const bookmarkO = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M17%203H7c-1.1%200-1.99.9-1.99%202L5%2021l7-3%207%203V5c0-1.1-.9-2-2-2zm0%2015l-5-2.18L7%2018V5h10v13z'/%3e%3c/svg%3e";
|
|
502
502
|
const chat = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M20%202H4c-1.1%200-2%20.9-2%202v18l4-4h14c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm0%2014H6l-2%202V4h16v12z'/%3e%3c/svg%3e";
|
|
503
503
|
const clipboard = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M19%203h-4.18C14.4%201.84%2013.3%201%2012%201c-1.3%200-2.4.84-2.82%202H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-7%200c.55%200%201%20.45%201%201s-.45%201-1%201-1-.45-1-1%20.45-1%201-1zm2%2014H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3e%3c/svg%3e";
|
|
504
|
+
const location = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='currentColor'%3e%3cpath%20d='M12%202C8.13%202%205%205.13%205%209c0%205.25%207%2013%207%2013s7-7.75%207-13c0-3.87-3.13-7-7-7zm0%209.5c-1.38%200-2.5-1.12-2.5-2.5s1.12-2.5%202.5-2.5%202.5%201.12%202.5%202.5-1.12%202.5-2.5%202.5z'/%3e%3c/svg%3e";
|
|
505
|
+
const scan = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='currentColor'%3e%3cpath%20d='M3%2011h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6%206h-4V5h4v4zM3%2021h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z'/%3e%3c/svg%3e";
|
|
504
506
|
const icons = {
|
|
505
507
|
// 箭头类
|
|
506
508
|
"arrow-down": arrowDown,
|
|
@@ -608,7 +610,10 @@ const icons = {
|
|
|
608
610
|
"code": code,
|
|
609
611
|
"clock": clock,
|
|
610
612
|
"time": clock,
|
|
611
|
-
"calendar": clock
|
|
613
|
+
"calendar": clock,
|
|
614
|
+
// 位置和扫码
|
|
615
|
+
"location": location,
|
|
616
|
+
"scan": scan
|
|
612
617
|
};
|
|
613
618
|
function getIcon(name) {
|
|
614
619
|
return icons[name];
|
|
@@ -5022,7 +5027,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
5022
5027
|
};
|
|
5023
5028
|
}
|
|
5024
5029
|
});
|
|
5025
|
-
const uTabbar = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
5030
|
+
const uTabbar = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5998a8d0"]]);
|
|
5026
5031
|
exports.UAvatar = uAvatar;
|
|
5027
5032
|
exports.UBadge = uBadge;
|
|
5028
5033
|
exports.UButton = uButton;
|