shared-ritm 1.1.72 → 1.1.74
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.css +1 -1
- package/dist/shared-ritm.es.js +15 -14
- package/dist/shared-ritm.umd.js +2 -2
- package/package.json +1 -1
- package/src/api/services/AuthService.ts +41 -41
- package/src/api/services/FileService.ts +15 -15
- package/src/api/services/TasksService.ts +128 -128
- package/src/api/settings/ApiService.ts +125 -125
- package/src/api/types/Api_Repairs.ts +93 -93
- package/src/common/app-button/AppButton.vue +173 -173
- package/src/common/app-date-picker/AppDatePicker.vue +75 -74
- package/src/common/app-icon/AppIcon.vue +104 -104
- package/src/common/app-input/AppInput.vue +147 -147
- package/src/common/app-layout/AppLayout.vue +63 -63
- package/src/common/app-layout/components/AppLayoutHeader.vue +123 -123
- package/src/common/app-loader/index.vue +43 -43
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-sheet/AppSheet.vue +114 -114
- package/src/common/app-sidebar/AppSidebar.vue +168 -168
- package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +139 -139
- package/src/common/app-toggle/AppToggle.vue +23 -23
- package/src/global.d.ts +1 -1
- package/src/icons/components/arrow-down-icon.vue +25 -25
- package/src/icons/components/arrow-frame-icon.vue +19 -19
- package/src/icons/components/arrow-square.vue +22 -22
- package/src/icons/header/flashIcon.vue +24 -24
- package/src/icons/header/notificationIcon.vue +18 -18
- package/src/icons/header/searchStatusIcon.vue +24 -24
- package/src/icons/header/smallCapsIcon.vue +34 -34
- package/src/icons/sidebar/assign-module-icon.vue +36 -36
- package/src/icons/sidebar/instrument-history-icon.vue +32 -32
- package/src/icons/sidebar/instrument-order-icon.vue +38 -38
- package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
- package/src/icons/sidebar/instruments-icon.vue +45 -45
- package/src/icons/sidebar/logo-icon.vue +15 -15
- package/src/icons/sidebar/logout-icon.vue +13 -13
- package/src/icons/sidebar/modules-icon.vue +16 -16
- package/src/icons/sidebar/notifications-icon.vue +24 -24
- package/src/icons/sidebar/order-icon.vue +44 -44
- package/src/icons/sidebar/pass-icon.vue +38 -38
- package/src/icons/sidebar/positions-icon.vue +42 -42
- package/src/icons/sidebar/preorder-icon.vue +19 -19
- package/src/icons/sidebar/projects-icon.vue +31 -31
- package/src/icons/sidebar/repair-object-icon.vue +18 -18
- package/src/icons/sidebar/repairs-icon.vue +20 -20
- package/src/icons/sidebar/roles-icon.vue +26 -26
- package/src/icons/sidebar/status-history-icon.vue +24 -24
- package/src/icons/sidebar/tasks-icon.vue +28 -28
- package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
- package/src/icons/sidebar/tasks_today-icon.vue +27 -27
- package/src/icons/sidebar/teams-icon.vue +32 -32
- package/src/icons/sidebar/user-icon.vue +18 -18
- package/src/icons/sidebar/users-icon.vue +46 -46
- package/src/icons/sidebar/videosources-icon.vue +19 -19
- package/src/icons/sidebar/videowall-icon.vue +13 -13
- package/src/icons/sidebar/videozones-icon.vue +21 -21
- package/src/icons/sidebar/warehouses-icon.vue +43 -43
- package/src/icons/sidebar/workshop-icon.vue +100 -100
- package/src/icons/sidebar/workzones-icon.vue +22 -22
- package/src/main.ts +18 -18
- package/src/quasar-user-options.ts +17 -17
- package/src/router/index.ts +10 -10
- package/src/shims-vue.d.ts +5 -5
package/dist/shared-ritm.es.js
CHANGED
|
@@ -1830,10 +1830,10 @@ const Ke = pe({
|
|
|
1830
1830
|
emits: ["update:modelValue", "click"],
|
|
1831
1831
|
setup(e, { emit: t }) {
|
|
1832
1832
|
kn((a) => ({
|
|
1833
|
-
"
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1836
|
-
|
|
1833
|
+
"6ebd44ce": a.width,
|
|
1834
|
+
"31bb5bb4": a.height,
|
|
1835
|
+
"2efce8ab": a.borderRadius,
|
|
1836
|
+
d3196ae6: a.borderWidth
|
|
1837
1837
|
}));
|
|
1838
1838
|
const n = e, o = t;
|
|
1839
1839
|
function r(a) {
|
|
@@ -4270,7 +4270,8 @@ const Ru = {
|
|
|
4270
4270
|
__name: "AppDatePicker",
|
|
4271
4271
|
props: {
|
|
4272
4272
|
label: {},
|
|
4273
|
-
modelValue: {}
|
|
4273
|
+
modelValue: {},
|
|
4274
|
+
disableRuleDates: { type: Boolean }
|
|
4274
4275
|
},
|
|
4275
4276
|
emits: ["update:modelValue"],
|
|
4276
4277
|
setup(e, { emit: t }) {
|
|
@@ -4284,7 +4285,7 @@ const Ru = {
|
|
|
4284
4285
|
});
|
|
4285
4286
|
function l(i) {
|
|
4286
4287
|
const a = /* @__PURE__ */ new Date(), [u, c, s] = i.split("/"), f = new Date(u, c - 1, s), b = new Date(a.getFullYear(), a.getMonth(), a.getDate());
|
|
4287
|
-
return f >= b;
|
|
4288
|
+
return f >= b && o.disableRuleDates;
|
|
4288
4289
|
}
|
|
4289
4290
|
return (i, a) => (Y(), de("div", Vu, [
|
|
4290
4291
|
ye(go, {
|
|
@@ -4328,7 +4329,7 @@ const Ru = {
|
|
|
4328
4329
|
])
|
|
4329
4330
|
]));
|
|
4330
4331
|
}
|
|
4331
|
-
}), Gh = /* @__PURE__ */ ie(Du, [["__scopeId", "data-v-
|
|
4332
|
+
}), Gh = /* @__PURE__ */ ie(Du, [["__scopeId", "data-v-72b27f06"]]);
|
|
4332
4333
|
let er, Gn = 0;
|
|
4333
4334
|
const We = new Array(256);
|
|
4334
4335
|
for (let e = 0; e < 256; e++)
|
|
@@ -5380,7 +5381,7 @@ const ga = pe({
|
|
|
5380
5381
|
emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
|
|
5381
5382
|
setup(e, { emit: t }) {
|
|
5382
5383
|
kn((u) => ({
|
|
5383
|
-
"
|
|
5384
|
+
"366a7212": u.height
|
|
5384
5385
|
}));
|
|
5385
5386
|
const n = e, o = t, r = j(!1), l = d(() => n.type === "password" ? r.value ? "text" : "password" : n.type || "text"), i = d({
|
|
5386
5387
|
get: () => n.modelValue !== null && n.modelValue !== void 0 && n.type === "number" ? +n.modelValue : n.modelValue,
|
|
@@ -5875,7 +5876,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
|
|
|
5875
5876
|
}, null, 8, ["size", "thickness"])) : Ye("", !0)
|
|
5876
5877
|
], 2));
|
|
5877
5878
|
}
|
|
5878
|
-
}), mc = /* @__PURE__ */ ie(vc, [["__scopeId", "data-v-
|
|
5879
|
+
}), mc = /* @__PURE__ */ ie(vc, [["__scopeId", "data-v-9f8ceae1"]]), gc = /* @__PURE__ */ Ne({
|
|
5879
5880
|
__name: "AppLayout",
|
|
5880
5881
|
props: {
|
|
5881
5882
|
logged: { type: Boolean },
|
|
@@ -7646,7 +7647,7 @@ const zc = Or(
|
|
|
7646
7647
|
emits: ["update:dialogRef", "update:currentTabName"],
|
|
7647
7648
|
setup(e, { emit: t }) {
|
|
7648
7649
|
kn((l) => ({
|
|
7649
|
-
|
|
7650
|
+
"740e724f": l.width
|
|
7650
7651
|
}));
|
|
7651
7652
|
const n = e, o = t, r = d({
|
|
7652
7653
|
get() {
|
|
@@ -7715,7 +7716,7 @@ const zc = Or(
|
|
|
7715
7716
|
"sheet-dialog": "_sheet-dialog_1rkva_1"
|
|
7716
7717
|
}, Jc = {
|
|
7717
7718
|
$style: Xc
|
|
7718
|
-
}, lv = /* @__PURE__ */ ie(Zc, [["__cssModules", Jc], ["__scopeId", "data-v-
|
|
7719
|
+
}, lv = /* @__PURE__ */ ie(Zc, [["__cssModules", Jc], ["__scopeId", "data-v-813dad0d"]]), el = {
|
|
7719
7720
|
left: !0,
|
|
7720
7721
|
right: !0,
|
|
7721
7722
|
up: !0,
|
|
@@ -9246,8 +9247,8 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
|
|
|
9246
9247
|
},
|
|
9247
9248
|
setup(e) {
|
|
9248
9249
|
kn((r) => ({
|
|
9249
|
-
|
|
9250
|
-
"
|
|
9250
|
+
c630246a: r.color,
|
|
9251
|
+
"682fb499": r.size
|
|
9251
9252
|
}));
|
|
9252
9253
|
const t = e;
|
|
9253
9254
|
function n(r) {
|
|
@@ -9420,7 +9421,7 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
|
|
|
9420
9421
|
"menu-item__label": "_menu-item__label_pfw9c_18"
|
|
9421
9422
|
}, B1 = {
|
|
9422
9423
|
$style: q1
|
|
9423
|
-
}, $1 = /* @__PURE__ */ ie(M1, [["__cssModules", B1], ["__scopeId", "data-v-
|
|
9424
|
+
}, $1 = /* @__PURE__ */ ie(M1, [["__cssModules", B1], ["__scopeId", "data-v-c42b6cfb"]]), E1 = /* @__PURE__ */ Ne({
|
|
9424
9425
|
__name: "SidebarMenu",
|
|
9425
9426
|
props: {
|
|
9426
9427
|
menuItems: {},
|