@frollo/frollo-web-ui 4.0.1 → 5.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/cjs/index.js +800 -446
- package/esm/fw-accordion.js +61 -28
- package/esm/fw-animations.js +2 -2
- package/esm/fw-bar-chart.js +2 -1
- package/esm/{fw-button-7902ae9e.js → fw-button-beaf20f4.js} +1 -1
- package/esm/fw-button.js +3 -3
- package/esm/fw-checkbox.js +25 -9
- package/esm/fw-drawer.js +225 -0
- package/esm/fw-dropdown.js +1 -1
- package/esm/{fw-image-c829ed20.js → fw-image-161b667a.js} +65 -59
- package/esm/fw-image.js +4 -4
- package/esm/fw-input.js +2 -2
- package/esm/{fw-loading-spinner-7462e0b2.js → fw-loading-spinner-51deaa3d.js} +1 -1
- package/esm/fw-modal.js +3 -3
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/fw-sidebar-menu.js +3 -3
- package/esm/fw-table.js +9 -9
- package/esm/fw-tag.js +93 -18
- package/esm/fw-toast.js +1 -1
- package/esm/fw-transactions-card.js +4 -4
- package/esm/get-root-colours-e2a1cb28.js +21 -0
- package/esm/{index-f0510452.js → index-2766bfe4.js} +12 -11
- package/esm/{index-dbe0534d.js → index-3624f1c9.js} +115 -101
- package/esm/index.js +40 -36
- package/frollo-web-ui.esm.js +861 -494
- package/icons/index.ts +3 -1
- package/icons/xmark.svg +3 -0
- package/index.d.ts +393 -140
- package/package.json +1 -1
- package/types/components/fw-accordion/fw-accordion.vue.d.ts +22 -4
- package/types/components/fw-accordion/index.types.d.ts +1 -0
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +35 -3
- package/types/components/fw-checkbox/index.types.d.ts +2 -0
- package/types/components/fw-drawer/fw-drawer.vue.d.ts +165 -0
- package/types/components/fw-drawer/index.d.ts +2 -0
- package/types/components/fw-drawer/index.types.d.ts +14 -0
- package/types/components/fw-input/fw-input.vue.d.ts +2 -2
- package/types/components/fw-tag/fw-tag.vue.d.ts +30 -8
- package/types/components/fw-tag/index.types.d.ts +4 -2
- package/types/components/index.d.ts +1 -0
- package/types/components/index.types.d.ts +1 -0
- package/types/helpers/get-root-colours.d.ts +9 -0
- package/types/icons/index.d.ts +2 -1
- package/web-components/index.js +863 -496
package/icons/index.ts
CHANGED
|
@@ -33,6 +33,7 @@ import SolidXMarkSvg from './solid-xmark.svg';
|
|
|
33
33
|
import ArrowSortSvg from './arrow-sort.svg';
|
|
34
34
|
import ArrowDownSvg from './arrow-down.svg';
|
|
35
35
|
import SearchSvg from './search.svg';
|
|
36
|
+
import XMarkSvg from './xmark.svg';
|
|
36
37
|
|
|
37
38
|
export {
|
|
38
39
|
ViewSvg,
|
|
@@ -69,5 +70,6 @@ export {
|
|
|
69
70
|
SolidXMarkSvg,
|
|
70
71
|
ArrowSortSvg,
|
|
71
72
|
ArrowDownSvg,
|
|
72
|
-
SearchSvg
|
|
73
|
+
SearchSvg,
|
|
74
|
+
XMarkSvg
|
|
73
75
|
};
|
package/icons/xmark.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 30 31" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.2806 22.7796C21.9875 23.0727 21.5133 23.0727 21.2198 22.7796L15.0009 16.5593L8.78061 22.7796C8.4875 23.0727 8.01327 23.0727 7.71983 22.7796C7.42672 22.4865 7.42672 22.0123 7.71983 21.7189L13.9416 15.4999L7.72077 9.27964C7.42766 8.98653 7.42766 8.51229 7.72077 8.21886C8.01388 7.92575 8.48811 7.92575 8.78155 8.21886L15.0009 14.4406L21.2212 8.22026C21.5143 7.92715 21.9886 7.92715 22.282 8.22026C22.5751 8.51337 22.5751 8.98761 22.282 9.28104L16.0603 15.4999L22.2806 21.7203C22.5759 22.0109 22.5759 22.489 22.2806 22.7796Z" />
|
|
3
|
+
</svg>
|