shared-ritm 1.2.92 → 1.2.93
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/README.md +103 -103
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +384 -365
- package/dist/shared-ritm.umd.js +153 -153
- package/dist/types/api/services/InstrumentsService.d.ts +1 -1
- package/dist/types/api/services/PhotoService.d.ts +40 -0
- package/dist/types/api/services/UserService.d.ts +10 -2
- package/dist/types/api/types/Api_Instruments.d.ts +1 -1
- package/dist/types/api/types/Api_User.d.ts +25 -0
- package/package.json +64 -64
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +64 -64
- package/src/api/services/CommentsService.ts +24 -24
- package/src/api/services/ControlsService.ts +65 -65
- package/src/api/services/FileService.ts +17 -17
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/InstrumentsService.ts +22 -22
- package/src/api/services/MetricsService.ts +110 -110
- package/src/api/services/ProjectsService.ts +68 -68
- package/src/api/services/RepairsService.ts +119 -119
- package/src/api/services/SearchService.ts +16 -16
- package/src/api/services/TasksService.ts +145 -145
- package/src/api/services/UserService.ts +87 -71
- package/src/api/services/VideoService.ts +17 -17
- package/src/api/settings/ApiService.ts +123 -123
- package/src/api/types/Api_Comment.ts +40 -40
- package/src/api/types/Api_Controls.ts +72 -72
- package/src/api/types/Api_Files.ts +7 -7
- package/src/api/types/Api_Instruments.ts +98 -98
- package/src/api/types/Api_Projects.ts +55 -55
- package/src/api/types/Api_Repairs.ts +115 -115
- package/src/api/types/Api_Search.ts +48 -48
- package/src/api/types/Api_Service.ts +9 -9
- package/src/api/types/Api_Tasks.ts +315 -315
- package/src/api/types/Api_User.ts +117 -87
- package/src/common/app-button/AppButton.vue +173 -173
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +81 -81
- package/src/common/app-datepicker/AppDatepicker.vue +165 -165
- package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
- package/src/common/app-dropdown/AppDropdown.vue +31 -31
- package/src/common/app-icon/AppIcon.vue +108 -108
- package/src/common/app-input/AppInput.vue +148 -148
- package/src/common/app-input-new/AppInputNew.vue +152 -152
- package/src/common/app-input-search/AppInputSearch.vue +174 -174
- package/src/common/app-layout/AppLayout.vue +84 -84
- package/src/common/app-layout/components/AppLayoutHeader.vue +246 -246
- package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
- package/src/common/app-loader/index.vue +43 -43
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sheet/AppSheet.vue +120 -120
- package/src/common/app-sheet-new/AppSheetNew.vue +246 -246
- 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 +148 -148
- package/src/common/app-table/AppTable.vue +305 -305
- package/src/common/app-table/AppTableLayout.vue +136 -126
- package/src/common/app-table/components/ModalSelect.vue +270 -270
- package/src/common/app-table/components/TableModal.vue +331 -331
- package/src/common/app-table/components/TablePagination.vue +152 -152
- package/src/common/app-table/controllers/useBaseTable.ts +45 -45
- package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
- package/src/common/app-table/controllers/useTableModel.ts +93 -93
- package/src/common/app-toggle/AppToggle.vue +24 -24
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- 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/components/table-filter-icon.vue +30 -30
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- package/src/icons/header/NotificationIcon.vue +18 -18
- package/src/icons/header/PersonIcon.vue +11 -11
- package/src/icons/header/SettingIcon.vue +14 -14
- package/src/icons/header/flashIcon.vue +24 -24
- 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/icons/task/attention-icon.vue +13 -13
- package/src/icons/task/clock-icon.vue +10 -10
- package/src/icons/task/delete-icon.vue +10 -10
- package/src/icons/task/fire-icon.vue +16 -16
- package/src/index.ts +112 -112
- package/src/main.ts +28 -28
- package/src/quasar-user-options.ts +17 -17
- package/src/router/index.ts +10 -10
- package/src/shared/styles/general.css +124 -124
- package/src/shims-vue.d.ts +5 -5
- package/src/styles/variables.sass +12 -12
- package/src/utils/confirm.ts +12 -12
- package/src/utils/faceApiHelper.ts +137 -137
- package/src/utils/helpers.ts +59 -59
- package/src/utils/notification.ts +9 -9
package/dist/shared-ritm.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var $0 = Object.defineProperty;
|
|
2
2
|
var H0 = (e, n, t) => n in e ? $0(e, n, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[n] = t;
|
|
3
3
|
var xf = (e, n, t) => H0(e, typeof n != "symbol" ? n + "" : n, t);
|
|
4
|
-
import { markRaw as Pp, defineComponent as Pt, reactive as ia, h as T, withDirectives as qn, computed as k, ref as Y, getCurrentInstance as Ye, nextTick as Ct, watch as me, onMounted as vn, onBeforeUnmount as Tt, onUnmounted as Bp, Teleport as U0, onDeactivated as ho, unref as Er, Transition as Hn, useCssVars as Ta, createBlock as
|
|
4
|
+
import { markRaw as Pp, defineComponent as Pt, reactive as ia, h as T, withDirectives as qn, computed as k, ref as Y, getCurrentInstance as Ye, nextTick as Ct, watch as me, onMounted as vn, onBeforeUnmount as Tt, onUnmounted as Bp, Teleport as U0, onDeactivated as ho, unref as Er, Transition as Hn, useCssVars as Ta, createBlock as Fe, openBlock as Q, mergeProps as Bc, withCtx as ve, renderSlot as nn, createCommentVNode as et, createTextVNode as Wt, toDisplayString as mt, toRaw as eo, normalizeClass as Ke, createElementBlock as be, createVNode as _e, createElementVNode as fe, onBeforeUpdate as Op, inject as co, onActivated as Aa, mergeModels as Cf, useModel as j0, createSlots as Da, provide as Xs, normalizeStyle as To, getCurrentScope as G0, onScopeDispose as K0, createStaticVNode as dr, resolveDynamicComponent as X0, Fragment as Ar, renderList as $r, vShow as Np, onBeforeMount as Oc, onUpdated as Y0, useSlots as Lp, shallowReactive as Q0, resolveComponent as Z0, withModifiers as Ys, normalizeProps as J0, toHandlers as e1 } from "vue";
|
|
5
5
|
function nr(e, n, t, r) {
|
|
6
6
|
return Object.defineProperty(e, n, {
|
|
7
7
|
get: t,
|
|
@@ -1880,17 +1880,17 @@ const St = Ge({
|
|
|
1880
1880
|
emits: ["update:modelValue", "click"],
|
|
1881
1881
|
setup(e, { emit: n }) {
|
|
1882
1882
|
Ta((s) => ({
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1885
|
-
"
|
|
1886
|
-
|
|
1883
|
+
"6ebd44ce": s.width,
|
|
1884
|
+
"31bb5bb4": s.height,
|
|
1885
|
+
"2efce8ab": s.borderRadius,
|
|
1886
|
+
d3196ae6: s.borderWidth
|
|
1887
1887
|
}));
|
|
1888
1888
|
const t = e, r = n;
|
|
1889
1889
|
function o(s) {
|
|
1890
1890
|
r("click", s), r("update:modelValue", !t.modelValue);
|
|
1891
1891
|
}
|
|
1892
1892
|
const a = k(() => t.badge === void 0 || t.badge === !1 || t.badge === !0 || t.badge === "" ? "" : t.badge), i = k(() => typeof t.disable == "function" ? t.disable() : t.disable);
|
|
1893
|
-
return (s, u) => (Q(),
|
|
1893
|
+
return (s, u) => (Q(), Fe(St, Bc(s.$props, {
|
|
1894
1894
|
class: [[s.$style.wrapper], "hover-bg-secondary hover-text-black"],
|
|
1895
1895
|
disable: i.value,
|
|
1896
1896
|
"no-caps": !s.uppercase,
|
|
@@ -1899,7 +1899,7 @@ const St = Ge({
|
|
|
1899
1899
|
}), {
|
|
1900
1900
|
default: ve(() => [
|
|
1901
1901
|
nn(s.$slots, "default"),
|
|
1902
|
-
s.badge ? (Q(),
|
|
1902
|
+
s.badge ? (Q(), Fe(qp, {
|
|
1903
1903
|
key: 0,
|
|
1904
1904
|
style: { padding: "6px", top: "-10px", right: "-10px", "font-size": "12px" },
|
|
1905
1905
|
color: s.badgeColor,
|
|
@@ -1910,8 +1910,8 @@ const St = Ge({
|
|
|
1910
1910
|
Wt(mt(a.value), 1)
|
|
1911
1911
|
]),
|
|
1912
1912
|
_: 1
|
|
1913
|
-
}, 8, ["color", "floating"])) :
|
|
1914
|
-
s.tooltip ? (Q(),
|
|
1913
|
+
}, 8, ["color", "floating"])) : et("", !0),
|
|
1914
|
+
s.tooltip ? (Q(), Fe(gs, {
|
|
1915
1915
|
key: 1,
|
|
1916
1916
|
class: "text-body2",
|
|
1917
1917
|
delay: 400
|
|
@@ -1920,21 +1920,21 @@ const St = Ge({
|
|
|
1920
1920
|
Wt(mt(s.tooltip), 1)
|
|
1921
1921
|
]),
|
|
1922
1922
|
_: 1
|
|
1923
|
-
})) :
|
|
1923
|
+
})) : et("", !0)
|
|
1924
1924
|
]),
|
|
1925
1925
|
_: 3
|
|
1926
1926
|
}, 16, ["class", "disable", "no-caps", "no-wrap"]));
|
|
1927
1927
|
}
|
|
1928
1928
|
}), G1 = "_wrapper_7fpdb_1", K1 = {
|
|
1929
1929
|
wrapper: G1
|
|
1930
|
-
},
|
|
1930
|
+
}, Pe = (e, n) => {
|
|
1931
1931
|
const t = e.__vccOpts || e;
|
|
1932
1932
|
for (const [r, o] of n)
|
|
1933
1933
|
t[r] = o;
|
|
1934
1934
|
return t;
|
|
1935
1935
|
}, X1 = {
|
|
1936
1936
|
$style: K1
|
|
1937
|
-
}, Ql = /* @__PURE__ */
|
|
1937
|
+
}, Ql = /* @__PURE__ */ Pe(j1, [["__cssModules", X1]]), xn = {
|
|
1938
1938
|
dark: {
|
|
1939
1939
|
type: Boolean,
|
|
1940
1940
|
default: null
|
|
@@ -2157,7 +2157,7 @@ const Y1 = () => T("div", {
|
|
|
2157
2157
|
get: () => t.modelValue,
|
|
2158
2158
|
set: (a) => r("update:modelValue", a)
|
|
2159
2159
|
});
|
|
2160
|
-
return (a, i) => (Q(),
|
|
2160
|
+
return (a, i) => (Q(), Fe(Ja, {
|
|
2161
2161
|
modelValue: o.value,
|
|
2162
2162
|
"onUpdate:modelValue": i[0] || (i[0] = (s) => o.value = s),
|
|
2163
2163
|
class: Ke(a.$style["app-checkbox"])
|
|
@@ -2167,7 +2167,7 @@ const Y1 = () => T("div", {
|
|
|
2167
2167
|
"app-checkbox": "_app-checkbox_1u51v_1"
|
|
2168
2168
|
}, J1 = {
|
|
2169
2169
|
$style: Z1
|
|
2170
|
-
}, _A = /* @__PURE__ */
|
|
2170
|
+
}, _A = /* @__PURE__ */ Pe(Q1, [["__cssModules", J1]]);
|
|
2171
2171
|
function ey() {
|
|
2172
2172
|
let e = /* @__PURE__ */ Object.create(null);
|
|
2173
2173
|
return {
|
|
@@ -3138,7 +3138,7 @@ const _v = Ge({
|
|
|
3138
3138
|
const ne = Qr($);
|
|
3139
3139
|
P[ne] === void 0 && (P[ne] = []), P[ne].push($.day);
|
|
3140
3140
|
}), P;
|
|
3141
|
-
}),
|
|
3141
|
+
}), tt = k(() => {
|
|
3142
3142
|
const P = {};
|
|
3143
3143
|
return q.value.forEach(($) => {
|
|
3144
3144
|
const ne = Qr($.from), ye = Qr($.to);
|
|
@@ -3223,7 +3223,7 @@ const _v = Ge({
|
|
|
3223
3223
|
color: W.value,
|
|
3224
3224
|
textColor: D.value
|
|
3225
3225
|
});
|
|
3226
|
-
}),
|
|
3226
|
+
}), tt.value[ct.value] !== void 0 && tt.value[ct.value].forEach((Te) => {
|
|
3227
3227
|
if (Te.from !== void 0) {
|
|
3228
3228
|
const Qe = ke + Te.from - 1, bt = ke + (Te.to || oe.value) - 1;
|
|
3229
3229
|
for (let Jn = Qe; Jn <= bt; Jn++)
|
|
@@ -3293,9 +3293,9 @@ const _v = Ge({
|
|
|
3293
3293
|
}), me(() => y.value.year + "|" + y.value.month, () => {
|
|
3294
3294
|
t("navigation", { year: y.value.year, month: y.value.month });
|
|
3295
3295
|
}), me(g, (P) => {
|
|
3296
|
-
|
|
3296
|
+
Ce(P, m.value, "mask"), v.value = P;
|
|
3297
3297
|
}), me(w, (P) => {
|
|
3298
|
-
|
|
3298
|
+
Ce(v.value, P, "locale"), m.value = P;
|
|
3299
3299
|
});
|
|
3300
3300
|
function pe(P) {
|
|
3301
3301
|
d = JSON.stringify(P);
|
|
@@ -3473,7 +3473,7 @@ const _v = Ge({
|
|
|
3473
3473
|
}
|
|
3474
3474
|
Pr($, "remove", P);
|
|
3475
3475
|
}
|
|
3476
|
-
function
|
|
3476
|
+
function Ce(P, $, ne) {
|
|
3477
3477
|
const ye = L.value.concat(q.value).map((dt) => ir(dt, P, $)).filter((dt) => dt.from !== void 0 ? dt.from.dateHash !== null && dt.to.dateHash !== null : dt.dateHash !== null), ke = (e.multiple === !0 ? ye : ye[0]) || null;
|
|
3478
3478
|
pe(ke), t("update:modelValue", ke, ne);
|
|
3479
3479
|
}
|
|
@@ -4363,7 +4363,7 @@ const yy = {
|
|
|
4363
4363
|
return d >= f;
|
|
4364
4364
|
}
|
|
4365
4365
|
return (i, s) => (Q(), be("div", by, [
|
|
4366
|
-
|
|
4366
|
+
_e(Ql, {
|
|
4367
4367
|
class: "button",
|
|
4368
4368
|
outline: "",
|
|
4369
4369
|
size: "20px",
|
|
@@ -4376,14 +4376,14 @@ const yy = {
|
|
|
4376
4376
|
icon: "event"
|
|
4377
4377
|
}, {
|
|
4378
4378
|
default: ve(() => [
|
|
4379
|
-
|
|
4379
|
+
_e(Av, {
|
|
4380
4380
|
anchor: "top left",
|
|
4381
4381
|
self: "top left",
|
|
4382
4382
|
"transition-show": "scale-up",
|
|
4383
4383
|
"transition-hide": "scale-down"
|
|
4384
4384
|
}, {
|
|
4385
4385
|
default: ve(() => [
|
|
4386
|
-
|
|
4386
|
+
_e(_v, {
|
|
4387
4387
|
modelValue: o.value,
|
|
4388
4388
|
"onUpdate:modelValue": s[0] || (s[0] = (u) => o.value = u),
|
|
4389
4389
|
mask: "YYYY-MM-DD",
|
|
@@ -4405,7 +4405,7 @@ const yy = {
|
|
|
4405
4405
|
])
|
|
4406
4406
|
]));
|
|
4407
4407
|
}
|
|
4408
|
-
}), kA = /* @__PURE__ */
|
|
4408
|
+
}), kA = /* @__PURE__ */ Pe(xy, [["__scopeId", "data-v-a3ab30e6"]]), Zc = {
|
|
4409
4409
|
left: !0,
|
|
4410
4410
|
right: !0,
|
|
4411
4411
|
up: !0,
|
|
@@ -4812,7 +4812,7 @@ const Ry = Ge({
|
|
|
4812
4812
|
function Je(re) {
|
|
4813
4813
|
re.keyCode === 13 && st();
|
|
4814
4814
|
}
|
|
4815
|
-
function
|
|
4815
|
+
function tt(re) {
|
|
4816
4816
|
de() !== !0 && (o.platform.is.desktop !== !0 && ge(re, xe()), ze());
|
|
4817
4817
|
}
|
|
4818
4818
|
function Xe(re) {
|
|
@@ -5013,7 +5013,7 @@ const Ry = Ge({
|
|
|
5013
5013
|
qn(
|
|
5014
5014
|
T("div", {
|
|
5015
5015
|
class: "q-time__clock cursor-pointer non-selectable",
|
|
5016
|
-
onClick:
|
|
5016
|
+
onClick: tt,
|
|
5017
5017
|
onMousedown: Xe
|
|
5018
5018
|
}, [
|
|
5019
5019
|
T("div", { class: "q-time__clock-circle fit" }, [
|
|
@@ -6145,9 +6145,9 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6145
6145
|
return (u, l) => (Q(), be("div", Uy, [
|
|
6146
6146
|
u.label ? (Q(), be("label", jy, [
|
|
6147
6147
|
Wt(mt(u.label) + " ", 1),
|
|
6148
|
-
u.required ? (Q(), be("span", Gy, "*")) :
|
|
6149
|
-
])) :
|
|
6150
|
-
|
|
6148
|
+
u.required ? (Q(), be("span", Gy, "*")) : et("", !0)
|
|
6149
|
+
])) : et("", !0),
|
|
6150
|
+
_e(Oa, {
|
|
6151
6151
|
modelValue: a.value,
|
|
6152
6152
|
"onUpdate:modelValue": l[2] || (l[2] = (c) => a.value = c),
|
|
6153
6153
|
filled: "",
|
|
@@ -6163,13 +6163,13 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6163
6163
|
var c;
|
|
6164
6164
|
return [
|
|
6165
6165
|
nn(u.$slots, "append", {}, void 0, !0),
|
|
6166
|
-
u.clearable && ((c = String(a.value)) != null && c.length) ? (Q(),
|
|
6166
|
+
u.clearable && ((c = String(a.value)) != null && c.length) ? (Q(), Fe(Et, {
|
|
6167
6167
|
key: 0,
|
|
6168
6168
|
name: "close",
|
|
6169
6169
|
class: "cursor-pointer clear-input",
|
|
6170
6170
|
onClick: l[0] || (l[0] = (d) => a.value = null)
|
|
6171
|
-
})) :
|
|
6172
|
-
u.uuid ? (Q(),
|
|
6171
|
+
})) : et("", !0),
|
|
6172
|
+
u.uuid ? (Q(), Fe(St, {
|
|
6173
6173
|
key: 1,
|
|
6174
6174
|
flat: "",
|
|
6175
6175
|
"no-caps": "",
|
|
@@ -6177,15 +6177,15 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6177
6177
|
size: "sm",
|
|
6178
6178
|
class: "q-ml-sm uuid-btn",
|
|
6179
6179
|
onClick: l[1] || (l[1] = (d) => a.value = Er(Ov)())
|
|
6180
|
-
})) :
|
|
6181
|
-
u.copyable ? (Q(),
|
|
6180
|
+
})) : et("", !0),
|
|
6181
|
+
u.copyable ? (Q(), Fe(Et, {
|
|
6182
6182
|
key: 2,
|
|
6183
6183
|
name: "content_copy",
|
|
6184
6184
|
class: "cursor-pointer q-ml-sm copy-icon",
|
|
6185
6185
|
color: "primary",
|
|
6186
6186
|
disable: !a.value,
|
|
6187
6187
|
onClick: s
|
|
6188
|
-
}, null, 8, ["disable"])) :
|
|
6188
|
+
}, null, 8, ["disable"])) : et("", !0)
|
|
6189
6189
|
];
|
|
6190
6190
|
}),
|
|
6191
6191
|
default: ve(() => [
|
|
@@ -6195,7 +6195,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6195
6195
|
}, 8, ["modelValue", "type", "rules", "placeholder", "disable", "readonly", "class", "error"])
|
|
6196
6196
|
]));
|
|
6197
6197
|
}
|
|
6198
|
-
}), Xy = /* @__PURE__ */
|
|
6198
|
+
}), Xy = /* @__PURE__ */ Pe(Ky, [["__scopeId", "data-v-6782e60a"]]), Yy = { class: "datepicker" }, Qy = /* @__PURE__ */ Pt({
|
|
6199
6199
|
__name: "AppDatepicker",
|
|
6200
6200
|
props: /* @__PURE__ */ Cf({
|
|
6201
6201
|
label: {},
|
|
@@ -6251,7 +6251,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6251
6251
|
return Array.from({ length: 60 }, (p, v) => v);
|
|
6252
6252
|
}
|
|
6253
6253
|
return (c, d) => (Q(), be("div", Yy, [
|
|
6254
|
-
|
|
6254
|
+
_e(Xy, {
|
|
6255
6255
|
modelValue: t.value,
|
|
6256
6256
|
"onUpdate:modelValue": d[3] || (d[3] = (f) => t.value = f),
|
|
6257
6257
|
readonly: "",
|
|
@@ -6264,19 +6264,19 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6264
6264
|
placeholder: "Выберите дату"
|
|
6265
6265
|
}, {
|
|
6266
6266
|
append: ve(() => [
|
|
6267
|
-
|
|
6267
|
+
_e(Et, {
|
|
6268
6268
|
name: "event",
|
|
6269
6269
|
class: "cursor-pointer"
|
|
6270
6270
|
})
|
|
6271
6271
|
]),
|
|
6272
6272
|
default: ve(() => [
|
|
6273
|
-
c.disabled ?
|
|
6273
|
+
c.disabled ? et("", !0) : (Q(), Fe(Av, {
|
|
6274
6274
|
key: 0,
|
|
6275
6275
|
class: "datepicker__wrapper",
|
|
6276
6276
|
"onUpdate:modelValue": o
|
|
6277
6277
|
}, {
|
|
6278
6278
|
default: ve(() => [
|
|
6279
|
-
|
|
6279
|
+
_e(_v, {
|
|
6280
6280
|
modelValue: t.value,
|
|
6281
6281
|
"onUpdate:modelValue": [
|
|
6282
6282
|
d[0] || (d[0] = (f) => t.value = f),
|
|
@@ -6285,7 +6285,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6285
6285
|
mask: `DD.MM.YYYY ${c.timeFormat}`,
|
|
6286
6286
|
options: a
|
|
6287
6287
|
}, null, 8, ["modelValue", "mask"]),
|
|
6288
|
-
c.time ? (Q(),
|
|
6288
|
+
c.time ? (Q(), Fe(Ry, {
|
|
6289
6289
|
key: 0,
|
|
6290
6290
|
modelValue: t.value,
|
|
6291
6291
|
"onUpdate:modelValue": d[2] || (d[2] = (f) => t.value = f),
|
|
@@ -6293,7 +6293,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6293
6293
|
format24h: "",
|
|
6294
6294
|
"hour-options": u(),
|
|
6295
6295
|
"minute-options": l()
|
|
6296
|
-
}, null, 8, ["modelValue", "mask", "hour-options", "minute-options"])) :
|
|
6296
|
+
}, null, 8, ["modelValue", "mask", "hour-options", "minute-options"])) : et("", !0)
|
|
6297
6297
|
]),
|
|
6298
6298
|
_: 1
|
|
6299
6299
|
}))
|
|
@@ -6302,7 +6302,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6302
6302
|
}, 8, ["modelValue", "label", "required", "rules", "error", "disable"])
|
|
6303
6303
|
]));
|
|
6304
6304
|
}
|
|
6305
|
-
}), EA = /* @__PURE__ */
|
|
6305
|
+
}), EA = /* @__PURE__ */ Pe(Qy, [["__scopeId", "data-v-f8bab635"]]), Zy = /* @__PURE__ */ Pt({
|
|
6306
6306
|
__name: "AppInput",
|
|
6307
6307
|
props: {
|
|
6308
6308
|
field: { type: Boolean },
|
|
@@ -6376,7 +6376,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6376
6376
|
emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
|
|
6377
6377
|
setup(e, { emit: n }) {
|
|
6378
6378
|
Ta((u) => ({
|
|
6379
|
-
"
|
|
6379
|
+
"542fbebd": u.height
|
|
6380
6380
|
}));
|
|
6381
6381
|
const t = e, r = n, o = Y(!1), a = k(() => t.type === "password" ? o.value ? "text" : "password" : t.type || "text"), i = k({
|
|
6382
6382
|
get: () => t.modelValue !== null && t.modelValue !== void 0 && t.type === "number" ? +t.modelValue : t.modelValue,
|
|
@@ -6387,7 +6387,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6387
6387
|
"--field": t.field,
|
|
6388
6388
|
"input-number-without-arrow": a.value === "number" && !t.withArrow
|
|
6389
6389
|
}));
|
|
6390
|
-
return (u, l) => (Q(),
|
|
6390
|
+
return (u, l) => (Q(), Fe(Oa, {
|
|
6391
6391
|
modelValue: i.value,
|
|
6392
6392
|
"onUpdate:modelValue": l[0] || (l[0] = (c) => i.value = c),
|
|
6393
6393
|
class: Ke([s.value, u.$style["app-input"]]),
|
|
@@ -6406,7 +6406,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6406
6406
|
"app-input": "_app-input_1cdlo_1"
|
|
6407
6407
|
}, e2 = {
|
|
6408
6408
|
$style: Jy
|
|
6409
|
-
}, RA = /* @__PURE__ */
|
|
6409
|
+
}, RA = /* @__PURE__ */ Pe(Zy, [["__cssModules", e2]]), t2 = /* @__PURE__ */ Pt({
|
|
6410
6410
|
__name: "AppInputSearch",
|
|
6411
6411
|
props: {
|
|
6412
6412
|
field: { type: Boolean },
|
|
@@ -6483,8 +6483,8 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6483
6483
|
emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
|
|
6484
6484
|
setup(e, { emit: n }) {
|
|
6485
6485
|
Ta((i) => ({
|
|
6486
|
-
"
|
|
6487
|
-
|
|
6486
|
+
"33b606d4": i.borderRadius,
|
|
6487
|
+
f2e6e6c6: i.height
|
|
6488
6488
|
}));
|
|
6489
6489
|
const t = e, r = n, o = k({
|
|
6490
6490
|
get: () => t.modelValue !== null && t.modelValue !== void 0 && t.type === "number" ? +t.modelValue : t.modelValue,
|
|
@@ -6493,7 +6493,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6493
6493
|
"--dense": t.dense,
|
|
6494
6494
|
"--bordered": t.bordered
|
|
6495
6495
|
}));
|
|
6496
|
-
return (i, s) => (Q(),
|
|
6496
|
+
return (i, s) => (Q(), Fe(Oa, {
|
|
6497
6497
|
modelValue: o.value,
|
|
6498
6498
|
"onUpdate:modelValue": s[0] || (s[0] = (u) => o.value = u),
|
|
6499
6499
|
standout: "",
|
|
@@ -6509,7 +6509,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6509
6509
|
i.searchIcon ? {
|
|
6510
6510
|
name: "prepend",
|
|
6511
6511
|
fn: ve(() => [
|
|
6512
|
-
|
|
6512
|
+
_e(Et, null, {
|
|
6513
6513
|
default: ve(() => s[1] || (s[1] = [
|
|
6514
6514
|
fe("svg", {
|
|
6515
6515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -6546,7 +6546,7 @@ const Uy = { class: "app-input-new" }, jy = {
|
|
|
6546
6546
|
"app-input": "_app-input_1u3xt_1"
|
|
6547
6547
|
}, r2 = {
|
|
6548
6548
|
$style: n2
|
|
6549
|
-
}, IA = /* @__PURE__ */
|
|
6549
|
+
}, IA = /* @__PURE__ */ Pe(t2, [["__cssModules", r2]]), o2 = Ge({
|
|
6550
6550
|
name: "QPageContainer",
|
|
6551
6551
|
setup(e, { slots: n }) {
|
|
6552
6552
|
const { proxy: { $q: t } } = Ye(), r = co(Ci, dn);
|
|
@@ -6840,15 +6840,15 @@ const qv = typeof ResizeObserver < "u", uh = qv === !0 ? {} : {
|
|
|
6840
6840
|
return (n, t) => (Q(), be("div", {
|
|
6841
6841
|
class: Ke({ "loader-backdrop": n.backdrop && n.loading })
|
|
6842
6842
|
}, [
|
|
6843
|
-
n.loading ? (Q(),
|
|
6843
|
+
n.loading ? (Q(), Fe(Kc, {
|
|
6844
6844
|
key: 0,
|
|
6845
6845
|
size: n.size,
|
|
6846
6846
|
class: "loader-spinner",
|
|
6847
6847
|
thickness: n.thickness
|
|
6848
|
-
}, null, 8, ["size", "thickness"])) :
|
|
6848
|
+
}, null, 8, ["size", "thickness"])) : et("", !0)
|
|
6849
6849
|
], 2));
|
|
6850
6850
|
}
|
|
6851
|
-
}), l2 = /* @__PURE__ */
|
|
6851
|
+
}), l2 = /* @__PURE__ */ Pe(u2, [["__scopeId", "data-v-9f8ceae1"]]), c2 = /* @__PURE__ */ Pt({
|
|
6852
6852
|
__name: "AppLayout",
|
|
6853
6853
|
props: {
|
|
6854
6854
|
logged: { type: Boolean },
|
|
@@ -6874,7 +6874,7 @@ const qv = typeof ResizeObserver < "u", uh = qv === !0 ? {} : {
|
|
|
6874
6874
|
}
|
|
6875
6875
|
return vn(() => {
|
|
6876
6876
|
o();
|
|
6877
|
-
}), (a, i) => (Q(),
|
|
6877
|
+
}), (a, i) => (Q(), Fe(s2, {
|
|
6878
6878
|
class: Ke(a.$style.layout),
|
|
6879
6879
|
view: "lHh LpR fFf"
|
|
6880
6880
|
}, {
|
|
@@ -6883,18 +6883,18 @@ const qv = typeof ResizeObserver < "u", uh = qv === !0 ? {} : {
|
|
|
6883
6883
|
key: 0,
|
|
6884
6884
|
class: Ke(a.$style["loader-backdrop"])
|
|
6885
6885
|
}, [
|
|
6886
|
-
|
|
6886
|
+
_e(l2, {
|
|
6887
6887
|
loading: a.logged,
|
|
6888
6888
|
size: "md",
|
|
6889
6889
|
thickness: 3,
|
|
6890
6890
|
backdrop: !0
|
|
6891
6891
|
}, null, 8, ["loading"])
|
|
6892
|
-
], 2)) :
|
|
6892
|
+
], 2)) : et("", !0),
|
|
6893
6893
|
nn(a.$slots, "drawer"),
|
|
6894
6894
|
nn(a.$slots, "header", {
|
|
6895
6895
|
style: To(r.value)
|
|
6896
6896
|
}),
|
|
6897
|
-
|
|
6897
|
+
_e(o2, {
|
|
6898
6898
|
class: Ke({ container: a.container }),
|
|
6899
6899
|
onWheel: t
|
|
6900
6900
|
}, {
|
|
@@ -6916,7 +6916,7 @@ const qv = typeof ResizeObserver < "u", uh = qv === !0 ? {} : {
|
|
|
6916
6916
|
"loader-spinner": "_loader-spinner_1d7zc_14"
|
|
6917
6917
|
}, h2 = {
|
|
6918
6918
|
$style: f2
|
|
6919
|
-
}, TA = /* @__PURE__ */
|
|
6919
|
+
}, TA = /* @__PURE__ */ Pe(c2, [["__cssModules", h2]]), p2 = {
|
|
6920
6920
|
true: "inset",
|
|
6921
6921
|
item: "item-inset",
|
|
6922
6922
|
"item-thumbnail": "item-thumbnail-inset"
|
|
@@ -7289,7 +7289,7 @@ function E2(e, n) {
|
|
|
7289
7289
|
}, null, -1)
|
|
7290
7290
|
]));
|
|
7291
7291
|
}
|
|
7292
|
-
const R2 = /* @__PURE__ */
|
|
7292
|
+
const R2 = /* @__PURE__ */ Pe(k2, [["render", E2]]), I2 = {}, T2 = {
|
|
7293
7293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7294
7294
|
width: "24",
|
|
7295
7295
|
height: "24",
|
|
@@ -7316,7 +7316,7 @@ function A2(e, n) {
|
|
|
7316
7316
|
}, null, -1)
|
|
7317
7317
|
]));
|
|
7318
7318
|
}
|
|
7319
|
-
const D2 = /* @__PURE__ */
|
|
7319
|
+
const D2 = /* @__PURE__ */ Pe(I2, [["render", A2]]), M2 = {}, F2 = {
|
|
7320
7320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7321
7321
|
width: "24",
|
|
7322
7322
|
height: "24",
|
|
@@ -7328,7 +7328,7 @@ function P2(e, n) {
|
|
|
7328
7328
|
dr('<path d="M12 22.0003C7.17 22.0003 3.25 18.0803 3.25 13.2503C3.25 8.42031 7.17 4.50031 12 4.50031C16.83 4.50031 20.75 8.42031 20.75 13.2503" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 8.00012V13.0001" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 2.00018H15" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
|
|
7329
7329
|
]));
|
|
7330
7330
|
}
|
|
7331
|
-
const B2 = /* @__PURE__ */
|
|
7331
|
+
const B2 = /* @__PURE__ */ Pe(M2, [["render", P2]]), O2 = {}, N2 = {
|
|
7332
7332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7333
7333
|
width: "24",
|
|
7334
7334
|
height: "24",
|
|
@@ -7353,7 +7353,7 @@ function L2(e, n) {
|
|
|
7353
7353
|
}, null, -1)
|
|
7354
7354
|
]));
|
|
7355
7355
|
}
|
|
7356
|
-
const q2 = /* @__PURE__ */
|
|
7356
|
+
const q2 = /* @__PURE__ */ Pe(O2, [["render", L2]]), V2 = {}, z2 = {
|
|
7357
7357
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7358
7358
|
width: "24",
|
|
7359
7359
|
height: "24",
|
|
@@ -7392,7 +7392,7 @@ function W2(e, n) {
|
|
|
7392
7392
|
}, null, -1)
|
|
7393
7393
|
]));
|
|
7394
7394
|
}
|
|
7395
|
-
const $2 = /* @__PURE__ */
|
|
7395
|
+
const $2 = /* @__PURE__ */ Pe(V2, [["render", W2]]), H2 = {}, U2 = {
|
|
7396
7396
|
width: "28",
|
|
7397
7397
|
height: "28",
|
|
7398
7398
|
viewBox: "0 0 24 24",
|
|
@@ -7409,7 +7409,7 @@ function j2(e, n) {
|
|
|
7409
7409
|
}, null, -1)
|
|
7410
7410
|
]));
|
|
7411
7411
|
}
|
|
7412
|
-
const G2 = /* @__PURE__ */
|
|
7412
|
+
const G2 = /* @__PURE__ */ Pe(H2, [["render", j2]]), K2 = {}, X2 = {
|
|
7413
7413
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7414
7414
|
width: "currentWidth",
|
|
7415
7415
|
height: "currentHeight",
|
|
@@ -7448,7 +7448,7 @@ function Y2(e, n) {
|
|
|
7448
7448
|
}, null, -1)
|
|
7449
7449
|
]));
|
|
7450
7450
|
}
|
|
7451
|
-
const Q2 = /* @__PURE__ */
|
|
7451
|
+
const Q2 = /* @__PURE__ */ Pe(K2, [["render", Y2]]), Z2 = {}, J2 = {
|
|
7452
7452
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7453
7453
|
width: "24",
|
|
7454
7454
|
height: "24",
|
|
@@ -7487,7 +7487,7 @@ function eb(e, n) {
|
|
|
7487
7487
|
}, null, -1)
|
|
7488
7488
|
]));
|
|
7489
7489
|
}
|
|
7490
|
-
const tb = /* @__PURE__ */
|
|
7490
|
+
const tb = /* @__PURE__ */ Pe(Z2, [["render", eb]]), nb = {}, rb = {
|
|
7491
7491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7492
7492
|
width: "24",
|
|
7493
7493
|
height: "24",
|
|
@@ -7499,7 +7499,7 @@ function ob(e, n) {
|
|
|
7499
7499
|
dr('<path d="M18 7.16019C17.94 7.15019 17.87 7.15019 17.81 7.16019C16.43 7.11019 15.33 5.98018 15.33 4.58018C15.33 3.15018 16.48 2.00018 17.91 2.00018C19.34 2.00018 20.49 3.16018 20.49 4.58018C20.48 5.98018 19.38 7.11019 18 7.16019Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.9698 14.4401C18.3398 14.6701 19.8498 14.4301 20.9098 13.7201C22.3198 12.7801 22.3198 11.2401 20.9098 10.3001C19.8398 9.5901 18.3098 9.35009 16.9398 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.9701 7.16037C6.0301 7.15037 6.1001 7.15037 6.1601 7.16037C7.5401 7.11037 8.6401 5.98037 8.6401 4.58037C8.6401 3.15037 7.4901 2.00037 6.0601 2.00037C4.6301 2.00037 3.4801 3.16037 3.4801 4.58037C3.4901 5.98037 4.5901 7.11037 5.9701 7.16037Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.00006 14.4401C5.63006 14.6701 4.12006 14.4301 3.06006 13.7201C1.65006 12.7801 1.65006 11.2401 3.06006 10.3001C4.13006 9.5901 5.66006 9.35009 7.03006 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.0001 14.6302C11.9401 14.6202 11.8701 14.6202 11.8101 14.6302C10.4301 14.5802 9.33008 13.4502 9.33008 12.0502C9.33008 10.6202 10.4801 9.47021 11.9101 9.47021C13.3401 9.47021 14.4901 10.6302 14.4901 12.0502C14.4801 13.4502 13.3801 14.5902 12.0001 14.6302Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9.09021 17.7804C7.68021 18.7204 7.68021 20.2603 9.09021 21.2003C10.6902 22.2703 13.3102 22.2703 14.9102 21.2003C16.3202 20.2603 16.3202 18.7204 14.9102 17.7804C13.3202 16.7204 10.6902 16.7204 9.09021 17.7804Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
|
|
7500
7500
|
]));
|
|
7501
7501
|
}
|
|
7502
|
-
const ab = /* @__PURE__ */
|
|
7502
|
+
const ab = /* @__PURE__ */ Pe(nb, [["render", ob]]), ib = {}, sb = {
|
|
7503
7503
|
width: "24",
|
|
7504
7504
|
height: "24",
|
|
7505
7505
|
viewBox: "0 0 24 24",
|
|
@@ -7524,7 +7524,7 @@ function ub(e, n) {
|
|
|
7524
7524
|
}, null, -1)
|
|
7525
7525
|
]));
|
|
7526
7526
|
}
|
|
7527
|
-
const lb = /* @__PURE__ */
|
|
7527
|
+
const lb = /* @__PURE__ */ Pe(ib, [["render", ub]]), cb = {}, db = {
|
|
7528
7528
|
width: "24",
|
|
7529
7529
|
height: "24",
|
|
7530
7530
|
viewBox: "0 0 24 24",
|
|
@@ -7536,7 +7536,7 @@ function fb(e, n) {
|
|
|
7536
7536
|
dr('<path d="M17 3H21V7" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15 9L21 3" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7 21H3V17" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 15L3 21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.02 2.20001C13.37 2.07001 12.69 2 12 2C6.48 2 2 6.48 2 12C2 12.69 2.07001 13.36 2.20001 14" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9.97998 21.8C10.63 21.93 11.31 22 12 22C17.52 22 22 17.52 22 12C22 11.32 21.93 10.65 21.8 10" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
|
|
7537
7537
|
]));
|
|
7538
7538
|
}
|
|
7539
|
-
const hb = /* @__PURE__ */
|
|
7539
|
+
const hb = /* @__PURE__ */ Pe(cb, [["render", fb]]), pb = {};
|
|
7540
7540
|
function vb(e, n) {
|
|
7541
7541
|
return Q(), be("div", null, n[0] || (n[0] = [
|
|
7542
7542
|
fe("svg", {
|
|
@@ -7556,7 +7556,7 @@ function vb(e, n) {
|
|
|
7556
7556
|
], -1)
|
|
7557
7557
|
]));
|
|
7558
7558
|
}
|
|
7559
|
-
const mb = /* @__PURE__ */
|
|
7559
|
+
const mb = /* @__PURE__ */ Pe(pb, [["render", vb]]), gb = {}, yb = {
|
|
7560
7560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7561
7561
|
width: "40",
|
|
7562
7562
|
height: "26",
|
|
@@ -7582,7 +7582,7 @@ function bb(e, n) {
|
|
|
7582
7582
|
], -1)
|
|
7583
7583
|
]));
|
|
7584
7584
|
}
|
|
7585
|
-
const wb = /* @__PURE__ */
|
|
7585
|
+
const wb = /* @__PURE__ */ Pe(gb, [["render", bb]]), xb = {}, Cb = {
|
|
7586
7586
|
width: "24",
|
|
7587
7587
|
height: "24",
|
|
7588
7588
|
viewBox: "0 0 24 24",
|
|
@@ -7594,7 +7594,7 @@ function _b(e, n) {
|
|
|
7594
7594
|
dr('<path d="M11 19.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 12.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 5.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 5.5L4 6.5L7 3.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 12.5L4 13.5L7 10.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 19.5L4 20.5L7 17.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
|
|
7595
7595
|
]));
|
|
7596
7596
|
}
|
|
7597
|
-
const kb = /* @__PURE__ */
|
|
7597
|
+
const kb = /* @__PURE__ */ Pe(xb, [["render", _b]]), Sb = {}, Eb = {
|
|
7598
7598
|
width: "24",
|
|
7599
7599
|
height: "24",
|
|
7600
7600
|
viewBox: "0 0 24 24",
|
|
@@ -7606,7 +7606,7 @@ function Rb(e, n) {
|
|
|
7606
7606
|
dr('<path d="M14 13V14C14 14.01 14 14.01 14 14.02C14 15.11 13.99 16 12 16C10.02 16 10 15.12 10 14.03V13C10 12 10 12 11 12H13C14 12 14 12 14 13Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M21.65 11C19.34 12.68 16.7 13.68 14 14.02" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2.62012 11.27C4.87012 12.81 7.41012 13.74 10.0001 14.03" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.99983 22H15.9998C20.0198 22 20.7398 20.39 20.9498 18.43L21.6998 10.43C21.9698 7.99 21.2698 6 16.9998 6H6.99983C2.72983 6 2.02983 7.99 2.29983 10.43L3.04983 18.43C3.25983 20.39 3.97983 22 7.99983 22Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 6V5.2C8 3.43 8 2 11.2 2H12.8C16 2 16 3.43 16 5.2V6" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
|
|
7607
7607
|
]));
|
|
7608
7608
|
}
|
|
7609
|
-
const Ib = /* @__PURE__ */
|
|
7609
|
+
const Ib = /* @__PURE__ */ Pe(Sb, [["render", Rb]]), Tb = {}, Ab = {
|
|
7610
7610
|
width: 24,
|
|
7611
7611
|
height: 24,
|
|
7612
7612
|
viewBox: "0 0 24 24",
|
|
@@ -7618,7 +7618,7 @@ function Db(e, n) {
|
|
|
7618
7618
|
dr('<path class="icon-section" d="M8.5 14.25C8.5 16.17 10.08 17.75 12 17.75C13.92 17.75 15.5 16.17 15.5 14.25" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M8.80994 2L5.18994 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M15.1899 2L18.8099 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M2 7.8501C2 6.0001 2.99 5.8501 4.22 5.8501H19.78C21.01 5.8501 22 6.0001 22 7.8501C22 10.0001 21.01 9.8501 19.78 9.8501H4.22C2.99 9.8501 2 10.0001 2 7.8501Z" stroke="currentStroke" stroke-width="1.5"></path><path class="icon-section" d="M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round"></path>', 5)
|
|
7619
7619
|
]));
|
|
7620
7620
|
}
|
|
7621
|
-
const Mb = /* @__PURE__ */
|
|
7621
|
+
const Mb = /* @__PURE__ */ Pe(Tb, [["render", Db]]), Fb = {}, Pb = {
|
|
7622
7622
|
width: "24",
|
|
7623
7623
|
height: "24",
|
|
7624
7624
|
viewBox: "0 0 24 24",
|
|
@@ -7657,7 +7657,7 @@ function Bb(e, n) {
|
|
|
7657
7657
|
}, null, -1)
|
|
7658
7658
|
]));
|
|
7659
7659
|
}
|
|
7660
|
-
const Ob = /* @__PURE__ */
|
|
7660
|
+
const Ob = /* @__PURE__ */ Pe(Fb, [["render", Bb]]), Nb = {}, Lb = {
|
|
7661
7661
|
width: "24",
|
|
7662
7662
|
height: "24",
|
|
7663
7663
|
viewBox: "0 0 24 24",
|
|
@@ -7688,7 +7688,7 @@ function qb(e, n) {
|
|
|
7688
7688
|
}, null, -1)
|
|
7689
7689
|
]));
|
|
7690
7690
|
}
|
|
7691
|
-
const Vb = /* @__PURE__ */
|
|
7691
|
+
const Vb = /* @__PURE__ */ Pe(Nb, [["render", qb]]), zb = {}, Wb = {
|
|
7692
7692
|
width: "24",
|
|
7693
7693
|
height: "24",
|
|
7694
7694
|
viewBox: "0 0 24 24",
|
|
@@ -7714,7 +7714,7 @@ function $b(e, n) {
|
|
|
7714
7714
|
}, null, -1)
|
|
7715
7715
|
]));
|
|
7716
7716
|
}
|
|
7717
|
-
const Hb = /* @__PURE__ */
|
|
7717
|
+
const Hb = /* @__PURE__ */ Pe(zb, [["render", $b]]), Ub = {}, jb = {
|
|
7718
7718
|
width: "24",
|
|
7719
7719
|
height: "24",
|
|
7720
7720
|
viewBox: "0 0 24 24",
|
|
@@ -7739,7 +7739,7 @@ function Gb(e, n) {
|
|
|
7739
7739
|
}, null, -1)
|
|
7740
7740
|
]));
|
|
7741
7741
|
}
|
|
7742
|
-
const Kb = /* @__PURE__ */
|
|
7742
|
+
const Kb = /* @__PURE__ */ Pe(Ub, [["render", Gb]]), Xb = {}, Yb = {
|
|
7743
7743
|
width: "24",
|
|
7744
7744
|
height: "24",
|
|
7745
7745
|
viewBox: "0 0 24 30",
|
|
@@ -7751,7 +7751,7 @@ function Qb(e, n) {
|
|
|
7751
7751
|
dr('<g filter="url(#filter0_d_116_6675)"><path d="M11.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path></g><g filter="url(#filter1_d_116_6675)"><path d="M15.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path></g><path d="M2 22H22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 2C13.6 2.64 15.4 2.64 17 2V5C15.4 5.64 13.6 5.64 12 5V2Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 5V8" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17 8H7C5 8 4 9 4 11V22H20V11C20 9 19 8 17 8Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4.58008 12H19.4201" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.98999 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path><defs><filter id="filter0_d_116_6675" x="7.23999" y="12" width="9.5" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape"></feBlend></filter><filter id="filter1_d_116_6675" x="11.24" y="12" width="9.5" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape"></feBlend></filter></defs>', 9)
|
|
7752
7752
|
]));
|
|
7753
7753
|
}
|
|
7754
|
-
const Zb = /* @__PURE__ */
|
|
7754
|
+
const Zb = /* @__PURE__ */ Pe(Xb, [["render", Qb]]), Jb = {}, ew = {
|
|
7755
7755
|
width: "24",
|
|
7756
7756
|
height: "24",
|
|
7757
7757
|
viewBox: "0 0 24 24",
|
|
@@ -7763,7 +7763,7 @@ function tw(e, n) {
|
|
|
7763
7763
|
dr('<path d="M15.5 11H8.5C7.67 11 7 11.67 7 12.5V22H17V12.5C17 11.67 16.33 11 15.5 11Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2 22H22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2.94995 22L2.99995 9.96999C2.99995 9.35999 3.28995 8.78004 3.76995 8.40004L10.77 2.95003C11.49 2.39003 12.5 2.39003 13.23 2.95003L20.23 8.39003C20.72 8.77003 21 9.34999 21 9.96999V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path><path d="M10 16.25V17.75" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 7.5H13.5" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
|
|
7764
7764
|
]));
|
|
7765
7765
|
}
|
|
7766
|
-
const nw = /* @__PURE__ */
|
|
7766
|
+
const nw = /* @__PURE__ */ Pe(Jb, [["render", tw]]), rw = {}, ow = {
|
|
7767
7767
|
width: "24",
|
|
7768
7768
|
height: "24",
|
|
7769
7769
|
viewBox: "0 0 24 24",
|
|
@@ -7802,7 +7802,7 @@ function aw(e, n) {
|
|
|
7802
7802
|
}, null, -1)
|
|
7803
7803
|
]));
|
|
7804
7804
|
}
|
|
7805
|
-
const iw = /* @__PURE__ */
|
|
7805
|
+
const iw = /* @__PURE__ */ Pe(rw, [["render", aw]]), sw = {}, uw = {
|
|
7806
7806
|
width: "24",
|
|
7807
7807
|
height: "24",
|
|
7808
7808
|
viewBox: "0 0 24 24",
|
|
@@ -7835,7 +7835,7 @@ function lw(e, n) {
|
|
|
7835
7835
|
}, null, -1)
|
|
7836
7836
|
]));
|
|
7837
7837
|
}
|
|
7838
|
-
const cw = /* @__PURE__ */
|
|
7838
|
+
const cw = /* @__PURE__ */ Pe(sw, [["render", lw]]), dw = {}, fw = {
|
|
7839
7839
|
width: "24",
|
|
7840
7840
|
height: "24",
|
|
7841
7841
|
viewBox: "0 0 24 24",
|
|
@@ -7847,7 +7847,7 @@ function hw(e, n) {
|
|
|
7847
7847
|
dr('<path d="M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3.41016 22C3.41016 18.13 7.26015 15 12.0002 15C12.9602 15 13.8902 15.13 14.7602 15.37" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22 18C22 18.32 21.96 18.63 21.88 18.93C21.79 19.33 21.63 19.72 21.42 20.06C20.73 21.22 19.46 22 18 22C16.97 22 16.04 21.61 15.34 20.97C15.04 20.71 14.78 20.4 14.58 20.06C14.21 19.46 14 18.75 14 18C14 16.92 14.43 15.93 15.13 15.21C15.86 14.46 16.88 14 18 14C19.18 14 20.25 14.51 20.97 15.33C21.61 16.04 22 16.98 22 18Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19.4897 17.98H16.5098" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18 16.52V19.51" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
|
|
7848
7848
|
]));
|
|
7849
7849
|
}
|
|
7850
|
-
const pw = /* @__PURE__ */
|
|
7850
|
+
const pw = /* @__PURE__ */ Pe(dw, [["render", hw]]), vw = {}, mw = {
|
|
7851
7851
|
width: "28",
|
|
7852
7852
|
height: "28",
|
|
7853
7853
|
viewBox: "0 0 26 26",
|
|
@@ -7877,7 +7877,7 @@ function gw(e, n) {
|
|
|
7877
7877
|
}, null, -1)
|
|
7878
7878
|
]));
|
|
7879
7879
|
}
|
|
7880
|
-
const yw = /* @__PURE__ */
|
|
7880
|
+
const yw = /* @__PURE__ */ Pe(vw, [["render", gw]]), bw = {}, ww = {
|
|
7881
7881
|
width: "24",
|
|
7882
7882
|
height: "24",
|
|
7883
7883
|
viewBox: "0 0 24 24",
|
|
@@ -7889,7 +7889,7 @@ function xw(e, n) {
|
|
|
7889
7889
|
dr('<path d="M9.62012 16L11.1201 17.5L14.3701 14.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8.80994 2L5.18994 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15.1899 2L18.8099 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2 7.8501C2 6.0001 2.99 5.8501 4.22 5.8501H19.78C21.01 5.8501 22 6.0001 22 7.8501C22 10.0001 21.01 9.8501 19.78 9.8501H4.22C2.99 9.8501 2 10.0001 2 7.8501Z" stroke="currentStroke" stroke-width="1.5"></path><path d="M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round"></path>', 5)
|
|
7890
7890
|
]));
|
|
7891
7891
|
}
|
|
7892
|
-
const Cw = /* @__PURE__ */
|
|
7892
|
+
const Cw = /* @__PURE__ */ Pe(bw, [["render", xw]]), _w = {}, kw = {
|
|
7893
7893
|
width: "24",
|
|
7894
7894
|
height: "24",
|
|
7895
7895
|
viewBox: "0 0 24 24",
|
|
@@ -7921,7 +7921,7 @@ function Sw(e, n) {
|
|
|
7921
7921
|
}, null, -1)
|
|
7922
7922
|
]));
|
|
7923
7923
|
}
|
|
7924
|
-
const Ew = /* @__PURE__ */
|
|
7924
|
+
const Ew = /* @__PURE__ */ Pe(_w, [["render", Sw]]), Rw = {}, Iw = {
|
|
7925
7925
|
width: "24",
|
|
7926
7926
|
height: "24",
|
|
7927
7927
|
viewBox: "0 0 24 24",
|
|
@@ -7953,7 +7953,7 @@ function Tw(e, n) {
|
|
|
7953
7953
|
}, null, -1)
|
|
7954
7954
|
]));
|
|
7955
7955
|
}
|
|
7956
|
-
const Aw = /* @__PURE__ */
|
|
7956
|
+
const Aw = /* @__PURE__ */ Pe(Rw, [["render", Tw]]), Dw = {}, Mw = {
|
|
7957
7957
|
width: "24",
|
|
7958
7958
|
height: "24",
|
|
7959
7959
|
viewBox: "0 0 24 24",
|
|
@@ -7979,7 +7979,7 @@ function Fw(e, n) {
|
|
|
7979
7979
|
}, null, -1)
|
|
7980
7980
|
]));
|
|
7981
7981
|
}
|
|
7982
|
-
const Pw = /* @__PURE__ */
|
|
7982
|
+
const Pw = /* @__PURE__ */ Pe(Dw, [["render", Fw]]), Bw = {}, Ow = {
|
|
7983
7983
|
width: "24",
|
|
7984
7984
|
height: "24",
|
|
7985
7985
|
viewBox: "0 0 24 24",
|
|
@@ -7991,7 +7991,7 @@ function Nw(e, n) {
|
|
|
7991
7991
|
dr('<path d="M12.3701 8.87988H17.6201" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.37988 8.87988L7.12988 9.62988L9.37988 7.37988" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.3701 15.8799H17.6201" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.37988 15.8799L7.12988 16.6299L9.37988 14.3799" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
|
|
7992
7992
|
]));
|
|
7993
7993
|
}
|
|
7994
|
-
const Lw = /* @__PURE__ */
|
|
7994
|
+
const Lw = /* @__PURE__ */ Pe(Bw, [["render", Nw]]), qw = {}, Vw = {
|
|
7995
7995
|
width: "24",
|
|
7996
7996
|
height: "24",
|
|
7997
7997
|
viewBox: "0 0 24 24",
|
|
@@ -8025,7 +8025,7 @@ function zw(e, n) {
|
|
|
8025
8025
|
}, null, -1)
|
|
8026
8026
|
]));
|
|
8027
8027
|
}
|
|
8028
|
-
const Ww = /* @__PURE__ */
|
|
8028
|
+
const Ww = /* @__PURE__ */ Pe(qw, [["render", zw]]), $w = {}, Hw = {
|
|
8029
8029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8030
8030
|
width: "24",
|
|
8031
8031
|
height: "24",
|
|
@@ -8051,7 +8051,7 @@ function Uw(e, n) {
|
|
|
8051
8051
|
}, null, -1)
|
|
8052
8052
|
]));
|
|
8053
8053
|
}
|
|
8054
|
-
const jw = /* @__PURE__ */
|
|
8054
|
+
const jw = /* @__PURE__ */ Pe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
8055
8055
|
__name: "AppIcon",
|
|
8056
8056
|
props: {
|
|
8057
8057
|
size: {},
|
|
@@ -8061,8 +8061,8 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8061
8061
|
},
|
|
8062
8062
|
setup(e) {
|
|
8063
8063
|
Ta((o) => ({
|
|
8064
|
-
|
|
8065
|
-
"
|
|
8064
|
+
f542c750: o.color,
|
|
8065
|
+
"07daff28": o.size
|
|
8066
8066
|
}));
|
|
8067
8067
|
const n = e;
|
|
8068
8068
|
function t(o) {
|
|
@@ -8105,7 +8105,7 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8105
8105
|
ArrowFrameIcon: jw
|
|
8106
8106
|
})[t(n.name)]
|
|
8107
8107
|
);
|
|
8108
|
-
return (o, a) => (Q(),
|
|
8108
|
+
return (o, a) => (Q(), Fe(X0(r.value), {
|
|
8109
8109
|
tag: o.tag,
|
|
8110
8110
|
class: Ke([o.$style["app-icon"]])
|
|
8111
8111
|
}, null, 8, ["tag", "class"]));
|
|
@@ -8114,7 +8114,7 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8114
8114
|
"app-icon": "_app-icon_11ugn_1"
|
|
8115
8115
|
}, Xw = {
|
|
8116
8116
|
$style: Kw
|
|
8117
|
-
}, _a = /* @__PURE__ */
|
|
8117
|
+
}, _a = /* @__PURE__ */ Pe(Gw, [["__cssModules", Xw]]), Yw = { style: { "font-weight": "700", "font-size": "14px" } }, Qw = { style: { "font-weight": "300", "font-size": "12px" } }, Zw = /* @__PURE__ */ Pt({
|
|
8118
8118
|
__name: "AppLayoutHeader",
|
|
8119
8119
|
props: {
|
|
8120
8120
|
userData: {},
|
|
@@ -8133,11 +8133,11 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8133
8133
|
var d, f, h;
|
|
8134
8134
|
return (h = (f = (d = r.userData) == null ? void 0 : d.positions) == null ? void 0 : f[0]) == null ? void 0 : h.display_name;
|
|
8135
8135
|
}), u = () => a.value = !a.value, l = () => t("clickProfile"), c = (d) => t("clickSettingsMenuItem", d.name);
|
|
8136
|
-
return _2(o, () => a.value = !1), (d, f) => (Q(),
|
|
8136
|
+
return _2(o, () => a.value = !1), (d, f) => (Q(), Fe(g2, {
|
|
8137
8137
|
class: Ke([d.$style.header, { [d.$style["header-full"]]: d.fullWidth }])
|
|
8138
8138
|
}, {
|
|
8139
8139
|
default: ve(() => [
|
|
8140
|
-
|
|
8140
|
+
_e(m2, {
|
|
8141
8141
|
class: Ke(d.$style.toolbar)
|
|
8142
8142
|
}, {
|
|
8143
8143
|
default: ve(() => [
|
|
@@ -8149,7 +8149,7 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8149
8149
|
class: Ke(d.$style.person),
|
|
8150
8150
|
onClick: l
|
|
8151
8151
|
}, [
|
|
8152
|
-
|
|
8152
|
+
_e(_a, { name: "person-icon" }),
|
|
8153
8153
|
fe("div", {
|
|
8154
8154
|
class: Ke(d.$style.person__info)
|
|
8155
8155
|
}, [
|
|
@@ -8160,12 +8160,12 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8160
8160
|
fe("div", {
|
|
8161
8161
|
class: Ke(d.$style["action-wrapper"])
|
|
8162
8162
|
}, [
|
|
8163
|
-
|
|
8163
|
+
_e(Cs, {
|
|
8164
8164
|
color: "white",
|
|
8165
8165
|
vertical: "",
|
|
8166
8166
|
size: "1px"
|
|
8167
8167
|
}),
|
|
8168
|
-
|
|
8168
|
+
_e(St, {
|
|
8169
8169
|
ref_key: "refMenuSettings",
|
|
8170
8170
|
ref: o,
|
|
8171
8171
|
flat: "",
|
|
@@ -8175,22 +8175,22 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8175
8175
|
onClick: u
|
|
8176
8176
|
}, {
|
|
8177
8177
|
default: ve(() => [
|
|
8178
|
-
|
|
8178
|
+
_e(_a, {
|
|
8179
8179
|
size: "28px",
|
|
8180
8180
|
name: "setting-icon"
|
|
8181
8181
|
}),
|
|
8182
|
-
|
|
8182
|
+
_e(xi, {
|
|
8183
8183
|
"max-height": "160px",
|
|
8184
8184
|
offset: [-18, 4],
|
|
8185
8185
|
class: Ke(d.$style["settings-menu"])
|
|
8186
8186
|
}, {
|
|
8187
8187
|
default: ve(() => [
|
|
8188
|
-
(Q(!0), be(Ar, null, $r(d.settingsMenuItems, (h) => (Q(),
|
|
8188
|
+
(Q(!0), be(Ar, null, $r(d.settingsMenuItems, (h) => (Q(), Fe(ad, {
|
|
8189
8189
|
key: h.name,
|
|
8190
8190
|
class: Ke(d.$style["settings-menu__list"])
|
|
8191
8191
|
}, {
|
|
8192
8192
|
default: ve(() => [
|
|
8193
|
-
qn((Q(),
|
|
8193
|
+
qn((Q(), Fe(Xn, {
|
|
8194
8194
|
class: Ke(d.$style["settings-menu__item"]),
|
|
8195
8195
|
clickable: "",
|
|
8196
8196
|
onClick: (p) => c(h)
|
|
@@ -8240,7 +8240,7 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8240
8240
|
"action-wrapper": "_action-wrapper_2napl_117"
|
|
8241
8241
|
}, ux = {
|
|
8242
8242
|
$style: sx
|
|
8243
|
-
}, AA = /* @__PURE__ */
|
|
8243
|
+
}, AA = /* @__PURE__ */ Pe(Zw, [["__cssModules", ux]]), lx = Ge({
|
|
8244
8244
|
name: "QPage",
|
|
8245
8245
|
props: {
|
|
8246
8246
|
padding: Boolean,
|
|
@@ -8271,14 +8271,14 @@ const jw = /* @__PURE__ */ Fe($w, [["render", Uw]]), Gw = /* @__PURE__ */ Pt({
|
|
|
8271
8271
|
}
|
|
8272
8272
|
}), cx = {};
|
|
8273
8273
|
function dx(e, n) {
|
|
8274
|
-
return Q(),
|
|
8274
|
+
return Q(), Fe(lx, { class: "page-container" }, {
|
|
8275
8275
|
default: ve(() => [
|
|
8276
8276
|
nn(e.$slots, "default", {}, void 0, !0)
|
|
8277
8277
|
]),
|
|
8278
8278
|
_: 3
|
|
8279
8279
|
});
|
|
8280
8280
|
}
|
|
8281
|
-
const DA = /* @__PURE__ */
|
|
8281
|
+
const DA = /* @__PURE__ */ Pe(cx, [["render", dx], ["__scopeId", "data-v-51e4160c"]]), fx = {
|
|
8282
8282
|
xs: 8,
|
|
8283
8283
|
sm: 10,
|
|
8284
8284
|
md: 14,
|
|
@@ -8646,18 +8646,18 @@ function jv({
|
|
|
8646
8646
|
})), vx(Oe, X - oe);
|
|
8647
8647
|
const Je = de !== void 0 ? h.slice(oe, X).reduce(da, 0) : 0;
|
|
8648
8648
|
if (ge === !0) {
|
|
8649
|
-
const
|
|
8650
|
-
y.value = { from: oe, to:
|
|
8649
|
+
const tt = ze >= y.value.from && oe <= y.value.to ? y.value.to : ze;
|
|
8650
|
+
y.value = { from: oe, to: tt }, p.value = $a(f, h, 0, oe), v.value = $a(f, h, ze, e.value), requestAnimationFrame(() => {
|
|
8651
8651
|
y.value.to !== ze && l === N.scrollStart && (y.value = { from: y.value.from, to: ze }, v.value = $a(f, h, ze, e.value));
|
|
8652
8652
|
});
|
|
8653
8653
|
}
|
|
8654
8654
|
requestAnimationFrame(() => {
|
|
8655
8655
|
if (l !== N.scrollStart) return;
|
|
8656
8656
|
ge === !0 && W(oe);
|
|
8657
|
-
const
|
|
8657
|
+
const tt = h.slice(oe, X).reduce(da, 0), Xe = tt + N.offsetStart + p.value, ct = Xe + h[X];
|
|
8658
8658
|
let gt = Xe + ae;
|
|
8659
8659
|
if (de !== void 0) {
|
|
8660
|
-
const At =
|
|
8660
|
+
const At = tt - Je, Dt = N.scrollStart + At;
|
|
8661
8661
|
gt = se !== !0 && Dt < Xe && ct < Dt + N.scrollViewSize ? Dt : de === "end" ? ct - N.scrollViewSize : Xe - (de === "start" ? 0 : Math.round((N.scrollViewSize - h[X]) / 2));
|
|
8662
8662
|
}
|
|
8663
8663
|
l = gt, dh(
|
|
@@ -8964,7 +8964,7 @@ const sd = Ge({
|
|
|
8964
8964
|
"aria-controls": `${O.targetUid.value}_lb`
|
|
8965
8965
|
};
|
|
8966
8966
|
return s.value >= 0 && (H["aria-activedescendant"] = `${O.targetUid.value}_${s.value}`), H;
|
|
8967
|
-
}),
|
|
8967
|
+
}), tt = k(() => ({
|
|
8968
8968
|
id: `${O.targetUid.value}_lb`,
|
|
8969
8969
|
role: "listbox",
|
|
8970
8970
|
"aria-multiselectable": e.multiple === !0 ? "true" : "false"
|
|
@@ -9109,7 +9109,7 @@ const sd = Ge({
|
|
|
9109
9109
|
I.value - 1
|
|
9110
9110
|
);
|
|
9111
9111
|
while (Ie !== -1 && Ie !== s.value && pe.value(e.options[Ie]) === !0);
|
|
9112
|
-
s.value !== Ie && (re(Ie), j(Ie), Se !== !0 && e.useInput === !0 && e.fillInput === !0 &&
|
|
9112
|
+
s.value !== Ie && (re(Ie), j(Ie), Se !== !0 && e.useInput === !0 && e.fillInput === !0 && Ce(
|
|
9113
9113
|
Ie >= 0 ? Z.value(e.options[Ie]) : g,
|
|
9114
9114
|
!0
|
|
9115
9115
|
));
|
|
@@ -9188,7 +9188,7 @@ const sd = Ge({
|
|
|
9188
9188
|
Xt = qf(Xt + 1, -1, ht - 1);
|
|
9189
9189
|
while (Xt !== s.value && (pe.value(e.options[Xt]) === !0 || Nt.test(Z.value(e.options[Xt])) !== !0));
|
|
9190
9190
|
s.value !== Xt && Ct(() => {
|
|
9191
|
-
re(Xt), j(Xt), Xt >= 0 && e.useInput === !0 && e.fillInput === !0 &&
|
|
9191
|
+
re(Xt), j(Xt), Xt >= 0 && e.useInput === !0 && e.fillInput === !0 && Ce(Z.value(e.options[Xt]), !0);
|
|
9192
9192
|
});
|
|
9193
9193
|
return;
|
|
9194
9194
|
}
|
|
@@ -9277,17 +9277,17 @@ const sd = Ge({
|
|
|
9277
9277
|
return H !== !0 && p === !0 && (Array.isArray(ht.class) === !0 ? ht.class = [...ht.class, "no-pointer-events"] : ht.class += " no-pointer-events"), T("input", ht);
|
|
9278
9278
|
}
|
|
9279
9279
|
function ee(H) {
|
|
9280
|
-
d !== null && (clearTimeout(d), d = null), f !== null && (clearTimeout(f), f = null), !(H && H.target && H.target.qComposing === !0) && (
|
|
9280
|
+
d !== null && (clearTimeout(d), d = null), f !== null && (clearTimeout(f), f = null), !(H && H.target && H.target.qComposing === !0) && (Ce(H.target.value || ""), v = !0, g = u.value, O.focused.value !== !0 && (p !== !0 || l.value === !0) && O.focus(), e.onFilter !== void 0 && (d = setTimeout(() => {
|
|
9281
9281
|
d = null, We(u.value);
|
|
9282
9282
|
}, e.inputDebounce)));
|
|
9283
9283
|
}
|
|
9284
|
-
function
|
|
9284
|
+
function Ce(H, Se) {
|
|
9285
9285
|
u.value !== H && (u.value = H, Se === !0 || e.inputDebounce === 0 || e.inputDebounce === "0" ? t("inputValue", H) : f = setTimeout(() => {
|
|
9286
9286
|
f = null, t("inputValue", H);
|
|
9287
9287
|
}, e.inputDebounce));
|
|
9288
9288
|
}
|
|
9289
9289
|
function $e(H, Se, Ie) {
|
|
9290
|
-
v = Ie !== !0, e.useInput === !0 && (
|
|
9290
|
+
v = Ie !== !0, e.useInput === !0 && (Ce(H, !0), (Se === !0 || Ie !== !0) && (g = H), Se !== !0 && We(H));
|
|
9291
9291
|
}
|
|
9292
9292
|
function We(H, Se, Ie) {
|
|
9293
9293
|
if (e.onFilter === void 0 || Se !== !0 && O.focused.value !== !0) return;
|
|
@@ -9333,7 +9333,7 @@ const sd = Ge({
|
|
|
9333
9333
|
transitionHide: e.transitionHide,
|
|
9334
9334
|
transitionDuration: e.transitionDuration,
|
|
9335
9335
|
separateClosePopup: !0,
|
|
9336
|
-
...
|
|
9336
|
+
...tt.value,
|
|
9337
9337
|
onScrollPassive: q,
|
|
9338
9338
|
onBeforeShow: yf,
|
|
9339
9339
|
onBeforeHide: qt,
|
|
@@ -9382,7 +9382,7 @@ const sd = Ge({
|
|
|
9382
9382
|
ref: _,
|
|
9383
9383
|
class: de.value + " scroll",
|
|
9384
9384
|
style: e.popupContentStyle,
|
|
9385
|
-
...
|
|
9385
|
+
...tt.value,
|
|
9386
9386
|
onClick: Dn,
|
|
9387
9387
|
onScrollPassive: q
|
|
9388
9388
|
}, ir())
|
|
@@ -9587,7 +9587,7 @@ const sd = Ge({
|
|
|
9587
9587
|
emits: ["update:modelValue"],
|
|
9588
9588
|
setup(e, { emit: n }) {
|
|
9589
9589
|
Ta((c) => ({
|
|
9590
|
-
|
|
9590
|
+
"5e128078": c.borderColor
|
|
9591
9591
|
}));
|
|
9592
9592
|
const t = e, r = Y({}), o = n, a = k({
|
|
9593
9593
|
get() {
|
|
@@ -9602,7 +9602,7 @@ const sd = Ge({
|
|
|
9602
9602
|
s.value = c.toLowerCase();
|
|
9603
9603
|
});
|
|
9604
9604
|
}
|
|
9605
|
-
return (c, d) => (Q(),
|
|
9605
|
+
return (c, d) => (Q(), Fe(Er(sd), {
|
|
9606
9606
|
ref_key: "select",
|
|
9607
9607
|
ref: r,
|
|
9608
9608
|
modelValue: a.value,
|
|
@@ -9627,7 +9627,7 @@ const sd = Ge({
|
|
|
9627
9627
|
onFilter: l
|
|
9628
9628
|
}, Da({
|
|
9629
9629
|
"no-option": ve(() => [
|
|
9630
|
-
|
|
9630
|
+
_e(Xn, null, {
|
|
9631
9631
|
default: ve(() => [
|
|
9632
9632
|
Wt(mt(c.emptyText), 1)
|
|
9633
9633
|
]),
|
|
@@ -9635,19 +9635,19 @@ const sd = Ge({
|
|
|
9635
9635
|
})
|
|
9636
9636
|
]),
|
|
9637
9637
|
default: ve(() => [
|
|
9638
|
-
!s.value && i() ? (Q(),
|
|
9638
|
+
!s.value && i() ? (Q(), Fe(Xn, { key: 0 }, {
|
|
9639
9639
|
default: ve(() => [
|
|
9640
9640
|
Wt(mt(c.placeholder), 1)
|
|
9641
9641
|
]),
|
|
9642
9642
|
_: 1
|
|
9643
|
-
})) :
|
|
9643
|
+
})) : et("", !0)
|
|
9644
9644
|
]),
|
|
9645
9645
|
_: 2
|
|
9646
9646
|
}, [
|
|
9647
9647
|
c.multiple ? {
|
|
9648
9648
|
name: "selected-item",
|
|
9649
9649
|
fn: ve((f) => [
|
|
9650
|
-
f.opt ? (Q(),
|
|
9650
|
+
f.opt ? (Q(), Fe(id, {
|
|
9651
9651
|
key: 0,
|
|
9652
9652
|
removable: "",
|
|
9653
9653
|
class: "q-ma-none",
|
|
@@ -9661,7 +9661,7 @@ const sd = Ge({
|
|
|
9661
9661
|
Wt(mt(f.opt[`${c.optionLabel}`]), 1)
|
|
9662
9662
|
]),
|
|
9663
9663
|
_: 2
|
|
9664
|
-
}, 1032, ["tabindex", "onRemove"])) :
|
|
9664
|
+
}, 1032, ["tabindex", "onRemove"])) : et("", !0)
|
|
9665
9665
|
]),
|
|
9666
9666
|
key: "0"
|
|
9667
9667
|
} : void 0
|
|
@@ -9677,7 +9677,7 @@ const sd = Ge({
|
|
|
9677
9677
|
"q-item__label": "_q-item__label_n46gp_46"
|
|
9678
9678
|
}, Cx = {
|
|
9679
9679
|
$style: xx
|
|
9680
|
-
}, MA = /* @__PURE__ */
|
|
9680
|
+
}, MA = /* @__PURE__ */ Pe(yx, [["__cssModules", Cx]]), _x = '<g transform="matrix(1 0 0 -1 0 80)"><rect width="10" height="20" rx="3"><animate attributeName="height" begin="0s" dur="4.3s" values="20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="15" width="10" height="80" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="80;55;33;5;75;23;73;33;12;14;60;80" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="30" width="10" height="50" rx="3"><animate attributeName="height" begin="0s" dur="1.4s" values="50;34;78;23;56;23;34;76;80;54;21;50" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="45" width="10" height="30" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="30;45;13;80;56;72;45;76;34;23;67;30" calcMode="linear" repeatCount="indefinite"></animate></rect></g>', _s = Ge({
|
|
9681
9681
|
name: "QSpinnerAudio",
|
|
9682
9682
|
props: jc,
|
|
9683
9683
|
setup(e) {
|
|
@@ -9730,7 +9730,7 @@ const sd = Ge({
|
|
|
9730
9730
|
emits: ["update:dialogRef", "update:currentTabName"],
|
|
9731
9731
|
setup(e, { emit: n }) {
|
|
9732
9732
|
Ta((a) => ({
|
|
9733
|
-
|
|
9733
|
+
"522a75ea": a.width
|
|
9734
9734
|
}));
|
|
9735
9735
|
const t = e, r = n, o = k({
|
|
9736
9736
|
get() {
|
|
@@ -9740,7 +9740,7 @@ const sd = Ge({
|
|
|
9740
9740
|
r("update:dialogRef", a);
|
|
9741
9741
|
}
|
|
9742
9742
|
});
|
|
9743
|
-
return (a, i) => (Q(),
|
|
9743
|
+
return (a, i) => (Q(), Fe(Ba, {
|
|
9744
9744
|
ref_key: "DialogRef",
|
|
9745
9745
|
ref: o,
|
|
9746
9746
|
"model-value": !0,
|
|
@@ -9752,13 +9752,13 @@ const sd = Ge({
|
|
|
9752
9752
|
"full-width": ""
|
|
9753
9753
|
}, {
|
|
9754
9754
|
default: ve(() => [
|
|
9755
|
-
a.type === "details" ? (Q(),
|
|
9755
|
+
a.type === "details" ? (Q(), Fe(ud, { key: 0 }, {
|
|
9756
9756
|
default: ve(() => [
|
|
9757
9757
|
fe("div", kx, [
|
|
9758
9758
|
fe("div", Sx, [
|
|
9759
9759
|
fe("h2", null, mt(a.title), 1),
|
|
9760
9760
|
fe("div", Ex, [
|
|
9761
|
-
qn(
|
|
9761
|
+
qn(_e(St, {
|
|
9762
9762
|
dense: "",
|
|
9763
9763
|
flat: "",
|
|
9764
9764
|
icon: "close"
|
|
@@ -9768,31 +9768,31 @@ const sd = Ge({
|
|
|
9768
9768
|
])
|
|
9769
9769
|
]),
|
|
9770
9770
|
a.loading ? (Q(), be("div", Rx, [
|
|
9771
|
-
a.loading ? (Q(),
|
|
9771
|
+
a.loading ? (Q(), Fe(_s, {
|
|
9772
9772
|
key: 0,
|
|
9773
9773
|
class: "loader-spinner",
|
|
9774
9774
|
size: "md",
|
|
9775
9775
|
thickness: 3,
|
|
9776
9776
|
color: "primary"
|
|
9777
|
-
})) :
|
|
9777
|
+
})) : et("", !0)
|
|
9778
9778
|
])) : nn(a.$slots, "default", { key: 1 }, void 0, !0)
|
|
9779
9779
|
])
|
|
9780
9780
|
]),
|
|
9781
9781
|
_: 3
|
|
9782
|
-
})) :
|
|
9782
|
+
})) : et("", !0),
|
|
9783
9783
|
a.type === "custom" ? (Q(), be(Ar, { key: 1 }, [
|
|
9784
9784
|
a.loading ? (Q(), be("div", Ix, [
|
|
9785
9785
|
fe("div", Tx, [
|
|
9786
|
-
a.loading ? (Q(),
|
|
9786
|
+
a.loading ? (Q(), Fe(_s, {
|
|
9787
9787
|
key: 0,
|
|
9788
9788
|
class: "loader-spinner",
|
|
9789
9789
|
size: "md",
|
|
9790
9790
|
thickness: 3,
|
|
9791
9791
|
color: "primary"
|
|
9792
|
-
})) :
|
|
9792
|
+
})) : et("", !0)
|
|
9793
9793
|
])
|
|
9794
9794
|
])) : nn(a.$slots, "default", { key: 1 }, void 0, !0)
|
|
9795
|
-
], 64)) :
|
|
9795
|
+
], 64)) : et("", !0)
|
|
9796
9796
|
]),
|
|
9797
9797
|
_: 3
|
|
9798
9798
|
}, 8, ["class"]));
|
|
@@ -9801,7 +9801,7 @@ const sd = Ge({
|
|
|
9801
9801
|
"sheet-dialog": "_sheet-dialog_1rkva_1"
|
|
9802
9802
|
}, Mx = {
|
|
9803
9803
|
$style: Dx
|
|
9804
|
-
}, FA = /* @__PURE__ */
|
|
9804
|
+
}, FA = /* @__PURE__ */ Pe(Ax, [["__cssModules", Mx], ["__scopeId", "data-v-2f33e930"]]);
|
|
9805
9805
|
let Fx = 0;
|
|
9806
9806
|
const Px = ["click", "keydown"], Bx = {
|
|
9807
9807
|
icon: String,
|
|
@@ -10135,7 +10135,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10135
10135
|
function Je() {
|
|
10136
10136
|
gt.avoidRouteWatcher === !1 ? c(ge) : d();
|
|
10137
10137
|
}
|
|
10138
|
-
function
|
|
10138
|
+
function tt() {
|
|
10139
10139
|
if (R === void 0) {
|
|
10140
10140
|
const Z = me(() => r.$route.fullPath, Je);
|
|
10141
10141
|
R = () => {
|
|
@@ -10149,7 +10149,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10149
10149
|
const pe = p.value, Me = pe != null && pe !== "" ? b.find((st) => st.name.value === pe) : null;
|
|
10150
10150
|
Me && O(Me.rootRef.value);
|
|
10151
10151
|
}
|
|
10152
|
-
}) : (
|
|
10152
|
+
}) : (tt(), Z.routeData.hasRouterLink.value === !0 && Je());
|
|
10153
10153
|
}
|
|
10154
10154
|
function ct(Z) {
|
|
10155
10155
|
b.splice(b.indexOf(Z), 1), y.value--, q(), R !== void 0 && Z.routeData !== void 0 && (b.every((pe) => pe.routeData === void 0) === !0 && R(), Je());
|
|
@@ -10175,7 +10175,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10175
10175
|
return Tt(At), ho(() => {
|
|
10176
10176
|
Dt = R !== void 0, At();
|
|
10177
10177
|
}), Aa(() => {
|
|
10178
|
-
Dt === !0 && (
|
|
10178
|
+
Dt === !0 && (tt(), ue = !0, Je()), q();
|
|
10179
10179
|
}), () => T("div", {
|
|
10180
10180
|
ref: f,
|
|
10181
10181
|
class: I.value,
|
|
@@ -10242,7 +10242,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10242
10242
|
r("update:tabId", s);
|
|
10243
10243
|
}
|
|
10244
10244
|
});
|
|
10245
|
-
return (i, s) => (Q(),
|
|
10245
|
+
return (i, s) => (Q(), Fe(Er(Ba), {
|
|
10246
10246
|
"model-value": i.modelValue,
|
|
10247
10247
|
position: "right",
|
|
10248
10248
|
class: Ke(i.$style["sheet-dialog"]),
|
|
@@ -10261,13 +10261,13 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10261
10261
|
style: To({ width: i.width })
|
|
10262
10262
|
}, [
|
|
10263
10263
|
fe("div", zx, [
|
|
10264
|
-
i.loading ? (Q(),
|
|
10264
|
+
i.loading ? (Q(), Fe(_s, {
|
|
10265
10265
|
key: 0,
|
|
10266
10266
|
class: "loader-spinner",
|
|
10267
10267
|
size: "md",
|
|
10268
10268
|
thickness: 3,
|
|
10269
10269
|
color: "primary"
|
|
10270
|
-
})) :
|
|
10270
|
+
})) : et("", !0)
|
|
10271
10271
|
])
|
|
10272
10272
|
], 4)) : (Q(), be("div", {
|
|
10273
10273
|
key: 1,
|
|
@@ -10279,8 +10279,8 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10279
10279
|
class: Ke(["sidebar", { noTitle: !i.tabsTitle }]),
|
|
10280
10280
|
style: To({ width: i.sidebarWidth })
|
|
10281
10281
|
}, [
|
|
10282
|
-
i.tabsTitle ? (Q(), be("h5", Wx, mt(i.tabsTitle), 1)) :
|
|
10283
|
-
|
|
10282
|
+
i.tabsTitle ? (Q(), be("h5", Wx, mt(i.tabsTitle), 1)) : et("", !0),
|
|
10283
|
+
_e(Vx, {
|
|
10284
10284
|
modelValue: a.value,
|
|
10285
10285
|
"onUpdate:modelValue": s[0] || (s[0] = (l) => a.value = l),
|
|
10286
10286
|
vertical: "",
|
|
@@ -10292,7 +10292,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10292
10292
|
"no-caps": ""
|
|
10293
10293
|
}, {
|
|
10294
10294
|
default: ve(() => [
|
|
10295
|
-
(Q(!0), be(Ar, null, $r(i.tabs, (l) => (Q(),
|
|
10295
|
+
(Q(!0), be(Ar, null, $r(i.tabs, (l) => (Q(), Fe(Nx, {
|
|
10296
10296
|
key: l.id,
|
|
10297
10297
|
class: Ke(i.$style.tab),
|
|
10298
10298
|
name: l.title,
|
|
@@ -10302,14 +10302,14 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10302
10302
|
]),
|
|
10303
10303
|
_: 1
|
|
10304
10304
|
}, 8, ["modelValue"])
|
|
10305
|
-
], 6)) :
|
|
10305
|
+
], 6)) : et("", !0),
|
|
10306
10306
|
fe("div", $x, [
|
|
10307
10307
|
i.title ? (Q(), be("div", Hx, [
|
|
10308
10308
|
fe("h2", {
|
|
10309
10309
|
class: "ellipsis",
|
|
10310
10310
|
title: i.title
|
|
10311
10311
|
}, mt(i.title), 9, Ux),
|
|
10312
|
-
qn(
|
|
10312
|
+
qn(_e(St, {
|
|
10313
10313
|
dense: "",
|
|
10314
10314
|
flat: "",
|
|
10315
10315
|
icon: "close",
|
|
@@ -10317,11 +10317,11 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10317
10317
|
}, null, 512), [
|
|
10318
10318
|
[ou, !i.persistent]
|
|
10319
10319
|
])
|
|
10320
|
-
])) :
|
|
10320
|
+
])) : et("", !0),
|
|
10321
10321
|
nn(i.$slots, "default", {}, void 0, !0),
|
|
10322
10322
|
"actions" in Er(o) ? (Q(), be("div", jx, [
|
|
10323
10323
|
nn(i.$slots, "actions", {}, void 0, !0)
|
|
10324
|
-
])) :
|
|
10324
|
+
])) : et("", !0)
|
|
10325
10325
|
])
|
|
10326
10326
|
], 4))
|
|
10327
10327
|
];
|
|
@@ -10334,7 +10334,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10334
10334
|
tab: Kx
|
|
10335
10335
|
}, Yx = {
|
|
10336
10336
|
$style: Xx
|
|
10337
|
-
}, PA = /* @__PURE__ */
|
|
10337
|
+
}, PA = /* @__PURE__ */ Pe(Gx, [["__cssModules", Yx], ["__scopeId", "data-v-63306fe5"]]), hh = 150, Qx = Ge({
|
|
10338
10338
|
name: "QDrawer",
|
|
10339
10339
|
inheritAttrs: !1,
|
|
10340
10340
|
props: {
|
|
@@ -10450,7 +10450,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10450
10450
|
const ue = a.lang.rtl === !0 ? e.side : D.value;
|
|
10451
10451
|
return [[
|
|
10452
10452
|
ca,
|
|
10453
|
-
|
|
10453
|
+
tt,
|
|
10454
10454
|
void 0,
|
|
10455
10455
|
{
|
|
10456
10456
|
[ue]: !0,
|
|
@@ -10532,7 +10532,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10532
10532
|
f = null, I.value = !1, (Z = (ue = o == null ? void 0 : o.proxy) == null ? void 0 : ue.$el) == null || Z.classList.remove("q-drawer--mini-animate");
|
|
10533
10533
|
}, 150);
|
|
10534
10534
|
}
|
|
10535
|
-
function
|
|
10535
|
+
function tt(ue) {
|
|
10536
10536
|
if (g.value !== !1)
|
|
10537
10537
|
return;
|
|
10538
10538
|
const Z = m.value, pe = Vr(ue.distance.x, 0, Z);
|
|
@@ -10903,7 +10903,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10903
10903
|
};
|
|
10904
10904
|
return (a, i) => {
|
|
10905
10905
|
const s = Z0("sidebar-menu-item", !0);
|
|
10906
|
-
return a.item.items ? (Q(),
|
|
10906
|
+
return a.item.items ? (Q(), Fe(eC, {
|
|
10907
10907
|
key: 0,
|
|
10908
10908
|
"model-value": a.isRouteActive(a.item) && r.value,
|
|
10909
10909
|
"header-class": "text-purple",
|
|
@@ -10912,7 +10912,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10912
10912
|
"onUpdate:modelValue": i[0] || (i[0] = (u) => r.value = u)
|
|
10913
10913
|
}, {
|
|
10914
10914
|
header: ve(() => [
|
|
10915
|
-
a.minify ? (Q(),
|
|
10915
|
+
a.minify ? (Q(), Fe(gs, {
|
|
10916
10916
|
key: 0,
|
|
10917
10917
|
delay: 100,
|
|
10918
10918
|
"transition-show": "jump-right",
|
|
@@ -10924,21 +10924,21 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10924
10924
|
Wt(mt(a.item.label), 1)
|
|
10925
10925
|
]),
|
|
10926
10926
|
_: 1
|
|
10927
|
-
})) :
|
|
10928
|
-
a.item.icon ? (Q(),
|
|
10927
|
+
})) : et("", !0),
|
|
10928
|
+
a.item.icon ? (Q(), Fe(fn, {
|
|
10929
10929
|
key: 1,
|
|
10930
10930
|
avatar: ""
|
|
10931
10931
|
}, {
|
|
10932
10932
|
default: ve(() => [
|
|
10933
|
-
|
|
10933
|
+
_e(_a, {
|
|
10934
10934
|
name: a.item.icon,
|
|
10935
10935
|
color: "white",
|
|
10936
10936
|
size: "24px"
|
|
10937
10937
|
}, null, 8, ["name"])
|
|
10938
10938
|
]),
|
|
10939
10939
|
_: 1
|
|
10940
|
-
})) :
|
|
10941
|
-
|
|
10940
|
+
})) : et("", !0),
|
|
10941
|
+
_e(fn, {
|
|
10942
10942
|
class: Ke(a.$style["menu-item__label"])
|
|
10943
10943
|
}, {
|
|
10944
10944
|
default: ve(() => [
|
|
@@ -10948,7 +10948,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10948
10948
|
}, 8, ["class"])
|
|
10949
10949
|
]),
|
|
10950
10950
|
default: ve(() => [
|
|
10951
|
-
(Q(!0), be(Ar, null, $r(a.item.items, (u, l) => (Q(),
|
|
10951
|
+
(Q(!0), be(Ar, null, $r(a.item.items, (u, l) => (Q(), Fe(s, {
|
|
10952
10952
|
key: l,
|
|
10953
10953
|
item: u,
|
|
10954
10954
|
main: a.main,
|
|
@@ -10956,7 +10956,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10956
10956
|
}, null, 8, ["item", "main", "is-route-active"]))), 128))
|
|
10957
10957
|
]),
|
|
10958
10958
|
_: 1
|
|
10959
|
-
}, 8, ["model-value", "class", "data-test"])) : a.item.name !== "sign-out" ? qn((Q(),
|
|
10959
|
+
}, 8, ["model-value", "class", "data-test"])) : a.item.name !== "sign-out" ? qn((Q(), Fe(Xn, {
|
|
10960
10960
|
key: 1,
|
|
10961
10961
|
class: Ke(a.$style["menu-item"]),
|
|
10962
10962
|
active: a.isRouteActive(a.item),
|
|
@@ -10967,20 +10967,20 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10967
10967
|
onClick: i[1] || (i[1] = (u) => o(a.item.to))
|
|
10968
10968
|
}, {
|
|
10969
10969
|
default: ve(() => [
|
|
10970
|
-
a.item.icon ? (Q(),
|
|
10970
|
+
a.item.icon ? (Q(), Fe(fn, {
|
|
10971
10971
|
key: 0,
|
|
10972
10972
|
avatar: ""
|
|
10973
10973
|
}, {
|
|
10974
10974
|
default: ve(() => [
|
|
10975
|
-
|
|
10975
|
+
_e(_a, {
|
|
10976
10976
|
name: a.item.icon,
|
|
10977
10977
|
color: "white",
|
|
10978
10978
|
size: "24px"
|
|
10979
10979
|
}, null, 8, ["name"])
|
|
10980
10980
|
]),
|
|
10981
10981
|
_: 1
|
|
10982
|
-
})) :
|
|
10983
|
-
|
|
10982
|
+
})) : et("", !0),
|
|
10983
|
+
_e(fn, {
|
|
10984
10984
|
class: Ke(a.$style["menu-item__label"])
|
|
10985
10985
|
}, {
|
|
10986
10986
|
default: ve(() => [
|
|
@@ -10988,7 +10988,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
10988
10988
|
]),
|
|
10989
10989
|
_: 1
|
|
10990
10990
|
}, 8, ["class"]),
|
|
10991
|
-
|
|
10991
|
+
_e(gs, {
|
|
10992
10992
|
delay: 100,
|
|
10993
10993
|
"transition-show": "jump-right",
|
|
10994
10994
|
"transition-hide": "jump-left",
|
|
@@ -11004,7 +11004,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11004
11004
|
_: 1
|
|
11005
11005
|
}, 8, ["class", "active", "to", "data-test"])), [
|
|
11006
11006
|
[wi]
|
|
11007
|
-
]) :
|
|
11007
|
+
]) : et("", !0);
|
|
11008
11008
|
};
|
|
11009
11009
|
}
|
|
11010
11010
|
}), nC = {
|
|
@@ -11012,7 +11012,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11012
11012
|
"menu-item__label": "_menu-item__label_fkijr_18"
|
|
11013
11013
|
}, rC = {
|
|
11014
11014
|
$style: nC
|
|
11015
|
-
}, oC = /* @__PURE__ */
|
|
11015
|
+
}, oC = /* @__PURE__ */ Pe(tC, [["__cssModules", rC], ["__scopeId", "data-v-f6a202a4"]]), aC = /* @__PURE__ */ Pt({
|
|
11016
11016
|
__name: "SidebarMenu",
|
|
11017
11017
|
props: {
|
|
11018
11018
|
menuItems: {},
|
|
@@ -11024,7 +11024,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11024
11024
|
return (n, t) => (Q(), be("div", {
|
|
11025
11025
|
class: Ke(n.$style.wrapper)
|
|
11026
11026
|
}, [
|
|
11027
|
-
(Q(!0), be(Ar, null, $r(n.menuItems, (r, o) => (Q(),
|
|
11027
|
+
(Q(!0), be(Ar, null, $r(n.menuItems, (r, o) => (Q(), Fe(oC, {
|
|
11028
11028
|
key: o,
|
|
11029
11029
|
item: r,
|
|
11030
11030
|
main: n.main,
|
|
@@ -11037,7 +11037,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11037
11037
|
wrapper: iC
|
|
11038
11038
|
}, uC = {
|
|
11039
11039
|
$style: sC
|
|
11040
|
-
}, lC = /* @__PURE__ */
|
|
11040
|
+
}, lC = /* @__PURE__ */ Pe(aC, [["__cssModules", uC]]), cC = /* @__PURE__ */ Pt({
|
|
11041
11041
|
__name: "AppSidebar",
|
|
11042
11042
|
props: {
|
|
11043
11043
|
isDrawer: { type: Boolean },
|
|
@@ -11063,7 +11063,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11063
11063
|
(p) => {
|
|
11064
11064
|
i.value = p;
|
|
11065
11065
|
}
|
|
11066
|
-
), (p, v) => (Q(),
|
|
11066
|
+
), (p, v) => (Q(), Fe(Qx, {
|
|
11067
11067
|
key: `${o.value}`,
|
|
11068
11068
|
modelValue: o.value,
|
|
11069
11069
|
"onUpdate:modelValue": v[3] || (v[3] = (m) => o.value = m),
|
|
@@ -11078,14 +11078,14 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11078
11078
|
onMouseout: v[5] || (v[5] = (m) => d(!0))
|
|
11079
11079
|
}, {
|
|
11080
11080
|
default: ve(() => [
|
|
11081
|
-
s.value ? (Q(),
|
|
11081
|
+
s.value ? (Q(), Fe(Xn, {
|
|
11082
11082
|
key: 0,
|
|
11083
11083
|
class: Ke(p.$style["tablet-logo"])
|
|
11084
11084
|
}, {
|
|
11085
11085
|
default: ve(() => [
|
|
11086
|
-
|
|
11086
|
+
_e(fn, { avatar: "" }, {
|
|
11087
11087
|
default: ve(() => [
|
|
11088
|
-
|
|
11088
|
+
_e(St, {
|
|
11089
11089
|
round: "",
|
|
11090
11090
|
unelevated: "",
|
|
11091
11091
|
class: Ke(p.$style["tablet-logo__btn"]),
|
|
@@ -11095,7 +11095,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11095
11095
|
]),
|
|
11096
11096
|
_: 1
|
|
11097
11097
|
}),
|
|
11098
|
-
|
|
11098
|
+
_e(fn, {
|
|
11099
11099
|
class: Ke(p.$style.logo__text)
|
|
11100
11100
|
}, {
|
|
11101
11101
|
default: ve(() => v[6] || (v[6] = [
|
|
@@ -11107,17 +11107,17 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11107
11107
|
]),
|
|
11108
11108
|
_: 1
|
|
11109
11109
|
}, 8, ["class"])) : (Q(), be(Ar, { key: 1 }, [
|
|
11110
|
-
|
|
11110
|
+
_e(Xn, {
|
|
11111
11111
|
class: Ke(p.$style.logo)
|
|
11112
11112
|
}, {
|
|
11113
11113
|
default: ve(() => [
|
|
11114
|
-
|
|
11114
|
+
_e(fn, { avatar: "" }, {
|
|
11115
11115
|
default: ve(() => [
|
|
11116
|
-
|
|
11116
|
+
_e(_a, { name: "logo-icon" })
|
|
11117
11117
|
]),
|
|
11118
11118
|
_: 1
|
|
11119
11119
|
}),
|
|
11120
|
-
|
|
11120
|
+
_e(fn, {
|
|
11121
11121
|
class: Ke(p.$style.logo__text)
|
|
11122
11122
|
}, {
|
|
11123
11123
|
default: ve(() => v[7] || (v[7] = [
|
|
@@ -11129,7 +11129,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11129
11129
|
]),
|
|
11130
11130
|
_: 1
|
|
11131
11131
|
}, 8, ["class"]),
|
|
11132
|
-
|
|
11132
|
+
_e(St, {
|
|
11133
11133
|
dense: "",
|
|
11134
11134
|
round: "",
|
|
11135
11135
|
unelevated: "",
|
|
@@ -11138,7 +11138,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11138
11138
|
onClick: v[1] || (v[1] = (m) => i.value = !i.value)
|
|
11139
11139
|
}, {
|
|
11140
11140
|
default: ve(() => [
|
|
11141
|
-
|
|
11141
|
+
_e(gs, null, {
|
|
11142
11142
|
default: ve(() => v[8] || (v[8] = [
|
|
11143
11143
|
Wt("Закрепить сайдбар")
|
|
11144
11144
|
])),
|
|
@@ -11149,21 +11149,21 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11149
11149
|
_: 1
|
|
11150
11150
|
}, 8, ["class"])
|
|
11151
11151
|
], 64)),
|
|
11152
|
-
|
|
11152
|
+
_e(lC, {
|
|
11153
11153
|
main: p.main,
|
|
11154
11154
|
"menu-items": p.menuItems,
|
|
11155
11155
|
minify: a.value,
|
|
11156
11156
|
"is-route-active": p.isRouteActive
|
|
11157
11157
|
}, null, 8, ["main", "menu-items", "minify", "is-route-active"]),
|
|
11158
|
-
qn((Q(),
|
|
11158
|
+
qn((Q(), Fe(Xn, {
|
|
11159
11159
|
class: Ke(p.$style["menu-exit"]),
|
|
11160
11160
|
clickable: "",
|
|
11161
11161
|
onClick: v[2] || (v[2] = (m) => h())
|
|
11162
11162
|
}, {
|
|
11163
11163
|
default: ve(() => [
|
|
11164
|
-
|
|
11164
|
+
_e(fn, { avatar: "" }, {
|
|
11165
11165
|
default: ve(() => [
|
|
11166
|
-
|
|
11166
|
+
_e(_a, {
|
|
11167
11167
|
name: "logout-icon",
|
|
11168
11168
|
color: "white",
|
|
11169
11169
|
size: "24px"
|
|
@@ -11171,7 +11171,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11171
11171
|
]),
|
|
11172
11172
|
_: 1
|
|
11173
11173
|
}),
|
|
11174
|
-
|
|
11174
|
+
_e(fn, {
|
|
11175
11175
|
class: Ke(p.$style["menu-exit__label"])
|
|
11176
11176
|
}, {
|
|
11177
11177
|
default: ve(() => v[9] || (v[9] = [
|
|
@@ -11200,7 +11200,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11200
11200
|
"menu-exit__label": "_menu-exit__label_1q4rd_52"
|
|
11201
11201
|
}, vC = {
|
|
11202
11202
|
$style: pC
|
|
11203
|
-
}, BA = /* @__PURE__ */
|
|
11203
|
+
}, BA = /* @__PURE__ */ Pe(cC, [["__cssModules", vC]]), ac = Ge({
|
|
11204
11204
|
name: "QToggle",
|
|
11205
11205
|
props: {
|
|
11206
11206
|
...cv,
|
|
@@ -11244,7 +11244,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ge({
|
|
|
11244
11244
|
set: (a) => r("update:modelValue", a)
|
|
11245
11245
|
});
|
|
11246
11246
|
return (a, i) => (Q(), be("div", null, [
|
|
11247
|
-
|
|
11247
|
+
_e(ac, {
|
|
11248
11248
|
modelValue: o.value,
|
|
11249
11249
|
"onUpdate:modelValue": i[0] || (i[0] = (s) => o.value = s),
|
|
11250
11250
|
disable: a.disable
|
|
@@ -11257,7 +11257,7 @@ function yC(e, n) {
|
|
|
11257
11257
|
nn(e.$slots, "default", {}, void 0, !0)
|
|
11258
11258
|
]);
|
|
11259
11259
|
}
|
|
11260
|
-
const NA = /* @__PURE__ */
|
|
11260
|
+
const NA = /* @__PURE__ */ Pe(mC, [["render", yC], ["__scopeId", "data-v-f769f373"]]), ks = Ge({
|
|
11261
11261
|
name: "QCardSection",
|
|
11262
11262
|
props: {
|
|
11263
11263
|
tag: {
|
|
@@ -11320,7 +11320,7 @@ function _C(e, n) {
|
|
|
11320
11320
|
}, null, -1)
|
|
11321
11321
|
]));
|
|
11322
11322
|
}
|
|
11323
|
-
const kC = /* @__PURE__ */
|
|
11323
|
+
const kC = /* @__PURE__ */ Pe(xC, [["render", _C]]), SC = {}, EC = {
|
|
11324
11324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11325
11325
|
width: "50",
|
|
11326
11326
|
height: "50",
|
|
@@ -11337,7 +11337,7 @@ function RC(e, n) {
|
|
|
11337
11337
|
}, null, -1)
|
|
11338
11338
|
]));
|
|
11339
11339
|
}
|
|
11340
|
-
const IC = /* @__PURE__ */
|
|
11340
|
+
const IC = /* @__PURE__ */ Pe(SC, [["render", RC]]), TC = /* @__PURE__ */ Pt({
|
|
11341
11341
|
__name: "AppConfirmDialog",
|
|
11342
11342
|
props: {
|
|
11343
11343
|
content: {},
|
|
@@ -11345,7 +11345,7 @@ const IC = /* @__PURE__ */ Fe(SC, [["render", RC]]), TC = /* @__PURE__ */ Pt({
|
|
|
11345
11345
|
},
|
|
11346
11346
|
setup(e) {
|
|
11347
11347
|
const { onDialogHide: n, onDialogOK: t, dialogRef: r } = ld();
|
|
11348
|
-
return (o, a) => (Q(),
|
|
11348
|
+
return (o, a) => (Q(), Fe(Ba, {
|
|
11349
11349
|
ref_key: "dialogRef",
|
|
11350
11350
|
ref: r,
|
|
11351
11351
|
persistent: "",
|
|
@@ -11354,34 +11354,34 @@ const IC = /* @__PURE__ */ Fe(SC, [["render", RC]]), TC = /* @__PURE__ */ Pt({
|
|
|
11354
11354
|
class: Ke(o.$style.dialog)
|
|
11355
11355
|
}, {
|
|
11356
11356
|
default: ve(() => [
|
|
11357
|
-
|
|
11357
|
+
_e(ud, {
|
|
11358
11358
|
class: Ke(o.$style.modal)
|
|
11359
11359
|
}, {
|
|
11360
11360
|
default: ve(() => [
|
|
11361
|
-
|
|
11361
|
+
_e(ks, {
|
|
11362
11362
|
class: Ke(o.$style.modal__content)
|
|
11363
11363
|
}, {
|
|
11364
11364
|
default: ve(() => [
|
|
11365
11365
|
fe("div", {
|
|
11366
11366
|
class: Ke(o.$style.modal__content__header)
|
|
11367
11367
|
}, [
|
|
11368
|
-
o.type === "edit" ? (Q(),
|
|
11369
|
-
o.type === "delete" ? (Q(),
|
|
11368
|
+
o.type === "edit" ? (Q(), Fe(kC, { key: 0 })) : et("", !0),
|
|
11369
|
+
o.type === "delete" ? (Q(), Fe(IC, { key: 1 })) : et("", !0)
|
|
11370
11370
|
], 2),
|
|
11371
11371
|
fe("p", null, mt(o.content), 1)
|
|
11372
11372
|
]),
|
|
11373
11373
|
_: 1
|
|
11374
11374
|
}, 8, ["class"]),
|
|
11375
|
-
|
|
11375
|
+
_e(ks, {
|
|
11376
11376
|
class: Ke(o.$style.footer)
|
|
11377
11377
|
}, {
|
|
11378
11378
|
default: ve(() => [
|
|
11379
|
-
|
|
11379
|
+
_e(Ql, {
|
|
11380
11380
|
class: Ke(o.$style["footer__btn--ok"]),
|
|
11381
11381
|
label: "Подтвердить",
|
|
11382
11382
|
onClick: Er(t)
|
|
11383
11383
|
}, null, 8, ["class", "onClick"]),
|
|
11384
|
-
|
|
11384
|
+
_e(Ql, {
|
|
11385
11385
|
class: Ke(o.$style["footer__btn--cancel"]),
|
|
11386
11386
|
label: "Отменить",
|
|
11387
11387
|
onClick: Er(n)
|
|
@@ -11405,7 +11405,7 @@ const IC = /* @__PURE__ */ Fe(SC, [["render", RC]]), TC = /* @__PURE__ */ Pt({
|
|
|
11405
11405
|
"footer__btn--cancel": "_footer__btn--cancel_8z8ba_43"
|
|
11406
11406
|
}, BC = {
|
|
11407
11407
|
$style: PC
|
|
11408
|
-
}, LA = /* @__PURE__ */
|
|
11408
|
+
}, LA = /* @__PURE__ */ Pe(TC, [["__cssModules", BC]]), OC = Ge({
|
|
11409
11409
|
name: "QBtnGroup",
|
|
11410
11410
|
props: {
|
|
11411
11411
|
unelevated: Boolean,
|
|
@@ -11604,7 +11604,7 @@ const qC = Ge({
|
|
|
11604
11604
|
height: {}
|
|
11605
11605
|
},
|
|
11606
11606
|
setup(e) {
|
|
11607
|
-
return (n, t) => (Q(),
|
|
11607
|
+
return (n, t) => (Q(), Fe(qC, {
|
|
11608
11608
|
color: n.color,
|
|
11609
11609
|
"content-style": { width: n.width || "200px", minWidth: n.height || "200px" }
|
|
11610
11610
|
}, {
|
|
@@ -11619,7 +11619,7 @@ const qC = Ge({
|
|
|
11619
11619
|
_: 3
|
|
11620
11620
|
}, 8, ["color", "content-style"]));
|
|
11621
11621
|
}
|
|
11622
|
-
}), qA = /* @__PURE__ */
|
|
11622
|
+
}), qA = /* @__PURE__ */ Pe(VC, [["__scopeId", "data-v-2bcc638c"]]), zC = { class: "table-pagination" }, WC = ["disabled"], $C = { class: "pages" }, HC = ["disabled", "onClick"], UC = ["disabled"], jC = /* @__PURE__ */ Pt({
|
|
11623
11623
|
__name: "TablePagination",
|
|
11624
11624
|
props: {
|
|
11625
11625
|
modelValue: {},
|
|
@@ -11659,7 +11659,7 @@ const qC = Ge({
|
|
|
11659
11659
|
disabled: l.modelValue <= 1,
|
|
11660
11660
|
onClick: s
|
|
11661
11661
|
}, [
|
|
11662
|
-
|
|
11662
|
+
_e(Et, {
|
|
11663
11663
|
name: "mdi-chevron-left",
|
|
11664
11664
|
color: l.modelValue <= 1 ? "grey-4" : "primary"
|
|
11665
11665
|
}, null, 8, ["color"])
|
|
@@ -11677,14 +11677,14 @@ const qC = Ge({
|
|
|
11677
11677
|
disabled: l.modelValue >= l.totalPages,
|
|
11678
11678
|
onClick: u
|
|
11679
11679
|
}, [
|
|
11680
|
-
|
|
11680
|
+
_e(Et, {
|
|
11681
11681
|
name: "mdi-chevron-right",
|
|
11682
11682
|
color: l.modelValue >= l.totalPages ? "grey-4" : "primary"
|
|
11683
11683
|
}, null, 8, ["color"])
|
|
11684
11684
|
], 8, UC)
|
|
11685
11685
|
]));
|
|
11686
11686
|
}
|
|
11687
|
-
}), GC = /* @__PURE__ */
|
|
11687
|
+
}), GC = /* @__PURE__ */ Pe(jC, [["__scopeId", "data-v-9db9f6f7"]]), KC = /* @__PURE__ */ Pt({
|
|
11688
11688
|
__name: "TableSearch",
|
|
11689
11689
|
props: {
|
|
11690
11690
|
modelValue: {},
|
|
@@ -11706,7 +11706,7 @@ const qC = Ge({
|
|
|
11706
11706
|
r("update:modelValue", s), clearTimeout(a), a = setTimeout(() => {
|
|
11707
11707
|
r("search", s);
|
|
11708
11708
|
}, 400);
|
|
11709
|
-
}), (s, u) => (Q(),
|
|
11709
|
+
}), (s, u) => (Q(), Fe(Oa, {
|
|
11710
11710
|
modelValue: o.value,
|
|
11711
11711
|
"onUpdate:modelValue": u[0] || (u[0] = (l) => o.value = l),
|
|
11712
11712
|
placeholder: s.placeholder,
|
|
@@ -11716,7 +11716,7 @@ const qC = Ge({
|
|
|
11716
11716
|
o.value ? {
|
|
11717
11717
|
name: "append",
|
|
11718
11718
|
fn: ve(() => [
|
|
11719
|
-
|
|
11719
|
+
_e(Et, {
|
|
11720
11720
|
name: "✕",
|
|
11721
11721
|
class: "cursor-pointer",
|
|
11722
11722
|
onClick: Ys(i, ["stop"])
|
|
@@ -11726,7 +11726,7 @@ const qC = Ge({
|
|
|
11726
11726
|
} : void 0
|
|
11727
11727
|
]), 1032, ["modelValue", "placeholder"]));
|
|
11728
11728
|
}
|
|
11729
|
-
}), XC = /* @__PURE__ */
|
|
11729
|
+
}), XC = /* @__PURE__ */ Pe(KC, [["__scopeId", "data-v-7344789a"]]), YC = Ge({
|
|
11730
11730
|
name: "QForm",
|
|
11731
11731
|
props: {
|
|
11732
11732
|
autofocus: Boolean,
|
|
@@ -11944,9 +11944,9 @@ const qC = Ge({
|
|
|
11944
11944
|
return Q(), be(Ar, null, [
|
|
11945
11945
|
fe("label", e_, [
|
|
11946
11946
|
Wt(mt(v.label) + " ", 1),
|
|
11947
|
-
(g = v.rules) != null && g.length && v.isShowRequired ? (Q(), be("span", t_, "*")) :
|
|
11947
|
+
(g = v.rules) != null && g.length && v.isShowRequired ? (Q(), be("span", t_, "*")) : et("", !0)
|
|
11948
11948
|
]),
|
|
11949
|
-
|
|
11949
|
+
_e(sd, {
|
|
11950
11950
|
ref_key: "select",
|
|
11951
11951
|
ref: o,
|
|
11952
11952
|
modelValue: s.value,
|
|
@@ -11974,25 +11974,25 @@ const qC = Ge({
|
|
|
11974
11974
|
onFilter: d
|
|
11975
11975
|
}, Da({
|
|
11976
11976
|
append: ve(() => [
|
|
11977
|
-
!v.isDisabled && s.value && (s.value.length || s.value > 0) ? (Q(),
|
|
11977
|
+
!v.isDisabled && s.value && (s.value.length || s.value > 0) ? (Q(), Fe(Et, {
|
|
11978
11978
|
key: 0,
|
|
11979
11979
|
name: "close",
|
|
11980
11980
|
class: "cursor-pointer clear-input",
|
|
11981
11981
|
onClick: Ys(u, ["stop"])
|
|
11982
|
-
})) :
|
|
11982
|
+
})) : et("", !0)
|
|
11983
11983
|
]),
|
|
11984
11984
|
"no-option": ve(() => [
|
|
11985
11985
|
fe("div", n_, [
|
|
11986
|
-
|
|
11986
|
+
_e(Xn, null, {
|
|
11987
11987
|
default: ve(() => [
|
|
11988
|
-
|
|
11988
|
+
_e(fn, { class: "wrapper-empty-text" }, {
|
|
11989
11989
|
default: ve(() => [
|
|
11990
11990
|
Wt(mt(v.emptyText || "Ничего не найдено") + " ", 1),
|
|
11991
11991
|
v.allowCreate && i.value && i.value.trim() ? (Q(), be("button", {
|
|
11992
11992
|
key: 0,
|
|
11993
11993
|
class: "add-new-items",
|
|
11994
11994
|
onClick: c
|
|
11995
|
-
}, " Добавить ")) :
|
|
11995
|
+
}, " Добавить ")) : et("", !0)
|
|
11996
11996
|
]),
|
|
11997
11997
|
_: 1
|
|
11998
11998
|
})
|
|
@@ -12002,20 +12002,20 @@ const qC = Ge({
|
|
|
12002
12002
|
])
|
|
12003
12003
|
]),
|
|
12004
12004
|
option: ve((w) => [
|
|
12005
|
-
w.opt.__loading ? (Q(),
|
|
12005
|
+
w.opt.__loading ? (Q(), Fe(Xn, {
|
|
12006
12006
|
key: 0,
|
|
12007
12007
|
class: "q-py-md q-ml-md"
|
|
12008
12008
|
}, {
|
|
12009
12009
|
default: ve(() => [
|
|
12010
|
-
|
|
12010
|
+
_e(JC, {
|
|
12011
12011
|
size: "24px",
|
|
12012
12012
|
color: "primary"
|
|
12013
12013
|
})
|
|
12014
12014
|
]),
|
|
12015
12015
|
_: 1
|
|
12016
|
-
})) : (Q(),
|
|
12016
|
+
})) : (Q(), Fe(Xn, J0(Bc({ key: 1 }, w.itemProps)), {
|
|
12017
12017
|
default: ve(() => [
|
|
12018
|
-
|
|
12018
|
+
_e(fn, null, {
|
|
12019
12019
|
default: ve(() => [
|
|
12020
12020
|
Wt(mt(w.opt[v.optionLabel || "label"]), 1)
|
|
12021
12021
|
]),
|
|
@@ -12030,7 +12030,7 @@ const qC = Ge({
|
|
|
12030
12030
|
v.multiple || v.showChip ? {
|
|
12031
12031
|
name: "selected-item",
|
|
12032
12032
|
fn: ve((w) => [
|
|
12033
|
-
w.opt ? (Q(),
|
|
12033
|
+
w.opt ? (Q(), Fe(id, {
|
|
12034
12034
|
key: 0,
|
|
12035
12035
|
removable: "",
|
|
12036
12036
|
tabindex: w.tabindex,
|
|
@@ -12043,7 +12043,7 @@ const qC = Ge({
|
|
|
12043
12043
|
Wt(mt(w.opt[v.optionLabel || "label"]), 1)
|
|
12044
12044
|
]),
|
|
12045
12045
|
_: 2
|
|
12046
|
-
}, 1032, ["tabindex", "style", "onRemove"])) :
|
|
12046
|
+
}, 1032, ["tabindex", "style", "onRemove"])) : et("", !0)
|
|
12047
12047
|
]),
|
|
12048
12048
|
key: "0"
|
|
12049
12049
|
} : void 0
|
|
@@ -12051,7 +12051,7 @@ const qC = Ge({
|
|
|
12051
12051
|
], 64);
|
|
12052
12052
|
};
|
|
12053
12053
|
}
|
|
12054
|
-
}), o_ = /* @__PURE__ */
|
|
12054
|
+
}), o_ = /* @__PURE__ */ Pe(r_, [["__scopeId", "data-v-d70e00a1"]]), a_ = { class: "modal-title" }, i_ = {
|
|
12055
12055
|
key: 0,
|
|
12056
12056
|
class: "field-label"
|
|
12057
12057
|
}, s_ = {
|
|
@@ -12112,22 +12112,22 @@ const qC = Ge({
|
|
|
12112
12112
|
h && (i.value = { ...t.initialData ?? {} });
|
|
12113
12113
|
},
|
|
12114
12114
|
{ immediate: !0 }
|
|
12115
|
-
), (h, p) => (Q(),
|
|
12115
|
+
), (h, p) => (Q(), Fe(Ba, {
|
|
12116
12116
|
"model-value": h.modelValue,
|
|
12117
12117
|
"onUpdate:modelValue": p[2] || (p[2] = (v) => r("update:modelValue", v))
|
|
12118
12118
|
}, {
|
|
12119
12119
|
default: ve(() => [
|
|
12120
|
-
|
|
12120
|
+
_e(ud, { style: { "min-width": "700px" } }, {
|
|
12121
12121
|
default: ve(() => [
|
|
12122
|
-
|
|
12122
|
+
_e(ks, null, {
|
|
12123
12123
|
default: ve(() => [
|
|
12124
12124
|
fe("div", a_, mt(h.title), 1)
|
|
12125
12125
|
]),
|
|
12126
12126
|
_: 1
|
|
12127
12127
|
}),
|
|
12128
|
-
|
|
12128
|
+
_e(ks, null, {
|
|
12129
12129
|
default: ve(() => [
|
|
12130
|
-
|
|
12130
|
+
_e(YC, {
|
|
12131
12131
|
ref_key: "formRef",
|
|
12132
12132
|
ref: a,
|
|
12133
12133
|
onSubmit: Ys(l, ["prevent"])
|
|
@@ -12141,9 +12141,9 @@ const qC = Ge({
|
|
|
12141
12141
|
}, [
|
|
12142
12142
|
v.type === "text" ? (Q(), be("label", i_, [
|
|
12143
12143
|
Wt(mt(v.label) + " ", 1),
|
|
12144
|
-
(m = v.rules) != null && m.length && h.mode !== "view" ? (Q(), be("span", s_, "*")) :
|
|
12145
|
-
])) :
|
|
12146
|
-
v.type === "text" ? (Q(),
|
|
12144
|
+
(m = v.rules) != null && m.length && h.mode !== "view" ? (Q(), be("span", s_, "*")) : et("", !0)
|
|
12145
|
+
])) : et("", !0),
|
|
12146
|
+
v.type === "text" ? (Q(), Fe(Oa, {
|
|
12147
12147
|
key: 1,
|
|
12148
12148
|
modelValue: i.value[v.key],
|
|
12149
12149
|
"onUpdate:modelValue": (g) => i.value[v.key] = g,
|
|
@@ -12153,13 +12153,13 @@ const qC = Ge({
|
|
|
12153
12153
|
placeholder: v.placeholder
|
|
12154
12154
|
}, {
|
|
12155
12155
|
append: ve(() => [
|
|
12156
|
-
h.mode !== "view" && i.value[v.key] && !(v.key === "uuid" && h.mode === "edit") ? (Q(),
|
|
12156
|
+
h.mode !== "view" && i.value[v.key] && !(v.key === "uuid" && h.mode === "edit") ? (Q(), Fe(Et, {
|
|
12157
12157
|
key: 0,
|
|
12158
12158
|
name: "close",
|
|
12159
12159
|
class: "cursor-pointer clear-input",
|
|
12160
12160
|
onClick: () => c(v.key)
|
|
12161
|
-
}, null, 8, ["onClick"])) :
|
|
12162
|
-
v.key === "uuid" && h.mode === "create" ? (Q(),
|
|
12161
|
+
}, null, 8, ["onClick"])) : et("", !0),
|
|
12162
|
+
v.key === "uuid" && h.mode === "create" ? (Q(), Fe(St, {
|
|
12163
12163
|
key: 1,
|
|
12164
12164
|
flat: "",
|
|
12165
12165
|
"no-caps": "",
|
|
@@ -12167,16 +12167,16 @@ const qC = Ge({
|
|
|
12167
12167
|
size: "sm",
|
|
12168
12168
|
class: "q-ml-sm uuid-btn",
|
|
12169
12169
|
onClick: d
|
|
12170
|
-
})) : v.key === "uuid" && h.mode !== "create" ? (Q(),
|
|
12170
|
+
})) : v.key === "uuid" && h.mode !== "create" ? (Q(), Fe(Et, {
|
|
12171
12171
|
key: 2,
|
|
12172
12172
|
name: "content_copy",
|
|
12173
12173
|
class: "cursor-pointer q-ml-sm copy-icon",
|
|
12174
12174
|
color: "primary",
|
|
12175
12175
|
onClick: (g) => f(i.value[v.key])
|
|
12176
|
-
}, null, 8, ["onClick"])) :
|
|
12176
|
+
}, null, 8, ["onClick"])) : et("", !0)
|
|
12177
12177
|
]),
|
|
12178
12178
|
_: 2
|
|
12179
|
-
}, 1032, ["modelValue", "onUpdate:modelValue", "rules", "readonly", "placeholder"])) : v.type === "select" ? (Q(),
|
|
12179
|
+
}, 1032, ["modelValue", "onUpdate:modelValue", "rules", "readonly", "placeholder"])) : v.type === "select" ? (Q(), Fe(o_, {
|
|
12180
12180
|
key: 2,
|
|
12181
12181
|
modelValue: i.value[v.key],
|
|
12182
12182
|
"onUpdate:modelValue": (g) => i.value[v.key] = g,
|
|
@@ -12207,7 +12207,7 @@ const qC = Ge({
|
|
|
12207
12207
|
return (g = a.value.value) == null ? void 0 : g.validate();
|
|
12208
12208
|
});
|
|
12209
12209
|
}
|
|
12210
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "options", "rules", "placeholder", "is-disabled", "loading", "label", "is-show-required", "onUpdate:search", "onUpdate:scroll", "onClear"])) :
|
|
12210
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "options", "rules", "placeholder", "is-disabled", "loading", "label", "is-show-required", "onUpdate:search", "onUpdate:scroll", "onClear"])) : et("", !0)
|
|
12211
12211
|
]);
|
|
12212
12212
|
}), 128))
|
|
12213
12213
|
]),
|
|
@@ -12216,17 +12216,17 @@ const qC = Ge({
|
|
|
12216
12216
|
]),
|
|
12217
12217
|
_: 1
|
|
12218
12218
|
}),
|
|
12219
|
-
|
|
12219
|
+
_e(QC, { align: "center" }, {
|
|
12220
12220
|
default: ve(() => [
|
|
12221
|
-
h.mode === "view" ? (Q(),
|
|
12221
|
+
h.mode === "view" ? (Q(), Fe(St, {
|
|
12222
12222
|
key: 0,
|
|
12223
12223
|
class: "remove",
|
|
12224
12224
|
flat: "",
|
|
12225
12225
|
label: "Удалить",
|
|
12226
12226
|
loading: h.loading,
|
|
12227
12227
|
onClick: p[0] || (p[0] = (v) => r("delete"))
|
|
12228
|
-
}, null, 8, ["loading"])) :
|
|
12229
|
-
h.mode !== "view" ? (Q(),
|
|
12228
|
+
}, null, 8, ["loading"])) : et("", !0),
|
|
12229
|
+
h.mode !== "view" ? (Q(), Fe(St, {
|
|
12230
12230
|
key: 1,
|
|
12231
12231
|
class: "confirm",
|
|
12232
12232
|
flat: "",
|
|
@@ -12234,7 +12234,7 @@ const qC = Ge({
|
|
|
12234
12234
|
disable: u.value,
|
|
12235
12235
|
loading: h.loading,
|
|
12236
12236
|
onClick: l
|
|
12237
|
-
}, null, 8, ["label", "disable", "loading"])) : (Q(),
|
|
12237
|
+
}, null, 8, ["label", "disable", "loading"])) : (Q(), Fe(St, {
|
|
12238
12238
|
key: 2,
|
|
12239
12239
|
class: "confirm",
|
|
12240
12240
|
flat: "",
|
|
@@ -12242,7 +12242,7 @@ const qC = Ge({
|
|
|
12242
12242
|
disable: h.loading,
|
|
12243
12243
|
onClick: p[1] || (p[1] = (v) => h.$emit("edit"))
|
|
12244
12244
|
}, null, 8, ["disable"])),
|
|
12245
|
-
qn(
|
|
12245
|
+
qn(_e(St, {
|
|
12246
12246
|
class: "cancel",
|
|
12247
12247
|
flat: "",
|
|
12248
12248
|
label: "Закрыть",
|
|
@@ -12260,7 +12260,7 @@ const qC = Ge({
|
|
|
12260
12260
|
_: 1
|
|
12261
12261
|
}, 8, ["model-value"]));
|
|
12262
12262
|
}
|
|
12263
|
-
}), VA = /* @__PURE__ */
|
|
12263
|
+
}), VA = /* @__PURE__ */ Pe(u_, [["__scopeId", "data-v-26f3d43f"]]), ph = Ge({
|
|
12264
12264
|
name: "QTd",
|
|
12265
12265
|
props: {
|
|
12266
12266
|
props: Object,
|
|
@@ -13390,18 +13390,18 @@ const V_ = Ge({
|
|
|
13390
13390
|
let ee = e.rows;
|
|
13391
13391
|
if (g.value === !0 || ee.length === 0)
|
|
13392
13392
|
return ee;
|
|
13393
|
-
const { sortBy:
|
|
13393
|
+
const { sortBy: Ce, descending: $e } = m.value;
|
|
13394
13394
|
return e.filter && (ee = y.value(ee, e.filter, O.value, re)), ae.value !== null && (ee = le.value(
|
|
13395
13395
|
e.rows === ee ? ee.slice() : ee,
|
|
13396
|
-
|
|
13396
|
+
Ce,
|
|
13397
13397
|
$e
|
|
13398
13398
|
)), ee;
|
|
13399
13399
|
}), _ = k(() => R.value.length), S = k(() => {
|
|
13400
13400
|
let ee = R.value;
|
|
13401
13401
|
if (g.value === !0)
|
|
13402
13402
|
return ee;
|
|
13403
|
-
const { rowsPerPage:
|
|
13404
|
-
return
|
|
13403
|
+
const { rowsPerPage: Ce } = m.value;
|
|
13404
|
+
return Ce !== 0 && (de.value === 0 && e.rows !== ee ? ee.length > xe.value && (ee = ee.slice(0, xe.value)) : ee = ee.slice(de.value, xe.value)), ee;
|
|
13405
13405
|
}), {
|
|
13406
13406
|
hasSelectionMode: M,
|
|
13407
13407
|
singleSelection: I,
|
|
@@ -13421,13 +13421,13 @@ const V_ = Ge({
|
|
|
13421
13421
|
computedRowsPerPageOptions: Ee,
|
|
13422
13422
|
computedRowsNumber: Oe,
|
|
13423
13423
|
firstPage: Je,
|
|
13424
|
-
prevPage:
|
|
13424
|
+
prevPage: tt,
|
|
13425
13425
|
nextPage: Xe,
|
|
13426
13426
|
lastPage: ct
|
|
13427
13427
|
} = D_(r, v, m, g, b, _), gt = k(() => S.value.length === 0), At = k(() => {
|
|
13428
13428
|
const ee = {};
|
|
13429
|
-
return Uv.forEach((
|
|
13430
|
-
ee[
|
|
13429
|
+
return Uv.forEach((Ce) => {
|
|
13430
|
+
ee[Ce] = e[Ce];
|
|
13431
13431
|
}), ee.virtualScrollItemSize === void 0 && (ee.virtualScrollItemSize = e.dense === !0 ? 28 : 48), ee;
|
|
13432
13432
|
});
|
|
13433
13433
|
function Dt() {
|
|
@@ -13457,17 +13457,17 @@ const V_ = Ge({
|
|
|
13457
13457
|
onVirtualScroll: pe
|
|
13458
13458
|
}, rt);
|
|
13459
13459
|
}
|
|
13460
|
-
const
|
|
13460
|
+
const Ce = [
|
|
13461
13461
|
vt()
|
|
13462
13462
|
];
|
|
13463
|
-
return ee !== null &&
|
|
13463
|
+
return ee !== null && Ce.unshift(ee()), Xv({
|
|
13464
13464
|
class: ["q-table__middle scroll", e.tableClass],
|
|
13465
13465
|
style: e.tableStyle
|
|
13466
|
-
},
|
|
13466
|
+
}, Ce);
|
|
13467
13467
|
}
|
|
13468
|
-
function Z(ee,
|
|
13468
|
+
function Z(ee, Ce) {
|
|
13469
13469
|
if (c.value !== null) {
|
|
13470
|
-
c.value.scrollTo(ee,
|
|
13470
|
+
c.value.scrollTo(ee, Ce);
|
|
13471
13471
|
return;
|
|
13472
13472
|
}
|
|
13473
13473
|
ee = parseInt(ee, 10);
|
|
@@ -13496,9 +13496,9 @@ const V_ = Ge({
|
|
|
13496
13496
|
})
|
|
13497
13497
|
];
|
|
13498
13498
|
}
|
|
13499
|
-
function st(ee,
|
|
13499
|
+
function st(ee, Ce, $e) {
|
|
13500
13500
|
const We = u.value(ee), rt = L(We);
|
|
13501
|
-
if (
|
|
13501
|
+
if (Ce !== void 0) {
|
|
13502
13502
|
const $ = {
|
|
13503
13503
|
key: We,
|
|
13504
13504
|
row: ee,
|
|
@@ -13509,7 +13509,7 @@ const V_ = Ge({
|
|
|
13509
13509
|
const ne = e.tableRowClassFn(ee);
|
|
13510
13510
|
ne && ($.__trClass = `${ne} ${$.__trClass}`);
|
|
13511
13511
|
}
|
|
13512
|
-
return
|
|
13512
|
+
return Ce(
|
|
13513
13513
|
He($)
|
|
13514
13514
|
);
|
|
13515
13515
|
}
|
|
@@ -13550,15 +13550,15 @@ const V_ = Ge({
|
|
|
13550
13550
|
return T("tr", P, Bt);
|
|
13551
13551
|
}
|
|
13552
13552
|
function vt() {
|
|
13553
|
-
const ee = n.body,
|
|
13553
|
+
const ee = n.body, Ce = n["top-row"], $e = n["bottom-row"];
|
|
13554
13554
|
let We = S.value.map(
|
|
13555
13555
|
(rt, qt) => st(rt, ee, qt)
|
|
13556
13556
|
);
|
|
13557
|
-
return
|
|
13557
|
+
return Ce !== void 0 && (We = Ce({ cols: O.value }).concat(We)), $e !== void 0 && (We = We.concat($e({ cols: O.value }))), T("tbody", We);
|
|
13558
13558
|
}
|
|
13559
13559
|
function He(ee) {
|
|
13560
13560
|
return It(ee), ee.cols = ee.cols.map(
|
|
13561
|
-
(
|
|
13561
|
+
(Ce) => nr({ ...Ce }, "value", () => re(Ce, ee.row))
|
|
13562
13562
|
), ee;
|
|
13563
13563
|
}
|
|
13564
13564
|
function Ue(ee) {
|
|
@@ -13580,21 +13580,21 @@ const V_ = Ge({
|
|
|
13580
13580
|
ee,
|
|
13581
13581
|
"selected",
|
|
13582
13582
|
() => L(ee.key),
|
|
13583
|
-
(
|
|
13584
|
-
j([ee.key], [ee.row],
|
|
13583
|
+
(Ce, $e) => {
|
|
13584
|
+
j([ee.key], [ee.row], Ce, $e);
|
|
13585
13585
|
}
|
|
13586
13586
|
), nr(
|
|
13587
13587
|
ee,
|
|
13588
13588
|
"expand",
|
|
13589
13589
|
() => x(ee.key),
|
|
13590
|
-
(
|
|
13591
|
-
E(ee.key,
|
|
13590
|
+
(Ce) => {
|
|
13591
|
+
E(ee.key, Ce);
|
|
13592
13592
|
}
|
|
13593
13593
|
);
|
|
13594
13594
|
}
|
|
13595
|
-
function re(ee,
|
|
13596
|
-
const $e = typeof ee.field == "function" ? ee.field(
|
|
13597
|
-
return ee.format !== void 0 ? ee.format($e,
|
|
13595
|
+
function re(ee, Ce) {
|
|
13596
|
+
const $e = typeof ee.field == "function" ? ee.field(Ce) : Ce[ee.field];
|
|
13597
|
+
return ee.format !== void 0 ? ee.format($e, Ce) : $e;
|
|
13598
13598
|
}
|
|
13599
13599
|
const he = k(() => ({
|
|
13600
13600
|
pagination: m.value,
|
|
@@ -13602,20 +13602,20 @@ const V_ = Ge({
|
|
|
13602
13602
|
isFirstPage: oe.value,
|
|
13603
13603
|
isLastPage: ze.value,
|
|
13604
13604
|
firstPage: Je,
|
|
13605
|
-
prevPage:
|
|
13605
|
+
prevPage: tt,
|
|
13606
13606
|
nextPage: Xe,
|
|
13607
13607
|
lastPage: ct,
|
|
13608
13608
|
inFullscreen: i.value,
|
|
13609
13609
|
toggleFullscreen: s
|
|
13610
13610
|
}));
|
|
13611
13611
|
function Ve() {
|
|
13612
|
-
const ee = n.top,
|
|
13612
|
+
const ee = n.top, Ce = n["top-left"], $e = n["top-right"], We = n["top-selection"], rt = M.value === !0 && We !== void 0 && V.value > 0, qt = "q-table__top relative-position row items-center";
|
|
13613
13613
|
if (ee !== void 0)
|
|
13614
13614
|
return T("div", { class: qt }, [ee(he.value)]);
|
|
13615
13615
|
let Bt;
|
|
13616
|
-
if (rt === !0 ? Bt = We(he.value).slice() : (Bt = [],
|
|
13616
|
+
if (rt === !0 ? Bt = We(he.value).slice() : (Bt = [], Ce !== void 0 ? Bt.push(
|
|
13617
13617
|
T("div", { class: "q-table__control" }, [
|
|
13618
|
-
|
|
13618
|
+
Ce(he.value)
|
|
13619
13619
|
])
|
|
13620
13620
|
) : e.title && Bt.push(
|
|
13621
13621
|
T("div", { class: "q-table__control" }, [
|
|
@@ -13645,13 +13645,13 @@ const V_ = Ge({
|
|
|
13645
13645
|
), T("thead", ee);
|
|
13646
13646
|
}
|
|
13647
13647
|
function ln() {
|
|
13648
|
-
const ee = n.header,
|
|
13648
|
+
const ee = n.header, Ce = n["header-cell"];
|
|
13649
13649
|
if (ee !== void 0)
|
|
13650
13650
|
return ee(
|
|
13651
13651
|
it({ header: !0 })
|
|
13652
13652
|
).slice();
|
|
13653
13653
|
const $e = O.value.map((We) => {
|
|
13654
|
-
const rt = n[`header-cell-${We.name}`], qt = rt !== void 0 ? rt :
|
|
13654
|
+
const rt = n[`header-cell-${We.name}`], qt = rt !== void 0 ? rt : Ce, Bt = it({ col: We });
|
|
13655
13655
|
return qt !== void 0 ? qt(Bt) : T(Kv, {
|
|
13656
13656
|
key: We.name,
|
|
13657
13657
|
props: Bt
|
|
@@ -13729,7 +13729,7 @@ const V_ = Ge({
|
|
|
13729
13729
|
const ee = n.bottom;
|
|
13730
13730
|
if (ee !== void 0)
|
|
13731
13731
|
return T("div", { class: Wi }, [ee(he.value)]);
|
|
13732
|
-
const
|
|
13732
|
+
const Ce = e.hideSelectedBanner !== !0 && M.value === !0 && V.value > 0 ? [
|
|
13733
13733
|
T("div", { class: "q-table__control" }, [
|
|
13734
13734
|
T("div", [
|
|
13735
13735
|
(e.selectedRowsLabel || o.lang.table.selectedRecords)(V.value)
|
|
@@ -13739,9 +13739,9 @@ const V_ = Ge({
|
|
|
13739
13739
|
if (e.hidePagination !== !0)
|
|
13740
13740
|
return T("div", {
|
|
13741
13741
|
class: Wi + " justify-end"
|
|
13742
|
-
}, Uo(
|
|
13743
|
-
if (
|
|
13744
|
-
return T("div", { class: Wi },
|
|
13742
|
+
}, Uo(Ce));
|
|
13743
|
+
if (Ce.length !== 0)
|
|
13744
|
+
return T("div", { class: Wi }, Ce);
|
|
13745
13745
|
}
|
|
13746
13746
|
function vr(ee) {
|
|
13747
13747
|
b({
|
|
@@ -13750,7 +13750,7 @@ const V_ = Ge({
|
|
|
13750
13750
|
});
|
|
13751
13751
|
}
|
|
13752
13752
|
function Uo(ee) {
|
|
13753
|
-
let
|
|
13753
|
+
let Ce;
|
|
13754
13754
|
const { rowsPerPage: $e } = m.value, We = e.paginationLabel || o.lang.table.pagination, rt = n.pagination, qt = e.rowsPerPageOptions.length > 1;
|
|
13755
13755
|
if (ee.push(
|
|
13756
13756
|
T("div", { class: "q-table__separator col" })
|
|
@@ -13774,8 +13774,8 @@ const V_ = Ge({
|
|
|
13774
13774
|
})
|
|
13775
13775
|
])
|
|
13776
13776
|
), rt !== void 0)
|
|
13777
|
-
|
|
13778
|
-
else if (
|
|
13777
|
+
Ce = rt(he.value);
|
|
13778
|
+
else if (Ce = [
|
|
13779
13779
|
T("span", $e !== 0 ? { class: "q-table__bottom-item" } : {}, [
|
|
13780
13780
|
$e ? We(de.value + 1, Math.min(xe.value, Oe.value), Oe.value) : We(1, _.value, Oe.value)
|
|
13781
13781
|
])
|
|
@@ -13786,7 +13786,7 @@ const V_ = Ge({
|
|
|
13786
13786
|
dense: !0,
|
|
13787
13787
|
flat: !0
|
|
13788
13788
|
};
|
|
13789
|
-
e.dense === !0 && (Bt.size = "sm"), ge.value > 2 &&
|
|
13789
|
+
e.dense === !0 && (Bt.size = "sm"), ge.value > 2 && Ce.push(
|
|
13790
13790
|
T(St, {
|
|
13791
13791
|
key: "pgFirst",
|
|
13792
13792
|
...Bt,
|
|
@@ -13795,14 +13795,14 @@ const V_ = Ge({
|
|
|
13795
13795
|
ariaLabel: o.lang.pagination.first,
|
|
13796
13796
|
onClick: Je
|
|
13797
13797
|
})
|
|
13798
|
-
),
|
|
13798
|
+
), Ce.push(
|
|
13799
13799
|
T(St, {
|
|
13800
13800
|
key: "pgPrev",
|
|
13801
13801
|
...Bt,
|
|
13802
13802
|
icon: jt.value[1],
|
|
13803
13803
|
disable: oe.value,
|
|
13804
13804
|
ariaLabel: o.lang.pagination.prev,
|
|
13805
|
-
onClick:
|
|
13805
|
+
onClick: tt
|
|
13806
13806
|
}),
|
|
13807
13807
|
T(St, {
|
|
13808
13808
|
key: "pgNext",
|
|
@@ -13812,7 +13812,7 @@ const V_ = Ge({
|
|
|
13812
13812
|
ariaLabel: o.lang.pagination.next,
|
|
13813
13813
|
onClick: Xe
|
|
13814
13814
|
})
|
|
13815
|
-
), ge.value > 2 &&
|
|
13815
|
+
), ge.value > 2 && Ce.push(
|
|
13816
13816
|
T(St, {
|
|
13817
13817
|
key: "pgLast",
|
|
13818
13818
|
...Bt,
|
|
@@ -13824,7 +13824,7 @@ const V_ = Ge({
|
|
|
13824
13824
|
);
|
|
13825
13825
|
}
|
|
13826
13826
|
return ee.push(
|
|
13827
|
-
T("div", { class: "q-table__control" },
|
|
13827
|
+
T("div", { class: "q-table__control" }, Ce)
|
|
13828
13828
|
), ee;
|
|
13829
13829
|
}
|
|
13830
13830
|
function ir() {
|
|
@@ -13836,22 +13836,22 @@ const V_ = Ge({
|
|
|
13836
13836
|
return T("div", { class: "q-table__middle" }, ee);
|
|
13837
13837
|
}
|
|
13838
13838
|
function go() {
|
|
13839
|
-
const ee = n.item !== void 0 ? n.item : (
|
|
13840
|
-
const $e =
|
|
13839
|
+
const ee = n.item !== void 0 ? n.item : (Ce) => {
|
|
13840
|
+
const $e = Ce.cols.map(
|
|
13841
13841
|
(rt) => T("div", { class: "q-table__grid-item-row" }, [
|
|
13842
13842
|
T("div", { class: "q-table__grid-item-title" }, [rt.label]),
|
|
13843
13843
|
T("div", { class: "q-table__grid-item-value" }, [rt.value])
|
|
13844
13844
|
])
|
|
13845
13845
|
);
|
|
13846
13846
|
if (M.value === !0) {
|
|
13847
|
-
const rt = n["body-selection"], qt = rt !== void 0 ? rt(
|
|
13847
|
+
const rt = n["body-selection"], qt = rt !== void 0 ? rt(Ce) : [
|
|
13848
13848
|
T(Ja, {
|
|
13849
|
-
modelValue:
|
|
13849
|
+
modelValue: Ce.selected,
|
|
13850
13850
|
color: e.color,
|
|
13851
13851
|
dark: a.value,
|
|
13852
13852
|
dense: e.dense,
|
|
13853
13853
|
"onUpdate:modelValue": (Bt, P) => {
|
|
13854
|
-
j([
|
|
13854
|
+
j([Ce.key], [Ce.row], Bt, P);
|
|
13855
13855
|
}
|
|
13856
13856
|
})
|
|
13857
13857
|
];
|
|
@@ -13867,18 +13867,18 @@ const V_ = Ge({
|
|
|
13867
13867
|
],
|
|
13868
13868
|
style: e.cardStyle
|
|
13869
13869
|
};
|
|
13870
|
-
if (e.cardStyleFn !== void 0 && (We.style = [We.style, e.cardStyleFn(
|
|
13871
|
-
const rt = e.cardClassFn(
|
|
13870
|
+
if (e.cardStyleFn !== void 0 && (We.style = [We.style, e.cardStyleFn(Ce.row)]), e.cardClassFn !== void 0) {
|
|
13871
|
+
const rt = e.cardClassFn(Ce.row);
|
|
13872
13872
|
rt && (We.class[0] += ` ${rt}`);
|
|
13873
13873
|
}
|
|
13874
13874
|
return (e.onRowClick !== void 0 || e.onRowDblclick !== void 0 || e.onRowContextmenu !== void 0) && (We.class[0] += " cursor-pointer", e.onRowClick !== void 0 && (We.onClick = (rt) => {
|
|
13875
|
-
t("RowClick", rt,
|
|
13875
|
+
t("RowClick", rt, Ce.row, Ce.pageIndex);
|
|
13876
13876
|
}), e.onRowDblclick !== void 0 && (We.onDblclick = (rt) => {
|
|
13877
|
-
t("RowDblclick", rt,
|
|
13877
|
+
t("RowDblclick", rt, Ce.row, Ce.pageIndex);
|
|
13878
13878
|
}), e.onRowContextmenu !== void 0 && (We.onContextmenu = (rt) => {
|
|
13879
|
-
t("rowContextmenu", rt,
|
|
13879
|
+
t("rowContextmenu", rt, Ce.row, Ce.pageIndex);
|
|
13880
13880
|
})), T("div", {
|
|
13881
|
-
class: "q-table__grid-item col-xs-12 col-sm-6 col-md-4 col-lg-3" + (
|
|
13881
|
+
class: "q-table__grid-item col-xs-12 col-sm-6 col-md-4 col-lg-3" + (Ce.selected === !0 ? " q-table__grid-item--selected" : "")
|
|
13882
13882
|
}, [
|
|
13883
13883
|
T("div", We, $e)
|
|
13884
13884
|
]);
|
|
@@ -13889,9 +13889,9 @@ const V_ = Ge({
|
|
|
13889
13889
|
e.cardContainerClass
|
|
13890
13890
|
],
|
|
13891
13891
|
style: e.cardContainerStyle
|
|
13892
|
-
}, S.value.map((
|
|
13893
|
-
key: u.value(
|
|
13894
|
-
row:
|
|
13892
|
+
}, S.value.map((Ce, $e) => ee(He({
|
|
13893
|
+
key: u.value(Ce),
|
|
13894
|
+
row: Ce,
|
|
13895
13895
|
pageIndex: $e
|
|
13896
13896
|
}))));
|
|
13897
13897
|
}
|
|
@@ -13899,7 +13899,7 @@ const V_ = Ge({
|
|
|
13899
13899
|
requestServerInteraction: w,
|
|
13900
13900
|
setPagination: b,
|
|
13901
13901
|
firstPage: Je,
|
|
13902
|
-
prevPage:
|
|
13902
|
+
prevPage: tt,
|
|
13903
13903
|
nextPage: Xe,
|
|
13904
13904
|
lastPage: ct,
|
|
13905
13905
|
isRowSelected: L,
|
|
@@ -13915,16 +13915,16 @@ const V_ = Ge({
|
|
|
13915
13915
|
computedRows: () => S.value,
|
|
13916
13916
|
computedRowsNumber: () => Oe.value
|
|
13917
13917
|
}), () => {
|
|
13918
|
-
const ee = [Ve()],
|
|
13919
|
-
return e.grid === !0 ? ee.push(ir()) : Object.assign(
|
|
13920
|
-
class: [
|
|
13918
|
+
const ee = [Ve()], Ce = { ref: l, class: p.value };
|
|
13919
|
+
return e.grid === !0 ? ee.push(ir()) : Object.assign(Ce, {
|
|
13920
|
+
class: [Ce.class, e.cardClass],
|
|
13921
13921
|
style: e.cardStyle
|
|
13922
13922
|
}), ee.push(
|
|
13923
13923
|
ue(),
|
|
13924
13924
|
Pr()
|
|
13925
13925
|
), e.loading === !0 && n.loading !== void 0 && ee.push(
|
|
13926
13926
|
n.loading()
|
|
13927
|
-
), T("div",
|
|
13927
|
+
), T("div", Ce, ee);
|
|
13928
13928
|
};
|
|
13929
13929
|
}
|
|
13930
13930
|
}), z_ = {}, W_ = {
|
|
@@ -13960,7 +13960,7 @@ function $_(e, n) {
|
|
|
13960
13960
|
}, null, -1)
|
|
13961
13961
|
]));
|
|
13962
13962
|
}
|
|
13963
|
-
const H_ = /* @__PURE__ */
|
|
13963
|
+
const H_ = /* @__PURE__ */ Pe(z_, [["render", $_]]), U_ = {
|
|
13964
13964
|
class: "flex flex-col",
|
|
13965
13965
|
style: { height: "100%", "min-height": "100%" }
|
|
13966
13966
|
}, j_ = ["onClick"], G_ = {
|
|
@@ -13969,7 +13969,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
13969
13969
|
}, K_ = { key: 1 }, X_ = { class: "filter-content" }, Y_ = { class: "filter-footer" }, Q_ = {
|
|
13970
13970
|
key: 0,
|
|
13971
13971
|
class: "actions__btns"
|
|
13972
|
-
}, Z_ = ["innerHTML"], J_ =
|
|
13972
|
+
}, Z_ = ["innerHTML"], J_ = ["title"], ek = /* @__PURE__ */ Pt({
|
|
13973
13973
|
__name: "AppTable",
|
|
13974
13974
|
props: {
|
|
13975
13975
|
rows: {},
|
|
@@ -14015,7 +14015,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14015
14015
|
},
|
|
14016
14016
|
{ deep: !0 }
|
|
14017
14017
|
), (c, d) => (Q(), be("div", U_, [
|
|
14018
|
-
|
|
14018
|
+
_e(V_, {
|
|
14019
14019
|
selected: a.value,
|
|
14020
14020
|
"onUpdate:selected": d[0] || (d[0] = (f) => a.value = f),
|
|
14021
14021
|
rows: c.rows.value,
|
|
@@ -14031,19 +14031,19 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14031
14031
|
onRowClick: l
|
|
14032
14032
|
}, Da({
|
|
14033
14033
|
"header-selection": ve((f) => [
|
|
14034
|
-
|
|
14034
|
+
_e(ac, {
|
|
14035
14035
|
modelValue: f.selected,
|
|
14036
14036
|
"onUpdate:modelValue": (h) => f.selected = h
|
|
14037
14037
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
14038
14038
|
]),
|
|
14039
14039
|
"body-selection": ve((f) => [
|
|
14040
|
-
|
|
14040
|
+
_e(ac, {
|
|
14041
14041
|
modelValue: f.selected,
|
|
14042
14042
|
"onUpdate:modelValue": (h) => f.selected = h
|
|
14043
14043
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
14044
14044
|
]),
|
|
14045
14045
|
"body-cell-index": ve((f) => [
|
|
14046
|
-
|
|
14046
|
+
_e(ph, {
|
|
14047
14047
|
props: f,
|
|
14048
14048
|
class: Ke(["text-center", { "q-td--no-hover": c.noHover }])
|
|
14049
14049
|
}, {
|
|
@@ -14054,7 +14054,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14054
14054
|
}, 1032, ["props", "class"])
|
|
14055
14055
|
]),
|
|
14056
14056
|
"body-cell": ve((f) => [
|
|
14057
|
-
|
|
14057
|
+
_e(ph, {
|
|
14058
14058
|
props: f,
|
|
14059
14059
|
class: Ke({
|
|
14060
14060
|
"q-td--no-hover": c.noHover || f.col.name === "actions",
|
|
@@ -14063,7 +14063,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14063
14063
|
}, {
|
|
14064
14064
|
default: ve(() => [
|
|
14065
14065
|
f.col.name === "actions" ? (Q(), be("div", Q_, [
|
|
14066
|
-
|
|
14066
|
+
_e(St, {
|
|
14067
14067
|
square: "",
|
|
14068
14068
|
icon: "edit",
|
|
14069
14069
|
size: "sm",
|
|
@@ -14071,7 +14071,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14071
14071
|
title: "Редактировать",
|
|
14072
14072
|
onClick: (h) => r("edit", f.row)
|
|
14073
14073
|
}, null, 8, ["onClick"])
|
|
14074
|
-
])) : f.col.badge && typeof f.value == "boolean" ? (Q(),
|
|
14074
|
+
])) : f.col.badge && typeof f.value == "boolean" ? (Q(), Fe(qp, {
|
|
14075
14075
|
key: 1,
|
|
14076
14076
|
color: f.col.badge.colorTrue && f.value ? f.col.badge.colorTrue : f.col.badge.colorFalse && !f.value ? f.col.badge.colorFalse : f.value ? "green" : "red",
|
|
14077
14077
|
outline: "",
|
|
@@ -14087,7 +14087,10 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14087
14087
|
}, null, 8, Z_)) : u(f.col.name) ? nn(c.$slots, f.col.name, {
|
|
14088
14088
|
key: 3,
|
|
14089
14089
|
cellProps: f
|
|
14090
|
-
}, void 0, !0) : (Q(), be("span",
|
|
14090
|
+
}, void 0, !0) : (Q(), be("span", {
|
|
14091
|
+
key: 4,
|
|
14092
|
+
title: f.value
|
|
14093
|
+
}, mt(f.value), 9, J_))
|
|
14091
14094
|
]),
|
|
14092
14095
|
_: 2
|
|
14093
14096
|
}, 1032, ["props", "class"])
|
|
@@ -14097,7 +14100,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14097
14100
|
$r(i.value, (f) => ({
|
|
14098
14101
|
name: `header-cell-${f.name}`,
|
|
14099
14102
|
fn: ve((h) => [
|
|
14100
|
-
|
|
14103
|
+
_e(Kv, {
|
|
14101
14104
|
props: h,
|
|
14102
14105
|
class: Ke({ "cursor-pointer": f.filterType, actions: f.name === "actions" }),
|
|
14103
14106
|
style: To(f.style)
|
|
@@ -14110,11 +14113,11 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14110
14113
|
class: "row items-center no-wrap",
|
|
14111
14114
|
onClick: Ys((m) => r("open-filter-menu", f.name, !c.filterMenus.value[f.name]), ["stop"])
|
|
14112
14115
|
}, [
|
|
14113
|
-
|
|
14116
|
+
_e(H_, { class: "q-mr-xs" }),
|
|
14114
14117
|
fe("span", null, mt(f.label), 1),
|
|
14115
|
-
["multi", "single"].includes(f.filterType) && ((p = c.columnFilters.value[f.name]) != null && p.length) ? (Q(), be("div", G_, " - " + mt(f.filterType === "multi" ? (v = c.columnFilters.value[f.name]) == null ? void 0 : v.length : 1), 1)) :
|
|
14118
|
+
["multi", "single"].includes(f.filterType) && ((p = c.columnFilters.value[f.name]) != null && p.length) ? (Q(), be("div", G_, " - " + mt(f.filterType === "multi" ? (v = c.columnFilters.value[f.name]) == null ? void 0 : v.length : 1), 1)) : et("", !0)
|
|
14116
14119
|
], 8, j_)) : (Q(), be("div", K_, mt(f.label), 1)),
|
|
14117
|
-
f.filterType ? (Q(),
|
|
14120
|
+
f.filterType ? (Q(), Fe(xi, {
|
|
14118
14121
|
key: 2,
|
|
14119
14122
|
"model-value": c.filterMenus.value[f.name],
|
|
14120
14123
|
fit: "",
|
|
@@ -14124,7 +14127,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14124
14127
|
}, {
|
|
14125
14128
|
default: ve(() => [
|
|
14126
14129
|
fe("div", X_, [
|
|
14127
|
-
|
|
14130
|
+
_e(Oa, {
|
|
14128
14131
|
modelValue: o.value[f.name],
|
|
14129
14132
|
"onUpdate:modelValue": (m) => o.value[f.name] = m,
|
|
14130
14133
|
dense: "",
|
|
@@ -14133,25 +14136,25 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14133
14136
|
class: "q-mb-sm",
|
|
14134
14137
|
clearable: ""
|
|
14135
14138
|
}, null, 8, ["modelValue", "onUpdate:modelValue"]),
|
|
14136
|
-
|
|
14139
|
+
_e(f_, { style: { height: "200px" } }, {
|
|
14137
14140
|
default: ve(() => [
|
|
14138
|
-
|
|
14141
|
+
_e(ad, { style: { "min-width": "200px" } }, {
|
|
14139
14142
|
default: ve(() => [
|
|
14140
|
-
(Q(!0), be(Ar, null, $r(s.value[f.name], (m) => (Q(),
|
|
14143
|
+
(Q(!0), be(Ar, null, $r(s.value[f.name], (m) => (Q(), Fe(Xn, {
|
|
14141
14144
|
key: `${f.name}-${m.id}`,
|
|
14142
14145
|
tag: "label"
|
|
14143
14146
|
}, {
|
|
14144
14147
|
default: ve(() => [
|
|
14145
|
-
|
|
14148
|
+
_e(fn, { avatar: "" }, {
|
|
14146
14149
|
default: ve(() => {
|
|
14147
14150
|
var g;
|
|
14148
14151
|
return [
|
|
14149
|
-
f.filterType === "multi" ? (Q(),
|
|
14152
|
+
f.filterType === "multi" ? (Q(), Fe(Ja, {
|
|
14150
14153
|
key: 0,
|
|
14151
14154
|
dense: "",
|
|
14152
14155
|
"model-value": Array.isArray(c.columnFilters.value[f.name]) && ((g = c.columnFilters.value[f.name]) == null ? void 0 : g.includes(m.name)),
|
|
14153
14156
|
"onUpdate:modelValue": () => r("toggle-filter-value", f.name, m.name)
|
|
14154
|
-
}, null, 8, ["model-value", "onUpdate:modelValue"])) : (Q(),
|
|
14157
|
+
}, null, 8, ["model-value", "onUpdate:modelValue"])) : (Q(), Fe(c_, {
|
|
14155
14158
|
key: 1,
|
|
14156
14159
|
dense: "",
|
|
14157
14160
|
"model-value": c.columnFilters.value[f.name],
|
|
@@ -14162,7 +14165,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14162
14165
|
}),
|
|
14163
14166
|
_: 2
|
|
14164
14167
|
}, 1024),
|
|
14165
|
-
|
|
14168
|
+
_e(fn, null, {
|
|
14166
14169
|
default: ve(() => [
|
|
14167
14170
|
Wt(mt(m.name), 1)
|
|
14168
14171
|
]),
|
|
@@ -14178,7 +14181,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14178
14181
|
_: 2
|
|
14179
14182
|
}, 1024),
|
|
14180
14183
|
fe("div", Y_, [
|
|
14181
|
-
|
|
14184
|
+
_e(St, {
|
|
14182
14185
|
color: "negative",
|
|
14183
14186
|
flat: "",
|
|
14184
14187
|
dense: "",
|
|
@@ -14189,7 +14192,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14189
14192
|
])
|
|
14190
14193
|
]),
|
|
14191
14194
|
_: 2
|
|
14192
|
-
}, 1032, ["model-value", "onUpdate:modelValue"])) :
|
|
14195
|
+
}, 1032, ["model-value", "onUpdate:modelValue"])) : et("", !0)
|
|
14193
14196
|
];
|
|
14194
14197
|
}),
|
|
14195
14198
|
_: 2
|
|
@@ -14199,7 +14202,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14199
14202
|
]), 1032, ["selected", "rows", "columns", "selection"])
|
|
14200
14203
|
]));
|
|
14201
14204
|
}
|
|
14202
|
-
}), tk = /* @__PURE__ */
|
|
14205
|
+
}), tk = /* @__PURE__ */ Pe(ek, [["__scopeId", "data-v-db0a58c4"]]), nk = {
|
|
14203
14206
|
key: 0,
|
|
14204
14207
|
class: "table-controls"
|
|
14205
14208
|
}, rk = { class: "table-wrapper" }, ok = {
|
|
@@ -14217,6 +14220,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14217
14220
|
onSearch: { type: Function },
|
|
14218
14221
|
onPageChange: { type: Function },
|
|
14219
14222
|
hideSearch: { type: Boolean },
|
|
14223
|
+
hidePagination: { type: Boolean },
|
|
14220
14224
|
noHover: { type: Boolean },
|
|
14221
14225
|
selectedRows: {}
|
|
14222
14226
|
},
|
|
@@ -14224,20 +14228,20 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14224
14228
|
setup(e, { emit: n }) {
|
|
14225
14229
|
const t = e, r = n, o = Lp(), a = ["actions", "modal"], i = k(() => o ? Object.keys(o).filter((u) => !a.includes(u)) : []), s = k(() => "actions" in o);
|
|
14226
14230
|
return (u, l) => (Q(), be("div", {
|
|
14227
|
-
class: Ke(["table-layout", { "hide-search": !s.value && u.hideSearch }])
|
|
14231
|
+
class: Ke(["table-layout", { "hide-search": !s.value && u.hideSearch, "hide-pagination": u.hidePagination }])
|
|
14228
14232
|
}, [
|
|
14229
14233
|
s.value || !u.hideSearch ? (Q(), be("div", nk, [
|
|
14230
|
-
u.hideSearch ?
|
|
14234
|
+
u.hideSearch ? et("", !0) : (Q(), Fe(XC, {
|
|
14231
14235
|
key: 0,
|
|
14232
|
-
"model-value": t.search,
|
|
14236
|
+
"model-value": t.search || "",
|
|
14233
14237
|
class: "search-input",
|
|
14234
14238
|
placeholder: "Введите наименование",
|
|
14235
14239
|
onSearch: t.onSearch
|
|
14236
14240
|
}, null, 8, ["model-value", "onSearch"])),
|
|
14237
|
-
s.value ? nn(u.$slots, "actions", { key: 1 }, void 0, !0) :
|
|
14238
|
-
])) :
|
|
14241
|
+
s.value ? nn(u.$slots, "actions", { key: 1 }, void 0, !0) : et("", !0)
|
|
14242
|
+
])) : et("", !0),
|
|
14239
14243
|
fe("div", rk, [
|
|
14240
|
-
|
|
14244
|
+
_e(tk, Bc(t.tableProps, {
|
|
14241
14245
|
"selected-rows": t.selectedRows,
|
|
14242
14246
|
"no-hover": u.noHover,
|
|
14243
14247
|
slots: Er(o)
|
|
@@ -14254,23 +14258,24 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", $_]]), U_ = {
|
|
|
14254
14258
|
}))
|
|
14255
14259
|
]), 1040, ["selected-rows", "no-hover", "slots"]),
|
|
14256
14260
|
t.loading ? (Q(), be("div", ok, [
|
|
14257
|
-
|
|
14261
|
+
_e(_s, {
|
|
14258
14262
|
class: "loader-spinner",
|
|
14259
14263
|
size: "md",
|
|
14260
14264
|
thickness: 3,
|
|
14261
14265
|
color: "primary"
|
|
14262
14266
|
})
|
|
14263
|
-
])) :
|
|
14267
|
+
])) : et("", !0)
|
|
14264
14268
|
]),
|
|
14265
|
-
|
|
14269
|
+
u.hidePagination ? et("", !0) : (Q(), Fe(GC, {
|
|
14270
|
+
key: 1,
|
|
14266
14271
|
"model-value": t.currentPage,
|
|
14267
14272
|
"total-pages": t.totalPages,
|
|
14268
14273
|
onPageChange: t.onPageChange
|
|
14269
|
-
}, null, 8, ["model-value", "total-pages", "onPageChange"]),
|
|
14270
|
-
"modal" in Er(o) ? nn(u.$slots, "modal", { key:
|
|
14274
|
+
}, null, 8, ["model-value", "total-pages", "onPageChange"])),
|
|
14275
|
+
"modal" in Er(o) ? nn(u.$slots, "modal", { key: 2 }, void 0, !0) : et("", !0)
|
|
14271
14276
|
], 2));
|
|
14272
14277
|
}
|
|
14273
|
-
}), zA = /* @__PURE__ */
|
|
14278
|
+
}), zA = /* @__PURE__ */ Pe(ak, [["__scopeId", "data-v-98a98bdd"]]);
|
|
14274
14279
|
function Qv(e, n) {
|
|
14275
14280
|
return function() {
|
|
14276
14281
|
return e.apply(n, arguments);
|
|
@@ -14579,6 +14584,8 @@ function lu(e, n, t) {
|
|
|
14579
14584
|
if (p === null) return "";
|
|
14580
14585
|
if (te.isDate(p))
|
|
14581
14586
|
return p.toISOString();
|
|
14587
|
+
if (te.isBoolean(p))
|
|
14588
|
+
return p.toString();
|
|
14582
14589
|
if (!u && te.isBlob(p))
|
|
14583
14590
|
throw new ut("Blob is not supported. Use a Buffer instead.");
|
|
14584
14591
|
return te.isArrayBuffer(p) || te.isTypedArray(p) ? u && typeof Blob == "function" ? new Blob([p]) : Buffer.from(p) : p;
|
|
@@ -15499,7 +15506,7 @@ const I3 = async (e) => {
|
|
|
15499
15506
|
duplex: "half",
|
|
15500
15507
|
credentials: g ? d : void 0
|
|
15501
15508
|
});
|
|
15502
|
-
let w = await fetch(p);
|
|
15509
|
+
let w = await fetch(p, f);
|
|
15503
15510
|
const b = lc && (l === "stream" || l === "response");
|
|
15504
15511
|
if (lc && (s || b && v)) {
|
|
15505
15512
|
const x = {};
|
|
@@ -15604,7 +15611,7 @@ function Mh(e) {
|
|
|
15604
15611
|
), r.response.headers = Nn.from(r.response.headers))), Promise.reject(r);
|
|
15605
15612
|
});
|
|
15606
15613
|
}
|
|
15607
|
-
const bm = "1.
|
|
15614
|
+
const bm = "1.10.0", du = {};
|
|
15608
15615
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((e, n) => {
|
|
15609
15616
|
du[e] = function(r) {
|
|
15610
15617
|
return typeof r === e || "a" + (n < 1 ? "n " : " ") + e;
|
|
@@ -16421,8 +16428,20 @@ class H3 extends Zn {
|
|
|
16421
16428
|
async createUser(n) {
|
|
16422
16429
|
return await this.post("/admin/users", n);
|
|
16423
16430
|
}
|
|
16424
|
-
async deleteUser(
|
|
16425
|
-
|
|
16431
|
+
async deleteUser({
|
|
16432
|
+
user_id: n,
|
|
16433
|
+
archive_reason: t
|
|
16434
|
+
}) {
|
|
16435
|
+
return await this.post("/users/archive_user", { user_id: n, archive_reason: t });
|
|
16436
|
+
}
|
|
16437
|
+
async deleteUserPhotos({
|
|
16438
|
+
user_id: n,
|
|
16439
|
+
photos: t
|
|
16440
|
+
}) {
|
|
16441
|
+
return await this.post("/users/photos/delete", { user_id: n, photos: t });
|
|
16442
|
+
}
|
|
16443
|
+
async restoreUser(n) {
|
|
16444
|
+
return await this.post("/users/restore_user", { user_id: n });
|
|
16426
16445
|
}
|
|
16427
16446
|
async getRoles(n) {
|
|
16428
16447
|
return await this.get("/search/roles", { params: n });
|
|
@@ -20004,13 +20023,13 @@ function Wo(e, n, t, r, o, a, i, s) {
|
|
|
20004
20023
|
var N, X, ae;
|
|
20005
20024
|
if (typeof D == "number") {
|
|
20006
20025
|
N = { top: D, bottom: D, left: D, right: D, type: D === 0 ? "VALID" : "NUMBER" };
|
|
20007
|
-
var le = function(ge, Ee, Oe, Je,
|
|
20026
|
+
var le = function(ge, Ee, Oe, Je, tt) {
|
|
20008
20027
|
Je == null && (Je = Zm(ge, Ee, Oe));
|
|
20009
|
-
var Xe = ge[0], ct = ge[1], gt = ti((Xe - Ee + 2 * Je) / Oe + 1,
|
|
20028
|
+
var Xe = ge[0], ct = ge[1], gt = ti((Xe - Ee + 2 * Je) / Oe + 1, tt);
|
|
20010
20029
|
F(Qt(gt), function() {
|
|
20011
20030
|
return "The output # of rows (" + gt + ") must be an integer. Change the stride and/or zero pad parameters";
|
|
20012
20031
|
});
|
|
20013
|
-
var At = ti((ct - Ee + 2 * Je) / Oe + 1,
|
|
20032
|
+
var At = ti((ct - Ee + 2 * Je) / Oe + 1, tt);
|
|
20014
20033
|
return F(Qt(At), function() {
|
|
20015
20034
|
return "The output # of columns (" + At + ") must be an integer. Change the stride and/or zero pad parameters";
|
|
20016
20035
|
}), [gt, At];
|
|
@@ -20040,7 +20059,7 @@ function Vs(e, n, t, r, o, a, i, s) {
|
|
|
20040
20059
|
var ge, Ee, Oe, Je;
|
|
20041
20060
|
if (typeof G == "number") {
|
|
20042
20061
|
ge = { top: G, bottom: G, left: G, right: G, front: G, back: G, type: G === 0 ? "VALID" : "NUMBER" };
|
|
20043
|
-
var
|
|
20062
|
+
var tt = function(Me, st, vt, He, Ue, xt) {
|
|
20044
20063
|
Ue == null && (Ue = Zm(Me, st, He));
|
|
20045
20064
|
var It = Me[0], re = Me[1], he = Me[2], Ve = ti((It - st + 2 * Ue) / He + 1, xt);
|
|
20046
20065
|
F(Qt(Ve), function() {
|
|
@@ -20055,7 +20074,7 @@ function Vs(e, n, t, r, o, a, i, s) {
|
|
|
20055
20074
|
return "The output # of columns (" + at + ") must be an integer. Change the stride and/or zero pad parameters";
|
|
20056
20075
|
}), [Ve, je, at, vt];
|
|
20057
20076
|
}([O, N, X, 1], de, 1, ae, G, ze);
|
|
20058
|
-
Ee =
|
|
20077
|
+
Ee = tt[0], Oe = tt[1], Je = tt[2];
|
|
20059
20078
|
} else if (G === "same") {
|
|
20060
20079
|
Ee = Math.ceil(O / ae), Oe = Math.ceil(N / le), Je = Math.ceil(X / se);
|
|
20061
20080
|
var Xe = (Ee - 1) * ae + de - O, ct = (Oe - 1) * le + xe - N, gt = (Je - 1) * se + oe - X, At = Math.floor(Xe / 2), Dt = Xe - At, ue = Math.floor(ct / 2), Z = ct - ue, pe = Math.floor(gt / 2);
|
|
@@ -29203,14 +29222,14 @@ Hi there 👋. Looks like you are running TensorFlow.js in Node.js. To speed thi
|
|
|
29203
29222
|
}, n.prototype.conv2dDerInput = function(t, r, o) {
|
|
29204
29223
|
ce([t, r], "conv2dDerInput");
|
|
29205
29224
|
for (var a = ot(o.inShape, "float32"), i = a.values, s = this.readSync(t.dataId), u = this.readSync(r.dataId), l = r.strides, c = l[0], d = l[1], f = l[2], h = o.batchSize, p = o.filterHeight, v = o.filterWidth, m = o.inChannels, g = o.inHeight, w = o.inWidth, b = o.outChannels, y = o.outHeight, x = o.outWidth, C = o.strideHeight, E = o.strideWidth, R = o.dataFormat, _ = p - 1 - o.padInfo.top, S = v - 1 - o.padInfo.left, M = R === "channelsLast", I = a.strides[0], W = M ? a.strides[1] : a.strides[2], D = M ? a.strides[2] : 1, B = M ? 1 : a.strides[1], V = t.strides[0], L = M ? t.strides[1] : t.strides[2], q = M ? t.strides[2] : 1, j = M ? 1 : t.strides[1], G = 0; G < h; ++G) for (var O = 0; O < m; ++O) for (var N = 0; N < g; ++N) for (var X = N - _, ae = Math.max(0, Math.ceil(X / C)), le = Math.min(y, (p + X) / C), se = 0; se < w; ++se) {
|
|
29206
|
-
for (var de = se - S, xe = Math.max(0, Math.ceil(de / E)), oe = Math.min(x, (v + de) / E), ze = 0, ge = ae; ge < le; ++ge) for (var Ee = ge * C - X, Oe = xe; Oe < oe; ++Oe) for (var Je = V * G + L * ge + q * Oe,
|
|
29207
|
-
ze += s[Je + j * Xe] * u[
|
|
29225
|
+
for (var de = se - S, xe = Math.max(0, Math.ceil(de / E)), oe = Math.min(x, (v + de) / E), ze = 0, ge = ae; ge < le; ++ge) for (var Ee = ge * C - X, Oe = xe; Oe < oe; ++Oe) for (var Je = V * G + L * ge + q * Oe, tt = c * (p - 1 - Ee) + d * (v - 1 - (Oe * E - de)) + f * O, Xe = 0; Xe < b; ++Xe)
|
|
29226
|
+
ze += s[Je + j * Xe] * u[tt + Xe];
|
|
29208
29227
|
i[I * G + W * N + D * se + B * O] = ze;
|
|
29209
29228
|
}
|
|
29210
29229
|
return a.toTensor();
|
|
29211
29230
|
}, n.prototype.conv3dDerInput = function(t, r, o) {
|
|
29212
|
-
for (var a = ot(o.inShape, "float32"), i = a.values, s = a.strides, u = s[0], l = s[1], c = s[2], d = s[3], f = this.readSync(t.dataId), h = t.strides, p = h[0], v = h[1], m = h[2], g = h[3], w = this.readSync(r.dataId), b = r.strides, y = b[0], x = b[1], C = b[2], E = b[3], R = o.batchSize, _ = o.filterDepth, S = o.filterHeight, M = o.filterWidth, I = o.inChannels, W = o.inDepth, D = o.inHeight, B = o.inWidth, V = o.outChannels, L = o.outDepth, q = o.outHeight, j = o.outWidth, G = o.strideDepth, O = o.strideHeight, N = o.strideWidth, X = _ - 1 - o.padInfo.front, ae = S - 1 - o.padInfo.top, le = M - 1 - o.padInfo.left, se = 0; se < R; ++se) for (var de = 0; de < I; ++de) for (var xe = 0; xe < W; ++xe) for (var oe = xe - X, ze = Math.max(0, Math.ceil(oe / G)), ge = Math.min(L, (_ + oe) / G), Ee = 0; Ee < D; ++Ee) for (var Oe = Ee - ae, Je = Math.max(0, Math.ceil(Oe / O)),
|
|
29213
|
-
for (var ct = Xe - le, gt = Math.max(0, Math.ceil(ct / N)), At = Math.min(j, (M + ct) / N), Dt = 0, ue = ze; ue < ge; ++ue) for (var Z = ue * G - oe, pe = Je; pe <
|
|
29231
|
+
for (var a = ot(o.inShape, "float32"), i = a.values, s = a.strides, u = s[0], l = s[1], c = s[2], d = s[3], f = this.readSync(t.dataId), h = t.strides, p = h[0], v = h[1], m = h[2], g = h[3], w = this.readSync(r.dataId), b = r.strides, y = b[0], x = b[1], C = b[2], E = b[3], R = o.batchSize, _ = o.filterDepth, S = o.filterHeight, M = o.filterWidth, I = o.inChannels, W = o.inDepth, D = o.inHeight, B = o.inWidth, V = o.outChannels, L = o.outDepth, q = o.outHeight, j = o.outWidth, G = o.strideDepth, O = o.strideHeight, N = o.strideWidth, X = _ - 1 - o.padInfo.front, ae = S - 1 - o.padInfo.top, le = M - 1 - o.padInfo.left, se = 0; se < R; ++se) for (var de = 0; de < I; ++de) for (var xe = 0; xe < W; ++xe) for (var oe = xe - X, ze = Math.max(0, Math.ceil(oe / G)), ge = Math.min(L, (_ + oe) / G), Ee = 0; Ee < D; ++Ee) for (var Oe = Ee - ae, Je = Math.max(0, Math.ceil(Oe / O)), tt = Math.min(q, (S + Oe) / O), Xe = 0; Xe < B; ++Xe) {
|
|
29232
|
+
for (var ct = Xe - le, gt = Math.max(0, Math.ceil(ct / N)), At = Math.min(j, (M + ct) / N), Dt = 0, ue = ze; ue < ge; ++ue) for (var Z = ue * G - oe, pe = Je; pe < tt; ++pe) for (var Me = pe * O - Oe, st = gt; st < At; ++st) for (var vt = p * se + v * ue + m * pe + g * st, He = y * (_ - 1 - Z) + x * (S - 1 - Me) + C * (M - 1 - (st * N - ct)) + E * de, Ue = 0; Ue < V; ++Ue)
|
|
29214
29233
|
Dt += f[vt + Ue] * w[He + Ue];
|
|
29215
29234
|
i[u * se + l * xe + c * Ee + d * Xe + de] = Dt;
|
|
29216
29235
|
}
|
|
@@ -29227,7 +29246,7 @@ Hi there 👋. Looks like you are running TensorFlow.js in Node.js. To speed thi
|
|
|
29227
29246
|
return c.toTensor();
|
|
29228
29247
|
}, n.prototype.conv3dDerFilter = function(t, r, o) {
|
|
29229
29248
|
for (var a = o.strideDepth, i = o.strideHeight, s = o.strideWidth, u = o.filterDepth, l = o.filterHeight, c = o.filterWidth, d = ot(o.filterShape, "float32"), f = d.values, h = d.strides, p = h[0], v = h[1], m = h[2], g = h[3], w = this.readSync(r.dataId), b = r.strides, y = b[0], x = b[1], C = b[2], E = b[3], R = this.readSync(t.dataId), _ = t.strides, S = _[0], M = _[1], I = _[2], W = _[3], D = o.padInfo.front, B = o.padInfo.left, V = o.padInfo.top, L = 0; L < u; ++L) for (var q = Math.max(0, Math.ceil((D - L) / a)), j = Math.min(o.outDepth, (o.inDepth + D - L) / a), G = L * p, O = 0; O < l; ++O) for (var N = Math.max(0, Math.ceil((V - O) / i)), X = Math.min(o.outHeight, (o.inHeight + V - O) / i), ae = O * v + G, le = 0; le < c; ++le) for (var se = Math.max(0, Math.ceil((B - le) / s)), de = Math.min(o.outWidth, (o.inWidth + B - le) / s), xe = le * m + ae, oe = 0; oe < o.inChannels; ++oe) for (var ze = oe * g + xe, ge = 0; ge < o.outChannels; ++ge) {
|
|
29230
|
-
for (var Ee = 0, Oe = 0; Oe < o.batchSize; ++Oe) for (var Je = Oe * S,
|
|
29249
|
+
for (var Ee = 0, Oe = 0; Oe < o.batchSize; ++Oe) for (var Je = Oe * S, tt = Oe * y, Xe = q; Xe < j; ++Xe) for (var ct = (L + Xe * a - D) * M + Je, gt = Xe * x + tt, At = N; At < X; ++At) for (var Dt = (O + At * i - V) * I + ct, ue = At * C + gt, Z = se; Z < de; ++Z) {
|
|
29231
29250
|
var pe = Z * E + ue;
|
|
29232
29251
|
Ee += R[(le + Z * s - B) * W + Dt + oe] * w[pe + ge];
|
|
29233
29252
|
}
|
|
@@ -29253,8 +29272,8 @@ Hi there 👋. Looks like you are running TensorFlow.js in Node.js. To speed thi
|
|
|
29253
29272
|
}, n.prototype.depthwiseConv2DDerInput = function(t, r, o) {
|
|
29254
29273
|
ce([t, r], "depthwiseConv2DDerInput");
|
|
29255
29274
|
for (var a = ot(o.inShape, "float32"), i = a.values, s = a.strides, u = s[0], l = s[1], c = s[2], d = this.readSync(t.dataId), f = t.strides, h = f[0], p = f[1], v = f[2], m = this.readSync(r.dataId), g = r.strides, w = g[0], b = g[1], y = g[2], x = o.batchSize, C = o.filterHeight, E = o.filterWidth, R = o.inChannels, _ = o.inHeight, S = o.inWidth, M = o.outChannels, I = o.outHeight, W = o.outWidth, D = o.strideHeight, B = o.strideWidth, V = C - 1 - o.padInfo.top, L = E - 1 - o.padInfo.left, q = M / R, j = 0; j < x; ++j) for (var G = 0; G < R; ++G) for (var O = 0; O < _; ++O) for (var N = O - V, X = Math.max(0, Math.ceil(N / D)), ae = Math.min(I, (C + N) / D), le = 0; le < S; ++le) {
|
|
29256
|
-
for (var se = le - L, de = Math.max(0, Math.ceil(se / B)), xe = Math.min(W, (E + se) / B), oe = 0, ze = X; ze < ae; ++ze) for (var ge = ze * D - N, Ee = de; Ee < xe; ++Ee) for (var Oe = h * j + p * ze + v * Ee, Je = w * (C - 1 - ge) + b * (E - 1 - (Ee * B - se)) + y * G,
|
|
29257
|
-
oe += d[Oe + (G * q +
|
|
29275
|
+
for (var se = le - L, de = Math.max(0, Math.ceil(se / B)), xe = Math.min(W, (E + se) / B), oe = 0, ze = X; ze < ae; ++ze) for (var ge = ze * D - N, Ee = de; Ee < xe; ++Ee) for (var Oe = h * j + p * ze + v * Ee, Je = w * (C - 1 - ge) + b * (E - 1 - (Ee * B - se)) + y * G, tt = 0; tt < q; ++tt)
|
|
29276
|
+
oe += d[Oe + (G * q + tt)] * m[Je + tt];
|
|
29258
29277
|
i[u * j + l * O + c * le + G] = oe;
|
|
29259
29278
|
}
|
|
29260
29279
|
return a.toTensor();
|
|
@@ -29388,8 +29407,8 @@ Hi there 👋. Looks like you are running TensorFlow.js in Node.js. To speed thi
|
|
|
29388
29407
|
for (var ae = X * s - m, le = ae; le < 0; ) le += c;
|
|
29389
29408
|
for (var se = Math.min(r.inWidth, h + ae), de = N + X * R, xe = g, oe = 0, ze = 0, ge = B; ge < V; ge += u) {
|
|
29390
29409
|
for (var Ee = M + ge * t.strides[1], Oe = G; Oe < O; Oe += l) {
|
|
29391
|
-
for (var Je = Ee + Oe * t.strides[2],
|
|
29392
|
-
var Xe = w[Je +
|
|
29410
|
+
for (var Je = Ee + Oe * t.strides[2], tt = le; tt < se; tt += c) {
|
|
29411
|
+
var Xe = w[Je + tt * t.strides[3] + I];
|
|
29393
29412
|
if (o === "max" && Xe > xe ? xe = Xe : o === "avg" && (oe += Xe, ze++), isNaN(xe)) break;
|
|
29394
29413
|
}
|
|
29395
29414
|
if (isNaN(xe)) break;
|
|
@@ -29692,8 +29711,8 @@ Hi there 👋. Looks like you are running TensorFlow.js in Node.js. To speed thi
|
|
|
29692
29711
|
else {
|
|
29693
29712
|
var Ee = Math.round(ge), Oe = Math.round(V);
|
|
29694
29713
|
for (q = 0; q < f; q++) {
|
|
29695
|
-
var Je = q + Ee * y[2] + Oe * y[1] + I * y[0],
|
|
29696
|
-
m.values[
|
|
29714
|
+
var Je = q + Ee * y[2] + Oe * y[1] + I * y[0], tt = q + L * x[2] + B * x[1] + C * x[0];
|
|
29715
|
+
m.values[tt] = b[Je];
|
|
29697
29716
|
}
|
|
29698
29717
|
}
|
|
29699
29718
|
}
|