@frollo/frollo-web-ui 9.0.14 → 9.0.15
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 +124 -144
- package/esm/{_rollupPluginBabelHelpers-BKlDnZ7n.js → _rollupPluginBabelHelpers-BLtav7L4.js} +19 -32
- package/esm/fw-bar-chart.js +1 -1
- package/esm/{fw-button-DKiBN2Lc.js → fw-button-CeUZjl-m.js} +2 -2
- package/esm/fw-button.js +1 -1
- package/esm/fw-date-picker.js +2 -2
- package/esm/fw-drawer.js +1 -1
- package/esm/{fw-dropdown-uz0ktInj.js → fw-dropdown-Cn-AOd9J.js} +1 -1
- package/esm/fw-dropdown.js +4 -4
- package/esm/fw-icons.js +1 -1
- package/esm/{fw-image-WvgrN2xD.js → fw-image-DSZYmjep.js} +2 -2
- package/esm/fw-image.js +3 -3
- package/esm/fw-input.js +1 -1
- package/esm/fw-loading-bar-CMt4O4Ys.js +37 -0
- package/esm/fw-loading.js +1 -1
- package/esm/fw-media-picker.js +5 -5
- package/esm/fw-modal.js +9 -9
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/{fw-popover-BFiv7Ich.js → fw-popover-Dv8DodUb.js} +19 -21
- package/esm/fw-popover.js +2 -2
- package/esm/fw-provider-list.js +6 -6
- package/esm/fw-sidebar-menu.js +1 -1
- package/esm/{fw-table-row-Dxzao2a-.js → fw-table-row-CLb3Xliv.js} +2 -2
- package/esm/fw-table.js +3 -3
- package/esm/fw-tabs.js +1 -1
- package/esm/fw-tag.js +1 -1
- package/esm/fw-transactions-card.js +3 -3
- package/esm/{index-BDOYAgsu.js → index-vXNG2AyR.js} +79 -84
- package/esm/index.js +9 -9
- package/frollo-web-ui.esm.js +124 -144
- package/package.json +20 -19
- package/web-components/index.js +850 -603
- package/esm/fw-loading-bar-CPzE92BH.js +0 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frollo/frollo-web-ui",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.15",
|
|
4
4
|
"description": "Frollo's UI library for components, utilities and configs",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./icons": "./icons/index.ts",
|
|
@@ -30,18 +30,19 @@
|
|
|
30
30
|
"storybook-docs": "storybook dev --docs"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"vue": "^3.5.
|
|
33
|
+
"vue": "^3.5.35"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@babel/core": "^7.
|
|
37
|
-
"@babel/plugin-transform-class-properties": "^7.
|
|
38
|
-
"@babel/plugin-transform-private-methods": "^7.
|
|
39
|
-
"@babel/plugin-transform-private-property-in-object": "^7.
|
|
40
|
-
"@babel/preset-env": "^7.
|
|
36
|
+
"@babel/core": "^7.29.7",
|
|
37
|
+
"@babel/plugin-transform-class-properties": "^7.29.7",
|
|
38
|
+
"@babel/plugin-transform-private-methods": "^7.29.7",
|
|
39
|
+
"@babel/plugin-transform-private-property-in-object": "^7.29.7",
|
|
40
|
+
"@babel/preset-env": "^7.29.7",
|
|
41
|
+
"@babel/preset-typescript": "^7.29.7",
|
|
41
42
|
"@eslint/js": "^9.2.0",
|
|
42
43
|
"@popperjs/core": "^2.11.8",
|
|
43
44
|
"@rollup/plugin-alias": "^5.1.0",
|
|
44
|
-
"@rollup/plugin-babel": "^6.0
|
|
45
|
+
"@rollup/plugin-babel": "^6.1.0",
|
|
45
46
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
46
47
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
47
48
|
"@rollup/plugin-replace": "^5.0.5",
|
|
@@ -55,29 +56,29 @@
|
|
|
55
56
|
"@storybook/vue3-vite": "^10.2.14",
|
|
56
57
|
"@tsconfig/node22": "^22.0.2",
|
|
57
58
|
"@types/lodash-es": "^4.17.12",
|
|
58
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
59
|
-
"@vitejs/plugin-vue-jsx": "^5.1.
|
|
60
|
-
"@vitest/coverage-istanbul": "^4.
|
|
59
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
60
|
+
"@vitejs/plugin-vue-jsx": "^5.1.5",
|
|
61
|
+
"@vitest/coverage-istanbul": "^4.1.8",
|
|
61
62
|
"@vue/test-utils": "^2.4.6",
|
|
62
63
|
"autoprefixer": "^10.4.19",
|
|
63
64
|
"chart.js": "^4.5.1",
|
|
64
65
|
"cross-env": "^7.0.3",
|
|
65
|
-
"eslint": "^9.
|
|
66
|
+
"eslint": "^9.39.4",
|
|
66
67
|
"eslint-config-prettier": "^9.1.0",
|
|
67
68
|
"eslint-plugin-prettier": "^5.1.3",
|
|
68
69
|
"eslint-plugin-storybook": "^10.2.14",
|
|
69
|
-
"eslint-plugin-vue": "
|
|
70
|
+
"eslint-plugin-vue": "9.33",
|
|
70
71
|
"globals": "^15.2.0",
|
|
71
72
|
"hash-sum": "^2.0.0",
|
|
72
73
|
"jsdom": "^24.0.0",
|
|
73
|
-
"lodash-es": "^4.
|
|
74
|
+
"lodash-es": "^4.18.1",
|
|
74
75
|
"postcss": "^8.4.38",
|
|
75
76
|
"prettier": "^3.3.1",
|
|
76
77
|
"rimraf": "^5.0.7",
|
|
77
78
|
"rollup": "^4.59.0",
|
|
78
79
|
"rollup-plugin-dts": "^6.1.0",
|
|
79
80
|
"rollup-plugin-postcss": "^4.0.2",
|
|
80
|
-
"rollup-plugin-typescript2": "^0.
|
|
81
|
+
"rollup-plugin-typescript2": "^0.37.0",
|
|
81
82
|
"rollup-plugin-vue": "^6.0.0",
|
|
82
83
|
"sass": "^1.77.1",
|
|
83
84
|
"storybook": "^10.2.14",
|
|
@@ -86,16 +87,16 @@
|
|
|
86
87
|
"ts-node": "^10.9.2",
|
|
87
88
|
"tslib": "^2.6.2",
|
|
88
89
|
"typescript": "^5.9.3",
|
|
89
|
-
"typescript-eslint": "^8.
|
|
90
|
+
"typescript-eslint": "^8.60.1",
|
|
90
91
|
"v-calendar": "^3.1.2",
|
|
91
92
|
"vee-validate": "^4.15.1",
|
|
92
|
-
"vite": "^7.
|
|
93
|
+
"vite": "^7.3.5",
|
|
93
94
|
"vite-plugin-checker": "^0.11.0",
|
|
94
95
|
"vite-plugin-vue-devtools": "^8.0.3",
|
|
95
96
|
"vite-svg-loader": "^5.1.0",
|
|
96
|
-
"vitest": "^4.
|
|
97
|
+
"vitest": "^4.1.8",
|
|
97
98
|
"vue-chartjs": "^5.3.3",
|
|
98
|
-
"vue-eslint-parser": "^9.4.
|
|
99
|
+
"vue-eslint-parser": "^9.4.3",
|
|
99
100
|
"vue-tsc": "^3.1.4",
|
|
100
101
|
"vue3-webcomponent-wrapper": "^0.2.0",
|
|
101
102
|
"yup": "^1.7.1"
|