@frollo/frollo-web-ui 5.0.1 → 5.0.3
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 +1169 -784
- package/esm/{add-to-unscopables-2400f45b.js → add-to-unscopables-31609885.js} +2 -2
- package/esm/{array-iteration-107f927f.js → array-iteration-ec356eb3.js} +2 -2
- package/esm/{array-method-has-species-support-3d413468.js → array-method-has-species-support-8a4b1310.js} +1 -1
- package/esm/{array-method-is-strict-055b1830.js → array-method-is-strict-fc2e0d8d.js} +1 -1
- package/esm/{array-species-create-a5f5503b.js → array-species-create-b125f4a4.js} +2 -2
- package/esm/{classof-39c30bd5.js → classof-ee4b3b5b.js} +1 -1
- package/esm/{create-property-534611fd.js → create-property-c70ecc08.js} +1 -1
- package/esm/{delete-property-or-throw-8032646c.js → delete-property-or-throw-cd4c57d6.js} +3 -3
- package/esm/{does-not-exceed-safe-integer-31d08811.js → does-not-exceed-safe-integer-8e0042ec.js} +1 -1
- package/esm/{es.array.concat-987938be.js → es.array.concat-fe990345.js} +6 -6
- package/esm/{es.array.find-dfa1f42f.js → es.array.find-67b3b514.js} +5 -5
- package/esm/{es.array.includes-91be7771.js → es.array.includes-a06445a5.js} +3 -3
- package/esm/es.array.map-ae6c9437.js +43 -0
- package/esm/{es.function.name-557cb1f9.js → es.function.name-6daefaeb.js} +1 -1
- package/esm/{es.number.constructor-d6ff8874.js → es.number.constructor-98bae04f.js} +2 -2
- package/esm/es.string.includes-ade04f96.js +66 -0
- package/esm/{es.string.iterator-590198a8.js → es.string.iterator-0992bb28.js} +8 -8
- package/esm/{export-a37ba078.js → export-8a363004.js} +1 -1
- package/esm/{function-apply-ce251590.js → function-apply-b908d7e6.js} +1 -1
- package/esm/fw-animations.js +5 -5
- package/esm/fw-bar-chart.js +17 -16
- package/esm/{fw-button-8d131219.js → fw-button-b7a12ae1.js} +2 -2
- package/esm/fw-button.js +9 -9
- package/esm/fw-checkbox.js +43 -22
- package/esm/fw-drawer.js +9 -9
- package/esm/fw-dropdown-765dbbba.js +223 -0
- package/esm/fw-dropdown.js +15 -222
- package/esm/{fw-image-4787a8bd.js → fw-image-660d3e75.js} +10 -10
- package/esm/fw-image.js +18 -18
- package/esm/fw-input-7d25de48.js +235 -0
- package/esm/fw-input.js +20 -245
- package/esm/{fw-loading-spinner-c394fafc.js → fw-loading-spinner-3fda633e.js} +1 -1
- package/esm/fw-loading.js +3 -3
- package/esm/fw-modal.js +9 -9
- package/esm/fw-navigation-menu.js +9 -9
- package/esm/fw-progress-bar.js +3 -3
- package/esm/fw-provider-list.js +36 -0
- package/esm/fw-sidebar-menu.js +9 -9
- package/esm/fw-table-row-d390fe77.js +492 -0
- package/esm/fw-table.js +14 -489
- package/esm/fw-tabs.js +10 -10
- package/esm/fw-tag-9ef5331a.js +157 -0
- package/esm/fw-tag.js +13 -162
- package/esm/fw-toast.js +24 -85
- package/esm/fw-transactions-card.js +18 -18
- package/esm/{index-e4a2f8b0.js → index-04d3cb23.js} +1 -1
- package/esm/index-8c78a422.js +417 -0
- package/esm/{index-2766bfe4.js → index-c15f5641.js} +18 -55
- package/esm/index.js +48 -54
- package/esm/{is-forced-752b5893.js → is-forced-fc680e39.js} +1 -1
- package/esm/{object-create-f6f3a673.js → object-create-bc771493.js} +2 -2
- package/esm/{object-keys-4f5bf4e7.js → object-keys-17f3b440.js} +1 -1
- package/esm/{web.timers-0f117224.js → web.timers-c5316125.js} +3 -3
- package/frollo-web-ui.esm.js +1255 -839
- package/index.d.ts +138 -22
- package/package.json +1 -1
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +19 -0
- package/types/components/fw-checkbox/index.types.d.ts +1 -0
- package/types/components/fw-dropdown/fw-dropdown.vue.d.ts +17 -0
- package/types/components/fw-dropdown/index.types.d.ts +1 -0
- package/types/components/fw-provider-list/fw-provider-list.vue.d.ts +68 -0
- package/types/components/fw-provider-list/index.d.ts +2 -0
- package/types/components/fw-provider-list/index.types.d.ts +11 -0
- package/types/components/index.d.ts +1 -0
- package/types/components/index.types.d.ts +1 -0
- package/web-components/index.js +1300 -869
package/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare interface FwInputProps {
|
|
|
23
23
|
maxLength?: number;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
declare const _default$
|
|
26
|
+
declare const _default$m: vue.DefineComponent<{
|
|
27
27
|
/**
|
|
28
28
|
* The input v-model
|
|
29
29
|
*/
|
|
@@ -218,7 +218,7 @@ declare const _default$l: vue.DefineComponent<{
|
|
|
218
218
|
enableErrors: boolean;
|
|
219
219
|
}>;
|
|
220
220
|
|
|
221
|
-
declare const _default$
|
|
221
|
+
declare const _default$l: vue.DefineComponent<{
|
|
222
222
|
/**
|
|
223
223
|
* The name of the checkbox input field.
|
|
224
224
|
* Multiple checkboxes can use the same name with a unique value.
|
|
@@ -259,6 +259,15 @@ declare const _default$k: vue.DefineComponent<{
|
|
|
259
259
|
type: BooleanConstructor;
|
|
260
260
|
default: boolean;
|
|
261
261
|
};
|
|
262
|
+
/**
|
|
263
|
+
* Progmatically set the checked state of the input.
|
|
264
|
+
* Used outside a FwForm element
|
|
265
|
+
*/
|
|
266
|
+
isChecked: {
|
|
267
|
+
type: BooleanConstructor;
|
|
268
|
+
required: false;
|
|
269
|
+
default: undefined;
|
|
270
|
+
};
|
|
262
271
|
}, {
|
|
263
272
|
uuid: string;
|
|
264
273
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -302,8 +311,18 @@ declare const _default$k: vue.DefineComponent<{
|
|
|
302
311
|
type: BooleanConstructor;
|
|
303
312
|
default: boolean;
|
|
304
313
|
};
|
|
314
|
+
/**
|
|
315
|
+
* Progmatically set the checked state of the input.
|
|
316
|
+
* Used outside a FwForm element
|
|
317
|
+
*/
|
|
318
|
+
isChecked: {
|
|
319
|
+
type: BooleanConstructor;
|
|
320
|
+
required: false;
|
|
321
|
+
default: undefined;
|
|
322
|
+
};
|
|
305
323
|
}>>, {
|
|
306
324
|
enableErrors: boolean;
|
|
325
|
+
isChecked: boolean;
|
|
307
326
|
}>;
|
|
308
327
|
|
|
309
328
|
declare interface FwDropdownOption {
|
|
@@ -317,9 +336,10 @@ declare interface FwDropdownProps {
|
|
|
317
336
|
options: FwDropdownOption[];
|
|
318
337
|
hint?: string;
|
|
319
338
|
placeholder?: string;
|
|
339
|
+
enableErrors?: boolean;
|
|
320
340
|
}
|
|
321
341
|
|
|
322
|
-
declare const _default$
|
|
342
|
+
declare const _default$k: vue.DefineComponent<{
|
|
323
343
|
/**
|
|
324
344
|
* The select v-model
|
|
325
345
|
*/
|
|
@@ -366,6 +386,14 @@ declare const _default$j: vue.DefineComponent<{
|
|
|
366
386
|
required: false;
|
|
367
387
|
default: string;
|
|
368
388
|
};
|
|
389
|
+
/**
|
|
390
|
+
* Enable the error section UI.
|
|
391
|
+
* Defaults to true
|
|
392
|
+
*/
|
|
393
|
+
enableErrors: {
|
|
394
|
+
type: BooleanConstructor;
|
|
395
|
+
default: boolean;
|
|
396
|
+
};
|
|
369
397
|
}, {
|
|
370
398
|
menuButtonClass: string;
|
|
371
399
|
menuClass: string;
|
|
@@ -426,11 +454,20 @@ declare const _default$j: vue.DefineComponent<{
|
|
|
426
454
|
required: false;
|
|
427
455
|
default: string;
|
|
428
456
|
};
|
|
457
|
+
/**
|
|
458
|
+
* Enable the error section UI.
|
|
459
|
+
* Defaults to true
|
|
460
|
+
*/
|
|
461
|
+
enableErrors: {
|
|
462
|
+
type: BooleanConstructor;
|
|
463
|
+
default: boolean;
|
|
464
|
+
};
|
|
429
465
|
}>>, {
|
|
430
466
|
placeholder: string;
|
|
467
|
+
enableErrors: boolean;
|
|
431
468
|
}>;
|
|
432
469
|
|
|
433
|
-
declare const _default$
|
|
470
|
+
declare const _default$j: vue.DefineComponent<{
|
|
434
471
|
/**
|
|
435
472
|
* The header title of the card
|
|
436
473
|
*/
|
|
@@ -539,7 +576,7 @@ declare interface FwButtonProps {
|
|
|
539
576
|
external?: boolean;
|
|
540
577
|
}
|
|
541
578
|
|
|
542
|
-
declare const _default$
|
|
579
|
+
declare const _default$i: vue.DefineComponent<{
|
|
543
580
|
/**
|
|
544
581
|
* A `router-link` path or object
|
|
545
582
|
*/
|
|
@@ -720,7 +757,7 @@ declare interface NavMenuItem {
|
|
|
720
757
|
external?: boolean;
|
|
721
758
|
}
|
|
722
759
|
|
|
723
|
-
declare const _default$
|
|
760
|
+
declare const _default$h: vue.DefineComponent<{
|
|
724
761
|
/**
|
|
725
762
|
* An array of menu items
|
|
726
763
|
* `{ to?: string | object; href?: string; label: string; }`
|
|
@@ -775,7 +812,7 @@ declare const _default$g: vue.DefineComponent<{
|
|
|
775
812
|
containerClass: string;
|
|
776
813
|
}>;
|
|
777
814
|
|
|
778
|
-
declare const _default$
|
|
815
|
+
declare const _default$g: vue.DefineComponent<{
|
|
779
816
|
/**
|
|
780
817
|
* The active tab v-model
|
|
781
818
|
*/
|
|
@@ -799,7 +836,7 @@ declare const _default$f: vue.DefineComponent<{
|
|
|
799
836
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
800
837
|
}, {}>;
|
|
801
838
|
|
|
802
|
-
declare const _default$
|
|
839
|
+
declare const _default$f: vue.DefineComponent<{
|
|
803
840
|
/**
|
|
804
841
|
* The label of the tab component used as the button panel label
|
|
805
842
|
*/
|
|
@@ -831,7 +868,7 @@ declare const _default$e: vue.DefineComponent<{
|
|
|
831
868
|
};
|
|
832
869
|
}>>, {}>;
|
|
833
870
|
|
|
834
|
-
declare const _default$
|
|
871
|
+
declare const _default$e: vue.DefineComponent<{
|
|
835
872
|
/**
|
|
836
873
|
* The modal's v-model. Controls the visibility of the modal.
|
|
837
874
|
*/
|
|
@@ -1010,7 +1047,7 @@ declare interface ProgressBarStep {
|
|
|
1010
1047
|
subSteps: number;
|
|
1011
1048
|
}
|
|
1012
1049
|
|
|
1013
|
-
declare const _default$
|
|
1050
|
+
declare const _default$d: vue.DefineComponent<{
|
|
1014
1051
|
/**
|
|
1015
1052
|
* An array of menu progress steps.
|
|
1016
1053
|
* `{ label: string; position: number; subSteps: number; }`
|
|
@@ -1076,6 +1113,7 @@ declare interface FwCheckboxProps {
|
|
|
1076
1113
|
rules?: string | Record<string, unknown> | (() => boolean);
|
|
1077
1114
|
hint?: string;
|
|
1078
1115
|
enableErrors?: boolean;
|
|
1116
|
+
isChecked?: boolean;
|
|
1079
1117
|
}
|
|
1080
1118
|
|
|
1081
1119
|
declare interface FwModalProps {
|
|
@@ -1198,6 +1236,18 @@ declare interface FwDrawerProps {
|
|
|
1198
1236
|
confirmButtonType?: ButtonVariantName;
|
|
1199
1237
|
}
|
|
1200
1238
|
|
|
1239
|
+
interface FwProviderListItem {
|
|
1240
|
+
status: 'supported' | 'outage';
|
|
1241
|
+
name: string;
|
|
1242
|
+
image_url: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare interface FwProviderListProps {
|
|
1245
|
+
heading: string;
|
|
1246
|
+
items: FwProviderListItem[];
|
|
1247
|
+
searchPlaceholder?: string;
|
|
1248
|
+
tableHeaderName?: string;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1201
1251
|
declare const __default__$4: vue.DefineComponent<{
|
|
1202
1252
|
/**
|
|
1203
1253
|
* The size of the tag. Accepts: 'xs', 'sm' & 'md'
|
|
@@ -1334,9 +1384,9 @@ declare const __default__$3: vue.DefineComponent<{
|
|
|
1334
1384
|
clickableRows: boolean;
|
|
1335
1385
|
}>;
|
|
1336
1386
|
|
|
1337
|
-
declare const _default$
|
|
1387
|
+
declare const _default$c: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
1338
1388
|
|
|
1339
|
-
declare const _default$
|
|
1389
|
+
declare const _default$b: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
1340
1390
|
|
|
1341
1391
|
declare const __default__$2: vue.DefineComponent<{
|
|
1342
1392
|
/**
|
|
@@ -1404,7 +1454,7 @@ declare const __default__$2: vue.DefineComponent<{
|
|
|
1404
1454
|
iconPositionStart: boolean;
|
|
1405
1455
|
}>;
|
|
1406
1456
|
|
|
1407
|
-
declare const _default$
|
|
1457
|
+
declare const _default$a: vue.DefineComponent<{
|
|
1408
1458
|
/**
|
|
1409
1459
|
* The src attribute of the image
|
|
1410
1460
|
*/
|
|
@@ -1487,11 +1537,11 @@ declare const _default$9: vue.DefineComponent<{
|
|
|
1487
1537
|
threshold: number;
|
|
1488
1538
|
}>;
|
|
1489
1539
|
|
|
1490
|
-
declare const _default$
|
|
1540
|
+
declare const _default$9: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
1491
1541
|
|
|
1492
|
-
declare const _default$
|
|
1542
|
+
declare const _default$8: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
1493
1543
|
|
|
1494
|
-
declare const _default$
|
|
1544
|
+
declare const _default$7: vue.DefineComponent<{
|
|
1495
1545
|
columns: {
|
|
1496
1546
|
type: NumberConstructor;
|
|
1497
1547
|
default: number;
|
|
@@ -1516,7 +1566,7 @@ declare const _default$6: vue.DefineComponent<{
|
|
|
1516
1566
|
rows: number;
|
|
1517
1567
|
}>;
|
|
1518
1568
|
|
|
1519
|
-
declare const _default$
|
|
1569
|
+
declare const _default$6: vue.DefineComponent<{
|
|
1520
1570
|
/**
|
|
1521
1571
|
* The toast's v-model. Controls the visibility of the toast.
|
|
1522
1572
|
*/
|
|
@@ -1635,7 +1685,7 @@ declare const _default$5: vue.DefineComponent<{
|
|
|
1635
1685
|
timeout: number;
|
|
1636
1686
|
}>;
|
|
1637
1687
|
|
|
1638
|
-
declare const _default$
|
|
1688
|
+
declare const _default$5: vue.DefineComponent<{
|
|
1639
1689
|
/**
|
|
1640
1690
|
* The transaction title of the card
|
|
1641
1691
|
*/
|
|
@@ -1693,7 +1743,7 @@ declare const _default$4: vue.DefineComponent<{
|
|
|
1693
1743
|
};
|
|
1694
1744
|
}>>, {}>;
|
|
1695
1745
|
|
|
1696
|
-
declare const _default$
|
|
1746
|
+
declare const _default$4: vue.DefineComponent<{
|
|
1697
1747
|
/**
|
|
1698
1748
|
* The transaction title of the chart
|
|
1699
1749
|
*/
|
|
@@ -1774,7 +1824,7 @@ declare const _default$3: vue.DefineComponent<{
|
|
|
1774
1824
|
};
|
|
1775
1825
|
}>>, {}>;
|
|
1776
1826
|
|
|
1777
|
-
declare const _default$
|
|
1827
|
+
declare const _default$3: vue.DefineComponent<{
|
|
1778
1828
|
/**
|
|
1779
1829
|
* An array of menu items
|
|
1780
1830
|
* `{ to?: string | object; href?: string; label: string; }`
|
|
@@ -1844,7 +1894,7 @@ declare const _default$2: vue.DefineComponent<{
|
|
|
1844
1894
|
closedWidth: string;
|
|
1845
1895
|
}>;
|
|
1846
1896
|
|
|
1847
|
-
declare const _default$
|
|
1897
|
+
declare const _default$2: vue.DefineComponent<{
|
|
1848
1898
|
/**
|
|
1849
1899
|
* The drawer's v-model. Controls the visibility of the drawer.
|
|
1850
1900
|
*/
|
|
@@ -2007,6 +2057,72 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
2007
2057
|
confirmButtonType: ButtonVariantName;
|
|
2008
2058
|
}>;
|
|
2009
2059
|
|
|
2060
|
+
declare const _default$1: vue.DefineComponent<{
|
|
2061
|
+
/**
|
|
2062
|
+
* The header heading of the list.
|
|
2063
|
+
*/
|
|
2064
|
+
heading: {
|
|
2065
|
+
type: StringConstructor;
|
|
2066
|
+
};
|
|
2067
|
+
/**
|
|
2068
|
+
* The list items of the table items.
|
|
2069
|
+
*/
|
|
2070
|
+
items: {
|
|
2071
|
+
type: PropType<FwProviderListItem[]>;
|
|
2072
|
+
required: true;
|
|
2073
|
+
};
|
|
2074
|
+
/**
|
|
2075
|
+
* The placeholder text for the sarch input.
|
|
2076
|
+
*/
|
|
2077
|
+
searchPlaceholder: {
|
|
2078
|
+
type: StringConstructor;
|
|
2079
|
+
default: string;
|
|
2080
|
+
};
|
|
2081
|
+
/**
|
|
2082
|
+
* The table header title.
|
|
2083
|
+
*/
|
|
2084
|
+
tableHeaderName: {
|
|
2085
|
+
type: StringConstructor;
|
|
2086
|
+
default: string;
|
|
2087
|
+
};
|
|
2088
|
+
}, {
|
|
2089
|
+
options: FwTableItemOptions;
|
|
2090
|
+
sortedTableItems: vue.ComputedRef<FwTableItem[]>;
|
|
2091
|
+
searchFilterModel: vue.Ref<string>;
|
|
2092
|
+
statusFilterModel: vue.Ref<string>;
|
|
2093
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2094
|
+
/**
|
|
2095
|
+
* The header heading of the list.
|
|
2096
|
+
*/
|
|
2097
|
+
heading: {
|
|
2098
|
+
type: StringConstructor;
|
|
2099
|
+
};
|
|
2100
|
+
/**
|
|
2101
|
+
* The list items of the table items.
|
|
2102
|
+
*/
|
|
2103
|
+
items: {
|
|
2104
|
+
type: PropType<FwProviderListItem[]>;
|
|
2105
|
+
required: true;
|
|
2106
|
+
};
|
|
2107
|
+
/**
|
|
2108
|
+
* The placeholder text for the sarch input.
|
|
2109
|
+
*/
|
|
2110
|
+
searchPlaceholder: {
|
|
2111
|
+
type: StringConstructor;
|
|
2112
|
+
default: string;
|
|
2113
|
+
};
|
|
2114
|
+
/**
|
|
2115
|
+
* The table header title.
|
|
2116
|
+
*/
|
|
2117
|
+
tableHeaderName: {
|
|
2118
|
+
type: StringConstructor;
|
|
2119
|
+
default: string;
|
|
2120
|
+
};
|
|
2121
|
+
}>>, {
|
|
2122
|
+
searchPlaceholder: string;
|
|
2123
|
+
tableHeaderName: string;
|
|
2124
|
+
}>;
|
|
2125
|
+
|
|
2010
2126
|
declare const __default__$1: vue.DefineComponent<{
|
|
2011
2127
|
/**
|
|
2012
2128
|
* The animation-iteration-count CSS property of the pulse animation.
|
|
@@ -2079,4 +2195,4 @@ declare const install: Exclude<Plugin['install'], undefined>;
|
|
|
2079
2195
|
|
|
2080
2196
|
declare module '@frollo/frollo-web-ui/icons' { }
|
|
2081
2197
|
|
|
2082
|
-
export { ButtonAnimation, ButtonDefinition, ButtonDefinitionList, ButtonSize, ButtonSizes, ButtonTypeAttribute, ButtonVariantName, __default__$2 as FwAccordion, FwAccordionProps, _default$
|
|
2198
|
+
export { ButtonAnimation, ButtonDefinition, ButtonDefinitionList, ButtonSize, ButtonSizes, ButtonTypeAttribute, ButtonVariantName, __default__$2 as FwAccordion, FwAccordionProps, _default$4 as FwBarChart, FwBarChartProps, FwBarGraphData, _default$i as FwButton, FwButtonProps, _default$j as FwCard, FwCardProps, _default$l as FwCheckbox, FwCheckboxProps, _default$2 as FwDrawer, FwDrawerProps, _default$k as FwDropdown, FwDropdownOption, FwDropdownProps, __default__$1 as FwEmailPulse, _default$a as FwImage, FwImageProps, _default$m as FwInput, FwInputProps, FwInputType, _default$9 as FwLoadingBar, _default$8 as FwLoadingCard, _default as FwLoadingSpinner, _default$7 as FwLoadingTable, _default$e as FwModal, FwModalProps, _default$h as FwNavigationMenu, _default$d as FwProgressBar, _default$1 as FwProviderList, FwProviderListProps, _default$3 as FwSidebarMenu, FwSidebarMenuItem, __default__ as FwSuccessPulse, _default$f as FwTab, __default__$3 as FwTable, FwTableFormatFunction, _default$c as FwTableHead, FwTableItem, FwTableItemOptions, FwTableProps, _default$b as FwTableRow, FwTableSort, _default$g as FwTabs, __default__$4 as FwTag, FwTagProps, _default$6 as FwToast, FwToastProps, _default$5 as FwTransactionsCard, FwTransactionsCardProps, ModalServiceProps, NavMenuItem, ProgressBarStep, TagDefinition, TagDefinitionList, TagSize, TagSizes, TagVariantName, ToastPosition, ToastServiceProps, ToastType, ToastTypes, install as default, modalService, toastService };
|
package/package.json
CHANGED
|
@@ -40,6 +40,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: BooleanConstructor;
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Progmatically set the checked state of the input.
|
|
45
|
+
* Used outside a FwForm element
|
|
46
|
+
*/
|
|
47
|
+
isChecked: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
default: undefined;
|
|
51
|
+
};
|
|
43
52
|
}, {
|
|
44
53
|
uuid: string;
|
|
45
54
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -83,7 +92,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
92
|
type: BooleanConstructor;
|
|
84
93
|
default: boolean;
|
|
85
94
|
};
|
|
95
|
+
/**
|
|
96
|
+
* Progmatically set the checked state of the input.
|
|
97
|
+
* Used outside a FwForm element
|
|
98
|
+
*/
|
|
99
|
+
isChecked: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
required: false;
|
|
102
|
+
default: undefined;
|
|
103
|
+
};
|
|
86
104
|
}>>, {
|
|
87
105
|
enableErrors: boolean;
|
|
106
|
+
isChecked: boolean;
|
|
88
107
|
}>;
|
|
89
108
|
export default _default;
|
|
@@ -47,6 +47,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
required: false;
|
|
48
48
|
default: string;
|
|
49
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* Enable the error section UI.
|
|
52
|
+
* Defaults to true
|
|
53
|
+
*/
|
|
54
|
+
enableErrors: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
50
58
|
}, {
|
|
51
59
|
menuButtonClass: string;
|
|
52
60
|
menuClass: string;
|
|
@@ -107,7 +115,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
115
|
required: false;
|
|
108
116
|
default: string;
|
|
109
117
|
};
|
|
118
|
+
/**
|
|
119
|
+
* Enable the error section UI.
|
|
120
|
+
* Defaults to true
|
|
121
|
+
*/
|
|
122
|
+
enableErrors: {
|
|
123
|
+
type: BooleanConstructor;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
110
126
|
}>>, {
|
|
111
127
|
placeholder: string;
|
|
128
|
+
enableErrors: boolean;
|
|
112
129
|
}>;
|
|
113
130
|
export default _default;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import FwProviderListItem from './index.types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* The header heading of the list.
|
|
6
|
+
*/
|
|
7
|
+
heading: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* The list items of the table items.
|
|
12
|
+
*/
|
|
13
|
+
items: {
|
|
14
|
+
type: PropType<FwProviderListItem[]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* The placeholder text for the sarch input.
|
|
19
|
+
*/
|
|
20
|
+
searchPlaceholder: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* The table header title.
|
|
26
|
+
*/
|
|
27
|
+
tableHeaderName: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
options: import("../fw-table/index.types").FwTableItemOptions;
|
|
33
|
+
sortedTableItems: import("vue").ComputedRef<import("../fw-table/index.types").FwTableItem[]>;
|
|
34
|
+
searchFilterModel: import("vue").Ref<string>;
|
|
35
|
+
statusFilterModel: import("vue").Ref<string>;
|
|
36
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
/**
|
|
38
|
+
* The header heading of the list.
|
|
39
|
+
*/
|
|
40
|
+
heading: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* The list items of the table items.
|
|
45
|
+
*/
|
|
46
|
+
items: {
|
|
47
|
+
type: PropType<FwProviderListItem[]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* The placeholder text for the sarch input.
|
|
52
|
+
*/
|
|
53
|
+
searchPlaceholder: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* The table header title.
|
|
59
|
+
*/
|
|
60
|
+
tableHeaderName: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
}>>, {
|
|
65
|
+
searchPlaceholder: string;
|
|
66
|
+
tableHeaderName: string;
|
|
67
|
+
}>;
|
|
68
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default interface FwProviderListItem {
|
|
2
|
+
status: 'supported' | 'outage';
|
|
3
|
+
name: string;
|
|
4
|
+
image_url: string;
|
|
5
|
+
}
|
|
6
|
+
export declare interface FwProviderListProps {
|
|
7
|
+
heading: string;
|
|
8
|
+
items: FwProviderListItem[];
|
|
9
|
+
searchPlaceholder?: string;
|
|
10
|
+
tableHeaderName?: string;
|
|
11
|
+
}
|
|
@@ -15,3 +15,4 @@ export * from '../components/fw-transactions-card/index.types';
|
|
|
15
15
|
export * from '../components/fw-bar-chart/index.types';
|
|
16
16
|
export * from '../components/fw-sidebar-menu/index.types';
|
|
17
17
|
export * from '../components/fw-drawer/index.types';
|
|
18
|
+
export * from '../components/fw-provider-list/index.types';
|