@namelivia/vue-components 0.1.7 → 1.0.0
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 +653 -107
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +672 -123
- package/dist/index.js.map +1 -1
- package/package.json +4 -12
- package/rollup.config.js +3 -3
- package/src/Card.vue +10 -4
- package/src/CardBody.vue +10 -9
- package/src/CardGrid.vue +9 -4
- package/src/CardImage.vue +6 -4
- package/src/CheckBoxInput.vue +18 -19
- package/src/Container.vue +10 -0
- package/src/DangerButton.vue +7 -4
- package/src/ImageInput.vue +20 -21
- package/src/Loading.vue +11 -11
- package/src/MobileMenuButton.vue +36 -53
- package/src/MobileNavigationLink.vue +8 -7
- package/src/MobileNavigationLinks.vue +22 -10
- package/src/Navbar.vue +31 -24
- package/src/NavbarTitle.vue +18 -13
- package/src/NavigationLink.vue +8 -7
- package/src/NavigationLinks.vue +14 -14
- package/src/NumberInput.vue +21 -21
- package/src/Pagination.vue +25 -0
- package/src/RegularButton.vue +7 -5
- package/src/ResetButton.vue +7 -5
- package/src/RightContent.vue +13 -10
- package/src/SecondaryButton.vue +7 -4
- package/src/SectionTitle.vue +11 -6
- package/src/Selector.vue +34 -39
- package/src/StyledTable.vue +10 -0
- package/src/SubmitButton.vue +7 -4
- package/src/TextInput.vue +19 -19
- package/src/index.js +20 -36
package/dist/index.esm.js
CHANGED
|
@@ -1,38 +1,83 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { defineComponent, openBlock, createElementBlock, toDisplayString, createStaticVNode, createElementVNode, renderSlot, createTextVNode, withDirectives, Fragment, renderList, vModelSelect, createCommentVNode, normalizeClass, resolveComponent, createBlock, Transition, withCtx, createVNode } from 'vue';
|
|
2
|
+
|
|
3
|
+
var script$q = defineComponent({
|
|
4
|
+
name: 'SectionTitle',
|
|
4
5
|
props: {
|
|
5
|
-
text:
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
text: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: ''
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
const _hoisted_1$n = { class: "text-center text-6xl leading-relaxed" };
|
|
8
14
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
15
|
+
function render$q(_ctx, _cache) {
|
|
16
|
+
return (openBlock(), createElementBlock("h1", _hoisted_1$n, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
script$q.render = render$q;
|
|
20
|
+
script$q.__file = "src/SectionTitle.vue";
|
|
21
|
+
|
|
22
|
+
var script$p = defineComponent({
|
|
23
|
+
name: "Loading",
|
|
12
24
|
props: {
|
|
13
25
|
text: String,
|
|
14
26
|
},
|
|
15
|
-
};
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
const _hoisted_1$m = /*#__PURE__*/createStaticVNode("<h1 class=\"text-center.text-1xl.leading-relaxed\">Loading...</h1><div class=\"flex items-center justify-center space-x-2 animate-bounce\"><div class=\"w-8 h-8 bg-blue-400 rounded-full\"></div><div class=\"w-8 h-8 bg-green-400 rounded-full\"></div><div class=\"w-8 h-8 bg-red-400 rounded-full\"></div></div>", 2);
|
|
30
|
+
const _hoisted_3$9 = [
|
|
31
|
+
_hoisted_1$m
|
|
32
|
+
];
|
|
16
33
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
34
|
+
function render$p(_ctx, _cache) {
|
|
35
|
+
return (openBlock(), createElementBlock("div", null, _hoisted_3$9))
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
script$p.render = render$p;
|
|
39
|
+
script$p.__file = "src/Loading.vue";
|
|
40
|
+
|
|
41
|
+
var script$o = defineComponent({
|
|
42
|
+
name: "ResetButton",
|
|
20
43
|
props: {
|
|
21
44
|
text: String,
|
|
22
45
|
},
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
const _hoisted_1$l = {
|
|
49
|
+
class: "bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded",
|
|
50
|
+
type: "reset"
|
|
23
51
|
};
|
|
24
52
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
53
|
+
function render$o(_ctx, _cache) {
|
|
54
|
+
return (openBlock(), createElementBlock("button", _hoisted_1$l, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
script$o.render = render$o;
|
|
58
|
+
script$o.__file = "src/ResetButton.vue";
|
|
59
|
+
|
|
60
|
+
var script$n = defineComponent({
|
|
61
|
+
name: "SubmitButton",
|
|
28
62
|
props: {
|
|
29
63
|
text: String,
|
|
30
64
|
},
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
const _hoisted_1$k = {
|
|
68
|
+
class: "bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded",
|
|
69
|
+
type: "submit"
|
|
31
70
|
};
|
|
32
71
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
72
|
+
function render$n(_ctx, _cache) {
|
|
73
|
+
return (openBlock(), createElementBlock("button", _hoisted_1$k, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
script$n.render = render$n;
|
|
77
|
+
script$n.__file = "src/SubmitButton.vue";
|
|
78
|
+
|
|
79
|
+
var script$m = defineComponent({
|
|
80
|
+
name: "RegularButton",
|
|
36
81
|
props: {
|
|
37
82
|
text: String,
|
|
38
83
|
},
|
|
@@ -41,11 +86,20 @@ staticRenderFns: [],
|
|
|
41
86
|
this.$emit('click', evt);
|
|
42
87
|
}
|
|
43
88
|
}
|
|
44
|
-
};
|
|
89
|
+
});
|
|
45
90
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
91
|
+
function render$m(_ctx, _cache) {
|
|
92
|
+
return (openBlock(), createElementBlock("button", {
|
|
93
|
+
class: "bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded",
|
|
94
|
+
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
95
|
+
}, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
script$m.render = render$m;
|
|
99
|
+
script$m.__file = "src/RegularButton.vue";
|
|
100
|
+
|
|
101
|
+
var script$l = defineComponent({
|
|
102
|
+
name: "SecondaryButton",
|
|
49
103
|
props: {
|
|
50
104
|
text: String,
|
|
51
105
|
},
|
|
@@ -54,11 +108,20 @@ staticRenderFns: [],
|
|
|
54
108
|
this.$emit('click', evt);
|
|
55
109
|
}
|
|
56
110
|
}
|
|
57
|
-
};
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
function render$l(_ctx, _cache) {
|
|
114
|
+
return (openBlock(), createElementBlock("button", {
|
|
115
|
+
class: "bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded",
|
|
116
|
+
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
117
|
+
}, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
118
|
+
}
|
|
58
119
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
120
|
+
script$l.render = render$l;
|
|
121
|
+
script$l.__file = "src/SecondaryButton.vue";
|
|
122
|
+
|
|
123
|
+
var script$k = defineComponent({
|
|
124
|
+
name: "DangerButton",
|
|
62
125
|
props: {
|
|
63
126
|
text: String,
|
|
64
127
|
},
|
|
@@ -67,17 +130,38 @@ staticRenderFns: [],
|
|
|
67
130
|
this.$emit('click', evt);
|
|
68
131
|
}
|
|
69
132
|
}
|
|
70
|
-
};
|
|
133
|
+
});
|
|
71
134
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
135
|
+
function render$k(_ctx, _cache) {
|
|
136
|
+
return (openBlock(), createElementBlock("button", {
|
|
137
|
+
class: "bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded",
|
|
138
|
+
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
139
|
+
}, toDisplayString(_ctx.text), 1 /* TEXT */))
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
script$k.render = render$k;
|
|
143
|
+
script$k.__file = "src/DangerButton.vue";
|
|
144
|
+
|
|
145
|
+
var script$j = defineComponent({
|
|
146
|
+
name: "Card"
|
|
147
|
+
});
|
|
148
|
+
|
|
149
|
+
const _hoisted_1$j = { class: "m-8" };
|
|
150
|
+
const _hoisted_2$d = { class: "max-w-sm rounded overflow-hidden shadow-lg" };
|
|
151
|
+
|
|
152
|
+
function render$j(_ctx, _cache) {
|
|
153
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$j, [
|
|
154
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
155
|
+
renderSlot(_ctx.$slots, "default")
|
|
156
|
+
])
|
|
157
|
+
]))
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
script$j.render = render$j;
|
|
161
|
+
script$j.__file = "src/Card.vue";
|
|
77
162
|
|
|
78
|
-
var
|
|
79
|
-
|
|
80
|
-
staticRenderFns: [],
|
|
163
|
+
var script$i = defineComponent({
|
|
164
|
+
name: "CardImage",
|
|
81
165
|
props: {
|
|
82
166
|
src: String,
|
|
83
167
|
alt: String,
|
|
@@ -95,19 +179,48 @@ staticRenderFns: [],
|
|
|
95
179
|
mounted: function () {
|
|
96
180
|
this.$emit('width', this.calculateWidth());
|
|
97
181
|
},
|
|
98
|
-
};
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
const _hoisted_1$i = ["src", "alt"];
|
|
185
|
+
|
|
186
|
+
function render$i(_ctx, _cache) {
|
|
187
|
+
return (openBlock(), createElementBlock("img", {
|
|
188
|
+
class: "w-full",
|
|
189
|
+
src: _ctx.src,
|
|
190
|
+
alt: _ctx.alt,
|
|
191
|
+
ref: "image"
|
|
192
|
+
}, null, 8 /* PROPS */, _hoisted_1$i))
|
|
193
|
+
}
|
|
99
194
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
195
|
+
script$i.render = render$i;
|
|
196
|
+
script$i.__file = "src/CardImage.vue";
|
|
197
|
+
|
|
198
|
+
var script$h = defineComponent({
|
|
199
|
+
name: "CardBody",
|
|
103
200
|
props: {
|
|
104
201
|
title: String,
|
|
105
202
|
},
|
|
106
|
-
};
|
|
203
|
+
});
|
|
107
204
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
205
|
+
const _hoisted_1$h = { class: "px-6 py-4" };
|
|
206
|
+
const _hoisted_2$c = { class: "font-bold text-xl mb-2" };
|
|
207
|
+
const _hoisted_3$8 = /*#__PURE__*/createTextVNode("text-gray-700.text-base");
|
|
208
|
+
|
|
209
|
+
function render$h(_ctx, _cache) {
|
|
210
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$h, [
|
|
211
|
+
createElementVNode("div", _hoisted_2$c, toDisplayString(_ctx.title), 1 /* TEXT */),
|
|
212
|
+
createElementVNode("p", null, [
|
|
213
|
+
_hoisted_3$8,
|
|
214
|
+
renderSlot(_ctx.$slots, "default")
|
|
215
|
+
])
|
|
216
|
+
]))
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
script$h.render = render$h;
|
|
220
|
+
script$h.__file = "src/CardBody.vue";
|
|
221
|
+
|
|
222
|
+
var script$g = defineComponent({
|
|
223
|
+
name: "Selector",
|
|
111
224
|
props: {
|
|
112
225
|
id: {
|
|
113
226
|
type: String,
|
|
@@ -129,11 +242,56 @@ staticRenderFns: [],
|
|
|
129
242
|
this.$emit('selected', this.selected);
|
|
130
243
|
},
|
|
131
244
|
},
|
|
132
|
-
};
|
|
245
|
+
});
|
|
133
246
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
247
|
+
const _hoisted_1$g = { class: "mb-4" };
|
|
248
|
+
const _hoisted_2$b = ["for"];
|
|
249
|
+
const _hoisted_3$7 = { class: "relative" };
|
|
250
|
+
const _hoisted_4$2 = ["id"];
|
|
251
|
+
const _hoisted_5$1 = ["value", "disabled"];
|
|
252
|
+
const _hoisted_6 = /*#__PURE__*/createElementVNode("div", { class: "pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-gray-700" }, [
|
|
253
|
+
/*#__PURE__*/createElementVNode("svg", {
|
|
254
|
+
class: "fill-current h-4 w-4",
|
|
255
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
256
|
+
viewBox: "0 0 20 20"
|
|
257
|
+
}, [
|
|
258
|
+
/*#__PURE__*/createElementVNode("path", { d: "M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z" })
|
|
259
|
+
])
|
|
260
|
+
], -1 /* HOISTED */);
|
|
261
|
+
|
|
262
|
+
function render$g(_ctx, _cache) {
|
|
263
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
264
|
+
createElementVNode("label", {
|
|
265
|
+
class: "block text-gray-700 text-sm font-bold mb-2",
|
|
266
|
+
for: _ctx.id
|
|
267
|
+
}, toDisplayString(_ctx.label), 9 /* TEXT, PROPS */, _hoisted_2$b),
|
|
268
|
+
createElementVNode("div", _hoisted_3$7, [
|
|
269
|
+
withDirectives(createElementVNode("select", {
|
|
270
|
+
class: "block appearance-none w-full bg-gray-200 border border-gray-200 text-gray-700 py-3 px-4 pr-8 rounded leading-tight focus:outline-none focus:bg-white focus:border-gray-500",
|
|
271
|
+
id: _ctx.id,
|
|
272
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => ((_ctx.selected) = $event)),
|
|
273
|
+
onChange: _cache[1] || (_cache[1] = (...args) => (_ctx.onChange && _ctx.onChange(...args)))
|
|
274
|
+
}, [
|
|
275
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.options, (option) => {
|
|
276
|
+
return (openBlock(), createElementBlock("option", {
|
|
277
|
+
key: option.value,
|
|
278
|
+
value: option.value,
|
|
279
|
+
disabled: option.disabled
|
|
280
|
+
}, toDisplayString(option.text), 9 /* TEXT, PROPS */, _hoisted_5$1))
|
|
281
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
282
|
+
], 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_4$2), [
|
|
283
|
+
[vModelSelect, _ctx.selected]
|
|
284
|
+
]),
|
|
285
|
+
_hoisted_6
|
|
286
|
+
])
|
|
287
|
+
]))
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
script$g.render = render$g;
|
|
291
|
+
script$g.__file = "src/Selector.vue";
|
|
292
|
+
|
|
293
|
+
var script$f = defineComponent({
|
|
294
|
+
name: "TextInput",
|
|
137
295
|
props: {
|
|
138
296
|
id: {
|
|
139
297
|
type: String,
|
|
@@ -157,11 +315,36 @@ staticRenderFns: [],
|
|
|
157
315
|
},
|
|
158
316
|
},
|
|
159
317
|
|
|
160
|
-
};
|
|
318
|
+
});
|
|
161
319
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
320
|
+
const _hoisted_1$f = { class: "mb-4" };
|
|
321
|
+
const _hoisted_2$a = ["for"];
|
|
322
|
+
const _hoisted_3$6 = ["id", "name", "required", "placeholder", "value"];
|
|
323
|
+
|
|
324
|
+
function render$f(_ctx, _cache) {
|
|
325
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
326
|
+
createElementVNode("label", {
|
|
327
|
+
class: "block text-gray-700 text-sm font-bold mb-2",
|
|
328
|
+
for: _ctx.id
|
|
329
|
+
}, toDisplayString(_ctx.label), 9 /* TEXT, PROPS */, _hoisted_2$a),
|
|
330
|
+
createElementVNode("input", {
|
|
331
|
+
class: "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline",
|
|
332
|
+
id: _ctx.id,
|
|
333
|
+
name: _ctx.id,
|
|
334
|
+
required: _ctx.required,
|
|
335
|
+
placeholder: _ctx.placeholder,
|
|
336
|
+
value: _ctx.text,
|
|
337
|
+
onInput: _cache[0] || (_cache[0] = (...args) => (_ctx.onInput && _ctx.onInput(...args))),
|
|
338
|
+
type: "text"
|
|
339
|
+
}, null, 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_3$6)
|
|
340
|
+
]))
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
script$f.render = render$f;
|
|
344
|
+
script$f.__file = "src/TextInput.vue";
|
|
345
|
+
|
|
346
|
+
var script$e = defineComponent({
|
|
347
|
+
name: "CheckBoxInput",
|
|
165
348
|
props: {
|
|
166
349
|
id: {
|
|
167
350
|
type: String,
|
|
@@ -184,12 +367,32 @@ staticRenderFns: [],
|
|
|
184
367
|
this.$emit('update', event.target.value);
|
|
185
368
|
},
|
|
186
369
|
},
|
|
370
|
+
});
|
|
187
371
|
|
|
188
|
-
};
|
|
372
|
+
const _hoisted_1$e = { class: "mb-4" };
|
|
373
|
+
const _hoisted_2$9 = ["id", "name", "required", "value"];
|
|
189
374
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
375
|
+
function render$e(_ctx, _cache) {
|
|
376
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$e, [
|
|
377
|
+
createElementVNode("input", {
|
|
378
|
+
id: _ctx.id,
|
|
379
|
+
name: _ctx.id,
|
|
380
|
+
required: _ctx.required,
|
|
381
|
+
value: _ctx.checked,
|
|
382
|
+
onInput: _cache[0] || (_cache[0] = (...args) => (_ctx.onInput && _ctx.onInput(...args))),
|
|
383
|
+
type: "checkbox",
|
|
384
|
+
"unchecked-value": "false"
|
|
385
|
+
}, null, 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_2$9),
|
|
386
|
+
createCommentVNode("TODO: This seems not to work"),
|
|
387
|
+
createCommentVNode("label(class=\"block text-gray-700 text-sm font-bold\" :for=\"id\") {{ label }}")
|
|
388
|
+
]))
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
script$e.render = render$e;
|
|
392
|
+
script$e.__file = "src/CheckBoxInput.vue";
|
|
393
|
+
|
|
394
|
+
var script$d = defineComponent({
|
|
395
|
+
name: "NumberInput",
|
|
193
396
|
props: {
|
|
194
397
|
id: {
|
|
195
398
|
type: String,
|
|
@@ -219,11 +422,38 @@ staticRenderFns: [],
|
|
|
219
422
|
},
|
|
220
423
|
},
|
|
221
424
|
|
|
222
|
-
};
|
|
425
|
+
});
|
|
426
|
+
|
|
427
|
+
const _hoisted_1$d = { class: "mb-4" };
|
|
428
|
+
const _hoisted_2$8 = ["for"];
|
|
429
|
+
const _hoisted_3$5 = ["id", "name", "required", "placeholder", "value", "min", "step"];
|
|
223
430
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
431
|
+
function render$d(_ctx, _cache) {
|
|
432
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
433
|
+
createElementVNode("label", {
|
|
434
|
+
class: "block text-gray-700 text-sm font-bold mb-2",
|
|
435
|
+
for: _ctx.id
|
|
436
|
+
}, toDisplayString(_ctx.label), 9 /* TEXT, PROPS */, _hoisted_2$8),
|
|
437
|
+
createElementVNode("input", {
|
|
438
|
+
class: "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline",
|
|
439
|
+
id: _ctx.id,
|
|
440
|
+
name: _ctx.id,
|
|
441
|
+
required: _ctx.required,
|
|
442
|
+
placeholder: _ctx.placeholder,
|
|
443
|
+
value: _ctx.amount,
|
|
444
|
+
min: _ctx.min,
|
|
445
|
+
step: _ctx.step,
|
|
446
|
+
onInput: _cache[0] || (_cache[0] = (...args) => (_ctx.onInput && _ctx.onInput(...args))),
|
|
447
|
+
type: "number"
|
|
448
|
+
}, null, 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_3$5)
|
|
449
|
+
]))
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
script$d.render = render$d;
|
|
453
|
+
script$d.__file = "src/NumberInput.vue";
|
|
454
|
+
|
|
455
|
+
var script$c = defineComponent({
|
|
456
|
+
name: "ImageInput",
|
|
227
457
|
props: {
|
|
228
458
|
id: {
|
|
229
459
|
type: String,
|
|
@@ -249,18 +479,68 @@ staticRenderFns: [],
|
|
|
249
479
|
this.$emit('update', event.target.files[0]);
|
|
250
480
|
},
|
|
251
481
|
},
|
|
482
|
+
});
|
|
252
483
|
|
|
253
|
-
};
|
|
484
|
+
const _hoisted_1$c = { class: "mb-4" };
|
|
485
|
+
const _hoisted_2$7 = ["for"];
|
|
486
|
+
const _hoisted_3$4 = ["id", "name", "required", "placeholder", "value", "drop-placeholder"];
|
|
254
487
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
488
|
+
function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
489
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
490
|
+
createElementVNode("label", {
|
|
491
|
+
class: "block text-gray-700 text-sm font-bold mb-2",
|
|
492
|
+
for: _ctx.id
|
|
493
|
+
}, toDisplayString(_ctx.label), 9 /* TEXT, PROPS */, _hoisted_2$7),
|
|
494
|
+
createElementVNode("input", {
|
|
495
|
+
class: "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline",
|
|
496
|
+
id: _ctx.id,
|
|
497
|
+
name: _ctx.id,
|
|
498
|
+
required: _ctx.required,
|
|
499
|
+
placeholder: _ctx.placeholder,
|
|
500
|
+
value: _ctx.file,
|
|
501
|
+
"drop-placeholder": _ctx.dropPlaceholder,
|
|
502
|
+
onInput: _cache[0] || (_cache[0] = (...args) => (_ctx.onInput && _ctx.onInput(...args))),
|
|
503
|
+
type: "file",
|
|
504
|
+
accept: "image/*"
|
|
505
|
+
}, null, 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_3$4)
|
|
506
|
+
]))
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
script$c.render = render$c;
|
|
510
|
+
script$c.__file = "src/ImageInput.vue";
|
|
511
|
+
|
|
512
|
+
var script$b = defineComponent({
|
|
513
|
+
name: "CardGrid"
|
|
514
|
+
});
|
|
515
|
+
|
|
516
|
+
const _hoisted_1$b = { class: "flex flex-wrap lg:justify-between justify-center align-content:center" };
|
|
517
|
+
|
|
518
|
+
function render$b(_ctx, _cache) {
|
|
519
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
520
|
+
renderSlot(_ctx.$slots, "default")
|
|
521
|
+
]))
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
script$b.render = render$b;
|
|
525
|
+
script$b.__file = "src/CardGrid.vue";
|
|
526
|
+
|
|
527
|
+
var script$a = defineComponent({
|
|
528
|
+
name: "Container"
|
|
529
|
+
});
|
|
530
|
+
|
|
531
|
+
const _hoisted_1$a = { class: "container mx-auto" };
|
|
532
|
+
|
|
533
|
+
function render$a(_ctx, _cache) {
|
|
534
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
535
|
+
renderSlot(_ctx.$slots, "default")
|
|
536
|
+
]))
|
|
537
|
+
}
|
|
260
538
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
539
|
+
script$a.render = render$a;
|
|
540
|
+
script$a.__file = "src/Container.vue";
|
|
541
|
+
|
|
542
|
+
var script$9 = defineComponent({
|
|
543
|
+
name: "MobileNavigationLink",
|
|
264
544
|
props: {
|
|
265
545
|
text: {
|
|
266
546
|
type: String,
|
|
@@ -280,24 +560,79 @@ staticRenderFns: [],
|
|
|
280
560
|
return 'text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium'
|
|
281
561
|
},
|
|
282
562
|
},
|
|
283
|
-
};
|
|
563
|
+
});
|
|
564
|
+
|
|
565
|
+
const _hoisted_1$9 = ["href"];
|
|
566
|
+
|
|
567
|
+
function render$9(_ctx, _cache) {
|
|
568
|
+
return (openBlock(), createElementBlock("a", {
|
|
569
|
+
href: _ctx.href,
|
|
570
|
+
class: normalizeClass(_ctx.linkClass),
|
|
571
|
+
"aria-current": "page"
|
|
572
|
+
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$9))
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
script$9.render = render$9;
|
|
576
|
+
script$9.__file = "src/MobileNavigationLink.vue";
|
|
284
577
|
|
|
285
|
-
var
|
|
286
|
-
|
|
287
|
-
staticRenderFns: [],
|
|
578
|
+
var script$8 = defineComponent({
|
|
579
|
+
name: "MobileNavigationLinks",
|
|
288
580
|
components: {
|
|
289
|
-
MobileNavigationLink:
|
|
581
|
+
MobileNavigationLink: script$9,
|
|
290
582
|
},
|
|
291
583
|
props: {
|
|
292
584
|
links: {
|
|
293
585
|
type: Array,
|
|
294
586
|
},
|
|
587
|
+
open: {
|
|
588
|
+
type: Boolean,
|
|
589
|
+
default: false,
|
|
590
|
+
},
|
|
295
591
|
},
|
|
592
|
+
});
|
|
593
|
+
|
|
594
|
+
const _hoisted_1$8 = {
|
|
595
|
+
key: 0,
|
|
596
|
+
class: "sm:hidden",
|
|
597
|
+
id: "mobile-menu"
|
|
296
598
|
};
|
|
599
|
+
const _hoisted_2$6 = { class: "px-2 pt-2 pb-3 space-y-1" };
|
|
600
|
+
|
|
601
|
+
function render$8(_ctx, _cache) {
|
|
602
|
+
const _component_mobile_navigation_link = resolveComponent("mobile-navigation-link");
|
|
297
603
|
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
604
|
+
return (openBlock(), createBlock(Transition, {
|
|
605
|
+
"enter-active-class": "transition-all",
|
|
606
|
+
"leave-active-class": "transition-all",
|
|
607
|
+
"enter-class": "opacity-0 scale-70",
|
|
608
|
+
"enter-to-class": "opacity-100 scale-100",
|
|
609
|
+
"leave-class": "opacity-100 scale-100",
|
|
610
|
+
"leave-to-class": "opacity-0 scale-70"
|
|
611
|
+
}, {
|
|
612
|
+
default: withCtx(() => [
|
|
613
|
+
(_ctx.open)
|
|
614
|
+
? (openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
615
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
616
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.links, (link) => {
|
|
617
|
+
return (openBlock(), createBlock(_component_mobile_navigation_link, {
|
|
618
|
+
key: link.id,
|
|
619
|
+
href: link.href,
|
|
620
|
+
text: link.text
|
|
621
|
+
}, null, 8 /* PROPS */, ["href", "text"]))
|
|
622
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
623
|
+
])
|
|
624
|
+
]))
|
|
625
|
+
: createCommentVNode("v-if", true)
|
|
626
|
+
]),
|
|
627
|
+
_: 1 /* STABLE */
|
|
628
|
+
}))
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
script$8.render = render$8;
|
|
632
|
+
script$8.__file = "src/MobileNavigationLinks.vue";
|
|
633
|
+
|
|
634
|
+
var script$7 = defineComponent({
|
|
635
|
+
name: "NavigationLink",
|
|
301
636
|
props: {
|
|
302
637
|
text: {
|
|
303
638
|
type: String,
|
|
@@ -317,30 +652,84 @@ staticRenderFns: [],
|
|
|
317
652
|
return 'text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium'
|
|
318
653
|
},
|
|
319
654
|
},
|
|
320
|
-
};
|
|
655
|
+
});
|
|
656
|
+
|
|
657
|
+
const _hoisted_1$7 = ["href"];
|
|
321
658
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
659
|
+
function render$7(_ctx, _cache) {
|
|
660
|
+
return (openBlock(), createElementBlock("a", {
|
|
661
|
+
href: _ctx.href,
|
|
662
|
+
class: normalizeClass(_ctx.linkClass),
|
|
663
|
+
"aria-current": "page"
|
|
664
|
+
}, toDisplayString(_ctx.text), 11 /* TEXT, CLASS, PROPS */, _hoisted_1$7))
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
script$7.render = render$7;
|
|
668
|
+
script$7.__file = "src/NavigationLink.vue";
|
|
669
|
+
|
|
670
|
+
var script$6 = defineComponent({
|
|
671
|
+
name: "NavigationLinks",
|
|
325
672
|
components: {
|
|
326
|
-
NavigationLink:
|
|
673
|
+
NavigationLink: script$7,
|
|
327
674
|
},
|
|
328
675
|
props: {
|
|
329
676
|
links: {
|
|
330
677
|
type: Array,
|
|
331
678
|
},
|
|
332
679
|
},
|
|
333
|
-
};
|
|
680
|
+
});
|
|
334
681
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
staticRenderFns: [function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"flex-shrink-0 flex items-center"},[_c('img',{staticClass:"block lg:hidden h-8 w-auto",attrs:{"src":"https://tailwindui.com/img/logos/workflow-mark-indigo-500.svg","alt":"Workflow"}}),_vm._v(" "),_c('img',{staticClass:"hidden lg:block h-8 w-auto",attrs:{"src":"https://tailwindui.com/img/logos/workflow-logo-indigo-500-mark-white-text.svg","alt":"Workflow"}})])}],
|
|
338
|
-
stub: 1
|
|
339
|
-
};
|
|
682
|
+
const _hoisted_1$6 = { class: "hidden sm:block sm:ml-6" };
|
|
683
|
+
const _hoisted_2$5 = { class: "flex space-x-4" };
|
|
340
684
|
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
685
|
+
function render$6(_ctx, _cache) {
|
|
686
|
+
const _component_navigation_link = resolveComponent("navigation-link");
|
|
687
|
+
|
|
688
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
689
|
+
createElementVNode("div", _hoisted_2$5, [
|
|
690
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.links, (link) => {
|
|
691
|
+
return (openBlock(), createBlock(_component_navigation_link, {
|
|
692
|
+
key: link.id,
|
|
693
|
+
href: link.href,
|
|
694
|
+
text: link.text
|
|
695
|
+
}, null, 8 /* PROPS */, ["href", "text"]))
|
|
696
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
697
|
+
])
|
|
698
|
+
]))
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
script$6.render = render$6;
|
|
702
|
+
script$6.__file = "src/NavigationLinks.vue";
|
|
703
|
+
|
|
704
|
+
var script$5 = defineComponent({
|
|
705
|
+
name: "NavbarTitle"
|
|
706
|
+
});
|
|
707
|
+
|
|
708
|
+
const _hoisted_1$5 = { class: "flex-shrink-0 flex items-center" };
|
|
709
|
+
const _hoisted_2$4 = /*#__PURE__*/createElementVNode("img", {
|
|
710
|
+
class: "block lg:hidden h-8 w-auto",
|
|
711
|
+
src: "https://tailwindui.com/img/logos/workflow-mark-indigo-500.svg",
|
|
712
|
+
alt: "Workflow"
|
|
713
|
+
}, null, -1 /* HOISTED */);
|
|
714
|
+
const _hoisted_3$3 = /*#__PURE__*/createElementVNode("img", {
|
|
715
|
+
class: "hidden lg:block h-8 w-auto",
|
|
716
|
+
src: "https://tailwindui.com/img/logos/workflow-logo-indigo-500-mark-white-text.svg",
|
|
717
|
+
alt: "Workflow"
|
|
718
|
+
}, null, -1 /* HOISTED */);
|
|
719
|
+
const _hoisted_4$1 = [
|
|
720
|
+
_hoisted_2$4,
|
|
721
|
+
_hoisted_3$3
|
|
722
|
+
];
|
|
723
|
+
|
|
724
|
+
function render$5(_ctx, _cache) {
|
|
725
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$5, _hoisted_4$1))
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
script$5.render = render$5;
|
|
729
|
+
script$5.__file = "src/NavbarTitle.vue";
|
|
730
|
+
|
|
731
|
+
var script$4 = defineComponent({
|
|
732
|
+
name: "RightContent",
|
|
344
733
|
props: {
|
|
345
734
|
locale: {
|
|
346
735
|
type: String,
|
|
@@ -349,23 +738,79 @@ staticRenderFns: [],
|
|
|
349
738
|
type: String,
|
|
350
739
|
},
|
|
351
740
|
},
|
|
352
|
-
};
|
|
741
|
+
});
|
|
353
742
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
743
|
+
const _hoisted_1$4 = { class: "absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0" };
|
|
744
|
+
const _hoisted_2$3 = { class: "bg-gray-800 p-1 text-gray-400" };
|
|
745
|
+
const _hoisted_3$2 = { class: "bg-gray-800 p-1 text-gray-400" };
|
|
746
|
+
|
|
747
|
+
function render$4(_ctx, _cache) {
|
|
748
|
+
return (openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
749
|
+
createElementVNode("span", _hoisted_2$3, toDisplayString(_ctx.$i18n.locale), 1 /* TEXT */),
|
|
750
|
+
createElementVNode("span", _hoisted_3$2, toDisplayString(_ctx.currentUserEmail), 1 /* TEXT */)
|
|
751
|
+
]))
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
script$4.render = render$4;
|
|
755
|
+
script$4.__file = "src/RightContent.vue";
|
|
756
|
+
|
|
757
|
+
var script$3 = defineComponent({
|
|
758
|
+
name: "MobileMenuButton",
|
|
759
|
+
props: {
|
|
760
|
+
open: {
|
|
761
|
+
type: Boolean,
|
|
762
|
+
default: false
|
|
763
|
+
},
|
|
764
|
+
},
|
|
765
|
+
methods: {
|
|
766
|
+
onClick(evt) {
|
|
767
|
+
this.$emit('click', evt);
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
});
|
|
359
771
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
772
|
+
const _hoisted_1$3 = /*#__PURE__*/createElementVNode("svg", {
|
|
773
|
+
class: "block h-6 w-6",
|
|
774
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
775
|
+
fill: "none",
|
|
776
|
+
viewBox: "0 0 24 24",
|
|
777
|
+
stroke: "currentColor"
|
|
778
|
+
}, [
|
|
779
|
+
/*#__PURE__*/createElementVNode("path", {
|
|
780
|
+
"stroke-linecap": "round",
|
|
781
|
+
"stroke-linejoin": "round",
|
|
782
|
+
"stroke-width": "2",
|
|
783
|
+
d: "M4 6h16M4 12h16M4 18h16"
|
|
784
|
+
})
|
|
785
|
+
], -1 /* HOISTED */);
|
|
786
|
+
const _hoisted_2$2 = [
|
|
787
|
+
_hoisted_1$3
|
|
788
|
+
];
|
|
789
|
+
|
|
790
|
+
function render$3(_ctx, _cache) {
|
|
791
|
+
return (openBlock(), createElementBlock("button", {
|
|
792
|
+
class: "inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white",
|
|
793
|
+
type: "button",
|
|
794
|
+
onClick: _cache[0] || (_cache[0] = (...args) => (_ctx.onClick && _ctx.onClick(...args)))
|
|
795
|
+
}, _hoisted_2$2))
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
script$3.render = render$3;
|
|
799
|
+
script$3.__file = "src/MobileMenuButton.vue";
|
|
800
|
+
|
|
801
|
+
var script$2 = defineComponent({
|
|
802
|
+
name: "Navbar",
|
|
363
803
|
components: {
|
|
364
|
-
NavbarTitle:
|
|
365
|
-
NavigationLinks:
|
|
366
|
-
MobileNavigationLinks:
|
|
367
|
-
RightContent:
|
|
368
|
-
MobileMenuButton:
|
|
804
|
+
NavbarTitle: script$5,
|
|
805
|
+
NavigationLinks: script$6,
|
|
806
|
+
MobileNavigationLinks: script$8,
|
|
807
|
+
RightContent: script$4,
|
|
808
|
+
MobileMenuButton: script$3,
|
|
809
|
+
},
|
|
810
|
+
data() {
|
|
811
|
+
return {
|
|
812
|
+
mobileMenuOpen: false,
|
|
813
|
+
}
|
|
369
814
|
},
|
|
370
815
|
props: {
|
|
371
816
|
links: {
|
|
@@ -378,7 +823,108 @@ staticRenderFns: [],
|
|
|
378
823
|
type: String,
|
|
379
824
|
},
|
|
380
825
|
},
|
|
381
|
-
|
|
826
|
+
methods: {
|
|
827
|
+
onMobileMenuClick() {
|
|
828
|
+
this.mobileMenuOpen = !this.mobileMenuOpen;
|
|
829
|
+
},
|
|
830
|
+
}
|
|
831
|
+
});
|
|
832
|
+
|
|
833
|
+
const _hoisted_1$2 = { class: "bg-gray-800" };
|
|
834
|
+
const _hoisted_2$1 = { class: "max-w-7xl mx-auto px-2 sm:px-6 lg:px-8" };
|
|
835
|
+
const _hoisted_3$1 = { class: "relative flex items-center justify-between h-16" };
|
|
836
|
+
const _hoisted_4 = { class: "absolute inset-y-0 left-0 flex items-center sm:hidden" };
|
|
837
|
+
const _hoisted_5 = { class: "flex-1 flex items-center justify-center sm:items-stretch sm:justify-start" };
|
|
838
|
+
|
|
839
|
+
function render$2(_ctx, _cache) {
|
|
840
|
+
const _component_mobile_menu_button = resolveComponent("mobile-menu-button");
|
|
841
|
+
const _component_navbar_title = resolveComponent("navbar-title");
|
|
842
|
+
const _component_navigation_links = resolveComponent("navigation-links");
|
|
843
|
+
const _component_right_content = resolveComponent("right-content");
|
|
844
|
+
const _component_mobile_navigation_links = resolveComponent("mobile-navigation-links");
|
|
845
|
+
|
|
846
|
+
return (openBlock(), createElementBlock("nav", _hoisted_1$2, [
|
|
847
|
+
createElementVNode("div", _hoisted_2$1, [
|
|
848
|
+
createElementVNode("div", _hoisted_3$1, [
|
|
849
|
+
createElementVNode("div", _hoisted_4, [
|
|
850
|
+
createVNode(_component_mobile_menu_button, {
|
|
851
|
+
onClick: _ctx.onMobileMenuClick,
|
|
852
|
+
open: _ctx.mobileMenuOpen
|
|
853
|
+
}, null, 8 /* PROPS */, ["onClick", "open"])
|
|
854
|
+
]),
|
|
855
|
+
createElementVNode("div", _hoisted_5, [
|
|
856
|
+
createVNode(_component_navbar_title),
|
|
857
|
+
createVNode(_component_navigation_links, { links: _ctx.links }, null, 8 /* PROPS */, ["links"])
|
|
858
|
+
]),
|
|
859
|
+
createVNode(_component_right_content, {
|
|
860
|
+
locale: _ctx.locale,
|
|
861
|
+
"current-user-email": _ctx.currentUserEmail
|
|
862
|
+
}, null, 8 /* PROPS */, ["locale", "current-user-email"])
|
|
863
|
+
])
|
|
864
|
+
]),
|
|
865
|
+
createVNode(_component_mobile_navigation_links, {
|
|
866
|
+
links: _ctx.links,
|
|
867
|
+
open: _ctx.mobileMenuOpen
|
|
868
|
+
}, null, 8 /* PROPS */, ["links", "open"])
|
|
869
|
+
]))
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
script$2.render = render$2;
|
|
873
|
+
script$2.__file = "src/Navbar.vue";
|
|
874
|
+
|
|
875
|
+
var script$1 = defineComponent({
|
|
876
|
+
name: "StyledTable"
|
|
877
|
+
});
|
|
878
|
+
|
|
879
|
+
const _hoisted_1$1 = { class: "w-full border-collapse" };
|
|
880
|
+
|
|
881
|
+
function render$1(_ctx, _cache) {
|
|
882
|
+
return (openBlock(), createElementBlock("table", _hoisted_1$1, [
|
|
883
|
+
renderSlot(_ctx.$slots, "default")
|
|
884
|
+
]))
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
script$1.render = render$1;
|
|
888
|
+
script$1.__file = "src/StyledTable.vue";
|
|
889
|
+
|
|
890
|
+
var script = defineComponent({
|
|
891
|
+
name: "Pagination",
|
|
892
|
+
props: {
|
|
893
|
+
previousLabel: String,
|
|
894
|
+
nextLabel: String,
|
|
895
|
+
showPrevious: Boolean,
|
|
896
|
+
previousLink: String,
|
|
897
|
+
nextLink: String,
|
|
898
|
+
},
|
|
899
|
+
components: {
|
|
900
|
+
RegularButton: script$m
|
|
901
|
+
}
|
|
902
|
+
});
|
|
903
|
+
|
|
904
|
+
const _hoisted_1 = { class: "flex justify-between mt-4" };
|
|
905
|
+
const _hoisted_2 = ["href"];
|
|
906
|
+
const _hoisted_3 = ["href"];
|
|
907
|
+
|
|
908
|
+
function render(_ctx, _cache) {
|
|
909
|
+
const _component_regular_button = resolveComponent("regular-button");
|
|
910
|
+
|
|
911
|
+
return (openBlock(), createElementBlock("div", _hoisted_1, [
|
|
912
|
+
(_ctx.showPrevious)
|
|
913
|
+
? (openBlock(), createElementBlock("a", {
|
|
914
|
+
key: 0,
|
|
915
|
+
href: _ctx.previousLink
|
|
916
|
+
}, [
|
|
917
|
+
createVNode(_component_regular_button, { text: _ctx.previousLabel }, null, 8 /* PROPS */, ["text"])
|
|
918
|
+
], 8 /* PROPS */, _hoisted_2))
|
|
919
|
+
: createCommentVNode("v-if", true),
|
|
920
|
+
createElementVNode("a", { href: _ctx.nextLink }, [
|
|
921
|
+
createVNode(_component_regular_button, { text: _ctx.nextLabel }, null, 8 /* PROPS */, ["text"])
|
|
922
|
+
], 8 /* PROPS */, _hoisted_3)
|
|
923
|
+
]))
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
script.render = render;
|
|
927
|
+
script.__file = "src/Pagination.vue";
|
|
382
928
|
|
|
383
|
-
export { Card, CardBody, CardGrid, CardImage, CheckBoxInput, DangerButton, ImageInput, Loading, Navbar, NumberInput, RegularButton, ResetButton, SecondaryButton, SectionTitle, Selector, SubmitButton, TextInput };
|
|
929
|
+
export { script$j as Card, script$h as CardBody, script$b as CardGrid, script$i as CardImage, script$e as CheckBoxInput, script$a as Container, script$k as DangerButton, script$c as ImageInput, script$p as Loading, script$2 as Navbar, script$d as NumberInput, script as Pagination, script$m as RegularButton, script$o as ResetButton, script$l as SecondaryButton, script$q as SectionTitle, script$g as Selector, script$1 as StyledTable, script$n as SubmitButton, script$f as TextInput };
|
|
384
930
|
//# sourceMappingURL=index.esm.js.map
|