@frollo/frollo-web-ui 8.4.3 → 8.4.5
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 +191 -168
- package/esm/fw-accordion.js +1 -1
- package/esm/fw-animations.js +2 -2
- package/esm/{fw-button-NJeYig99.js → fw-button-BhZXMN8a.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-b1b7d7BF.js → fw-dropdown-ClttctHK.js} +2 -2
- package/esm/fw-dropdown.js +3 -3
- package/esm/{fw-image-Dlb_dFZf.js → fw-image-6o3ZOSCW.js} +1 -1
- package/esm/fw-image.js +2 -2
- package/esm/{fw-loading-spinner-CfcmqMwb.js → fw-loading-spinner-CFFbujSq.js} +1 -1
- package/esm/fw-media-picker.js +3 -3
- package/esm/fw-modal.js +3 -3
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/fw-period-selector.js +3 -3
- package/esm/fw-provider-list.js +7 -7
- package/esm/fw-sidebar-menu.js +3 -3
- package/esm/{fw-table-row-D2KYRG5K.js → fw-table-row-BlpxQ10C.js} +26 -15
- package/esm/fw-table.js +4 -4
- package/esm/{fw-tag-D-U6RKuG.js → fw-tag-DgsnsY7O.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-CUeOOfIp.js → index-BjXtr7CR.js} +126 -112
- package/esm/index.js +7 -7
- package/frollo-web-ui.esm.js +193 -168
- package/icons/index.ts +3 -1
- package/icons/info-circle-regular.svg +3 -0
- package/index.d.ts +5 -2
- package/package.json +1 -1
- package/styles/tailwind.scss +0 -4
- package/types/components/fw-table/fw-table.vue.d.ts +1 -1
- package/types/components/fw-table/index.types.d.ts +3 -0
- package/types/icons/index.d.ts +2 -1
- package/web-components/index.js +198 -173
package/icons/index.ts
CHANGED
|
@@ -44,6 +44,7 @@ import MountainFlagSvg from './mountain-flag.svg';
|
|
|
44
44
|
import CloudArrowUpSvg from './cloud-arrow-up.svg';
|
|
45
45
|
import GuideSvg from './guide.svg';
|
|
46
46
|
import ArrowsRotateSvg from './arrows-rotate.svg';
|
|
47
|
+
import InfoCircleRegularSvg from './info-circle-regular.svg';
|
|
47
48
|
|
|
48
49
|
export {
|
|
49
50
|
ViewSvg,
|
|
@@ -91,5 +92,6 @@ export {
|
|
|
91
92
|
MountainFlagSvg,
|
|
92
93
|
CloudArrowUpSvg,
|
|
93
94
|
GuideSvg,
|
|
94
|
-
ArrowsRotateSvg
|
|
95
|
+
ArrowsRotateSvg,
|
|
96
|
+
InfoCircleRegularSvg
|
|
95
97
|
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg" transform="rotate(0) scale(1, 1)">
|
|
2
|
+
<path d="M8 0C3.58125 0 0 3.58125 0 8C0 12.4187 3.58125 16 8 16C12.4187 16 16 12.4187 16 8C16 3.58125 12.4187 0 8 0ZM8 14.5C4.41563 14.5 1.5 11.5841 1.5 8C1.5 4.41594 4.41563 1.5 8 1.5C11.5844 1.5 14.5 4.41594 14.5 8C14.5 11.5841 11.5844 14.5 8 14.5ZM9.25 10.5H8.75V7.75C8.75 7.3375 8.41562 7 8 7H7C6.5875 7 6.25 7.3375 6.25 7.75C6.25 8.1625 6.5875 8.5 7 8.5H7.25V10.5H6.75C6.3375 10.5 6 10.8375 6 11.25C6 11.6625 6.3375 12 6.75 12H9.25C9.66406 12 10 11.6641 10 11.25C10 10.8359 9.66562 10.5 9.25 10.5ZM8 6C8.55219 6 9 5.55219 9 5C9 4.44781 8.55219 4 8 4C7.44781 4 7 4.44688 7 5C7 5.55312 7.44688 6 8 6Z" />
|
|
3
|
+
</svg>
|
package/index.d.ts
CHANGED
|
@@ -1331,6 +1331,9 @@ declare interface FwTableProps {
|
|
|
1331
1331
|
totalAmount?: number;
|
|
1332
1332
|
pageSize?: number;
|
|
1333
1333
|
}
|
|
1334
|
+
declare type FwTableApi = {
|
|
1335
|
+
resetPage: () => void;
|
|
1336
|
+
};
|
|
1334
1337
|
|
|
1335
1338
|
declare interface FwAccordionProps {
|
|
1336
1339
|
title?: string;
|
|
@@ -1590,7 +1593,7 @@ declare const __default__$5: vue.DefineComponent<{
|
|
|
1590
1593
|
rowClicked: (row: FwTableItem) => void;
|
|
1591
1594
|
bgHoverColor: string;
|
|
1592
1595
|
currentPage: vue.Ref<number>;
|
|
1593
|
-
maxPageAmount: vue.
|
|
1596
|
+
maxPageAmount: vue.ComputedRef<number | undefined>;
|
|
1594
1597
|
pageArrowClick: (next: boolean) => void;
|
|
1595
1598
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("rowClicked" | "columnSorted" | "pageChanged")[], "rowClicked" | "columnSorted" | "pageChanged", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
1596
1599
|
items: {
|
|
@@ -3145,4 +3148,4 @@ declare const install: Exclude<Plugin['install'], undefined>;
|
|
|
3145
3148
|
|
|
3146
3149
|
declare module '@frollo/frollo-web-ui/icons' { }
|
|
3147
3150
|
|
|
3148
|
-
export { type ButtonAnimation, type ButtonDefinition, type ButtonDefinitionList, type ButtonSize, type ButtonSizes, type ButtonTypeAttribute, type ButtonVariantName, __default__$4 as FwAccordion, type FwAccordionProps, _default$6 as FwBarChart, type FwBarChartProps, type FwBarGraphData, _default$k as FwButton, type FwButtonProps, _default$l as FwCard, type FwCardProps, _default$n as FwCheckbox, type FwCheckboxProps, __default__$3 as FwDatePicker, type FwDatePickerProps, _default$4 as FwDrawer, type FwDrawerProps, _default$m as FwDropdown, type FwDropdownOption, type FwDropdownProps, __default__$1 as FwEmailPulse, _default$c as FwImage, type FwImageProps, _default$o as FwInput, type FwInputProps, type FwInputType, _default$b as FwLoadingBar, _default$a as FwLoadingCard, _default as FwLoadingSpinner, _default$9 as FwLoadingTable, _default$1 as FwMediaPicker, type FwMediaPickerProps, _default$g as FwModal, type FwModalProps, _default$j as FwNavigationMenu, _default$2 as FwPeriodSelector, __default__$2 as FwPopover, type FwPopoverProps, _default$f as FwProgressBar, _default$3 as FwProviderList, type FwProviderListItem, type FwProviderListProps, _default$5 as FwSidebarMenu, type FwSidebarMenuItem, __default__ as FwSuccessPulse, _default$h as FwTab, __default__$5 as FwTable, type FwTableFormatFunction, _default$e as FwTableHead, type FwTableItem, type FwTableItemOptions, type FwTableProps, _default$d as FwTableRow, type FwTableSort, _default$i as FwTabs, type FwTabsProps, __default__$6 as FwTag, type FwTagProps, _default$8 as FwToast, type FwToastProps, _default$7 as FwTransactionsCard, type FwTransactionsCardProps, type ModalServiceProps, type NavMenuItem, type ProgressBarStep, type TabsState, type TagDefinition, type TagDefinitionList, type TagSize, type TagSizes, type TagVariantName, type ToastPosition, type ToastServiceProps, type ToastType, type ToastTypes, install as default, modalService, toastService };
|
|
3151
|
+
export { type ButtonAnimation, type ButtonDefinition, type ButtonDefinitionList, type ButtonSize, type ButtonSizes, type ButtonTypeAttribute, type ButtonVariantName, __default__$4 as FwAccordion, type FwAccordionProps, _default$6 as FwBarChart, type FwBarChartProps, type FwBarGraphData, _default$k as FwButton, type FwButtonProps, _default$l as FwCard, type FwCardProps, _default$n as FwCheckbox, type FwCheckboxProps, __default__$3 as FwDatePicker, type FwDatePickerProps, _default$4 as FwDrawer, type FwDrawerProps, _default$m as FwDropdown, type FwDropdownOption, type FwDropdownProps, __default__$1 as FwEmailPulse, _default$c as FwImage, type FwImageProps, _default$o as FwInput, type FwInputProps, type FwInputType, _default$b as FwLoadingBar, _default$a as FwLoadingCard, _default as FwLoadingSpinner, _default$9 as FwLoadingTable, _default$1 as FwMediaPicker, type FwMediaPickerProps, _default$g as FwModal, type FwModalProps, _default$j as FwNavigationMenu, _default$2 as FwPeriodSelector, __default__$2 as FwPopover, type FwPopoverProps, _default$f as FwProgressBar, _default$3 as FwProviderList, type FwProviderListItem, type FwProviderListProps, _default$5 as FwSidebarMenu, type FwSidebarMenuItem, __default__ as FwSuccessPulse, _default$h as FwTab, __default__$5 as FwTable, type FwTableApi, type FwTableFormatFunction, _default$e as FwTableHead, type FwTableItem, type FwTableItemOptions, type FwTableProps, _default$d as FwTableRow, type FwTableSort, _default$i as FwTabs, type FwTabsProps, __default__$6 as FwTag, type FwTagProps, _default$8 as FwToast, type FwToastProps, _default$7 as FwTransactionsCard, type FwTransactionsCardProps, type ModalServiceProps, type NavMenuItem, type ProgressBarStep, type TabsState, type TagDefinition, type TagDefinitionList, type TagSize, type TagSizes, type TagVariantName, type ToastPosition, type ToastServiceProps, type ToastType, type ToastTypes, install as default, modalService, toastService };
|
package/package.json
CHANGED
package/styles/tailwind.scss
CHANGED
|
@@ -48,7 +48,7 @@ declare const __default__: import("vue").DefineComponent<{
|
|
|
48
48
|
rowClicked: (row: FwTableItem) => void;
|
|
49
49
|
bgHoverColor: string;
|
|
50
50
|
currentPage: import("vue").Ref<number>;
|
|
51
|
-
maxPageAmount: import("vue").
|
|
51
|
+
maxPageAmount: import("vue").ComputedRef<number | undefined>;
|
|
52
52
|
pageArrowClick: (next: boolean) => void;
|
|
53
53
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("rowClicked" | "columnSorted" | "pageChanged")[], "rowClicked" | "columnSorted" | "pageChanged", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
54
|
items: {
|
package/types/icons/index.d.ts
CHANGED
|
@@ -44,4 +44,5 @@ import MountainFlagSvg from './mountain-flag.svg';
|
|
|
44
44
|
import CloudArrowUpSvg from './cloud-arrow-up.svg';
|
|
45
45
|
import GuideSvg from './guide.svg';
|
|
46
46
|
import ArrowsRotateSvg from './arrows-rotate.svg';
|
|
47
|
-
|
|
47
|
+
import InfoCircleRegularSvg from './info-circle-regular.svg';
|
|
48
|
+
export { ViewSvg, GenerateSvg, ManageSvg, NotFoundSvg, EmailFilledSvg, AlertSvg, LockSvg, EyeSvg, EyeCrossedSvg, DownloadSvg, IdCardSvg, InfoCircleSvg, FileExclamationSvg, HourglassClockSvg, EnvelopeSvg, CheckSvg, ChevronUpSvg, ChevronDownSvg, ChevronRightSvg, ChevronLeftSvg, ErrorFilledSvg, LightBulbSvg, LandmarkSvg, CoinsSvg, CaretDownSvg, SortLightSvg, PlusSvg, UserSvg, LoadingSvg, BullseyeSvg, SolidCheckSvg, SolidXMarkSvg, ArrowSortSvg, ArrowDownSvg, SearchSvg, XMarkSvg, PenSvg, CalendarSvg, CalendarDaySvg, EllipsisSvg, ChartLineUpSvg, SackDollarSvg, MountainFlagSvg, CloudArrowUpSvg, GuideSvg, ArrowsRotateSvg, InfoCircleRegularSvg };
|