@namelivia/vue-components 4.4.5 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +449 -234
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +478 -258
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/CalendarIcon/CalendarIcon.cy.js +10 -0
- package/src/Icons/CalendarIcon/CalendarIcon.stories.js +24 -0
- package/src/Icons/CalendarIcon/CalendarIcon.vue +19 -0
- package/src/Icons/CreateIcon/CreateIcon.cy.js +10 -0
- package/src/Icons/CreateIcon/CreateIcon.stories.js +24 -0
- package/src/Icons/CreateIcon/CreateIcon.vue +19 -0
- package/src/Icons/DropIcon/DropIcon.cy.js +33 -0
- package/src/Icons/DropIcon/DropIcon.stories.js +24 -0
- package/src/Icons/DropIcon/DropIcon.vue +33 -0
- package/src/Icons/SaveIcon/SaveIcon.cy.js +10 -0
- package/src/Icons/SaveIcon/SaveIcon.stories.js +24 -0
- package/src/Icons/SaveIcon/SaveIcon.vue +19 -0
- package/src/Icons/SkullIcon/SkullIcon.cy.js +10 -0
- package/src/Icons/SkullIcon/SkullIcon.stories.js +24 -0
- package/src/Icons/SkullIcon/SkullIcon.vue +19 -0
- package/src/index.js +5 -0
package/dist/index.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, createElementBlock, openBlock, toDisplayString, createStaticVNode, createElementVNode, renderSlot, resolveComponent, createCommentVNode, createVNode, withCtx, normalizeClass, createBlock, Transition, Fragment, renderList, withDirectives, vModelSelect } from 'vue';
|
|
2
2
|
|
|
3
|
-
var script$
|
|
3
|
+
var script$B = defineComponent({
|
|
4
4
|
name: 'SectionTitle',
|
|
5
5
|
props: {
|
|
6
6
|
text: {
|
|
@@ -10,10 +10,10 @@ var script$w = defineComponent({
|
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
|
|
13
|
-
const _hoisted_1$
|
|
13
|
+
const _hoisted_1$x = { class: "section-title" };
|
|
14
14
|
|
|
15
|
-
function render$
|
|
16
|
-
return (openBlock(), createElementBlock("h1", _hoisted_1$
|
|
15
|
+
function render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
16
|
+
return (openBlock(), createElementBlock("h1", _hoisted_1$x, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
function styleInject(css, ref) {
|
|
@@ -46,18 +46,18 @@ function styleInject(css, ref) {
|
|
|
46
46
|
var css_248z$w = "\n.section-title[data-v-0375af86] {\n text-align: center;\n font-size: var(--font-size-xlarge);\n line-height: 1.5;\n}\n";
|
|
47
47
|
styleInject(css_248z$w);
|
|
48
48
|
|
|
49
|
-
script$
|
|
50
|
-
script$
|
|
51
|
-
script$
|
|
49
|
+
script$B.render = render$B;
|
|
50
|
+
script$B.__scopeId = "data-v-0375af86";
|
|
51
|
+
script$B.__file = "src/SectionTitle/SectionTitle.vue";
|
|
52
52
|
|
|
53
|
-
var script$
|
|
53
|
+
var script$A = defineComponent({
|
|
54
54
|
name: "Loading",
|
|
55
55
|
props: {
|
|
56
56
|
text: String,
|
|
57
57
|
},
|
|
58
58
|
});
|
|
59
59
|
|
|
60
|
-
function render$
|
|
60
|
+
function render$A(_ctx, _cache, $props, $setup, $data, $options) {
|
|
61
61
|
return (openBlock(), createElementBlock("div", null, _cache[0] || (_cache[0] = [
|
|
62
62
|
createStaticVNode("<h1 class=\"loading-text\" data-v-7a9a3040>Loading...</h1><div class=\"loading-balls-container\" data-v-7a9a3040><div class=\"loading-ball blue\" data-v-7a9a3040></div><div class=\"loading-ball green\" data-v-7a9a3040></div><div class=\"loading-ball red\" data-v-7a9a3040></div></div>", 2)
|
|
63
63
|
])))
|
|
@@ -66,11 +66,11 @@ function render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
66
66
|
var css_248z$v = "\n.loading-text[data-v-7a9a3040] {\n text-align: center;\n font-size: var(--font-size-large);\n line-height: 1.75rem;\n}\n.loading-balls-container[data-v-7a9a3040] {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.5rem;\n animation: bounce-7a9a3040 1.5s infinite ease-in-out;\n}\n.loading-ball[data-v-7a9a3040] {\n width: 2rem;\n height: 2rem;\n border-radius: var(--border-radius-round);\n}\n.loading-ball.blue[data-v-7a9a3040] {\n background-color: var(--color-loading-ball-blue);\n}\n.loading-ball.green[data-v-7a9a3040] {\n background-color: var(--color-loading-ball-green);\n}\n.loading-ball.red[data-v-7a9a3040] {\n background-color: var(--color-loading-ball-red);\n}\n@keyframes bounce-7a9a3040 {\n0%, 100% {\n transform: translateY(0);\n}\n50% {\n transform: translateY(-1rem);\n}\n}\n";
|
|
67
67
|
styleInject(css_248z$v);
|
|
68
68
|
|
|
69
|
-
script$
|
|
70
|
-
script$
|
|
71
|
-
script$
|
|
69
|
+
script$A.render = render$A;
|
|
70
|
+
script$A.__scopeId = "data-v-7a9a3040";
|
|
71
|
+
script$A.__file = "src/Loading/Loading.vue";
|
|
72
72
|
|
|
73
|
-
var script$
|
|
73
|
+
var script$z = defineComponent({
|
|
74
74
|
name: "CardImage",
|
|
75
75
|
props: {
|
|
76
76
|
src: String,
|
|
@@ -92,36 +92,36 @@ var script$u = defineComponent({
|
|
|
92
92
|
},
|
|
93
93
|
});
|
|
94
94
|
|
|
95
|
-
const _hoisted_1$
|
|
95
|
+
const _hoisted_1$w = ["src", "alt"];
|
|
96
96
|
|
|
97
|
-
function render$
|
|
97
|
+
function render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
98
98
|
return (openBlock(), createElementBlock("img", {
|
|
99
99
|
src: _ctx.src,
|
|
100
100
|
alt: _ctx.alt,
|
|
101
101
|
ref: "image"
|
|
102
|
-
}, null, 8 /* PROPS */, _hoisted_1$
|
|
102
|
+
}, null, 8 /* PROPS */, _hoisted_1$w))
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
var css_248z$u = "\nimg[data-v-5fa6a3f6] {\n width: 100%;\n}\n";
|
|
106
106
|
styleInject(css_248z$u);
|
|
107
107
|
|
|
108
|
-
script$
|
|
109
|
-
script$
|
|
110
|
-
script$
|
|
108
|
+
script$z.render = render$z;
|
|
109
|
+
script$z.__scopeId = "data-v-5fa6a3f6";
|
|
110
|
+
script$z.__file = "src/Card/CardImage.vue";
|
|
111
111
|
|
|
112
|
-
var script$
|
|
112
|
+
var script$y = defineComponent({
|
|
113
113
|
name: "CardBody",
|
|
114
114
|
props: {
|
|
115
115
|
title: String,
|
|
116
116
|
},
|
|
117
117
|
});
|
|
118
118
|
|
|
119
|
-
const _hoisted_1$
|
|
119
|
+
const _hoisted_1$v = { class: "card-body" };
|
|
120
120
|
const _hoisted_2$g = { class: "card-title" };
|
|
121
121
|
const _hoisted_3$a = { class: "card-text" };
|
|
122
122
|
|
|
123
|
-
function render$
|
|
124
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
123
|
+
function render$y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
124
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$v, [
|
|
125
125
|
createElementVNode("div", _hoisted_2$g, toDisplayString(_ctx.title), 1 /* TEXT */),
|
|
126
126
|
createElementVNode("p", _hoisted_3$a, [
|
|
127
127
|
renderSlot(_ctx.$slots, "default")
|
|
@@ -132,11 +132,11 @@ function render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
132
132
|
var css_248z$t = "\n.card-body[data-v-c140cd30] {\n padding: var(--card-body-padding);\n}\n.card-title[data-v-c140cd30] {\n font-weight: var(--font-weight-bold);\n font-size: var(--font-size-large);\n margin-bottom: var(--card-title-margin-bottom);\n}\n.card-text[data-v-c140cd30] {\n color: var(--color-card-text);\n font-size: var(--font-size-base);\n}\n";
|
|
133
133
|
styleInject(css_248z$t);
|
|
134
134
|
|
|
135
|
-
script$
|
|
136
|
-
script$
|
|
137
|
-
script$
|
|
135
|
+
script$y.render = render$y;
|
|
136
|
+
script$y.__scopeId = "data-v-c140cd30";
|
|
137
|
+
script$y.__file = "src/Card/CardBody.vue";
|
|
138
138
|
|
|
139
|
-
var script$
|
|
139
|
+
var script$x = defineComponent({
|
|
140
140
|
name: "Card",
|
|
141
141
|
props: {
|
|
142
142
|
image: String,
|
|
@@ -147,24 +147,24 @@ var script$s = defineComponent({
|
|
|
147
147
|
},
|
|
148
148
|
},
|
|
149
149
|
components: {
|
|
150
|
-
CardImage: script$
|
|
151
|
-
CardBody: script$
|
|
150
|
+
CardImage: script$z,
|
|
151
|
+
CardBody: script$y,
|
|
152
152
|
},
|
|
153
153
|
emits: ['width']
|
|
154
154
|
});
|
|
155
155
|
|
|
156
|
-
const _hoisted_1$
|
|
156
|
+
const _hoisted_1$u = {
|
|
157
157
|
key: 0,
|
|
158
158
|
class: "card-container"
|
|
159
159
|
};
|
|
160
160
|
const _hoisted_2$f = { class: "card" };
|
|
161
161
|
|
|
162
|
-
function render$
|
|
162
|
+
function render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
163
163
|
const _component_card_image = resolveComponent("card-image");
|
|
164
164
|
const _component_card_body = resolveComponent("card-body");
|
|
165
165
|
|
|
166
166
|
return (!_ctx.dismissed)
|
|
167
|
-
? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
167
|
+
? (openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
168
168
|
createElementVNode("div", _hoisted_2$f, [
|
|
169
169
|
createVNode(_component_card_image, {
|
|
170
170
|
src: _ctx.image,
|
|
@@ -185,18 +185,18 @@ function render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
185
185
|
var css_248z$s = "\n.card-container[data-v-da3858b4] {\n margin: var(--card-margin);\n}\n.card[data-v-da3858b4] {\n max-width: var(--card-max-width);\n border-radius: var(--border-radius-big);\n overflow: hidden;\n box-shadow: var(--card-shadow);\n}\n";
|
|
186
186
|
styleInject(css_248z$s);
|
|
187
187
|
|
|
188
|
-
script$
|
|
189
|
-
script$
|
|
190
|
-
script$
|
|
188
|
+
script$x.render = render$x;
|
|
189
|
+
script$x.__scopeId = "data-v-da3858b4";
|
|
190
|
+
script$x.__file = "src/Card/Card.vue";
|
|
191
191
|
|
|
192
|
-
var script$
|
|
192
|
+
var script$w = defineComponent({
|
|
193
193
|
name: "CardGrid"
|
|
194
194
|
});
|
|
195
195
|
|
|
196
|
-
const _hoisted_1$
|
|
196
|
+
const _hoisted_1$t = { class: "card-grid" };
|
|
197
197
|
|
|
198
|
-
function render$
|
|
199
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
198
|
+
function render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
199
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$t, [
|
|
200
200
|
renderSlot(_ctx.$slots, "default")
|
|
201
201
|
]))
|
|
202
202
|
}
|
|
@@ -204,18 +204,18 @@ function render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
204
204
|
var css_248z$r = "\n.card-grid[data-v-ad060034] {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-content: center;\n}\n@media (min-width: 1024px) {\n.card-grid[data-v-ad060034] {\n justify-content: space-between;\n}\n}\n";
|
|
205
205
|
styleInject(css_248z$r);
|
|
206
206
|
|
|
207
|
-
script$
|
|
208
|
-
script$
|
|
209
|
-
script$
|
|
207
|
+
script$w.render = render$w;
|
|
208
|
+
script$w.__scopeId = "data-v-ad060034";
|
|
209
|
+
script$w.__file = "src/CardGrid/CardGrid.vue";
|
|
210
210
|
|
|
211
|
-
var script$
|
|
211
|
+
var script$v = defineComponent({
|
|
212
212
|
name: "Container"
|
|
213
213
|
});
|
|
214
214
|
|
|
215
|
-
const _hoisted_1$
|
|
215
|
+
const _hoisted_1$s = { class: "container" };
|
|
216
216
|
|
|
217
|
-
function render$
|
|
218
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
217
|
+
function render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
218
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
219
219
|
renderSlot(_ctx.$slots, "default")
|
|
220
220
|
]))
|
|
221
221
|
}
|
|
@@ -223,11 +223,11 @@ function render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
223
223
|
var css_248z$q = "\n.container[data-v-7cccf06a] {\n max-width: var(--container-max-width);\n margin: var(--container-margin);\n}\n";
|
|
224
224
|
styleInject(css_248z$q);
|
|
225
225
|
|
|
226
|
-
script$
|
|
227
|
-
script$
|
|
228
|
-
script$
|
|
226
|
+
script$v.render = render$v;
|
|
227
|
+
script$v.__scopeId = "data-v-7cccf06a";
|
|
228
|
+
script$v.__file = "src/Container/Container.vue";
|
|
229
229
|
|
|
230
|
-
var script$
|
|
230
|
+
var script$u = defineComponent({
|
|
231
231
|
name: "MobileNavigationLink",
|
|
232
232
|
props: {
|
|
233
233
|
text: {
|
|
@@ -253,27 +253,27 @@ var script$p = defineComponent({
|
|
|
253
253
|
},
|
|
254
254
|
});
|
|
255
255
|
|
|
256
|
-
const _hoisted_1$
|
|
256
|
+
const _hoisted_1$r = ["href"];
|
|
257
257
|
|
|
258
|
-
function render$
|
|
258
|
+
function render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
259
259
|
return (openBlock(), createElementBlock("a", {
|
|
260
260
|
href: _ctx.linkDestination,
|
|
261
261
|
class: normalizeClass(_ctx.linkClass),
|
|
262
262
|
"aria-current": "page"
|
|
263
|
-
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$
|
|
263
|
+
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$r))
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
var css_248z$p = "\n.current-link[data-v-3e279546] {\n background-color: var(--color-navbar-current-background);\n color: var(--color-navbar-text);\n display: block;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n border-radius: 0.375rem;\n font-size: var(--font-size-navbar);\n text-decoration: none;\n cursor: default;\n}\n.regular-link[data-v-3e279546] {\n color: var(--color-navbar-text);\n display: block;\n padding: 0.5rem 0.75rem;\n border-radius: 0.375rem;\n font-size: var(--font-size-navbar);\n transition: background-color 0.2s ease, color 0.2s ease;\n text-decoration: none;\n}\n.regular-link[data-v-3e279546]:hover {\n background-color: var(--color-navbar-link-background);\n}\n";
|
|
267
267
|
styleInject(css_248z$p);
|
|
268
268
|
|
|
269
|
-
script$
|
|
270
|
-
script$
|
|
271
|
-
script$
|
|
269
|
+
script$u.render = render$u;
|
|
270
|
+
script$u.__scopeId = "data-v-3e279546";
|
|
271
|
+
script$u.__file = "src/Navbar/MobileNavigationLink.vue";
|
|
272
272
|
|
|
273
|
-
var script$
|
|
273
|
+
var script$t = defineComponent({
|
|
274
274
|
name: "MobileNavigationLinks",
|
|
275
275
|
components: {
|
|
276
|
-
MobileNavigationLink: script$
|
|
276
|
+
MobileNavigationLink: script$u,
|
|
277
277
|
},
|
|
278
278
|
props: {
|
|
279
279
|
links: {
|
|
@@ -286,13 +286,13 @@ var script$o = defineComponent({
|
|
|
286
286
|
},
|
|
287
287
|
});
|
|
288
288
|
|
|
289
|
-
const _hoisted_1$
|
|
289
|
+
const _hoisted_1$q = {
|
|
290
290
|
key: 0,
|
|
291
291
|
id: "mobile-menu"
|
|
292
292
|
};
|
|
293
293
|
const _hoisted_2$e = { class: "menu-panel" };
|
|
294
294
|
|
|
295
|
-
function render$
|
|
295
|
+
function render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
296
296
|
const _component_mobile_navigation_link = resolveComponent("mobile-navigation-link");
|
|
297
297
|
|
|
298
298
|
return (openBlock(), createBlock(Transition, {
|
|
@@ -305,7 +305,7 @@ function render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
305
305
|
}, {
|
|
306
306
|
default: withCtx(() => [
|
|
307
307
|
(_ctx.open)
|
|
308
|
-
? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
308
|
+
? (openBlock(), createElementBlock("div", _hoisted_1$q, [
|
|
309
309
|
createElementVNode("div", _hoisted_2$e, [
|
|
310
310
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.links, (link) => {
|
|
311
311
|
return (openBlock(), createBlock(_component_mobile_navigation_link, {
|
|
@@ -326,11 +326,11 @@ function render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
326
326
|
var css_248z$o = "\n.fade-scale-enter-active[data-v-eb1296c6],\n.fade-scale-leave-active[data-v-eb1296c6] {\n transition: all 200ms ease;\n}\n.fade-scale-enter-from[data-v-eb1296c6],\n.fade-scale-leave-to[data-v-eb1296c6] {\n transform: scaleY(0);\n transform-origin: top;\n}\n.fade-scale-enter-to[data-v-eb1296c6],\n.fade-scale-leave-from[data-v-eb1296c6] {\n transform: scaleY(1);\n transform-origin: top;\n}\n#mobile-menu[data-v-eb1296c6] {\n display: block;\n}\n.menu-panel[data-v-eb1296c6] {\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.75rem;\n display: flex;\n flex-direction: column;\n gap: 0.25rem;\n background-color: var(--color-navbar-background);\n}\n@media (min-width: 640px) {\n#mobile-menu[data-v-eb1296c6] {\n display: none;\n}\n}\n";
|
|
327
327
|
styleInject(css_248z$o);
|
|
328
328
|
|
|
329
|
-
script$
|
|
330
|
-
script$
|
|
331
|
-
script$
|
|
329
|
+
script$t.render = render$t;
|
|
330
|
+
script$t.__scopeId = "data-v-eb1296c6";
|
|
331
|
+
script$t.__file = "src/Navbar/MobileNavigationLinks.vue";
|
|
332
332
|
|
|
333
|
-
var script$
|
|
333
|
+
var script$s = defineComponent({
|
|
334
334
|
name: "NavigationLink",
|
|
335
335
|
props: {
|
|
336
336
|
text: {
|
|
@@ -356,27 +356,27 @@ var script$n = defineComponent({
|
|
|
356
356
|
},
|
|
357
357
|
});
|
|
358
358
|
|
|
359
|
-
const _hoisted_1$
|
|
359
|
+
const _hoisted_1$p = ["href"];
|
|
360
360
|
|
|
361
|
-
function render$
|
|
361
|
+
function render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
362
362
|
return (openBlock(), createElementBlock("a", {
|
|
363
363
|
href: _ctx.linkDestination,
|
|
364
364
|
class: normalizeClass(_ctx.linkClass),
|
|
365
365
|
"aria-current": "page"
|
|
366
|
-
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$
|
|
366
|
+
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$p))
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
var css_248z$n = "\n.current-link[data-v-4989b384] {\n background-color: var(--color-navbar-current-background);\n color: var(--color-navbar-text);\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n border-radius: 0.375rem;\n font-size: var(--font-size-navbar);\n text-decoration: none;\n cursor: default;\n}\n.regular-link[data-v-4989b384] {\n color: var(--color-navbar-text);\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n border-radius: 0.375rem;\n font-size: var(--font-size-navbar);\n transition: background-color 0.2s ease, color 0.2s ease;\n text-decoration: none;\n}\n.regular-link[data-v-4989b384]:hover {\n background-color: var(--color-navbar-link-background);\n}\n";
|
|
370
370
|
styleInject(css_248z$n);
|
|
371
371
|
|
|
372
|
-
script$
|
|
373
|
-
script$
|
|
374
|
-
script$
|
|
372
|
+
script$s.render = render$s;
|
|
373
|
+
script$s.__scopeId = "data-v-4989b384";
|
|
374
|
+
script$s.__file = "src/Navbar/NavigationLink.vue";
|
|
375
375
|
|
|
376
|
-
var script$
|
|
376
|
+
var script$r = defineComponent({
|
|
377
377
|
name: "NavigationLinks",
|
|
378
378
|
components: {
|
|
379
|
-
NavigationLink: script$
|
|
379
|
+
NavigationLink: script$s,
|
|
380
380
|
},
|
|
381
381
|
props: {
|
|
382
382
|
links: {
|
|
@@ -385,13 +385,13 @@ var script$m = defineComponent({
|
|
|
385
385
|
},
|
|
386
386
|
});
|
|
387
387
|
|
|
388
|
-
const _hoisted_1$
|
|
388
|
+
const _hoisted_1$o = { class: "links-container" };
|
|
389
389
|
const _hoisted_2$d = { class: "links-wrapper" };
|
|
390
390
|
|
|
391
|
-
function render$
|
|
391
|
+
function render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
392
392
|
const _component_navigation_link = resolveComponent("navigation-link");
|
|
393
393
|
|
|
394
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
394
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$o, [
|
|
395
395
|
createElementVNode("div", _hoisted_2$d, [
|
|
396
396
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.links, (link) => {
|
|
397
397
|
return (openBlock(), createBlock(_component_navigation_link, {
|
|
@@ -408,11 +408,11 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
408
408
|
var css_248z$m = "\n.links-container[data-v-294f43c2] {\n display: none;\n}\n.links-wrapper[data-v-294f43c2] {\n display: flex;\n gap: 1rem;\n}\n@media (min-width: 640px) {\n.links-container[data-v-294f43c2] {\n display: block;\n margin-left: 1.5rem;\n}\n}\n";
|
|
409
409
|
styleInject(css_248z$m);
|
|
410
410
|
|
|
411
|
-
script$
|
|
412
|
-
script$
|
|
413
|
-
script$
|
|
411
|
+
script$r.render = render$r;
|
|
412
|
+
script$r.__scopeId = "data-v-294f43c2";
|
|
413
|
+
script$r.__file = "src/Navbar/NavigationLinks.vue";
|
|
414
414
|
|
|
415
|
-
var script$
|
|
415
|
+
var script$q = defineComponent({
|
|
416
416
|
name: "NavbarTitle",
|
|
417
417
|
props: {
|
|
418
418
|
href: {
|
|
@@ -430,11 +430,11 @@ var script$l = defineComponent({
|
|
|
430
430
|
}
|
|
431
431
|
});
|
|
432
432
|
|
|
433
|
-
const _hoisted_1$
|
|
433
|
+
const _hoisted_1$n = ["href"];
|
|
434
434
|
const _hoisted_2$c = ["src", "alt"];
|
|
435
435
|
const _hoisted_3$9 = ["src", "alt"];
|
|
436
436
|
|
|
437
|
-
function render$
|
|
437
|
+
function render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
438
438
|
return (openBlock(), createElementBlock("a", {
|
|
439
439
|
class: "title-container",
|
|
440
440
|
href: _ctx.href
|
|
@@ -449,17 +449,17 @@ function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
449
449
|
src: _ctx.imageBig,
|
|
450
450
|
alt: _ctx.title
|
|
451
451
|
}, null, 8 /* PROPS */, _hoisted_3$9)
|
|
452
|
-
], 8 /* PROPS */, _hoisted_1$
|
|
452
|
+
], 8 /* PROPS */, _hoisted_1$n))
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
var css_248z$l = "\n.title-container[data-v-661ef87c] {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n.logo-small[data-v-661ef87c] {\n display: block;\n height: 2rem;\n width: auto;\n}\n.logo-big[data-v-661ef87c] {\n display: none;\n height: 2rem;\n width: auto;\n}\n@media (min-width: 1024px) {\n.logo-small[data-v-661ef87c] {\n display: none;\n}\n.logo-big[data-v-661ef87c] {\n display: block;\n}\n}\n\n\n";
|
|
456
456
|
styleInject(css_248z$l);
|
|
457
457
|
|
|
458
|
-
script$
|
|
459
|
-
script$
|
|
460
|
-
script$
|
|
458
|
+
script$q.render = render$q;
|
|
459
|
+
script$q.__scopeId = "data-v-661ef87c";
|
|
460
|
+
script$q.__file = "src/Navbar/NavbarTitle.vue";
|
|
461
461
|
|
|
462
|
-
var script$
|
|
462
|
+
var script$p = defineComponent({
|
|
463
463
|
name: "RightContent",
|
|
464
464
|
props: {
|
|
465
465
|
locale: {
|
|
@@ -482,11 +482,11 @@ var script$k = defineComponent({
|
|
|
482
482
|
},
|
|
483
483
|
});
|
|
484
484
|
|
|
485
|
-
const _hoisted_1$
|
|
485
|
+
const _hoisted_1$m = { class: "action-container" };
|
|
486
486
|
const _hoisted_2$b = ["src", "alt"];
|
|
487
487
|
|
|
488
|
-
function render$
|
|
489
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
488
|
+
function render$p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
489
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$m, [
|
|
490
490
|
createElementVNode("img", {
|
|
491
491
|
class: "circle-image",
|
|
492
492
|
src: _ctx.currentUserPicture,
|
|
@@ -498,11 +498,11 @@ function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
498
498
|
var css_248z$k = "\n.action-container[data-v-07675a13] {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n display: flex;\n align-items: center;\n padding-right: 0.5rem;\n color: var(--color-navbar-text);\n font-size: var(--font-size-navbar);\n}\n.circle-image[data-v-07675a13] {\n border-radius: 9999px;\n padding: 0.25rem;\n height: 50px;\n width: 50px;\n}\n@media (min-width: 640px) {\n.action-container[data-v-07675a13] {\n position: static;\n top: auto;\n bottom: auto;\n right: auto;\n margin-left: 1.5rem;\n padding-right: 0;\n}\n}\n\n";
|
|
499
499
|
styleInject(css_248z$k);
|
|
500
500
|
|
|
501
|
-
script$
|
|
502
|
-
script$
|
|
503
|
-
script$
|
|
501
|
+
script$p.render = render$p;
|
|
502
|
+
script$p.__scopeId = "data-v-07675a13";
|
|
503
|
+
script$p.__file = "src/Navbar/RightContent.vue";
|
|
504
504
|
|
|
505
|
-
var script$
|
|
505
|
+
var script$o = defineComponent({
|
|
506
506
|
name: "MobileMenuButton",
|
|
507
507
|
props: {
|
|
508
508
|
open: {
|
|
@@ -518,7 +518,7 @@ var script$j = defineComponent({
|
|
|
518
518
|
},
|
|
519
519
|
});
|
|
520
520
|
|
|
521
|
-
function render$
|
|
521
|
+
function render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
522
522
|
return (openBlock(), createElementBlock("button", {
|
|
523
523
|
class: "menu-button",
|
|
524
524
|
type: "button",
|
|
@@ -544,18 +544,18 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
544
544
|
var css_248z$j = "\n.menu-button[data-v-397545ee] {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0.5rem;\n border-radius: var(--border-radius-big);\n color: var(--color-navbar-text);\n background-color: transparent;\n transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;\n border: none;\n cursor: pointer;\n}\n.menu-icon[data-v-397545ee] {\n display: block;\n height: 1.5rem;\n width: 1.5rem;\n}\n";
|
|
545
545
|
styleInject(css_248z$j);
|
|
546
546
|
|
|
547
|
-
script$
|
|
548
|
-
script$
|
|
549
|
-
script$
|
|
547
|
+
script$o.render = render$o;
|
|
548
|
+
script$o.__scopeId = "data-v-397545ee";
|
|
549
|
+
script$o.__file = "src/Navbar/MobileMenuButton.vue";
|
|
550
550
|
|
|
551
|
-
var script$
|
|
551
|
+
var script$n = defineComponent({
|
|
552
552
|
name: "Navbar",
|
|
553
553
|
components: {
|
|
554
|
-
NavbarTitle: script$
|
|
555
|
-
NavigationLinks: script$
|
|
556
|
-
MobileNavigationLinks: script$
|
|
557
|
-
RightContent: script$
|
|
558
|
-
MobileMenuButton: script$
|
|
554
|
+
NavbarTitle: script$q,
|
|
555
|
+
NavigationLinks: script$r,
|
|
556
|
+
MobileNavigationLinks: script$t,
|
|
557
|
+
RightContent: script$p,
|
|
558
|
+
MobileMenuButton: script$o,
|
|
559
559
|
},
|
|
560
560
|
data() {
|
|
561
561
|
return {
|
|
@@ -595,20 +595,20 @@ var script$i = defineComponent({
|
|
|
595
595
|
}
|
|
596
596
|
});
|
|
597
597
|
|
|
598
|
-
const _hoisted_1$
|
|
598
|
+
const _hoisted_1$l = { class: "navbar" };
|
|
599
599
|
const _hoisted_2$a = { class: "navbar-container" };
|
|
600
600
|
const _hoisted_3$8 = { class: "flex-header" };
|
|
601
601
|
const _hoisted_4$3 = { class: "menu-toggle" };
|
|
602
602
|
const _hoisted_5$2 = { class: "title-container" };
|
|
603
603
|
|
|
604
|
-
function render$
|
|
604
|
+
function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
605
605
|
const _component_mobile_menu_button = resolveComponent("mobile-menu-button");
|
|
606
606
|
const _component_navbar_title = resolveComponent("navbar-title");
|
|
607
607
|
const _component_navigation_links = resolveComponent("navigation-links");
|
|
608
608
|
const _component_right_content = resolveComponent("right-content");
|
|
609
609
|
const _component_mobile_navigation_links = resolveComponent("mobile-navigation-links");
|
|
610
610
|
|
|
611
|
-
return (openBlock(), createElementBlock("nav", _hoisted_1$
|
|
611
|
+
return (openBlock(), createElementBlock("nav", _hoisted_1$l, [
|
|
612
612
|
createElementVNode("div", _hoisted_2$a, [
|
|
613
613
|
createElementVNode("div", _hoisted_3$8, [
|
|
614
614
|
createElementVNode("div", _hoisted_4$3, [
|
|
@@ -644,18 +644,18 @@ function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
644
644
|
var css_248z$i = "\n.navbar[data-v-1b5caf34] {\n background-color: var(--color-navbar-background);\n}\n.navbar-container[data-v-1b5caf34] {\n max-width: 80rem;\n margin-left: auto;\n margin-right: auto;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n}\n.flex-header[data-v-1b5caf34] {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 4rem;\n}\n.menu-toggle[data-v-1b5caf34] {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n display: flex;\n align-items: center;\n}\n.title-container[data-v-1b5caf34] {\n flex: 1 1 0%;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n@media (min-width: 640px) {\n.navbar-container[data-v-1b5caf34] {\n padding-left: 1.5rem;\n padding-right: 1.5rem;\n}\n.menu-toggle[data-v-1b5caf34] {\n display: none;\n}\n.title-container[data-v-1b5caf34] {\n align-items: stretch;\n justify-content: flex-start;\n}\n}\n@media (min-width: 1024px) {\n.navbar-container[data-v-1b5caf34] {\n padding-left: 2rem;\n padding-right: 2rem;\n}\n}\n";
|
|
645
645
|
styleInject(css_248z$i);
|
|
646
646
|
|
|
647
|
-
script$
|
|
648
|
-
script$
|
|
649
|
-
script$
|
|
647
|
+
script$n.render = render$n;
|
|
648
|
+
script$n.__scopeId = "data-v-1b5caf34";
|
|
649
|
+
script$n.__file = "src/Navbar/Navbar.vue";
|
|
650
650
|
|
|
651
|
-
var script$
|
|
651
|
+
var script$m = defineComponent({
|
|
652
652
|
name: "StyledTable",
|
|
653
653
|
});
|
|
654
654
|
|
|
655
|
-
const _hoisted_1$
|
|
655
|
+
const _hoisted_1$k = { class: "styled-table" };
|
|
656
656
|
|
|
657
|
-
function render$
|
|
658
|
-
return (openBlock(), createElementBlock("table", _hoisted_1$
|
|
657
|
+
function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
658
|
+
return (openBlock(), createElementBlock("table", _hoisted_1$k, [
|
|
659
659
|
renderSlot(_ctx.$slots, "default")
|
|
660
660
|
]))
|
|
661
661
|
}
|
|
@@ -663,11 +663,11 @@ function render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
663
663
|
var css_248z$h = "\n.styled-table[data-v-8e6b2044] {\n width: 100%;\n border-collapse: collapse;\n}\n";
|
|
664
664
|
styleInject(css_248z$h);
|
|
665
665
|
|
|
666
|
-
script$
|
|
667
|
-
script$
|
|
668
|
-
script$
|
|
666
|
+
script$m.render = render$m;
|
|
667
|
+
script$m.__scopeId = "data-v-8e6b2044";
|
|
668
|
+
script$m.__file = "src/StyledTable/StyledTable.vue";
|
|
669
669
|
|
|
670
|
-
var script$
|
|
670
|
+
var script$l = defineComponent({
|
|
671
671
|
name: "RegularButton",
|
|
672
672
|
props: {
|
|
673
673
|
text: String,
|
|
@@ -696,24 +696,24 @@ var script$g = defineComponent({
|
|
|
696
696
|
},
|
|
697
697
|
});
|
|
698
698
|
|
|
699
|
-
const _hoisted_1$
|
|
699
|
+
const _hoisted_1$j = ["disabled"];
|
|
700
700
|
|
|
701
|
-
function render$
|
|
701
|
+
function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
702
702
|
return (openBlock(), createElementBlock("button", {
|
|
703
703
|
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args))),
|
|
704
704
|
class: normalizeClass(_ctx.cssClass),
|
|
705
705
|
disabled: _ctx.loading
|
|
706
|
-
}, toDisplayString(_ctx.loading ? _ctx.textWhileLoading : _ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$
|
|
706
|
+
}, toDisplayString(_ctx.loading ? _ctx.textWhileLoading : _ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$j))
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
var css_248z$g = "\n.regular-button[data-v-7c962c54] {\n background-color: var(--color-regular);\n color: var(--color-regular-text);\n font-weight: var(--font-weight-bold);\n padding: var(--button-padding);\n border-radius: var(--border-radius-base);\n border: var(--button-border);\n cursor: pointer;\n transition: var(--button-transition);\n}\n.regular-button[data-v-7c962c54]:hover {\n background-color: var(--color-regular-hover);\n}\n\n/* Loading state */\n.loading[data-v-7c962c54] {\n background-color: var(--color-regular-disabled);\n cursor: wait;\n}\n.loading[data-v-7c962c54]:hover {\n background-color: var(--color-regular-disabled);\n}\n";
|
|
710
710
|
styleInject(css_248z$g);
|
|
711
711
|
|
|
712
|
-
script$
|
|
713
|
-
script$
|
|
714
|
-
script$
|
|
712
|
+
script$l.render = render$l;
|
|
713
|
+
script$l.__scopeId = "data-v-7c962c54";
|
|
714
|
+
script$l.__file = "src/Buttons/RegularButton/RegularButton.vue";
|
|
715
715
|
|
|
716
|
-
var script$
|
|
716
|
+
var script$k = defineComponent({
|
|
717
717
|
name: "Pagination",
|
|
718
718
|
props: {
|
|
719
719
|
previousLabel: String,
|
|
@@ -723,18 +723,18 @@ var script$f = defineComponent({
|
|
|
723
723
|
nextLink: String,
|
|
724
724
|
},
|
|
725
725
|
components: {
|
|
726
|
-
RegularButton: script$
|
|
726
|
+
RegularButton: script$l,
|
|
727
727
|
},
|
|
728
728
|
});
|
|
729
729
|
|
|
730
|
-
const _hoisted_1$
|
|
730
|
+
const _hoisted_1$i = { class: "pagination-container" };
|
|
731
731
|
const _hoisted_2$9 = ["href"];
|
|
732
732
|
const _hoisted_3$7 = ["href"];
|
|
733
733
|
|
|
734
|
-
function render$
|
|
734
|
+
function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
735
735
|
const _component_regular_button = resolveComponent("regular-button");
|
|
736
736
|
|
|
737
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
737
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
738
738
|
(_ctx.showPrevious)
|
|
739
739
|
? (openBlock(), createElementBlock("a", {
|
|
740
740
|
key: 0,
|
|
@@ -752,31 +752,31 @@ function render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
752
752
|
var css_248z$f = "\n.pagination-container[data-v-265c87a6] {\n display: flex;\n justify-content: space-between;\n margin-top: 1rem;\n}\na[data-v-265c87a6] {\n text-decoration: none;\n}\n";
|
|
753
753
|
styleInject(css_248z$f);
|
|
754
754
|
|
|
755
|
-
script$
|
|
756
|
-
script$
|
|
757
|
-
script$
|
|
755
|
+
script$k.render = render$k;
|
|
756
|
+
script$k.__scopeId = "data-v-265c87a6";
|
|
757
|
+
script$k.__file = "src/Pagination/Pagination.vue";
|
|
758
758
|
|
|
759
|
-
var script$
|
|
759
|
+
var script$j = defineComponent({
|
|
760
760
|
name: "Badge",
|
|
761
761
|
props: {
|
|
762
762
|
text: String,
|
|
763
763
|
},
|
|
764
764
|
});
|
|
765
765
|
|
|
766
|
-
const _hoisted_1$
|
|
766
|
+
const _hoisted_1$h = { class: "badge" };
|
|
767
767
|
|
|
768
|
-
function render$
|
|
769
|
-
return (openBlock(), createElementBlock("span", _hoisted_1$
|
|
768
|
+
function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
769
|
+
return (openBlock(), createElementBlock("span", _hoisted_1$h, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
770
770
|
}
|
|
771
771
|
|
|
772
772
|
var css_248z$e = "\n.badge[data-v-187659a4] {\n background-color: var(--color-badge);\n color: var(--color-badge-text);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n margin-right: var(--badge-margin-right);\n padding: var(--badge-padding);\n border-radius: var(--badge-border-radius);\n display: inline-block;\n}\n.dark .badge[data-v-187659a4] {\n background-color: var(--color-badge-dark);\n color: var(--color-badge-dark-text);\n}\n";
|
|
773
773
|
styleInject(css_248z$e);
|
|
774
774
|
|
|
775
|
-
script$
|
|
776
|
-
script$
|
|
777
|
-
script$
|
|
775
|
+
script$j.render = render$j;
|
|
776
|
+
script$j.__scopeId = "data-v-187659a4";
|
|
777
|
+
script$j.__file = "src/Badge/Badge.vue";
|
|
778
778
|
|
|
779
|
-
var script$
|
|
779
|
+
var script$i = defineComponent({
|
|
780
780
|
name: "Temperature",
|
|
781
781
|
props: {
|
|
782
782
|
title: String,
|
|
@@ -797,15 +797,15 @@ var script$d = defineComponent({
|
|
|
797
797
|
},
|
|
798
798
|
});
|
|
799
799
|
|
|
800
|
-
const _hoisted_1$
|
|
800
|
+
const _hoisted_1$g = { class: "wrapper" };
|
|
801
801
|
const _hoisted_2$8 = { class: "title" };
|
|
802
802
|
const _hoisted_3$6 = { class: "avg" };
|
|
803
803
|
const _hoisted_4$2 = { class: "minmax" };
|
|
804
804
|
const _hoisted_5$1 = { class: "min" };
|
|
805
805
|
const _hoisted_6 = { class: "max" };
|
|
806
806
|
|
|
807
|
-
function render$
|
|
808
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
807
|
+
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
808
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
809
809
|
createElementVNode("div", _hoisted_2$8, toDisplayString(_ctx.title), 1 /* TEXT */),
|
|
810
810
|
createElementVNode("div", _hoisted_3$6, toDisplayString(_ctx.avgFormatted) + " ℃", 1 /* TEXT */),
|
|
811
811
|
createElementVNode("div", _hoisted_4$2, [
|
|
@@ -819,11 +819,11 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
819
819
|
var css_248z$d = "\n.wrapper[data-v-4250e6d0] {\n flex-direction: column;\n display: inline-flex;\n}\n.avg[data-v-4250e6d0] {\n display: flex;\n font-size: var(--font-size-xlarge);\n justify-content: center;\n}\n.title[data-v-4250e6d0] {\n display: flex;\n font-size: var(--font-size-base);\n justify-content: center;\n}\n.minmax[data-v-4250e6d0] {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n font-size: var(--font-size-base);\n}\n";
|
|
820
820
|
styleInject(css_248z$d);
|
|
821
821
|
|
|
822
|
-
script$
|
|
823
|
-
script$
|
|
824
|
-
script$
|
|
822
|
+
script$i.render = render$i;
|
|
823
|
+
script$i.__scopeId = "data-v-4250e6d0";
|
|
824
|
+
script$i.__file = "src/Temperature/Temperature.vue";
|
|
825
825
|
|
|
826
|
-
var script$
|
|
826
|
+
var script$h = defineComponent({
|
|
827
827
|
name: "Modal",
|
|
828
828
|
emits: ['cancel', 'confirm'],
|
|
829
829
|
props: {
|
|
@@ -839,18 +839,18 @@ var script$c = defineComponent({
|
|
|
839
839
|
},
|
|
840
840
|
});
|
|
841
841
|
|
|
842
|
-
const _hoisted_1$
|
|
842
|
+
const _hoisted_1$f = {
|
|
843
843
|
key: 0,
|
|
844
844
|
class: "modal-overlay"
|
|
845
845
|
};
|
|
846
846
|
const _hoisted_2$7 = { class: "modal-container" };
|
|
847
847
|
|
|
848
|
-
function render$
|
|
848
|
+
function render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
849
849
|
const _component_secondary_button = resolveComponent("secondary-button");
|
|
850
850
|
const _component_danger_button = resolveComponent("danger-button");
|
|
851
851
|
|
|
852
852
|
return (_ctx.open)
|
|
853
|
-
? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
853
|
+
? (openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
854
854
|
createElementVNode("div", _hoisted_2$7, [
|
|
855
855
|
_cache[0] || (_cache[0] = createElementVNode("h1", { class: "modal-title" }, "Are you sure?", -1 /* HOISTED */)),
|
|
856
856
|
createVNode(_component_secondary_button, {
|
|
@@ -870,21 +870,21 @@ function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
870
870
|
var css_248z$c = "\n.modal-overlay[data-v-11d137c2] {\n background-color: var(--color-modal-overlay);\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n}\n.modal-container[data-v-11d137c2] {\n background-color: var(--color-modal-background);\n padding: 3.5rem 4rem;\n border-radius: var(--border-radius-big);\n text-align: center;\n}\n.modal-title[data-v-11d137c2] {\n font-size: var(--font-size-large);\n margin-bottom: 1rem;\n font-weight: var(--font-weight-bold);\n color: var(--color-modal-title);\n}\n";
|
|
871
871
|
styleInject(css_248z$c);
|
|
872
872
|
|
|
873
|
-
script$
|
|
874
|
-
script$
|
|
875
|
-
script$
|
|
873
|
+
script$h.render = render$h;
|
|
874
|
+
script$h.__scopeId = "data-v-11d137c2";
|
|
875
|
+
script$h.__file = "src/Modal/Modal.vue";
|
|
876
876
|
|
|
877
|
-
var script$
|
|
877
|
+
var script$g = defineComponent({
|
|
878
878
|
name: "Spinner",
|
|
879
879
|
});
|
|
880
880
|
|
|
881
|
-
const _hoisted_1$
|
|
881
|
+
const _hoisted_1$e = {
|
|
882
882
|
class: "spinner",
|
|
883
883
|
role: "status"
|
|
884
884
|
};
|
|
885
885
|
|
|
886
|
-
function render$
|
|
887
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
886
|
+
function render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
887
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$e, _cache[0] || (_cache[0] = [
|
|
888
888
|
createElementVNode("span", { class: "sr-only-text" }, "Please wait...", -1 /* HOISTED */)
|
|
889
889
|
])))
|
|
890
890
|
}
|
|
@@ -892,24 +892,24 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
892
892
|
var css_248z$b = "\n.spinner[data-v-3d456f9a] {\n display: inline-block;\n height: 2rem;\n width: 2rem;\n border: 4px solid currentColor;\n border-right-color: transparent;\n border-radius: var(--border-radius-round);\n animation: spin-3d456f9a 1.5s linear infinite;\n}\n.sr-only-text[data-v-3d456f9a] {\n position: absolute;\n margin: -1px;\n height: 1px;\n width: 1px;\n overflow: hidden;\n white-space: nowrap;\n border: 0;\n padding: 0;\n clip: rect(0, 0, 0, 0);\n}\n@keyframes spin-3d456f9a {\nfrom {\n transform: rotate(0deg);\n}\nto {\n transform: rotate(360deg);\n}\n}\n";
|
|
893
893
|
styleInject(css_248z$b);
|
|
894
894
|
|
|
895
|
-
script$
|
|
896
|
-
script$
|
|
897
|
-
script$
|
|
895
|
+
script$g.render = render$g;
|
|
896
|
+
script$g.__scopeId = "data-v-3d456f9a";
|
|
897
|
+
script$g.__file = "src/Spinner/Spinner.vue";
|
|
898
898
|
|
|
899
|
-
var script$
|
|
899
|
+
var script$f = defineComponent({
|
|
900
900
|
name: "RangeView",
|
|
901
901
|
props: {
|
|
902
902
|
ranges: Array,
|
|
903
903
|
},
|
|
904
904
|
});
|
|
905
905
|
|
|
906
|
-
const _hoisted_1$
|
|
906
|
+
const _hoisted_1$d = { class: "ranges-editor" };
|
|
907
907
|
const _hoisted_2$6 = { class: "labels" };
|
|
908
908
|
const _hoisted_3$5 = { class: "label" };
|
|
909
909
|
const _hoisted_4$1 = { class: "label" };
|
|
910
910
|
|
|
911
|
-
function render$
|
|
912
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
911
|
+
function render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
912
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
913
913
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.ranges, (range, index) => {
|
|
914
914
|
return (openBlock(), createElementBlock("div", {
|
|
915
915
|
class: "range",
|
|
@@ -928,34 +928,34 @@ function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
928
928
|
var css_248z$a = "\n.ranges-editor[data-v-3e589c2c] {\n display: flex;\n flex-direction: row;\n cursor: pointer;\n}\n.range[data-v-3e589c2c] {\n min-width: 50px;\n text-align: center;\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n}\n.labels[data-v-3e589c2c] {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n}\n.gap[data-v-3e589c2c] {\n height: 10px;\n width: auto;\n background-color: red;\n border: 1px solid black;\n}\n.label[data-v-3e589c2c] {\n margin-top: 5px;\n}\n";
|
|
929
929
|
styleInject(css_248z$a);
|
|
930
930
|
|
|
931
|
-
script$
|
|
932
|
-
script$
|
|
933
|
-
script$
|
|
931
|
+
script$f.render = render$f;
|
|
932
|
+
script$f.__scopeId = "data-v-3e589c2c";
|
|
933
|
+
script$f.__file = "src/RangeView/RangeView.vue";
|
|
934
934
|
|
|
935
|
-
var script$
|
|
935
|
+
var script$e = defineComponent({
|
|
936
936
|
name: "ResetButton",
|
|
937
937
|
props: {
|
|
938
938
|
text: String,
|
|
939
939
|
},
|
|
940
940
|
});
|
|
941
941
|
|
|
942
|
-
const _hoisted_1$
|
|
942
|
+
const _hoisted_1$c = {
|
|
943
943
|
class: "reset-button",
|
|
944
944
|
type: "reset"
|
|
945
945
|
};
|
|
946
946
|
|
|
947
|
-
function render$
|
|
948
|
-
return (openBlock(), createElementBlock("button", _hoisted_1$
|
|
947
|
+
function render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
948
|
+
return (openBlock(), createElementBlock("button", _hoisted_1$c, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
949
949
|
}
|
|
950
950
|
|
|
951
951
|
var css_248z$9 = "\n.reset-button[data-v-70384d7c] {\n background-color: var(--color-reset);\n color: var(--color-reset-text);\n font-weight: var(--font-weight-bold);\n padding: var(--button-padding);\n border-radius: var(--border-radius-base);\n border: var(--button-border);\n cursor: pointer;\n transition: var(--button-transition);\n}\n.reset-button[data-v-70384d7c]:hover {\n background-color: var(--color-reset-hover);\n}\n";
|
|
952
952
|
styleInject(css_248z$9);
|
|
953
953
|
|
|
954
|
-
script$
|
|
955
|
-
script$
|
|
956
|
-
script$
|
|
954
|
+
script$e.render = render$e;
|
|
955
|
+
script$e.__scopeId = "data-v-70384d7c";
|
|
956
|
+
script$e.__file = "src/Buttons/ResetButton/ResetButton.vue";
|
|
957
957
|
|
|
958
|
-
var script$
|
|
958
|
+
var script$d = defineComponent({
|
|
959
959
|
name: "SubmitButton",
|
|
960
960
|
props: {
|
|
961
961
|
text: {
|
|
@@ -967,24 +967,24 @@ var script$8 = defineComponent({
|
|
|
967
967
|
},
|
|
968
968
|
});
|
|
969
969
|
|
|
970
|
-
const _hoisted_1$
|
|
970
|
+
const _hoisted_1$b = ["disabled"];
|
|
971
971
|
|
|
972
|
-
function render$
|
|
972
|
+
function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
973
973
|
return (openBlock(), createElementBlock("button", {
|
|
974
974
|
class: "submit-button",
|
|
975
975
|
type: "submit",
|
|
976
976
|
disabled: _ctx.disabled
|
|
977
|
-
}, toDisplayString(_ctx.text), 9 /* TEXT, PROPS */, _hoisted_1$
|
|
977
|
+
}, toDisplayString(_ctx.text), 9 /* TEXT, PROPS */, _hoisted_1$b))
|
|
978
978
|
}
|
|
979
979
|
|
|
980
980
|
var css_248z$8 = "\n.submit-button[data-v-f7f11890] {\n background-color: var(--color-submit);\n color: var(--color-submit-text);\n font-weight: var(--font-weight-bold);\n padding: var(--button-padding);\n border-radius: var(--border-radius-base);\n border: var(--button-border);\n cursor: pointer;\n transition: var(--button-transition);\n}\n.submit-button[data-v-f7f11890]:hover {\n background-color: var(--color-submit-hover);\n}\n.submit-button[data-v-f7f11890]:disabled {\n background-color: var(--color-submit-disabled);\n cursor: not-allowed;\n}\n";
|
|
981
981
|
styleInject(css_248z$8);
|
|
982
982
|
|
|
983
|
-
script$
|
|
984
|
-
script$
|
|
985
|
-
script$
|
|
983
|
+
script$d.render = render$d;
|
|
984
|
+
script$d.__scopeId = "data-v-f7f11890";
|
|
985
|
+
script$d.__file = "src/Buttons/SubmitButton/SubmitButton.vue";
|
|
986
986
|
|
|
987
|
-
var script$
|
|
987
|
+
var script$c = defineComponent({
|
|
988
988
|
name: "SecondaryButton",
|
|
989
989
|
props: {
|
|
990
990
|
text: String,
|
|
@@ -997,7 +997,7 @@ var script$7 = defineComponent({
|
|
|
997
997
|
},
|
|
998
998
|
});
|
|
999
999
|
|
|
1000
|
-
function render$
|
|
1000
|
+
function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1001
1001
|
return (openBlock(), createElementBlock("button", {
|
|
1002
1002
|
class: "secondary-button",
|
|
1003
1003
|
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
@@ -1007,11 +1007,11 @@ function render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1007
1007
|
var css_248z$7 = "\n.secondary-button[data-v-5bb3ed46] {\n background-color: var(--color-secondary);\n color: var(--color-secondary-text);\n font-weight: var(--font-weight-bold);\n padding: var(--button-padding);\n border-radius: var(--border-radius-base);\n border: var(--button-border);\n cursor: pointer;\n transition: var(--button-transition);\n}\n.secondary-button[data-v-5bb3ed46]:hover {\n background-color: var(--color-secondary-hover);\n}\n";
|
|
1008
1008
|
styleInject(css_248z$7);
|
|
1009
1009
|
|
|
1010
|
-
script$
|
|
1011
|
-
script$
|
|
1012
|
-
script$
|
|
1010
|
+
script$c.render = render$c;
|
|
1011
|
+
script$c.__scopeId = "data-v-5bb3ed46";
|
|
1012
|
+
script$c.__file = "src/Buttons/SecondaryButton/SecondaryButton.vue";
|
|
1013
1013
|
|
|
1014
|
-
var script$
|
|
1014
|
+
var script$b = defineComponent({
|
|
1015
1015
|
name: "DangerButton",
|
|
1016
1016
|
props: {
|
|
1017
1017
|
text: String,
|
|
@@ -1024,7 +1024,7 @@ var script$6 = defineComponent({
|
|
|
1024
1024
|
},
|
|
1025
1025
|
});
|
|
1026
1026
|
|
|
1027
|
-
function render$
|
|
1027
|
+
function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1028
1028
|
return (openBlock(), createElementBlock("button", {
|
|
1029
1029
|
class: "danger-button",
|
|
1030
1030
|
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
@@ -1034,11 +1034,11 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1034
1034
|
var css_248z$6 = "\n.danger-button[data-v-5e080598] {\n background-color: var(--color-danger);\n color: var(--color-danger-text);\n font-weight: var(--font-weight-bold);\n padding: var(--button-padding);\n border-radius: var(--border-radius-base);\n border: var(--button-border);\n cursor: pointer;\n transition: var(--button-transition);\n}\n.danger-button[data-v-5e080598]:hover {\n background-color: var(--color-danger-hover);\n}\n";
|
|
1035
1035
|
styleInject(css_248z$6);
|
|
1036
1036
|
|
|
1037
|
-
script$
|
|
1038
|
-
script$
|
|
1039
|
-
script$
|
|
1037
|
+
script$b.render = render$b;
|
|
1038
|
+
script$b.__scopeId = "data-v-5e080598";
|
|
1039
|
+
script$b.__file = "src/Buttons/DangerButton/DangerButton.vue";
|
|
1040
1040
|
|
|
1041
|
-
var script$
|
|
1041
|
+
var script$a = defineComponent({
|
|
1042
1042
|
name: "TextInput",
|
|
1043
1043
|
props: {
|
|
1044
1044
|
id: {
|
|
@@ -1068,12 +1068,12 @@ var script$5 = defineComponent({
|
|
|
1068
1068
|
},
|
|
1069
1069
|
});
|
|
1070
1070
|
|
|
1071
|
-
const _hoisted_1$
|
|
1071
|
+
const _hoisted_1$a = { class: "text-input-container" };
|
|
1072
1072
|
const _hoisted_2$5 = ["for"];
|
|
1073
1073
|
const _hoisted_3$4 = ["id", "name", "required", "disabled", "placeholder", "value"];
|
|
1074
1074
|
|
|
1075
|
-
function render$
|
|
1076
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
1075
|
+
function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1076
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
1077
1077
|
createElementVNode("label", {
|
|
1078
1078
|
class: "text-input-label",
|
|
1079
1079
|
for: _ctx.id
|
|
@@ -1095,11 +1095,11 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1095
1095
|
var css_248z$5 = "\n.text-input-container[data-v-6df3547e] {\n margin-bottom: 1rem;\n}\n.text-input-label[data-v-6df3547e] {\n display: block;\n color: var(--color-text-input-label);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n margin-bottom: 0.5rem;\n}\n.text-input-field[data-v-6df3547e] {\n box-shadow: 0 1px 3px var(--color-text-input-shadow);\n appearance: none;\n border: 1px solid var(--color-text-input-border);\n border-radius: var(--border-radius--base);\n width: 100%;\n padding: 0.5rem 0.75rem;\n color: var(--color-text-input);\n line-height: 1.25;\n transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;\n}\n.text-input-field[data-v-6df3547e]:focus {\n outline: none;\n box-shadow: 0 0 0 3px var(--color-text-input-shadow);\n border-color: var(--color-text-input-border-focus);\n}\n.text-input-field[data-v-6df3547e]:disabled {\n background-color: var(--color-input-disabled);\n cursor: not-allowed;\n}\n";
|
|
1096
1096
|
styleInject(css_248z$5);
|
|
1097
1097
|
|
|
1098
|
-
script$
|
|
1099
|
-
script$
|
|
1100
|
-
script$
|
|
1098
|
+
script$a.render = render$a;
|
|
1099
|
+
script$a.__scopeId = "data-v-6df3547e";
|
|
1100
|
+
script$a.__file = "src/Inputs/TextInput/TextInput.vue";
|
|
1101
1101
|
|
|
1102
|
-
var script$
|
|
1102
|
+
var script$9 = defineComponent({
|
|
1103
1103
|
name: "CheckBoxInput",
|
|
1104
1104
|
props: {
|
|
1105
1105
|
id: {
|
|
@@ -1126,12 +1126,12 @@ var script$4 = defineComponent({
|
|
|
1126
1126
|
},
|
|
1127
1127
|
});
|
|
1128
1128
|
|
|
1129
|
-
const _hoisted_1$
|
|
1129
|
+
const _hoisted_1$9 = { class: "checkbox-container" };
|
|
1130
1130
|
const _hoisted_2$4 = ["id", "name", "required", "value"];
|
|
1131
1131
|
const _hoisted_3$3 = ["for"];
|
|
1132
1132
|
|
|
1133
|
-
function render$
|
|
1134
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
1133
|
+
function render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1134
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
1135
1135
|
createElementVNode("input", {
|
|
1136
1136
|
id: _ctx.id,
|
|
1137
1137
|
name: _ctx.id,
|
|
@@ -1151,11 +1151,11 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1151
1151
|
var css_248z$4 = "\n.checkbox-container[data-v-4612e592] {\n margin-bottom: 1rem;\n}\ninput[type=\"checkbox\"][data-v-4612e592] {\n margin-right: 0.5rem;\n}\n.checkbox-label[data-v-4612e592] {\n display: block;\n color: var(--color-checkbox-label);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n}\n";
|
|
1152
1152
|
styleInject(css_248z$4);
|
|
1153
1153
|
|
|
1154
|
-
script$
|
|
1155
|
-
script$
|
|
1156
|
-
script$
|
|
1154
|
+
script$9.render = render$9;
|
|
1155
|
+
script$9.__scopeId = "data-v-4612e592";
|
|
1156
|
+
script$9.__file = "src/Inputs/CheckBoxInput/CheckBoxInput.vue";
|
|
1157
1157
|
|
|
1158
|
-
var script$
|
|
1158
|
+
var script$8 = defineComponent({
|
|
1159
1159
|
name: "NumberInput",
|
|
1160
1160
|
props: {
|
|
1161
1161
|
id: {
|
|
@@ -1191,12 +1191,12 @@ var script$3 = defineComponent({
|
|
|
1191
1191
|
},
|
|
1192
1192
|
});
|
|
1193
1193
|
|
|
1194
|
-
const _hoisted_1$
|
|
1194
|
+
const _hoisted_1$8 = { class: "number-input-container" };
|
|
1195
1195
|
const _hoisted_2$3 = ["for"];
|
|
1196
1196
|
const _hoisted_3$2 = ["id", "name", "required", "placeholder", "disabled", "value", "min", "step"];
|
|
1197
1197
|
|
|
1198
|
-
function render$
|
|
1199
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
1198
|
+
function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1199
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
1200
1200
|
createElementVNode("label", {
|
|
1201
1201
|
class: "number-input-label",
|
|
1202
1202
|
for: _ctx.id
|
|
@@ -1220,11 +1220,11 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1220
1220
|
var css_248z$3 = "\n.number-input-container[data-v-26abc846] {\n margin-bottom: 1rem;\n}\n.number-input-label[data-v-26abc846] {\n display: block;\n color: var(--color-number-input-label);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n margin-bottom: 0.5rem;\n}\n.number-input-field[data-v-26abc846] {\n box-shadow: 0 1px 3px var(--color-input-shadow);\n appearance: none;\n border: 1px solid var(--color-number-input-border);\n border-radius: var(--border-radius--base);\n width: 100%;\n padding: 0.5rem 0.75rem;\n color: var(--color-number-input);\n line-height: 1.25;\n transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;\n}\n.number-input-field[data-v-26abc846]:focus {\n outline: none;\n box-shadow: 0 0 0 3px var(--color-input-shadow-focus);\n border-color: var(--color-number-input-border-focus);\n}\n.number-input-field[data-v-26abc846]:disabled {\n background-color: var(--color-input-disabled);\n cursor: not-allowed;\n}\n";
|
|
1221
1221
|
styleInject(css_248z$3);
|
|
1222
1222
|
|
|
1223
|
-
script$
|
|
1224
|
-
script$
|
|
1225
|
-
script$
|
|
1223
|
+
script$8.render = render$8;
|
|
1224
|
+
script$8.__scopeId = "data-v-26abc846";
|
|
1225
|
+
script$8.__file = "src/Inputs/NumberInput/NumberInput.vue";
|
|
1226
1226
|
|
|
1227
|
-
var script$
|
|
1227
|
+
var script$7 = defineComponent({
|
|
1228
1228
|
name: "ImageInput",
|
|
1229
1229
|
props: {
|
|
1230
1230
|
id: {
|
|
@@ -1254,12 +1254,12 @@ var script$2 = defineComponent({
|
|
|
1254
1254
|
},
|
|
1255
1255
|
});
|
|
1256
1256
|
|
|
1257
|
-
const _hoisted_1$
|
|
1257
|
+
const _hoisted_1$7 = { class: "image-input-container" };
|
|
1258
1258
|
const _hoisted_2$2 = ["for"];
|
|
1259
1259
|
const _hoisted_3$1 = ["id", "name", "required", "placeholder", "value", "drop-placeholder"];
|
|
1260
1260
|
|
|
1261
|
-
function render$
|
|
1262
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
1261
|
+
function render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1262
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
1263
1263
|
createElementVNode("label", {
|
|
1264
1264
|
class: "image-input-label",
|
|
1265
1265
|
for: _ctx.id
|
|
@@ -1282,9 +1282,9 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1282
1282
|
var css_248z$2 = "\n.image-input-container[data-v-d90b5f3c] {\n margin-bottom: 1rem;\n}\n.image-input-label[data-v-d90b5f3c] {\n display: block;\n color: var(--color-image-input);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n margin-bottom: 0.5rem;\n}\n.image-input-field[data-v-d90b5f3c] {\n box-shadow: 0 1px 3px var(--color-input-shadow);\n appearance: none;\n border: 1px solid var(--color-image-input-border);\n border-radius: var(--border-radius--base);\n width: 100%;\n padding: 0.5rem 0.75rem;\n color: var(--color-image-input);\n line-height: 1.25;\n transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;\n}\n.image-input-field[data-v-d90b5f3c]:focus {\n outline: none;\n box-shadow: 0 0 0 3px var(--color-image-input-shadow);\n border-color: var(--color-image-input-border-focus);\n}\n";
|
|
1283
1283
|
styleInject(css_248z$2);
|
|
1284
1284
|
|
|
1285
|
-
script$
|
|
1286
|
-
script$
|
|
1287
|
-
script$
|
|
1285
|
+
script$7.render = render$7;
|
|
1286
|
+
script$7.__scopeId = "data-v-d90b5f3c";
|
|
1287
|
+
script$7.__file = "src/Inputs/ImageInput/ImageInput.vue";
|
|
1288
1288
|
|
|
1289
1289
|
/*! image-blob-reduce 4.1.0 https://github.com/nodeca/image-blob-reduce @license MIT */
|
|
1290
1290
|
function commonjsRequire (path) {
|
|
@@ -4881,10 +4881,10 @@ ImageBlobReduce.pica = pica;
|
|
|
4881
4881
|
|
|
4882
4882
|
var imageBlobReduce = ImageBlobReduce;
|
|
4883
4883
|
|
|
4884
|
-
var script$
|
|
4884
|
+
var script$6 = defineComponent({
|
|
4885
4885
|
name: "ResizeImageUpload",
|
|
4886
4886
|
components: {
|
|
4887
|
-
ImageInput: script$
|
|
4887
|
+
ImageInput: script$7,
|
|
4888
4888
|
},
|
|
4889
4889
|
props: {
|
|
4890
4890
|
id: {
|
|
@@ -4930,13 +4930,13 @@ var script$1 = defineComponent({
|
|
|
4930
4930
|
},
|
|
4931
4931
|
});
|
|
4932
4932
|
|
|
4933
|
-
const _hoisted_1$
|
|
4933
|
+
const _hoisted_1$6 = { class: "image-input-container" };
|
|
4934
4934
|
const _hoisted_2$1 = { key: 0 };
|
|
4935
4935
|
|
|
4936
|
-
function render$
|
|
4936
|
+
function render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4937
4937
|
const _component_image_input = resolveComponent("image-input");
|
|
4938
4938
|
|
|
4939
|
-
return (openBlock(), createElementBlock("div", _hoisted_1$
|
|
4939
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
4940
4940
|
createVNode(_component_image_input, {
|
|
4941
4941
|
id: _ctx.id,
|
|
4942
4942
|
name: _ctx.id,
|
|
@@ -4955,11 +4955,11 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4955
4955
|
var css_248z$1 = "\nimage-input[data-v-3fb95754] {\n display: block;\n margin-bottom: 1rem;\n}\nimage-input label[data-v-3fb95754] {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: var(--font-weight-bold);\n font-size: var(--font-size-small);\n color: var(--color-image-input);\n}\nimage-input input[type=\"file\"][data-v-3fb95754] {\n display: block;\n width: 100%;\n padding: 0.5rem;\n border: 1px solid var(--color-image-input-border);\n border-radius: var(--border-radius--base);\n color: var(--color-image-input);\n background-color: var(--color-image-input-background);\n cursor: pointer;\n}\nimage-input input[type=\"file\"][data-v-3fb95754]:focus {\n outline: none;\n border-color: var(--color-image-input-border-focus);\n box-shadow: 0 0 0 3px var(--color-image-input-shadow);\n}\nimage-input input[type=\"file\"][data-v-3fb95754]:disabled {\n background-color: var(--color-input-disabled);\n cursor: not-allowed;\n}\n";
|
|
4956
4956
|
styleInject(css_248z$1);
|
|
4957
4957
|
|
|
4958
|
-
script$
|
|
4959
|
-
script$
|
|
4960
|
-
script$
|
|
4958
|
+
script$6.render = render$6;
|
|
4959
|
+
script$6.__scopeId = "data-v-3fb95754";
|
|
4960
|
+
script$6.__file = "src/Inputs/ResizeImageUpload/ResizeImageUpload.vue";
|
|
4961
4961
|
|
|
4962
|
-
var script = defineComponent({
|
|
4962
|
+
var script$5 = defineComponent({
|
|
4963
4963
|
name: "Selector",
|
|
4964
4964
|
props: {
|
|
4965
4965
|
id: {
|
|
@@ -5011,14 +5011,14 @@ var script = defineComponent({
|
|
|
5011
5011
|
},
|
|
5012
5012
|
});
|
|
5013
5013
|
|
|
5014
|
-
const _hoisted_1 = { class: "selector-container" };
|
|
5014
|
+
const _hoisted_1$5 = { class: "selector-container" };
|
|
5015
5015
|
const _hoisted_2 = ["for"];
|
|
5016
5016
|
const _hoisted_3 = { class: "selector-relative-container" };
|
|
5017
5017
|
const _hoisted_4 = ["id", "disabled"];
|
|
5018
5018
|
const _hoisted_5 = ["value", "disabled"];
|
|
5019
5019
|
|
|
5020
|
-
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5021
|
-
return (openBlock(), createElementBlock("div", _hoisted_1, [
|
|
5020
|
+
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5021
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
5022
5022
|
createElementVNode("label", {
|
|
5023
5023
|
class: "selector-label",
|
|
5024
5024
|
for: _ctx.id
|
|
@@ -5057,9 +5057,224 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5057
5057
|
var css_248z = "\n.selector-container[data-v-008e1be2] {\n margin-bottom: 1rem;\n}\n.selector-label[data-v-008e1be2] {\n display: block;\n color: var(--color-selector-label);\n font-size: var(--font-size-small);\n font-weight: var(--font-weight-bold);\n margin-bottom: 0.5rem;\n}\n.selector-relative-container[data-v-008e1be2] {\n position: relative;\n}\n.selector-field[data-v-008e1be2] {\n appearance: none;\n width: 100%;\n background-color: var(--color-selector-background);\n border: 1px solid var(--color-selector-border);\n color: var(--color-selector-text);\n padding: 0.75rem 1rem 0.75rem 0.75rem;\n padding-right: 2rem;\n border-radius: var(--border-radius--base);\n line-height: 1.25;\n transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;\n}\n.selector-field[data-v-008e1be2]:focus {\n outline: none;\n background-color: var(--color-selector-background-focused);\n border-color: var(--color-selector-border-focused);\n}\n.selector-icon-container[data-v-008e1be2] {\n pointer-events: none;\n position: absolute;\n inset: 0 auto;\n right: 0;\n display: flex;\n align-items: center;\n padding: 0 0.5rem;\n color: var(--color-selector-icon-container);\n}\n.selector-icon[data-v-008e1be2] {\n fill: currentColor;\n height: 1rem;\n width: 1rem;\n}\n";
|
|
5058
5058
|
styleInject(css_248z);
|
|
5059
5059
|
|
|
5060
|
+
script$5.render = render$5;
|
|
5061
|
+
script$5.__scopeId = "data-v-008e1be2";
|
|
5062
|
+
script$5.__file = "src/Inputs/Selector/Selector.vue";
|
|
5063
|
+
|
|
5064
|
+
var script$4 = {
|
|
5065
|
+
name: 'DropIcon',
|
|
5066
|
+
props: {
|
|
5067
|
+
size: {
|
|
5068
|
+
type: [Number, String],
|
|
5069
|
+
default: 24
|
|
5070
|
+
},
|
|
5071
|
+
color: {
|
|
5072
|
+
type: String,
|
|
5073
|
+
default: 'currentColor'
|
|
5074
|
+
}
|
|
5075
|
+
}
|
|
5076
|
+
};
|
|
5077
|
+
|
|
5078
|
+
const _hoisted_1$4 = ["width", "height", "stroke"];
|
|
5079
|
+
|
|
5080
|
+
function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5081
|
+
return (openBlock(), createElementBlock("svg", {
|
|
5082
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5083
|
+
width: $props.size,
|
|
5084
|
+
height: $props.size,
|
|
5085
|
+
viewBox: "0 0 24 24",
|
|
5086
|
+
fill: "none",
|
|
5087
|
+
stroke: $props.color,
|
|
5088
|
+
"stroke-width": "2",
|
|
5089
|
+
"stroke-linecap": "round",
|
|
5090
|
+
"stroke-linejoin": "round",
|
|
5091
|
+
class: "lucide lucide-droplets-icon lucide-droplets"
|
|
5092
|
+
}, _cache[0] || (_cache[0] = [
|
|
5093
|
+
createElementVNode("path", { d: "M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z" }, null, -1 /* HOISTED */),
|
|
5094
|
+
createElementVNode("path", { d: "M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97" }, null, -1 /* HOISTED */)
|
|
5095
|
+
]), 8 /* PROPS */, _hoisted_1$4))
|
|
5096
|
+
}
|
|
5097
|
+
|
|
5098
|
+
script$4.render = render$4;
|
|
5099
|
+
script$4.__file = "src/Icons/DropIcon/DropIcon.vue";
|
|
5100
|
+
|
|
5101
|
+
var script$3 = {
|
|
5102
|
+
name: 'SkullIcon',
|
|
5103
|
+
props: {
|
|
5104
|
+
size: {
|
|
5105
|
+
type: [Number, String],
|
|
5106
|
+
default: 24
|
|
5107
|
+
},
|
|
5108
|
+
color: {
|
|
5109
|
+
type: String,
|
|
5110
|
+
default: 'currentColor'
|
|
5111
|
+
}
|
|
5112
|
+
}
|
|
5113
|
+
};
|
|
5114
|
+
|
|
5115
|
+
const _hoisted_1$3 = ["width", "height", "stroke"];
|
|
5116
|
+
|
|
5117
|
+
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5118
|
+
return (openBlock(), createElementBlock("svg", {
|
|
5119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5120
|
+
width: $props.size,
|
|
5121
|
+
height: $props.size,
|
|
5122
|
+
viewBox: "0 0 24 24",
|
|
5123
|
+
fill: "none",
|
|
5124
|
+
stroke: $props.color,
|
|
5125
|
+
"stroke-width": "2",
|
|
5126
|
+
"stroke-linecap": "round",
|
|
5127
|
+
"stroke-linejoin": "round",
|
|
5128
|
+
class: "lucide lucide-skull-icon lucide-skull"
|
|
5129
|
+
}, _cache[0] || (_cache[0] = [
|
|
5130
|
+
createElementVNode("path", { d: "m12.5 17-.5-1-.5 1h1z" }, null, -1 /* HOISTED */),
|
|
5131
|
+
createElementVNode("path", { d: "M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z" }, null, -1 /* HOISTED */),
|
|
5132
|
+
createElementVNode("circle", {
|
|
5133
|
+
cx: "15",
|
|
5134
|
+
cy: "12",
|
|
5135
|
+
r: "1"
|
|
5136
|
+
}, null, -1 /* HOISTED */),
|
|
5137
|
+
createElementVNode("circle", {
|
|
5138
|
+
cx: "9",
|
|
5139
|
+
cy: "12",
|
|
5140
|
+
r: "1"
|
|
5141
|
+
}, null, -1 /* HOISTED */)
|
|
5142
|
+
]), 8 /* PROPS */, _hoisted_1$3))
|
|
5143
|
+
}
|
|
5144
|
+
|
|
5145
|
+
script$3.render = render$3;
|
|
5146
|
+
script$3.__file = "src/Icons/SkullIcon/SkullIcon.vue";
|
|
5147
|
+
|
|
5148
|
+
var script$2 = {
|
|
5149
|
+
name: 'CalendarIcon',
|
|
5150
|
+
props: {
|
|
5151
|
+
size: {
|
|
5152
|
+
type: [Number, String],
|
|
5153
|
+
default: 24
|
|
5154
|
+
},
|
|
5155
|
+
color: {
|
|
5156
|
+
type: String,
|
|
5157
|
+
default: 'currentColor'
|
|
5158
|
+
}
|
|
5159
|
+
}
|
|
5160
|
+
};
|
|
5161
|
+
|
|
5162
|
+
const _hoisted_1$2 = ["width", "height", "stroke"];
|
|
5163
|
+
|
|
5164
|
+
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5165
|
+
return (openBlock(), createElementBlock("svg", {
|
|
5166
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5167
|
+
width: $props.size,
|
|
5168
|
+
height: $props.size,
|
|
5169
|
+
viewBox: "0 0 24 24",
|
|
5170
|
+
fill: "none",
|
|
5171
|
+
stroke: $props.color,
|
|
5172
|
+
"stroke-width": "2",
|
|
5173
|
+
"stroke-linecap": "round",
|
|
5174
|
+
"stroke-linejoin": "round",
|
|
5175
|
+
class: "lucide lucide-calendar-icon lucide-calendar"
|
|
5176
|
+
}, _cache[0] || (_cache[0] = [
|
|
5177
|
+
createElementVNode("path", { d: "M8 2v4" }, null, -1 /* HOISTED */),
|
|
5178
|
+
createElementVNode("path", { d: "M16 2v4" }, null, -1 /* HOISTED */),
|
|
5179
|
+
createElementVNode("rect", {
|
|
5180
|
+
width: "18",
|
|
5181
|
+
height: "18",
|
|
5182
|
+
x: "3",
|
|
5183
|
+
y: "4",
|
|
5184
|
+
rx: "2"
|
|
5185
|
+
}, null, -1 /* HOISTED */),
|
|
5186
|
+
createElementVNode("path", { d: "M3 10h18" }, null, -1 /* HOISTED */)
|
|
5187
|
+
]), 8 /* PROPS */, _hoisted_1$2))
|
|
5188
|
+
}
|
|
5189
|
+
|
|
5190
|
+
script$2.render = render$2;
|
|
5191
|
+
script$2.__file = "src/Icons/CalendarIcon/CalendarIcon.vue";
|
|
5192
|
+
|
|
5193
|
+
var script$1 = {
|
|
5194
|
+
name: 'SaveIcon',
|
|
5195
|
+
props: {
|
|
5196
|
+
size: {
|
|
5197
|
+
type: [Number, String],
|
|
5198
|
+
default: 24
|
|
5199
|
+
},
|
|
5200
|
+
color: {
|
|
5201
|
+
type: String,
|
|
5202
|
+
default: 'currentColor'
|
|
5203
|
+
}
|
|
5204
|
+
}
|
|
5205
|
+
};
|
|
5206
|
+
|
|
5207
|
+
const _hoisted_1$1 = ["width", "height", "stroke"];
|
|
5208
|
+
|
|
5209
|
+
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5210
|
+
return (openBlock(), createElementBlock("svg", {
|
|
5211
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5212
|
+
width: $props.size,
|
|
5213
|
+
height: $props.size,
|
|
5214
|
+
viewBox: "0 0 24 24",
|
|
5215
|
+
fill: "none",
|
|
5216
|
+
stroke: $props.color,
|
|
5217
|
+
"stroke-width": "2",
|
|
5218
|
+
"stroke-linecap": "round",
|
|
5219
|
+
"stroke-linejoin": "round",
|
|
5220
|
+
class: "lucide lucide-save-icon lucide-save"
|
|
5221
|
+
}, _cache[0] || (_cache[0] = [
|
|
5222
|
+
createElementVNode("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }, null, -1 /* HOISTED */),
|
|
5223
|
+
createElementVNode("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }, null, -1 /* HOISTED */),
|
|
5224
|
+
createElementVNode("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" }, null, -1 /* HOISTED */)
|
|
5225
|
+
]), 8 /* PROPS */, _hoisted_1$1))
|
|
5226
|
+
}
|
|
5227
|
+
|
|
5228
|
+
script$1.render = render$1;
|
|
5229
|
+
script$1.__file = "src/Icons/SaveIcon/SaveIcon.vue";
|
|
5230
|
+
|
|
5231
|
+
var script = {
|
|
5232
|
+
name: 'CreateIcon',
|
|
5233
|
+
props: {
|
|
5234
|
+
size: {
|
|
5235
|
+
type: [Number, String],
|
|
5236
|
+
default: 24
|
|
5237
|
+
},
|
|
5238
|
+
color: {
|
|
5239
|
+
type: String,
|
|
5240
|
+
default: 'currentColor'
|
|
5241
|
+
}
|
|
5242
|
+
}
|
|
5243
|
+
};
|
|
5244
|
+
|
|
5245
|
+
const _hoisted_1 = ["width", "height", "stroke"];
|
|
5246
|
+
|
|
5247
|
+
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5248
|
+
return (openBlock(), createElementBlock("svg", {
|
|
5249
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5250
|
+
width: $props.size,
|
|
5251
|
+
height: $props.size,
|
|
5252
|
+
viewBox: "0 0 24 24",
|
|
5253
|
+
fill: "none",
|
|
5254
|
+
stroke: $props.color,
|
|
5255
|
+
"stroke-width": "2",
|
|
5256
|
+
"stroke-linecap": "round",
|
|
5257
|
+
"stroke-linejoin": "round",
|
|
5258
|
+
class: "lucide lucide-badge-plus-icon lucide-badge-plus"
|
|
5259
|
+
}, _cache[0] || (_cache[0] = [
|
|
5260
|
+
createElementVNode("path", { d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" }, null, -1 /* HOISTED */),
|
|
5261
|
+
createElementVNode("line", {
|
|
5262
|
+
x1: "12",
|
|
5263
|
+
x2: "12",
|
|
5264
|
+
y1: "8",
|
|
5265
|
+
y2: "16"
|
|
5266
|
+
}, null, -1 /* HOISTED */),
|
|
5267
|
+
createElementVNode("line", {
|
|
5268
|
+
x1: "8",
|
|
5269
|
+
x2: "16",
|
|
5270
|
+
y1: "12",
|
|
5271
|
+
y2: "12"
|
|
5272
|
+
}, null, -1 /* HOISTED */)
|
|
5273
|
+
]), 8 /* PROPS */, _hoisted_1))
|
|
5274
|
+
}
|
|
5275
|
+
|
|
5060
5276
|
script.render = render;
|
|
5061
|
-
script.
|
|
5062
|
-
script.__file = "src/Inputs/Selector/Selector.vue";
|
|
5277
|
+
script.__file = "src/Icons/CreateIcon/CreateIcon.vue";
|
|
5063
5278
|
|
|
5064
|
-
export { script$
|
|
5279
|
+
export { script$j as Badge, script$2 as CalendarIcon, script$x as Card, script$w as CardGrid, script$9 as CheckBoxInput, script$v as Container, script as CreateIcon, script$b as DangerButton, script$4 as DropIcon, script$7 as ImageInput, script$A as Loading, script$h as Modal, script$n as Navbar, script$8 as NumberInput, script$k as Pagination, script$f as RangeView, script$l as RegularButton, script$e as ResetButton, script$6 as ResizeImageUpload, script$1 as SaveIcon, script$c as SecondaryButton, script$B as SectionTitle, script$5 as Selector, script$3 as SkullIcon, script$g as Spinner, script$m as StyledTable, script$d as SubmitButton, script$i as Temperature, script$a as TextInput };
|
|
5065
5280
|
//# sourceMappingURL=index.esm.js.map
|