@frollo/frollo-web-ui 8.2.1 → 8.4.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 +1091 -408
- package/esm/fw-accordion.js +1 -1
- package/esm/fw-animations.js +2 -2
- package/esm/{fw-button-DdxvSBFa.js → fw-button-LhSQ6Fx_.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-BcnKbaW1.js → fw-dropdown-b1b7d7BF.js} +2 -2
- package/esm/fw-dropdown.js +3 -3
- package/esm/{fw-image-DedhILQL.js → fw-image-Dlb_dFZf.js} +1 -1
- package/esm/fw-image.js +2 -2
- package/esm/{fw-loading-spinner-BEzZf1xe.js → fw-loading-spinner-CfcmqMwb.js} +1 -1
- package/esm/fw-media-picker.js +642 -0
- package/esm/fw-modal.js +3 -3
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/fw-period-selector.js +18 -13
- package/esm/fw-provider-list.js +7 -7
- package/esm/fw-sidebar-menu.js +3 -3
- package/esm/{fw-table-row-CBQBV4yq.js → fw-table-row-suFSeIN3.js} +2 -2
- package/esm/fw-table.js +4 -4
- package/esm/{fw-tag-508OLlZR.js → fw-tag-CziUTbtg.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-svDiDkSU.js → index-CUeOOfIp.js} +165 -103
- package/esm/index.js +33 -31
- package/frollo-web-ui.esm.js +1149 -451
- package/icons/arrows-rotate.svg +4 -0
- package/icons/cloud-arrow-up.svg +3 -0
- package/icons/guide.svg +12 -0
- package/icons/index.ts +9 -1
- package/icons/mountain-flag.svg +4 -0
- package/index.d.ts +154 -28
- package/package.json +1 -1
- package/types/components/fw-media-picker/fw-media-picker.vue.d.ts +112 -0
- package/types/components/fw-media-picker/index.d.ts +2 -0
- package/types/components/fw-media-picker/index.types.d.ts +8 -0
- package/types/components/fw-period-selector/fw-period-selector.vue.d.ts +9 -4
- package/types/components/index.d.ts +1 -0
- package/types/components/index.types.d.ts +1 -0
- package/types/icons/index.d.ts +5 -1
- package/web-components/index.js +1150 -452
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
import { defineComponent,
|
|
1
|
+
import { defineComponent, computed, resolveComponent, openBlock, createElementBlock, Fragment, renderList, createBlock, withCtx, createTextVNode, toDisplayString } from 'vue';
|
|
2
2
|
import './fw-button.js';
|
|
3
|
-
import { s as script$1 } from './fw-button-
|
|
3
|
+
import { s as script$1 } from './fw-button-LhSQ6Fx_.js';
|
|
4
4
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
5
|
-
import './fw-loading-spinner-
|
|
6
|
-
import './index-
|
|
5
|
+
import './fw-loading-spinner-CfcmqMwb.js';
|
|
6
|
+
import './index-CUeOOfIp.js';
|
|
7
7
|
import './check--YD4Ts6g.js';
|
|
8
8
|
|
|
9
9
|
var script = defineComponent({
|
|
10
10
|
name: 'FwPeriodSelector',
|
|
11
11
|
emits: [/** Fired on Click */
|
|
12
|
-
'
|
|
12
|
+
'update:modelValue'],
|
|
13
13
|
components: {
|
|
14
14
|
FwButton: script$1
|
|
15
15
|
},
|
|
16
16
|
props: {
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: Number
|
|
19
|
+
},
|
|
17
20
|
/**
|
|
18
21
|
* The available periods to be chosen in months.
|
|
19
22
|
*/
|
|
@@ -31,18 +34,20 @@ var script = defineComponent({
|
|
|
31
34
|
}
|
|
32
35
|
}
|
|
33
36
|
},
|
|
34
|
-
setup: function setup(
|
|
35
|
-
var selectedPeriod = ref();
|
|
37
|
+
setup: function setup(props, ctx) {
|
|
36
38
|
var generateButtonLabel = function generateButtonLabel(month) {
|
|
37
39
|
return month === 1 ? month.toString() + ' month' : month.toString() + ' months';
|
|
38
40
|
};
|
|
39
|
-
var
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
var selectedPeriod = computed({
|
|
42
|
+
get: function get() {
|
|
43
|
+
return props.modelValue;
|
|
44
|
+
},
|
|
45
|
+
set: function set(period) {
|
|
46
|
+
ctx.emit('update:modelValue', period);
|
|
47
|
+
}
|
|
48
|
+
});
|
|
43
49
|
return {
|
|
44
50
|
generateButtonLabel: generateButtonLabel,
|
|
45
|
-
onClick: onClick,
|
|
46
51
|
selectedPeriod: selectedPeriod
|
|
47
52
|
};
|
|
48
53
|
}
|
|
@@ -60,7 +65,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
60
65
|
"class": "hover:!border-button-primary-bg -m-[2px] flex-1",
|
|
61
66
|
size: _ctx.size,
|
|
62
67
|
onClick: function onClick($event) {
|
|
63
|
-
return _ctx.
|
|
68
|
+
return _ctx.selectedPeriod = period;
|
|
64
69
|
}
|
|
65
70
|
}, {
|
|
66
71
|
"default": withCtx(function () {
|
package/esm/fw-provider-list.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { e as _defineProperty } from './_rollupPluginBabelHelpers-DpC_oIQV.js';
|
|
2
2
|
import { defineComponent, ref, computed, createElementVNode, resolveComponent, openBlock, createElementBlock, toDisplayString, createVNode, withCtx, createBlock, createCommentVNode, createTextVNode } from 'vue';
|
|
3
|
-
import { _ as __default__, s as script$4, a as script$5 } from './fw-table-row-
|
|
3
|
+
import { _ as __default__, s as script$4, a as script$5 } from './fw-table-row-suFSeIN3.js';
|
|
4
4
|
import { s as script$1 } from './fw-input-BPFFMpc2.js';
|
|
5
|
-
import { _ as __default__$1 } from './fw-tag-
|
|
6
|
-
import { s as script$3 } from './fw-button-
|
|
7
|
-
import { s as script$2 } from './fw-dropdown-
|
|
8
|
-
import {
|
|
5
|
+
import { _ as __default__$1 } from './fw-tag-CziUTbtg.js';
|
|
6
|
+
import { s as script$3 } from './fw-button-LhSQ6Fx_.js';
|
|
7
|
+
import { s as script$2 } from './fw-dropdown-b1b7d7BF.js';
|
|
8
|
+
import { i as render$1, j as render$2, k as render$3 } from './index-CUeOOfIp.js';
|
|
9
9
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
10
10
|
import './get-root-colours-DYEoJPEb.js';
|
|
11
11
|
import './fw-loading-bar-DThRjdw1.js';
|
|
12
12
|
import './vee-validate.esm-3ptvCDR1.js';
|
|
13
13
|
import './uniqueId-DK6xzFd8.js';
|
|
14
14
|
import './fw-button.js';
|
|
15
|
-
import './fw-loading-spinner-
|
|
16
|
-
import './fw-image-
|
|
15
|
+
import './fw-loading-spinner-CfcmqMwb.js';
|
|
16
|
+
import './fw-image-Dlb_dFZf.js';
|
|
17
17
|
import './check--YD4Ts6g.js';
|
|
18
18
|
|
|
19
19
|
var script = defineComponent({
|
package/esm/fw-sidebar-menu.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { defineComponent, computed, resolveComponent, openBlock, createElementBlock, normalizeClass, createVNode, withCtx, Transition, withDirectives, createElementVNode, renderSlot, createCommentVNode, Fragment, renderList, createBlock, createTextVNode, toDisplayString, vShow } from 'vue';
|
|
2
|
-
import { s as script$1 } from './fw-button-
|
|
3
|
-
import {
|
|
2
|
+
import { s as script$1 } from './fw-button-LhSQ6Fx_.js';
|
|
3
|
+
import { l as render$1 } from './index-CUeOOfIp.js';
|
|
4
4
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
5
|
-
import './fw-loading-spinner-
|
|
5
|
+
import './fw-loading-spinner-CfcmqMwb.js';
|
|
6
6
|
import './check--YD4Ts6g.js';
|
|
7
7
|
|
|
8
8
|
var script = defineComponent({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { m as render$3, n as render$4, o as render$5, l as render$6 } from './index-CUeOOfIp.js';
|
|
2
2
|
import { defineComponent, computed, ref, onMounted, useCssVars, pushScopeId, popScopeId, resolveComponent, openBlock, createElementBlock, createElementVNode, mergeProps, renderSlot, createCommentVNode, Fragment, renderList, normalizeClass, 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-
|
|
5
|
+
import { s as script$3 } from './fw-button-LhSQ6Fx_.js';
|
|
6
6
|
import { s as styleInject } from './style-inject.es-tgCJW-Cu.js';
|
|
7
7
|
|
|
8
8
|
var __default__ = defineComponent({
|
package/esm/fw-table.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
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-suFSeIN3.js';
|
|
2
|
+
import './index-CUeOOfIp.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-
|
|
9
|
-
import './fw-loading-spinner-
|
|
8
|
+
import './fw-button-LhSQ6Fx_.js';
|
|
9
|
+
import './fw-loading-spinner-CfcmqMwb.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-CUeOOfIp.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-LhSQ6Fx_.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-CziUTbtg.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-LhSQ6Fx_.js';
|
|
5
|
+
import './fw-loading-spinner-CfcmqMwb.js';
|
|
6
|
+
import './index-CUeOOfIp.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 {
|
|
3
|
+
import { i as render$1, j as render$2, p as render$3 } from './index-CUeOOfIp.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-Dlb_dFZf.js';
|
|
4
4
|
import './fw-loading-bar-DThRjdw1.js';
|
|
5
5
|
import './style-inject.es-tgCJW-Cu.js';
|
|
6
|
-
import './index-
|
|
6
|
+
import './index-CUeOOfIp.js';
|
|
7
7
|
import './check--YD4Ts6g.js';
|
|
8
8
|
|
|
9
9
|
var script = defineComponent({
|