@frollo/frollo-web-ui 8.0.4 → 8.1.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/cjs/index.js +181 -41
- package/esm/fw-accordion.js +1 -1
- package/esm/fw-animations.js +2 -2
- package/esm/{fw-button-D8GUq_wg.js → fw-button-DdxvSBFa.js} +1 -1
- package/esm/fw-button.js +3 -3
- package/esm/fw-date-picker.js +1 -1
- package/esm/fw-drawer.js +3 -3
- package/esm/{fw-dropdown-YXj5yyty.js → fw-dropdown-BcnKbaW1.js} +2 -2
- package/esm/fw-dropdown.js +3 -3
- package/esm/{fw-image-DAUZLkf4.js → fw-image-DedhILQL.js} +1 -1
- package/esm/fw-image.js +2 -2
- package/esm/{fw-input-CPU_C8IU.js → fw-input-BPFFMpc2.js} +7 -1
- package/esm/fw-input.js +1 -1
- package/esm/{fw-loading-spinner-AsWqai_A.js → fw-loading-spinner-BEzZf1xe.js} +1 -1
- package/esm/fw-modal.js +3 -3
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/fw-provider-list.js +8 -8
- package/esm/fw-sidebar-menu.js +3 -3
- package/esm/{fw-table-row-7vke3KXB.js → fw-table-row-DhDvTJHm.js} +168 -32
- package/esm/fw-table.js +7 -2
- package/esm/{fw-tag-BVEv8PMh.js → fw-tag-508OLlZR.js} +2 -2
- package/esm/fw-tag.js +4 -4
- package/esm/fw-toast.js +1 -1
- package/esm/fw-transactions-card.js +2 -2
- package/esm/{index-B-9TSbb0.js → index-svDiDkSU.js} +1 -1
- package/esm/index.js +8 -8
- package/frollo-web-ui.esm.js +181 -41
- package/index.d.ts +36 -1
- package/package.json +1 -1
- package/types/components/fw-input/fw-input.vue.d.ts +9 -0
- package/types/components/fw-table/fw-table.vue.d.ts +25 -1
- package/types/components/fw-table/index.types.d.ts +2 -0
- package/web-components/index.js +183 -43
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { g as render$3, h as render$4 } from './index-
|
|
2
|
-
import { defineComponent, computed, ref, onMounted, useCssVars, pushScopeId, popScopeId, resolveComponent, openBlock, createElementBlock, normalizeClass,
|
|
1
|
+
import { g as render$3, h as render$4, i as render$5, f as render$6 } from './index-svDiDkSU.js';
|
|
2
|
+
import { defineComponent, computed, ref, onMounted, useCssVars, pushScopeId, popScopeId, createElementVNode, resolveComponent, openBlock, createElementBlock, normalizeClass, renderSlot, createCommentVNode, Fragment, renderList, withKeys, toDisplayString, createBlock, createVNode, withCtx } from 'vue';
|
|
3
3
|
import { u as useColours } from './get-root-colours-DYEoJPEb.js';
|
|
4
4
|
import { s as script$2 } from './fw-loading-bar-DThRjdw1.js';
|
|
5
|
+
import { s as script$3 } from './fw-button-DdxvSBFa.js';
|
|
6
|
+
import { s as script$4 } from './fw-input-BPFFMpc2.js';
|
|
5
7
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
6
8
|
|
|
7
9
|
var __default__ = defineComponent({
|
|
@@ -9,11 +11,16 @@ var __default__ = defineComponent({
|
|
|
9
11
|
components: {
|
|
10
12
|
ArrowSortSvg: render$3,
|
|
11
13
|
ArrowDownSvg: render$4,
|
|
12
|
-
|
|
14
|
+
ChevronLeftSvg: render$5,
|
|
15
|
+
ChevronRightSvg: render$6,
|
|
16
|
+
FwLoadingBar: script$2,
|
|
17
|
+
FwButton: script$3,
|
|
18
|
+
FwInput: script$4
|
|
13
19
|
},
|
|
14
20
|
emits: [/** Fired when a row is clicked with row data */
|
|
15
21
|
'rowClicked', /** Fired when a column is sorted */
|
|
16
|
-
'columnSorted'
|
|
22
|
+
'columnSorted', /** Fired when a page number or arrow is clicked */
|
|
23
|
+
'pageChanged'],
|
|
17
24
|
props: {
|
|
18
25
|
items: {
|
|
19
26
|
type: Array,
|
|
@@ -37,6 +44,13 @@ var __default__ = defineComponent({
|
|
|
37
44
|
},
|
|
38
45
|
autoSortColumn: {
|
|
39
46
|
type: Number
|
|
47
|
+
},
|
|
48
|
+
enablePagination: {
|
|
49
|
+
type: Boolean,
|
|
50
|
+
"default": false
|
|
51
|
+
},
|
|
52
|
+
totalAmount: {
|
|
53
|
+
type: Number
|
|
40
54
|
}
|
|
41
55
|
},
|
|
42
56
|
setup: function setup(props, ctx) {
|
|
@@ -46,6 +60,35 @@ var __default__ = defineComponent({
|
|
|
46
60
|
var sortBy = ref('');
|
|
47
61
|
var sortDirection = ref('asc');
|
|
48
62
|
var currentSortedColumn = ref('');
|
|
63
|
+
var currentPage = ref('1');
|
|
64
|
+
var maxDisplayedPages = 7;
|
|
65
|
+
var pages = computed(function () {
|
|
66
|
+
if (!props.totalAmount) return;
|
|
67
|
+
var currentPageNumber = Number(currentPage.value);
|
|
68
|
+
var pageButtons = [];
|
|
69
|
+
var pageNumberLimit = currentPageNumber + maxDisplayedPages - 1;
|
|
70
|
+
var maxPageNumber = props.totalAmount - currentPageNumber < maxDisplayedPages ? props.totalAmount : pageNumberLimit + 1;
|
|
71
|
+
for (var i = currentPageNumber; i < maxPageNumber + 1; i++) {
|
|
72
|
+
pageButtons.push({
|
|
73
|
+
pageNumber: i.toString(),
|
|
74
|
+
selected: i.toString() === currentPage.value
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
if (props.totalAmount === maxDisplayedPages) {
|
|
78
|
+
return pageButtons;
|
|
79
|
+
}
|
|
80
|
+
if (props.totalAmount - currentPageNumber > maxDisplayedPages) {
|
|
81
|
+
pageButtons.push({
|
|
82
|
+
pageNumber: '...',
|
|
83
|
+
selected: false
|
|
84
|
+
}, {
|
|
85
|
+
pageNumber: props.totalAmount.toString(),
|
|
86
|
+
selected: false
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
ctx.emit('pageChanged', currentPage.value);
|
|
90
|
+
return pageButtons;
|
|
91
|
+
});
|
|
49
92
|
onMounted(function () {
|
|
50
93
|
if (Number(props.autoSortColumn) >= 0) {
|
|
51
94
|
sortColumn(columns.value[Number(props.autoSortColumn)], false);
|
|
@@ -119,6 +162,16 @@ var __default__ = defineComponent({
|
|
|
119
162
|
var rowClicked = function rowClicked(row) {
|
|
120
163
|
if (props.clickableRows) ctx.emit('rowClicked', row);
|
|
121
164
|
};
|
|
165
|
+
var pageNumberClick = function pageNumberClick(pageNumber) {
|
|
166
|
+
if (pageNumber === '...') {
|
|
167
|
+
currentPage.value = (Number(currentPage.value) + maxDisplayedPages + 1).toString();
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
currentPage.value = pageNumber;
|
|
171
|
+
};
|
|
172
|
+
var pageArrowClick = function pageArrowClick(next) {
|
|
173
|
+
currentPage.value = Number(currentPage.value) + (next ? 1 : -1).toString();
|
|
174
|
+
};
|
|
122
175
|
return {
|
|
123
176
|
columns: columns,
|
|
124
177
|
sortBy: sortBy,
|
|
@@ -131,14 +184,18 @@ var __default__ = defineComponent({
|
|
|
131
184
|
isColumnSortable: isColumnSortable,
|
|
132
185
|
isDisabled: isDisabled,
|
|
133
186
|
rowClicked: rowClicked,
|
|
134
|
-
bgHoverColor: bgHoverColor
|
|
187
|
+
bgHoverColor: bgHoverColor,
|
|
188
|
+
currentPage: currentPage,
|
|
189
|
+
pages: pages,
|
|
190
|
+
pageNumberClick: pageNumberClick,
|
|
191
|
+
pageArrowClick: pageArrowClick
|
|
135
192
|
};
|
|
136
193
|
}
|
|
137
194
|
});
|
|
138
195
|
var __injectCSSVars__ = function __injectCSSVars__() {
|
|
139
196
|
useCssVars(function (_ctx) {
|
|
140
197
|
return {
|
|
141
|
-
"
|
|
198
|
+
"c795d904": _ctx.bgHoverColor
|
|
142
199
|
};
|
|
143
200
|
});
|
|
144
201
|
};
|
|
@@ -149,42 +206,62 @@ __default__.setup = __setup__ ? function (props, ctx) {
|
|
|
149
206
|
} : __injectCSSVars__;
|
|
150
207
|
|
|
151
208
|
var _withScopeId = function _withScopeId(n) {
|
|
152
|
-
return pushScopeId("data-v-
|
|
209
|
+
return pushScopeId("data-v-84c515f0"), n = n(), popScopeId(), n;
|
|
210
|
+
};
|
|
211
|
+
var _hoisted_1$2 = {
|
|
212
|
+
"class": "flex flex-col"
|
|
153
213
|
};
|
|
154
|
-
var
|
|
155
|
-
var
|
|
214
|
+
var _hoisted_2$1 = ["aria-busy"];
|
|
215
|
+
var _hoisted_3$1 = {
|
|
156
216
|
"class": "text-p2 border-b border-grey-40"
|
|
157
217
|
};
|
|
158
|
-
var
|
|
159
|
-
var
|
|
218
|
+
var _hoisted_4 = ["tabindex", "onKeydown", "onClick"];
|
|
219
|
+
var _hoisted_5 = {
|
|
160
220
|
"class": "flex flex-row items-center"
|
|
161
221
|
};
|
|
162
|
-
var
|
|
222
|
+
var _hoisted_6 = {
|
|
163
223
|
key: 0,
|
|
164
224
|
"class": "ml-1 flex items-center justify-center w-5"
|
|
165
225
|
};
|
|
166
|
-
var
|
|
226
|
+
var _hoisted_7 = {
|
|
167
227
|
"class": "text-p2 bg-white font-light"
|
|
168
228
|
};
|
|
169
|
-
var
|
|
229
|
+
var _hoisted_8 = {
|
|
170
230
|
key: 0,
|
|
171
231
|
"class": "py-4 pl-5 pr-3 text-left"
|
|
172
232
|
};
|
|
173
|
-
var
|
|
233
|
+
var _hoisted_9 = {
|
|
174
234
|
key: 0,
|
|
175
235
|
"class": "py-4 pl-5 pr-3 text-left"
|
|
176
236
|
};
|
|
177
|
-
var
|
|
178
|
-
var
|
|
237
|
+
var _hoisted_10 = ["onClick", "tabindex", "onKeydown"];
|
|
238
|
+
var _hoisted_11 = ["innerHTML"];
|
|
239
|
+
var _hoisted_12 = {
|
|
240
|
+
key: 0,
|
|
241
|
+
"class": "flex flex-row h-[44px] mt-8 px-64 space-x-2"
|
|
242
|
+
};
|
|
243
|
+
var _hoisted_13 = {
|
|
244
|
+
"class": "h-4 w-4"
|
|
245
|
+
};
|
|
246
|
+
var _hoisted_14 = /*#__PURE__*/_withScopeId(function () {
|
|
247
|
+
return /*#__PURE__*/createElementVNode("strong", {
|
|
248
|
+
"class": "whitespace-nowrap px-4 self-center"
|
|
249
|
+
}, "Go to", -1);
|
|
250
|
+
});
|
|
179
251
|
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
252
|
+
var _ctx$options;
|
|
180
253
|
var _component_ArrowSortSvg = resolveComponent("ArrowSortSvg");
|
|
181
254
|
var _component_ArrowDownSvg = resolveComponent("ArrowDownSvg");
|
|
182
255
|
var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
|
|
183
|
-
|
|
184
|
-
|
|
256
|
+
var _component_ChevronLeftSvg = resolveComponent("ChevronLeftSvg");
|
|
257
|
+
var _component_FwButton = resolveComponent("FwButton");
|
|
258
|
+
var _component_ChevronRightSvg = resolveComponent("ChevronRightSvg");
|
|
259
|
+
var _component_FwInput = resolveComponent("FwInput");
|
|
260
|
+
return openBlock(), createElementBlock("div", _hoisted_1$2, [createElementVNode("table", {
|
|
261
|
+
"class": normalizeClass(["fw-table table-auto table-responsive rounded-md shadow-card flex-1", _ctx.loading ? 'cursor-wait' : '']),
|
|
185
262
|
"aria-live": "polite",
|
|
186
263
|
"aria-busy": _ctx.loading
|
|
187
|
-
}, [createElementVNode("thead",
|
|
264
|
+
}, [createElementVNode("thead", _hoisted_3$1, [createElementVNode("tr", null, [_ctx.$slots.preHead ? renderSlot(_ctx.$slots, "preHead", {
|
|
188
265
|
key: 0
|
|
189
266
|
}) : createCommentVNode("", true), (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, thKey) {
|
|
190
267
|
return openBlock(), createElementBlock(Fragment, {
|
|
@@ -199,9 +276,9 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
199
276
|
onClick: function onClick($event) {
|
|
200
277
|
return _ctx.sortColumn(column);
|
|
201
278
|
}
|
|
202
|
-
}, [createElementVNode("div",
|
|
279
|
+
}, [createElementVNode("div", _hoisted_5, [createElementVNode("span", {
|
|
203
280
|
"class": normalizeClass(_ctx.sortedIcon('asc', column) || _ctx.sortedIcon('desc', column) ? 'text-primary' : '')
|
|
204
|
-
}, toDisplayString(column), 3), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span",
|
|
281
|
+
}, toDisplayString(column), 3), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span", _hoisted_6, [!_ctx.sortedIcon('asc', column) && !_ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowSortSvg, {
|
|
205
282
|
key: 0,
|
|
206
283
|
"class": "inline-block w-full text-grey-base"
|
|
207
284
|
})) : createCommentVNode("", true), _ctx.sortedIcon('asc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
|
|
@@ -210,10 +287,10 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
210
287
|
})) : createCommentVNode("", true), _ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
|
|
211
288
|
key: 2,
|
|
212
289
|
"class": "inline-block w-4 text-primary"
|
|
213
|
-
})) : createCommentVNode("", true)])) : createCommentVNode("", true)])], 42,
|
|
290
|
+
})) : createCommentVNode("", true)])) : createCommentVNode("", true)])], 42, _hoisted_4)) : createCommentVNode("", true)], 64);
|
|
214
291
|
}), 128)), _ctx.$slots.head ? renderSlot(_ctx.$slots, "head", {
|
|
215
292
|
key: 1
|
|
216
|
-
}) : createCommentVNode("", true)])]), createElementVNode("tbody",
|
|
293
|
+
}) : createCommentVNode("", true)])]), createElementVNode("tbody", _hoisted_7, [_ctx.loading ? (openBlock(true), createElementBlock(Fragment, {
|
|
217
294
|
key: 0
|
|
218
295
|
}, renderList(_ctx.sortedData, function (row, trKey) {
|
|
219
296
|
return openBlock(), createElementBlock("tr", {
|
|
@@ -221,10 +298,10 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
221
298
|
}, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
|
|
222
299
|
return openBlock(), createElementBlock(Fragment, {
|
|
223
300
|
key: colKey
|
|
224
|
-
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td",
|
|
301
|
+
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", _hoisted_8, [createVNode(_component_FwLoadingBar, {
|
|
225
302
|
"class": "w-full h-7"
|
|
226
303
|
})])) : createCommentVNode("", true)], 64);
|
|
227
|
-
}), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td",
|
|
304
|
+
}), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td", _hoisted_9, [createVNode(_component_FwLoadingBar, {
|
|
228
305
|
"class": "w-full h-7"
|
|
229
306
|
})])) : createCommentVNode("", true)]);
|
|
230
307
|
}), 128)) : (openBlock(true), createElementBlock(Fragment, {
|
|
@@ -250,20 +327,79 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
250
327
|
key: 0,
|
|
251
328
|
"class": "py-2 pl-5 pr-3 text-left",
|
|
252
329
|
innerHTML: _ctx.formattedText(row, column)
|
|
253
|
-
}, null, 8,
|
|
330
|
+
}, null, 8, _hoisted_11)) : createCommentVNode("", true)], 64);
|
|
254
331
|
}), 128)), _ctx.$slots.row ? renderSlot(_ctx.$slots, "row", {
|
|
255
332
|
key: 1,
|
|
256
333
|
row: row
|
|
257
|
-
}) : createCommentVNode("", true)], 42,
|
|
258
|
-
}), 128))])], 10,
|
|
334
|
+
}) : createCommentVNode("", true)], 42, _hoisted_10);
|
|
335
|
+
}), 128))])], 10, _hoisted_2$1), _ctx.enablePagination || (_ctx$options = _ctx.options) !== null && _ctx$options !== void 0 && _ctx$options.enablePagination ? (openBlock(), createElementBlock("div", _hoisted_12, [createVNode(_component_FwButton, {
|
|
336
|
+
variant: 'tertiary',
|
|
337
|
+
disabled: _ctx.currentPage === '1',
|
|
338
|
+
size: "sm",
|
|
339
|
+
"class": "border-grey-40",
|
|
340
|
+
onClick: _cache[0] || (_cache[0] = function ($event) {
|
|
341
|
+
return _ctx.pageArrowClick(false);
|
|
342
|
+
})
|
|
343
|
+
}, {
|
|
344
|
+
"default": withCtx(function () {
|
|
345
|
+
return [createVNode(_component_ChevronLeftSvg, {
|
|
346
|
+
"class": "h-4 w-4 text-red-500",
|
|
347
|
+
"stroke-width": "3"
|
|
348
|
+
})];
|
|
349
|
+
}),
|
|
350
|
+
_: 1
|
|
351
|
+
}, 8, ["disabled"]), (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.pages, function (page) {
|
|
352
|
+
return openBlock(), createBlock(_component_FwButton, {
|
|
353
|
+
rounded: "",
|
|
354
|
+
size: "sm",
|
|
355
|
+
key: page.pageNumber,
|
|
356
|
+
variant: page.selected ? 'tertiary' : 'secondary',
|
|
357
|
+
"class": normalizeClass({
|
|
358
|
+
'border-none': !page.selected,
|
|
359
|
+
'bg-transparent': true
|
|
360
|
+
}),
|
|
361
|
+
onClick: function onClick($event) {
|
|
362
|
+
return _ctx.pageNumberClick(page.pageNumber);
|
|
363
|
+
}
|
|
364
|
+
}, {
|
|
365
|
+
"default": withCtx(function () {
|
|
366
|
+
return [createElementVNode("div", _hoisted_13, [createElementVNode("strong", null, toDisplayString(page.pageNumber), 1)])];
|
|
367
|
+
}),
|
|
368
|
+
_: 2
|
|
369
|
+
}, 1032, ["variant", "class", "onClick"]);
|
|
370
|
+
}), 128)), createVNode(_component_FwButton, {
|
|
371
|
+
variant: 'tertiary',
|
|
372
|
+
disabled: _ctx.totalAmount && Number(_ctx.currentPage) === _ctx.totalAmount,
|
|
373
|
+
size: "sm",
|
|
374
|
+
"class": "border-grey-40",
|
|
375
|
+
onClick: _cache[1] || (_cache[1] = function ($event) {
|
|
376
|
+
return _ctx.pageArrowClick(true);
|
|
377
|
+
})
|
|
378
|
+
}, {
|
|
379
|
+
"default": withCtx(function () {
|
|
380
|
+
return [createVNode(_component_ChevronRightSvg, {
|
|
381
|
+
"class": "h-4 w-4"
|
|
382
|
+
})];
|
|
383
|
+
}),
|
|
384
|
+
_: 1
|
|
385
|
+
}, 8, ["disabled"]), _hoisted_14, createVNode(_component_FwInput, {
|
|
386
|
+
"center-align-input": "",
|
|
387
|
+
"class": "max-w-[66px] p-0 text-center",
|
|
388
|
+
name: "page",
|
|
389
|
+
modelValue: _ctx.currentPage,
|
|
390
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = function ($event) {
|
|
391
|
+
return _ctx.currentPage = $event;
|
|
392
|
+
}),
|
|
393
|
+
type: "tel"
|
|
394
|
+
}, null, 8, ["modelValue"])])) : createCommentVNode("", true)]);
|
|
259
395
|
}
|
|
260
396
|
|
|
261
|
-
var css_248z = ".fw-table-head--sortable[data-v-
|
|
262
|
-
var stylesheet = ".fw-table-head--sortable[data-v-
|
|
397
|
+
var css_248z = ".fw-table-head--sortable[data-v-84c515f0]:hover{background-color:var(--c795d904)}.fw-table-row[data-v-84c515f0]:hover{background-color:var(--c795d904)}";
|
|
398
|
+
var stylesheet = ".fw-table-head--sortable[data-v-84c515f0]:hover{background-color:var(--c795d904)}.fw-table-row[data-v-84c515f0]:hover{background-color:var(--c795d904)}";
|
|
263
399
|
styleInject(css_248z);
|
|
264
400
|
|
|
265
401
|
__default__.render = render$2;
|
|
266
|
-
__default__.__scopeId = "data-v-
|
|
402
|
+
__default__.__scopeId = "data-v-84c515f0";
|
|
267
403
|
|
|
268
404
|
var script$1 = defineComponent({
|
|
269
405
|
name: 'FwTableHead'
|
package/esm/fw-table.js
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
export { _ as FwTable, s as FwTableHead, a as FwTableRow } from './fw-table-row-
|
|
2
|
-
import './index-
|
|
1
|
+
export { _ as FwTable, s as FwTableHead, a as FwTableRow } from './fw-table-row-DhDvTJHm.js';
|
|
2
|
+
import './index-svDiDkSU.js';
|
|
3
3
|
import 'vue';
|
|
4
4
|
import './check--YD4Ts6g.js';
|
|
5
5
|
import './get-root-colours-DYEoJPEb.js';
|
|
6
6
|
import './fw-loading-bar-DThRjdw1.js';
|
|
7
7
|
import './style-inject.es-tgCJW-Cu.js';
|
|
8
|
+
import './fw-button-DdxvSBFa.js';
|
|
9
|
+
import './fw-loading-spinner-BEzZf1xe.js';
|
|
10
|
+
import './fw-input-BPFFMpc2.js';
|
|
11
|
+
import './vee-validate.esm-3ptvCDR1.js';
|
|
12
|
+
import './uniqueId-DK6xzFd8.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, useCssVars, resolveComponent, openBlock, createElementBlock, normalizeClass, Fragment, createTextVNode, toDisplayString, renderSlot, createCommentVNode, createBlock, withCtx, createVNode } from 'vue';
|
|
2
2
|
import './fw-button.js';
|
|
3
|
-
import { b as render$1 } from './index-
|
|
3
|
+
import { b as render$1 } from './index-svDiDkSU.js';
|
|
4
4
|
import { u as useColours } from './get-root-colours-DYEoJPEb.js';
|
|
5
|
-
import { s as script } from './fw-button-
|
|
5
|
+
import { s as script } from './fw-button-DdxvSBFa.js';
|
|
6
6
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
7
7
|
|
|
8
8
|
var __default__ = defineComponent({
|
package/esm/fw-tag.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { _ as FwTag } from './fw-tag-
|
|
1
|
+
export { _ as FwTag } from './fw-tag-508OLlZR.js';
|
|
2
2
|
import 'vue';
|
|
3
3
|
import './fw-button.js';
|
|
4
|
-
import './fw-button-
|
|
5
|
-
import './fw-loading-spinner-
|
|
6
|
-
import './index-
|
|
4
|
+
import './fw-button-DdxvSBFa.js';
|
|
5
|
+
import './fw-loading-spinner-BEzZf1xe.js';
|
|
6
|
+
import './index-svDiDkSU.js';
|
|
7
7
|
import './check--YD4Ts6g.js';
|
|
8
8
|
import './style-inject.es-tgCJW-Cu.js';
|
|
9
9
|
import './get-root-colours-DYEoJPEb.js';
|
package/esm/fw-toast.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, onMounted, watchEffect, openBlock, createElementBlock, Fragment, createBlock, Teleport, createVNode, TransitionGroup, createCommentVNode, Transition, withCtx, normalizeClass, createElementVNode, resolveDynamicComponent, renderSlot } from 'vue';
|
|
2
2
|
import { u as uniqueId } from './uniqueId-DK6xzFd8.js';
|
|
3
|
-
import { c as render$1, d as render$2,
|
|
3
|
+
import { c as render$1, d as render$2, k as render$3 } from './index-svDiDkSU.js';
|
|
4
4
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
5
5
|
import './check--YD4Ts6g.js';
|
|
6
6
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent, createElementVNode, resolveComponent, openBlock, createBlock, withCtx, createCommentVNode, toDisplayString, createElementBlock } from 'vue';
|
|
2
2
|
import { s as script$1 } from './fw-card-bsYbpPmW.js';
|
|
3
|
-
import { s as script$2 } from './fw-image-
|
|
3
|
+
import { s as script$2 } from './fw-image-DedhILQL.js';
|
|
4
4
|
import './fw-loading-bar-DThRjdw1.js';
|
|
5
5
|
import './style-inject.es-tgCJW-Cu.js';
|
|
6
|
-
import './index-
|
|
6
|
+
import './index-svDiDkSU.js';
|
|
7
7
|
import './check--YD4Ts6g.js';
|
|
8
8
|
|
|
9
9
|
var script = defineComponent({
|
|
@@ -583,4 +583,4 @@ function render(_ctx, _cache) {
|
|
|
583
583
|
return (openBlock(), createElementBlock("svg", _hoisted_1, [..._hoisted_3]))
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
-
export { render$3 as a, render$6 as b, render$b as c, render$a as d, render$7 as e, render$n as f, render$9 as g, render$8 as h, render$
|
|
586
|
+
export { render$3 as a, render$6 as b, render$b as c, render$a as d, render$7 as e, render$n as f, render$9 as g, render$8 as h, render$m as i, render$d as j, render$l as k, render$s as l, render$o as r };
|
package/esm/index.js
CHANGED
|
@@ -24,19 +24,19 @@ import { FwDatePicker as __default__$1 } from './fw-date-picker.js';
|
|
|
24
24
|
import { FwPopover as __default__$3 } from './fw-popover.js';
|
|
25
25
|
import { FwEmailPulse as __default__$2, FwSuccessPulse as __default__$4 } from './fw-animations.js';
|
|
26
26
|
import { F as Form } from './vee-validate.esm-3ptvCDR1.js';
|
|
27
|
-
import { s as script$7 } from './fw-input-
|
|
28
|
-
import { s as script$5 } from './fw-dropdown-
|
|
27
|
+
import { s as script$7 } from './fw-input-BPFFMpc2.js';
|
|
28
|
+
import { s as script$5 } from './fw-dropdown-BcnKbaW1.js';
|
|
29
29
|
import { s as script$2 } from './fw-card-bsYbpPmW.js';
|
|
30
|
-
import { s as script$1 } from './fw-button-
|
|
31
|
-
import { _ as __default__$6 } from './fw-tag-
|
|
32
|
-
import { _ as __default__$5, s as script$i, a as script$j } from './fw-table-row-
|
|
33
|
-
import { s as script$6 } from './fw-image-
|
|
30
|
+
import { s as script$1 } from './fw-button-DdxvSBFa.js';
|
|
31
|
+
import { _ as __default__$6 } from './fw-tag-508OLlZR.js';
|
|
32
|
+
import { _ as __default__$5, s as script$i, a as script$j } from './fw-table-row-DhDvTJHm.js';
|
|
33
|
+
import { s as script$6 } from './fw-image-DedhILQL.js';
|
|
34
34
|
import { s as script$8 } from './fw-loading-bar-DThRjdw1.js';
|
|
35
|
-
import { s as script$a } from './fw-loading-spinner-
|
|
35
|
+
import { s as script$a } from './fw-loading-spinner-BEzZf1xe.js';
|
|
36
36
|
import { reactive, createApp, h } from 'vue';
|
|
37
37
|
import './uniqueId-DK6xzFd8.js';
|
|
38
38
|
import './style-inject.es-tgCJW-Cu.js';
|
|
39
|
-
import './index-
|
|
39
|
+
import './index-svDiDkSU.js';
|
|
40
40
|
import './check--YD4Ts6g.js';
|
|
41
41
|
import './get-root-colours-DYEoJPEb.js';
|
|
42
42
|
import './index-BVcOAKar.js';
|