@flywheel-io/vision 2.0.0-beta.8 → 2.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/color.utils.d.ts +2 -0
- package/components/alert/alert.component.d.ts +1 -1
- package/components/app-icon/app-icon.component.d.ts +1 -1
- package/components/avatar/avatar.component.d.ts +7 -2
- package/components/badge/badge.component.d.ts +1 -1
- package/components/breadcrumbs/crumb.component.d.ts +1 -1
- package/components/button/button.component.d.ts +1 -1
- package/components/button-group/button-group.component.d.ts +1 -1
- package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +1 -1
- package/components/button-toggle/button-toggle.component.d.ts +1 -1
- package/components/card/card-attribute/card-attribute.component.d.ts +1 -1
- package/components/card/card-author/card-author.component.d.ts +1 -1
- package/components/card/card-header/card-header.component.d.ts +1 -1
- package/components/card/card.component.d.ts +1 -1
- package/components/checkbox/checkbox.component.d.ts +1 -1
- package/components/chip/chip.component.d.ts +1 -1
- package/components/contained-input/contained-input.component.d.ts +1 -1
- package/components/date-input/date-input.component.d.ts +1 -1
- package/components/dialog/dialog-confirm.component.d.ts +1 -1
- package/components/dialog/dialog-content.component.d.ts +1 -1
- package/components/dialog/dialog-simple.component.d.ts +1 -1
- package/components/dialog/dialog.component.d.ts +1 -1
- package/components/form-heading/form-heading.component.d.ts +1 -1
- package/components/icon/icon.component.d.ts +1 -1
- package/components/icon/icon.types.d.ts +1 -1
- package/components/icon-button/icon-button.component.d.ts +1 -1
- package/components/layouts/context/context.component.d.ts +1 -1
- package/components/layouts/grid/grid.component.d.ts +1 -1
- package/components/layouts/layout-group.component.d.ts +1 -1
- package/components/layouts/panel/panel.component.d.ts +1 -1
- package/components/layouts/sidebar/sidebar.component.d.ts +1 -1
- package/components/layouts/toolbar/toolbar.component.d.ts +1 -1
- package/components/menu/menu-container/menu-container.component.d.ts +26 -11
- package/components/menu/menu-item/menu-item.component.d.ts +5 -6
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +1 -1
- package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +1 -5
- package/components/menu/menu.component.d.ts +3 -23
- package/components/navbar/navbar-item/navbar-item.component.d.ts +1 -1
- package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +1 -1
- package/components/navbar/navbar.component.d.ts +1 -1
- package/components/number-input/number-input.component.d.ts +1 -1
- package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +1 -1
- package/components/paginator/paginator.component.d.ts +6 -3
- package/components/phone-input/phone-input.component.d.ts +1 -1
- package/components/phone-input/phone-input.model.d.ts +1 -1
- package/components/popover/popover-panel/popover-panel.component.d.ts +1 -1
- package/components/popover/popover.component.d.ts +1 -1
- package/components/progress/bar/bar.component.d.ts +1 -1
- package/components/progress/spinner/spinner.component.d.ts +1 -1
- package/components/radio/radio-group.component.d.ts +1 -1
- package/components/radio/radio.component.d.ts +1 -1
- package/components/section-heading/back-button/back-button.component.d.ts +1 -1
- package/components/section-heading/section-heading.component.d.ts +1 -1
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +1 -1
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +39 -22
- package/components/select-menu/select-menu.component.d.ts +1 -1
- package/components/select-menu/select-menu.module.d.ts +7 -6
- package/components/snackbar/snackbar/snackbar.component.d.ts +1 -1
- package/components/stepper/step.component.d.ts +1 -1
- package/components/stepper/stepper.component.d.ts +1 -1
- package/components/switch/switch.component.d.ts +1 -1
- package/components/table/cell.d.ts +1 -1
- package/components/table/row.d.ts +3 -5
- package/components/tabs/tab/tab.component.d.ts +1 -1
- package/components/tabs/tab-panel/tab-panel.component.d.ts +1 -1
- package/components/tabs/tabs.component.d.ts +1 -1
- package/components/text-input/text-input.component.d.ts +9 -6
- package/components/textarea-input/textarea-input.component.d.ts +1 -1
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +1 -1
- package/components/tooltip/tooltip.component.d.ts +1 -1
- package/components/wrapped-input/wrapped-input.component.d.ts +1 -1
- package/esm2022/color.utils.mjs +45 -0
- package/{esm2020 → esm2022}/components/alert/alert.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/alert/alert.module.mjs +9 -9
- package/{esm2020 → esm2022}/components/app-icon/app-icon.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/app-icon/app-icon.module.mjs +7 -7
- package/esm2022/components/avatar/avatar.component.mjs +66 -0
- package/{esm2020 → esm2022}/components/avatar/avatar.module.mjs +7 -7
- package/esm2022/components/badge/badge.component.mjs +45 -0
- package/{esm2020 → esm2022}/components/badge/badge.module.mjs +5 -5
- package/esm2022/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
- package/{esm2020 → esm2022}/components/breadcrumbs/breadcrumbs.module.mjs +9 -9
- package/esm2022/components/breadcrumbs/crumb.component.mjs +34 -0
- package/{esm2020 → esm2022}/components/button/button.component.mjs +4 -4
- package/esm2022/components/button/button.directives.mjs +129 -0
- package/{esm2020 → esm2022}/components/button/button.module.mjs +21 -21
- package/esm2022/components/button-group/button-group.component.mjs +131 -0
- package/{esm2020 → esm2022}/components/button-group/button-group.module.mjs +9 -9
- package/esm2022/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +54 -0
- package/esm2022/components/button-toggle/button-toggle.component.mjs +137 -0
- package/{esm2020 → esm2022}/components/button-toggle/button-toggle.module.mjs +9 -9
- package/{esm2020 → esm2022}/components/card/card-attribute/card-attribute.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card-author/card-author.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card-content/card-content.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card-footer/card-footer.component.mjs +8 -8
- package/{esm2020 → esm2022}/components/card/card-header/card-header.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card.module.mjs +19 -19
- package/esm2022/components/checkbox/checkbox.component.mjs +79 -0
- package/{esm2020 → esm2022}/components/checkbox/checkbox.module.mjs +9 -9
- package/esm2022/components/chip/chip.component.mjs +52 -0
- package/{esm2020 → esm2022}/components/chip/chip.module.mjs +9 -9
- package/esm2022/components/contained-input/contained-input.component.mjs +86 -0
- package/{esm2020 → esm2022}/components/contained-input/contained-input.module.mjs +13 -13
- package/esm2022/components/date-input/date-input.component.mjs +139 -0
- package/{esm2020 → esm2022}/components/date-input/date-input.module.mjs +9 -9
- package/{esm2020 → esm2022}/components/dialog/dialog-actions.component.mjs +9 -9
- package/{esm2020 → esm2022}/components/dialog/dialog-confirm.component.mjs +6 -6
- package/esm2022/components/dialog/dialog-content.component.mjs +38 -0
- package/{esm2020 → esm2022}/components/dialog/dialog-header.component.mjs +9 -9
- package/{esm2020 → esm2022}/components/dialog/dialog-simple.component.mjs +6 -6
- package/{esm2020 → esm2022}/components/dialog/dialog.component.mjs +7 -7
- package/{esm2020 → esm2022}/components/dialog/dialog.service.mjs +6 -6
- package/{esm2020 → esm2022}/components/dialog/dialogs.module.mjs +27 -27
- package/{esm2020 → esm2022}/components/form-heading/form-heading.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/form-heading/form-heading.module.mjs +9 -9
- package/esm2022/components/forms/validators.mjs +81 -0
- package/esm2022/components/icon/icon.component.mjs +61 -0
- package/{esm2020 → esm2022}/components/icon/icon.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/icon-button/icon-button.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/icon-button/icon-button.module.mjs +7 -7
- package/esm2022/components/layouts/context/context.component.mjs +46 -0
- package/{esm2020 → esm2022}/components/layouts/grid/grid.component.mjs +7 -7
- package/esm2022/components/layouts/layout-group.component.mjs +36 -0
- package/{esm2020 → esm2022}/components/layouts/layouts.module.mjs +19 -19
- package/{esm2020 → esm2022}/components/layouts/panel/panel.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/layouts/sidebar/sidebar.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/layouts/toolbar/toolbar.component.mjs +4 -4
- package/esm2022/components/menu/menu-close-triggers.directive.mjs +38 -0
- package/esm2022/components/menu/menu-container/menu-container.component.mjs +126 -0
- package/{esm2020 → esm2022}/components/menu/menu-header/menu-header.component.mjs +4 -4
- package/esm2022/components/menu/menu-item/menu-item.component.mjs +134 -0
- package/{esm2020 → esm2022}/components/menu/menu-item-group/menu-item-group.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/menu/menu-separator/menu-separator.component.mjs +4 -4
- package/esm2022/components/menu/menu-sub-item/menu-sub-item.component.mjs +103 -0
- package/esm2022/components/menu/menu.component.mjs +129 -0
- package/{esm2020 → esm2022}/components/menu/menu.module.mjs +37 -37
- package/{esm2020 → esm2022}/components/navbar/navbar-header/navbar-header.component.mjs +4 -4
- package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +95 -0
- package/esm2022/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +76 -0
- package/esm2022/components/navbar/navbar.component.mjs +75 -0
- package/{esm2020 → esm2022}/components/navbar/navbar.module.mjs +25 -25
- package/esm2022/components/number-input/number-input.component.mjs +122 -0
- package/{esm2020 → esm2022}/components/number-input/number-input.module.mjs +9 -9
- package/esm2022/components/paginator/paginator-advanced/paginator-advanced.component.mjs +123 -0
- package/esm2022/components/paginator/paginator.component.mjs +133 -0
- package/{esm2020 → esm2022}/components/paginator/paginator.module.mjs +17 -17
- package/esm2022/components/phone-input/phone-input.component.mjs +285 -0
- package/{esm2020 → esm2022}/components/phone-input/phone-input.module.mjs +17 -17
- package/{esm2020 → esm2022}/components/popover/popover-panel/popover-panel.component.mjs +4 -4
- package/esm2022/components/popover/popover.component.mjs +76 -0
- package/{esm2020 → esm2022}/components/popover/popover.module.mjs +13 -13
- package/{esm2020 → esm2022}/components/progress/bar/bar.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/progress/progress.module.mjs +7 -7
- package/esm2022/components/progress/spinner/spinner.component.mjs +101 -0
- package/esm2022/components/radio/radio-group.component.mjs +117 -0
- package/esm2022/components/radio/radio.component.mjs +51 -0
- package/{esm2020 → esm2022}/components/radio/radio.module.mjs +11 -11
- package/esm2022/components/section-heading/back-button/back-button.component.mjs +30 -0
- package/{esm2020 → esm2022}/components/section-heading/section-heading.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/section-heading/section-heading.module.mjs +13 -13
- package/{esm2020 → esm2022}/components/section-heading/subsection-heading/subsection-heading.component.mjs +5 -5
- package/esm2022/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +354 -0
- package/esm2022/components/select-menu/select-menu.component.mjs +332 -0
- package/esm2022/components/select-menu/select-menu.module.mjs +60 -0
- package/esm2022/components/shared/pipes/pipes.module.mjs +36 -0
- package/esm2022/components/shared/pipes/translate.pipe.mjs +40 -0
- package/{esm2020 → esm2022}/components/shared/pipes/trusthtml.pipe.mjs +5 -5
- package/esm2022/components/shared/services/menu-manager.service.mjs +27 -0
- package/esm2022/components/shared/translation.service.mjs +26 -0
- package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +111 -0
- package/esm2022/components/snackbar/snackbar-container/snackbar-container.component.mjs +63 -0
- package/{esm2020 → esm2022}/components/snackbar/snackbar.module.mjs +15 -15
- package/esm2022/components/snackbar/snackbar.service.mjs +36 -0
- package/esm2022/components/stepper/step.component.mjs +113 -0
- package/esm2022/components/stepper/stepper.component.mjs +95 -0
- package/{esm2020 → esm2022}/components/stepper/stepper.module.mjs +13 -13
- package/esm2022/components/switch/switch.component.mjs +73 -0
- package/{esm2020 → esm2022}/components/switch/switch.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/table/cell.mjs +24 -24
- package/esm2022/components/table/row.mjs +164 -0
- package/esm2022/components/table/table-dense.component.mjs +38 -0
- package/esm2022/components/table/table.component.mjs +38 -0
- package/{esm2020 → esm2022}/components/table/table.module.mjs +37 -37
- package/esm2022/components/tabs/tab/tab.component.mjs +79 -0
- package/{esm2020 → esm2022}/components/tabs/tab-panel/tab-panel.component.mjs +4 -4
- package/esm2022/components/tabs/tabs.component.mjs +68 -0
- package/{esm2020 → esm2022}/components/tabs/tabs.module.mjs +11 -11
- package/esm2022/components/text-input/text-input.component.mjs +125 -0
- package/{esm2020 → esm2022}/components/text-input/text-input.module.mjs +9 -9
- package/esm2022/components/textarea-input/textarea-input.component.mjs +86 -0
- package/{esm2020 → esm2022}/components/textarea-input/textarea-input.module.mjs +11 -11
- package/{esm2020 → esm2022}/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/tooltip/tooltip.component.mjs +5 -5
- package/{esm2020 → esm2022}/components/tooltip/tooltip.module.mjs +13 -13
- package/{esm2020 → esm2022}/components/wrapped-input/wrapped-input.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/wrapped-input/wrapped-input.module.mjs +7 -7
- package/{esm2020 → esm2022}/directives/menu-register.directive.mjs +6 -6
- package/{fesm2020 → fesm2022}/flywheel-io-vision.mjs +1512 -1505
- package/fesm2022/flywheel-io-vision.mjs.map +1 -0
- package/global.scss +1 -0
- package/package.json +9 -12
- package/styles.css +5 -0
- package/esm2020/components/avatar/avatar.component.mjs +0 -53
- package/esm2020/components/badge/badge.component.mjs +0 -45
- package/esm2020/components/breadcrumbs/breadcrumbs.component.mjs +0 -22
- package/esm2020/components/breadcrumbs/crumb.component.mjs +0 -34
- package/esm2020/components/button/button.directives.mjs +0 -129
- package/esm2020/components/button-group/button-group.component.mjs +0 -131
- package/esm2020/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +0 -54
- package/esm2020/components/button-toggle/button-toggle.component.mjs +0 -137
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -79
- package/esm2020/components/chip/chip.component.mjs +0 -52
- package/esm2020/components/contained-input/contained-input.component.mjs +0 -86
- package/esm2020/components/date-input/date-input.component.mjs +0 -139
- package/esm2020/components/dialog/dialog-content.component.mjs +0 -38
- package/esm2020/components/forms/validators.mjs +0 -81
- package/esm2020/components/icon/icon.component.mjs +0 -61
- package/esm2020/components/layouts/context/context.component.mjs +0 -46
- package/esm2020/components/layouts/layout-group.component.mjs +0 -36
- package/esm2020/components/menu/menu-close-triggers.directive.mjs +0 -38
- package/esm2020/components/menu/menu-container/menu-container.component.mjs +0 -90
- package/esm2020/components/menu/menu-item/menu-item.component.mjs +0 -136
- package/esm2020/components/menu/menu-sub-item/menu-sub-item.component.mjs +0 -109
- package/esm2020/components/menu/menu.component.mjs +0 -212
- package/esm2020/components/navbar/navbar-item/navbar-item.component.mjs +0 -95
- package/esm2020/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +0 -76
- package/esm2020/components/navbar/navbar.component.mjs +0 -75
- package/esm2020/components/number-input/number-input.component.mjs +0 -122
- package/esm2020/components/paginator/paginator-advanced/paginator-advanced.component.mjs +0 -123
- package/esm2020/components/paginator/paginator.component.mjs +0 -133
- package/esm2020/components/phone-input/phone-input.component.mjs +0 -285
- package/esm2020/components/popover/popover.component.mjs +0 -76
- package/esm2020/components/progress/spinner/spinner.component.mjs +0 -101
- package/esm2020/components/radio/radio-group.component.mjs +0 -117
- package/esm2020/components/radio/radio.component.mjs +0 -51
- package/esm2020/components/section-heading/back-button/back-button.component.mjs +0 -30
- package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +0 -357
- package/esm2020/components/select-menu/select-menu.component.mjs +0 -332
- package/esm2020/components/select-menu/select-menu.module.mjs +0 -56
- package/esm2020/components/shared/pipes/pipes.module.mjs +0 -36
- package/esm2020/components/shared/pipes/translate.pipe.mjs +0 -40
- package/esm2020/components/shared/services/menu-manager.service.mjs +0 -27
- package/esm2020/components/shared/translation.service.mjs +0 -26
- package/esm2020/components/snackbar/snackbar/snackbar.component.mjs +0 -111
- package/esm2020/components/snackbar/snackbar-container/snackbar-container.component.mjs +0 -63
- package/esm2020/components/snackbar/snackbar.service.mjs +0 -36
- package/esm2020/components/stepper/step.component.mjs +0 -113
- package/esm2020/components/stepper/stepper.component.mjs +0 -95
- package/esm2020/components/switch/switch.component.mjs +0 -73
- package/esm2020/components/table/row.mjs +0 -170
- package/esm2020/components/table/table-dense.component.mjs +0 -38
- package/esm2020/components/table/table.component.mjs +0 -38
- package/esm2020/components/tabs/tab/tab.component.mjs +0 -79
- package/esm2020/components/tabs/tabs.component.mjs +0 -68
- package/esm2020/components/text-input/text-input.component.mjs +0 -112
- package/esm2020/components/textarea-input/textarea-input.component.mjs +0 -86
- package/fesm2015/flywheel-io-vision.mjs +0 -8126
- package/fesm2015/flywheel-io-vision.mjs.map +0 -1
- package/fesm2020/flywheel-io-vision.mjs.map +0 -1
- package/flywheel-io-vision-2.0.0-beta.8.tgz +0 -0
- /package/{esm2020 → esm2022}/components/icon/icon.types.mjs +0 -0
- /package/{esm2020 → esm2022}/components/paginator/paginator.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/phone-input/country-code.data.mjs +0 -0
- /package/{esm2020 → esm2022}/components/phone-input/phone-input.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/snackbar/snackbar-message.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/snackbar/snackbar-timer.service.mjs +0 -0
- /package/{esm2020 → esm2022}/flywheel-io-vision.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
|
@@ -38,5 +38,5 @@ export declare class FwNumberInputComponent implements ControlValueAccessor {
|
|
|
38
38
|
handleDecrement(): void;
|
|
39
39
|
handleIncrement(): void;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwNumberInputComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwNumberInputComponent, "fw-number-input", never, { "disabled": "disabled"; "useActionableIcons": "useActionableIcons"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; "prefix": "prefix"; "context": "context"; "placeholder": "placeholder"; "readOnly": "readOnly"; "size": "size"; "min": "min"; "max": "max"; "step": "step"; "arrows": "arrows"; "numberType": "numberType"; "autofocus": "autofocus"; "autocomplete": "autocomplete"; "error": "error"; "value": "value"; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, never, ["input", "*"], false, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwNumberInputComponent, "fw-number-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "arrows": { "alias": "arrows"; "required": false; }; "numberType": { "alias": "numberType"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, never, ["input", "*"], false, never>;
|
|
42
42
|
}
|
|
@@ -28,5 +28,5 @@ export declare class FwPaginatorAdvancedComponent {
|
|
|
28
28
|
hasNextPage(): boolean;
|
|
29
29
|
hasPreviousPage(): boolean;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPaginatorAdvancedComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPaginatorAdvancedComponent, "fw-paginator-advanced", never, { "disabled": "disabled"; "showNext": "showNext"; "showPrevious": "showPrevious"; "showFirst": "showFirst"; "showLast": "showLast"; "pageIndex": "pageIndex"; "pageSizeOptions": "pageSizeOptions"; "length": "length"; "alignment": "alignment"; "selectorTitle": "selectorTitle"; "pageSize": "pageSize"; }, { "page": "page"; }, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPaginatorAdvancedComponent, "fw-paginator-advanced", never, { "disabled": { "alias": "disabled"; "required": false; }; "showNext": { "alias": "showNext"; "required": false; }; "showPrevious": { "alias": "showPrevious"; "required": false; }; "showFirst": { "alias": "showFirst"; "required": false; }; "showLast": { "alias": "showLast"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "length": { "alias": "length"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "selectorTitle": { "alias": "selectorTitle"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "page": "page"; }, never, never, false, never>;
|
|
32
32
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, TrackByFunction } from '@angular/core';
|
|
2
2
|
import { FwPaginatorEvent } from './paginator.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface PaginationPage {
|
|
@@ -6,7 +6,7 @@ export interface PaginationPage {
|
|
|
6
6
|
number: number;
|
|
7
7
|
active: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare class FwPaginatorComponent {
|
|
9
|
+
export declare class FwPaginatorComponent implements OnChanges {
|
|
10
10
|
size: 'small' | 'medium' | 'large';
|
|
11
11
|
color: 'slate' | 'primary' | 'secondary';
|
|
12
12
|
shape: 'rounded' | 'circle';
|
|
@@ -23,6 +23,9 @@ export declare class FwPaginatorComponent {
|
|
|
23
23
|
alignment: 'start' | 'center' | 'end';
|
|
24
24
|
selectorTitle: string;
|
|
25
25
|
page: EventEmitter<FwPaginatorEvent>;
|
|
26
|
+
pages: PaginationPage[];
|
|
27
|
+
pagesTrackByFn: TrackByFunction<PaginationPage>;
|
|
28
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
26
29
|
private buildPageEvent;
|
|
27
30
|
firstPage(): void;
|
|
28
31
|
lastPage(): void;
|
|
@@ -36,5 +39,5 @@ export declare class FwPaginatorComponent {
|
|
|
36
39
|
hasNextPage(): boolean;
|
|
37
40
|
hasPreviousPage(): boolean;
|
|
38
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPaginatorComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPaginatorComponent, "fw-paginator", never, { "size": "size"; "color": "color"; "shape": "shape"; "variant": "variant"; "disabled": "disabled"; "showNext": "showNext"; "showPrevious": "showPrevious"; "showFirst": "showFirst"; "showLast": "showLast"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "maxPagesShown": "maxPagesShown"; "length": "length"; "alignment": "alignment"; "selectorTitle": "selectorTitle"; }, { "page": "page"; }, never, never, false, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPaginatorComponent, "fw-paginator", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showNext": { "alias": "showNext"; "required": false; }; "showPrevious": { "alias": "showPrevious"; "required": false; }; "showFirst": { "alias": "showFirst"; "required": false; }; "showLast": { "alias": "showLast"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "maxPagesShown": { "alias": "maxPagesShown"; "required": false; }; "length": { "alias": "length"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "selectorTitle": { "alias": "selectorTitle"; "required": false; }; }, { "page": "page"; }, never, never, false, never>;
|
|
40
43
|
}
|
|
@@ -62,5 +62,5 @@ export declare class FwPhoneInputComponent implements OnInit, OnChanges, Control
|
|
|
62
62
|
private get formattedPhoneNumber();
|
|
63
63
|
private formatAsYouTypeIfEnabled;
|
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPhoneInputComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPhoneInputComponent, "fw-phone-input", never, { "preferredCountries": "preferredCountries"; "onlyCountries": "onlyCountries"; "enableCountrySearch": "enableCountrySearch"; "showCountrySelector": "showCountrySelector"; "size": "size"; "rightIcon": "rightIcon"; "helperText": "helperText"; "errorText": "errorText"; "placeholder": "placeholder"; "readOnly": "readOnly"; "error": "error"; "value": "value"; "disabled": "disabled"; "format": "format"; }, { "countryChanged": "countryChanged"; }, never, ["*"], false, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPhoneInputComponent, "fw-phone-input", never, { "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "onlyCountries": { "alias": "onlyCountries"; "required": false; }; "enableCountrySearch": { "alias": "enableCountrySearch"; "required": false; }; "showCountrySelector": { "alias": "showCountrySelector"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "countryChanged": "countryChanged"; }, never, ["*"], false, never>;
|
|
66
66
|
}
|
|
@@ -6,5 +6,5 @@ export declare class FwPopoverPanelComponent {
|
|
|
6
6
|
get classes(): string;
|
|
7
7
|
hidePopover(e: MouseEvent): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverPanelComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverPanelComponent, "fw-popover-panel", never, { "position": "position"; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverPanelComponent, "fw-popover-panel", never, { "position": { "alias": "position"; "required": false; }; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
|
|
10
10
|
}
|
|
@@ -15,5 +15,5 @@ export declare class FwPopoverComponent implements OnChanges {
|
|
|
15
15
|
backdropClick(): void;
|
|
16
16
|
handlePanelLeave(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwPopoverComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverComponent, "fw-popover", never, { "position": "position"; "trigger": "trigger"; "isOpen": "isOpen"; "action": "action"; "flyoutPanel": "flyoutPanel"; }, {}, never, ["*"], false, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwPopoverComponent, "fw-popover", never, { "position": { "alias": "position"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "action": { "alias": "action"; "required": false; }; "flyoutPanel": { "alias": "flyoutPanel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
19
19
|
}
|
|
@@ -28,5 +28,5 @@ export declare class FwProgressBarComponent {
|
|
|
28
28
|
/** Returns whether the progress bar is indeterminate. */
|
|
29
29
|
_isIndeterminate(): boolean;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwProgressBarComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwProgressBarComponent, "fw-progress-bar", never, { "mode": "mode"; "color": "color"; "showValue": "showValue"; "value": "value"; "bufferValue": "bufferValue"; }, {}, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwProgressBarComponent, "fw-progress-bar", never, { "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "bufferValue": { "alias": "bufferValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
32
|
}
|
|
@@ -33,5 +33,5 @@ export declare class FwProgressSpinnerComponent {
|
|
|
33
33
|
/** Stroke width of the circle in percent. */
|
|
34
34
|
_circleStrokeWidth(): number;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwProgressSpinnerComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwProgressSpinnerComponent, "fw-progress-spinner", never, { "mode": "mode"; "size": "size"; "color": "color"; "showValue": "showValue"; "value": "value"; }, {}, never, never, false, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwProgressSpinnerComponent, "fw-progress-spinner", never, { "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
37
|
}
|
|
@@ -28,5 +28,5 @@ export declare class FwRadioGroupComponent implements ControlValueAccessor, OnCh
|
|
|
28
28
|
setDisabledState(isDisabled: boolean): void;
|
|
29
29
|
handleChange(value: string): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwRadioGroupComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioGroupComponent, "fw-radio-group", never, { "value": "value"; "group": "group"; "color": "color"; "size": "size"; "disabled": "disabled"; "direction": "direction"; }, { "change": "change"; }, ["radioButtons"], ["fw-radio-button"], false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioGroupComponent, "fw-radio-group", never, { "value": { "alias": "value"; "required": false; }; "group": { "alias": "group"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "change": "change"; }, ["radioButtons"], ["fw-radio-button"], false, never>;
|
|
32
32
|
}
|
|
@@ -13,5 +13,5 @@ export declare class FwRadioComponent {
|
|
|
13
13
|
get radioStyles(): string[];
|
|
14
14
|
handleChange(event: any): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwRadioComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioComponent, "fw-radio-button", never, { "checked": "checked"; "value": "value"; "group": "group"; "disabled": "disabled"; "size": "size"; "color": "color"; "title": "title"; "focused": "focused"; }, { "change": "change"; }, never, ["*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwRadioComponent, "fw-radio-button", never, { "checked": { "alias": "checked"; "required": false; }; "value": { "alias": "value"; "required": false; }; "group": { "alias": "group"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "title": { "alias": "title"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -7,5 +7,5 @@ export declare class FwBackButtonComponent {
|
|
|
7
7
|
constructor(location: Location);
|
|
8
8
|
handleClick(): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwBackButtonComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwBackButtonComponent, "fw-back-button", never, { "backFunction": "backFunction"; }, {}, never, never, false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwBackButtonComponent, "fw-back-button", never, { "backFunction": { "alias": "backFunction"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
11
|
}
|
|
@@ -9,5 +9,5 @@ export declare class FwSectionHeadingComponent {
|
|
|
9
9
|
icon?: IconType;
|
|
10
10
|
constructor();
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSectionHeadingComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSectionHeadingComponent, "fw-section-heading", never, { "title": "title"; "description": "description"; "backButton": "backButton"; "backFunction": "backFunction"; "icon": "icon"; }, {}, never, ["fw-icon", "fw-chip", "p", "*"], false, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwSectionHeadingComponent, "fw-section-heading", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "backButton": { "alias": "backButton"; "required": false; }; "backFunction": { "alias": "backFunction"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["fw-icon", "fw-chip", "p", "*"], false, never>;
|
|
13
13
|
}
|
|
@@ -5,5 +5,5 @@ export declare class FwSubsectionHeadingComponent {
|
|
|
5
5
|
icon?: IconType;
|
|
6
6
|
constructor();
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSubsectionHeadingComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSubsectionHeadingComponent, "fw-subsection-heading", never, { "title": "title"; "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwSubsectionHeadingComponent, "fw-subsection-heading", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
9
|
}
|
|
@@ -1,21 +1,33 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import { CdkMenuTrigger } from '@angular/cdk/menu';
|
|
2
|
-
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter,
|
|
3
|
+
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList, WritableSignal } from '@angular/core';
|
|
3
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
5
|
import { FwMenuComponent } from '../../menu/menu.component';
|
|
6
|
+
import { FwMenuContainerComponent } from '../../menu/menu-container/menu-container.component';
|
|
5
7
|
import { FwMenuItemComponent } from '../../menu/menu-item/menu-item.component';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
|
-
|
|
9
|
+
/**
|
|
10
|
+
* FwMultiSelect a component for selecting multiple options
|
|
11
|
+
* @see [Storybook Docs](https://cdn.flywheel.io/docs/vision/master/?path=/docs/form-controls-multi-select--docs)
|
|
12
|
+
*/
|
|
13
|
+
export declare class FwMultiSelectMenuComponent implements ControlValueAccessor, AfterContentInit, OnDestroy {
|
|
8
14
|
protected _changeDetectorRef: ChangeDetectorRef;
|
|
15
|
+
private elementRef;
|
|
9
16
|
outsideClick(): void;
|
|
10
17
|
options: object[];
|
|
11
18
|
valueProperty?: string;
|
|
12
19
|
titleProperty?: string;
|
|
13
20
|
iconProperty?: string;
|
|
21
|
+
emptyText: string;
|
|
22
|
+
placeholder: string;
|
|
14
23
|
disabled?: boolean;
|
|
15
24
|
useCheckbox?: boolean;
|
|
16
25
|
closeOnSelect?: boolean;
|
|
17
|
-
filterItemsOnSelect?: boolean;
|
|
18
26
|
maxSelectedShown: number;
|
|
27
|
+
showClear: import("@angular/core").InputSignal<boolean>;
|
|
28
|
+
showFilter: import("@angular/core").InputSignalWithTransform<boolean, BooleanInput>;
|
|
29
|
+
showSelectionInfo: import("@angular/core").InputSignalWithTransform<boolean, BooleanInput>;
|
|
30
|
+
filterItemsOnSelect: import("@angular/core").InputSignalWithTransform<boolean, BooleanInput>;
|
|
19
31
|
width: string;
|
|
20
32
|
minHeight: string;
|
|
21
33
|
maxHeight: string;
|
|
@@ -23,43 +35,48 @@ export declare class FwMultiSelectMenuComponent implements ControlValueAccessor,
|
|
|
23
35
|
minOptionsHeight?: string;
|
|
24
36
|
maxOptionsHeight?: string;
|
|
25
37
|
size?: 'small' | 'medium' | 'large';
|
|
26
|
-
placeholder: string;
|
|
27
|
-
emptyText: string;
|
|
28
38
|
trigger: CdkMenuTrigger;
|
|
29
39
|
menu: FwMenuComponent;
|
|
40
|
+
menuFilter: import("@angular/core").Signal<FwMenuContainerComponent>;
|
|
30
41
|
renderedMenuItems: QueryList<FwMenuItemComponent>;
|
|
31
|
-
|
|
32
|
-
|
|
42
|
+
customMenuItems: QueryList<FwMenuItemComponent>;
|
|
43
|
+
createArray: (d: Iterable<unknown>) => unknown[];
|
|
44
|
+
selectedValues: Set<string>;
|
|
33
45
|
selectedOptions: object[];
|
|
34
|
-
|
|
46
|
+
displayedOptions: WritableSignal<FwMenuItemComponent[]>;
|
|
47
|
+
focusedIndex: WritableSignal<number>;
|
|
48
|
+
touched: boolean;
|
|
35
49
|
private subscriptions;
|
|
36
|
-
textInput: ElementRef<HTMLInputElement>;
|
|
37
|
-
textInitialInput: ElementRef<HTMLInputElement>;
|
|
38
|
-
change: EventEmitter<any>;
|
|
39
|
-
focused: number;
|
|
40
|
-
private touched;
|
|
41
50
|
private _isOpen;
|
|
51
|
+
change: EventEmitter<any>;
|
|
42
52
|
get value(): any[];
|
|
43
53
|
set value(newValue: any[]);
|
|
44
54
|
private _value;
|
|
45
|
-
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
55
|
+
constructor(_changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef);
|
|
56
|
+
tabIndex: number;
|
|
57
|
+
pointerEvents: string;
|
|
46
58
|
onChange: (value: any[]) => void;
|
|
47
59
|
onTouched: () => void;
|
|
48
60
|
registerOnChange(fn: (value: any[]) => void): void;
|
|
49
61
|
registerOnTouched(fn: () => void): void;
|
|
50
62
|
setDisabledState?(isDisabled: boolean): void;
|
|
51
63
|
writeValue(value: any[]): void;
|
|
52
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
53
64
|
ngOnDestroy(): void;
|
|
54
65
|
ngAfterContentInit(): void;
|
|
66
|
+
private registerCustomMenuItems;
|
|
55
67
|
handleTouched(): void;
|
|
56
|
-
|
|
68
|
+
handleChipClose(chip: object): void;
|
|
57
69
|
handleChange(e: string[]): void;
|
|
58
|
-
|
|
59
|
-
updateValue(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
70
|
+
addValue(incoming: string): void;
|
|
71
|
+
updateValue(incomingValues: any[]): void;
|
|
72
|
+
customFilter: (filter: string, menuItems: FwMenuItemComponent[]) => FwMenuItemComponent[];
|
|
73
|
+
private moveFocused;
|
|
74
|
+
setFocusedIndex(item: unknown): void;
|
|
75
|
+
displayFocusIndicator: import("@angular/core").EffectRef;
|
|
76
|
+
private keyboardActionMap;
|
|
77
|
+
private closedTriggerKeyboardActionsMap;
|
|
78
|
+
handleKeyDown: (event: KeyboardEvent) => void;
|
|
79
|
+
private postSelectSideEffects;
|
|
63
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwMultiSelectMenuComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwMultiSelectMenuComponent, "fw-multi-select", never, { "options": "options"; "valueProperty": "valueProperty"; "titleProperty": "titleProperty"; "iconProperty": "iconProperty"; "disabled": "disabled"; "useCheckbox": "useCheckbox"; "closeOnSelect": "closeOnSelect"; "filterItemsOnSelect": "filterItemsOnSelect"; "
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwMultiSelectMenuComponent, "fw-multi-select", never, { "options": { "alias": "options"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; "titleProperty": { "alias": "titleProperty"; "required": false; }; "iconProperty": { "alias": "iconProperty"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "useCheckbox": { "alias": "useCheckbox"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "maxSelectedShown": { "alias": "maxSelectedShown"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showSelectionInfo": { "alias": "showSelectionInfo"; "required": false; "isSignal": true; }; "filterItemsOnSelect": { "alias": "filterItemsOnSelect"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "change": "change"; }, ["customMenuItems"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group, fw-menu-header]"], false, never>;
|
|
65
82
|
}
|
|
@@ -66,5 +66,5 @@ export declare class FwSelectMenuComponent implements OnChanges, AfterContentIni
|
|
|
66
66
|
close(): void;
|
|
67
67
|
onFilterChanged(value: string): void;
|
|
68
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuComponent, [null, { optional: true; self: true; }]>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": "options"; "valueProperty": "valueProperty"; "useFullOptionAsValue": "useFullOptionAsValue"; "titleProperty": "titleProperty"; "iconProperty": "iconProperty"; "staticIcon": "staticIcon"; "descriptionProperty": "descriptionProperty"; "showFilter": "showFilter"; "showReset": "showReset"; "disabled": "disabled"; "errored": "errored"; "width": "width"; "optionsWidth": "optionsWidth"; "minOptionsHeight": "minOptionsHeight"; "maxOptionsHeight": "maxOptionsHeight"; "size": "size"; "placeholder": "placeholder"; "value": "value"; }, { "change": "change"; "filterChanged": "filterChanged"; }, ["menuItems"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group]"], false, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": { "alias": "options"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; "useFullOptionAsValue": { "alias": "useFullOptionAsValue"; "required": false; }; "titleProperty": { "alias": "titleProperty"; "required": false; }; "iconProperty": { "alias": "iconProperty"; "required": false; }; "staticIcon": { "alias": "staticIcon"; "required": false; }; "descriptionProperty": { "alias": "descriptionProperty"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "showReset": { "alias": "showReset"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errored": { "alias": "errored"; "required": false; }; "width": { "alias": "width"; "required": false; }; "optionsWidth": { "alias": "optionsWidth"; "required": false; }; "minOptionsHeight": { "alias": "minOptionsHeight"; "required": false; }; "maxOptionsHeight": { "alias": "maxOptionsHeight"; "required": false; }; "size": { "alias": "size"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "change": "change"; "filterChanged": "filterChanged"; }, ["menuItems"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group]"], false, never>;
|
|
70
70
|
}
|
|
@@ -4,13 +4,14 @@ import * as i2 from "./select-menu.component";
|
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "@angular/cdk/menu";
|
|
6
6
|
import * as i5 from "@angular/forms";
|
|
7
|
-
import * as i6 from "../
|
|
8
|
-
import * as i7 from "../
|
|
9
|
-
import * as i8 from "../
|
|
10
|
-
import * as i9 from "../
|
|
11
|
-
import * as i10 from "
|
|
7
|
+
import * as i6 from "../button/button.module";
|
|
8
|
+
import * as i7 from "../chip/chip.module";
|
|
9
|
+
import * as i8 from "../icon/icon.module";
|
|
10
|
+
import * as i9 from "../menu/menu.module";
|
|
11
|
+
import * as i10 from "../text-input/text-input.module";
|
|
12
|
+
import * as i11 from "../../directives/menu-register.directive";
|
|
12
13
|
export declare class FwSelectMenuModule {
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwSelectMenuModule, [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent], [typeof i3.CommonModule, typeof i4.CdkMenuModule, typeof i5.FormsModule, typeof i6.
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwSelectMenuModule, [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent], [typeof i3.CommonModule, typeof i4.CdkMenuModule, typeof i5.FormsModule, typeof i6.FwButtonModule, typeof i7.FwChipModule, typeof i8.FwIconModule, typeof i9.FwMenuModule, typeof i10.FwTextInputModule, typeof i11.MenuRegisterDirective], [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent]>;
|
|
15
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<FwSelectMenuModule>;
|
|
16
17
|
}
|
|
@@ -20,5 +20,5 @@ export declare class FwSnackbarComponent implements AfterViewInit, OnInit {
|
|
|
20
20
|
handleDismiss(): void;
|
|
21
21
|
handleAction(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSnackbarComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSnackbarComponent, "fw-snackbar", never, { "message": "message"; "messageDuration": "messageDuration"; }, { "ready": "ready"; "dismiss": "dismiss"; "action": "action"; }, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwSnackbarComponent, "fw-snackbar", never, { "message": { "alias": "message"; "required": false; }; "messageDuration": { "alias": "messageDuration"; "required": false; }; }, { "ready": "ready"; "dismiss": "dismiss"; "action": "action"; }, never, never, false, never>;
|
|
24
24
|
}
|
|
@@ -19,7 +19,7 @@ export declare class FwStepComponent implements OnChanges {
|
|
|
19
19
|
handleClick(): void;
|
|
20
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepComponent, "fw-step", never, { "stepNumber": "stepNumber"; "color": "color"; "variant": "variant"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; "title": "title"; "description": "description"; "icon": "icon"; "disabled": "disabled"; "active": "active"; "completed": "completed"; "done": "done"; "status": "status"; }, { "select": "select"; }, never, ["fw-step-decorator"], false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepComponent, "fw-step", never, { "stepNumber": { "alias": "stepNumber"; "required": false; }; "color": { "alias": "color"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "active": { "alias": "active"; "required": false; }; "completed": { "alias": "completed"; "required": false; }; "done": { "alias": "done"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, { "select": "select"; }, never, ["fw-step-decorator"], false, never>;
|
|
23
23
|
}
|
|
24
24
|
export declare class FwStepDecoratorComponent {
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepDecoratorComponent, never>;
|
|
@@ -19,5 +19,5 @@ export declare class FwStepperComponent implements OnChanges, OnDestroy, AfterCo
|
|
|
19
19
|
handleSelect(step?: number): void;
|
|
20
20
|
updateSteps(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepperComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepperComponent, "fw-stepper", never, { "activeStep": "activeStep"; "doneStep": "doneStep"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; }, { "stepChange": "stepChange"; }, ["steps"], ["fw-step"], false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepperComponent, "fw-stepper", never, { "activeStep": { "alias": "activeStep"; "required": false; }; "doneStep": { "alias": "doneStep"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "stepChange": "stepChange"; }, ["steps"], ["fw-step"], false, never>;
|
|
23
23
|
}
|
|
@@ -18,5 +18,5 @@ export declare class FwSwitchComponent implements ControlValueAccessor {
|
|
|
18
18
|
writeValue(checked: boolean): void;
|
|
19
19
|
handleClick(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwSwitchComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSwitchComponent, "fw-switch", never, { "name": "name"; "title": "title"; "titlePosition": "titlePosition"; "size": "size"; "color": "color"; "disabled": "disabled"; "checked": "checked"; }, { "change": "change"; }, never, never, false, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwSwitchComponent, "fw-switch", never, { "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titlePosition": { "alias": "titlePosition"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
|
|
22
22
|
}
|
|
@@ -40,7 +40,7 @@ export declare class FwColumnDef extends CdkColumnDef {
|
|
|
40
40
|
*/
|
|
41
41
|
protected _updateColumnCssClassName(): void;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwColumnDef, never>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwColumnDef, "[fwColumnDef]", never, { "name": "fwColumnDef"; }, {}, never, never, true, never>;
|
|
43
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwColumnDef, "[fwColumnDef]", never, { "name": { "alias": "fwColumnDef"; "required": false; }; }, {}, never, never, true, never>;
|
|
44
44
|
}
|
|
45
45
|
/** Header cell template container that adds the right classes and role. */
|
|
46
46
|
export declare class FwHeaderCell extends CdkHeaderCell {
|
|
@@ -6,9 +6,8 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class FwHeaderRowDef extends CdkHeaderRowDef {
|
|
8
8
|
columns: string[];
|
|
9
|
-
sticky: boolean;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderRowDef, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderRowDef, "[fwHeaderRowDef]", never, { "columns": "fwHeaderRowDef"; "
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderRowDef, "[fwHeaderRowDef]", never, { "columns": { "alias": "fwHeaderRowDef"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
11
|
}
|
|
13
12
|
/**
|
|
14
13
|
* Footer row definition for the fw-table.
|
|
@@ -16,9 +15,8 @@ export declare class FwHeaderRowDef extends CdkHeaderRowDef {
|
|
|
16
15
|
*/
|
|
17
16
|
export declare class FwFooterRowDef extends CdkFooterRowDef {
|
|
18
17
|
columns: string[];
|
|
19
|
-
sticky: boolean;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterRowDef, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterRowDef, "[fwFooterRowDef]", never, { "columns": "fwFooterRowDef"; "
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterRowDef, "[fwFooterRowDef]", never, { "columns": { "alias": "fwFooterRowDef"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
20
|
}
|
|
23
21
|
/**
|
|
24
22
|
* Data row definition for the fw-table.
|
|
@@ -29,7 +27,7 @@ export declare class FwRowDef<T> extends CdkRowDef<T> {
|
|
|
29
27
|
columns: string[];
|
|
30
28
|
when: (index: number, rowData: T) => boolean;
|
|
31
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwRowDef<any>, never>;
|
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwRowDef<any>, "[fwRowDef]", never, { "columns": "fwRowDefColumns"; "when": "fwRowDefWhen"; }, {}, never, never, false, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FwRowDef<any>, "[fwRowDef]", never, { "columns": { "alias": "fwRowDefColumns"; "required": false; }; "when": { "alias": "fwRowDefWhen"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
31
|
}
|
|
34
32
|
/** Header template container that contains the cell outlet. Adds the right class and role. */
|
|
35
33
|
export declare class FwHeaderRow extends CdkHeaderRow {
|
|
@@ -17,5 +17,5 @@ export declare class FwTabComponent {
|
|
|
17
17
|
keyEvent(event: KeyboardEvent): void;
|
|
18
18
|
handleSelect(): void;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabComponent, "fw-tab", never, { "title": "title"; "panel": "panel"; "color": "color"; "icon": "icon"; "active": "active"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "select": "select"; }, never, ["fw-badge"], false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabComponent, "fw-tab", never, { "title": { "alias": "title"; "required": false; }; "panel": { "alias": "panel"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "select": "select"; }, never, ["fw-badge"], false, never>;
|
|
21
21
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class FwTabPanelComponent {
|
|
3
3
|
active: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabPanelComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabPanelComponent, "fw-tab-panel", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabPanelComponent, "fw-tab-panel", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
6
6
|
}
|
|
@@ -13,5 +13,5 @@ export declare class FwTabsComponent implements AfterContentInit, OnDestroy {
|
|
|
13
13
|
ngAfterContentInit(): void;
|
|
14
14
|
handleTabChange(tab: FwTabComponent): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabsComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabsComponent, "fw-tabs", never, { "activeTabIndex": "activeTabIndex"; "activeTab": "activeTab"; "bordered": "bordered"; }, { "select": "select"; }, ["tabs"], ["fw-tab", "*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabsComponent, "fw-tabs", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; }, { "select": "select"; }, ["tabs"], ["fw-tab", "*"], false, never>;
|
|
17
17
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
3
|
import { IconType } from '../icon/icon.types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -6,9 +6,7 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
useActionableIcons?: boolean;
|
|
8
8
|
leftIcon?: IconType;
|
|
9
|
-
leftIconAction?: EventEmitter<void>;
|
|
10
9
|
rightIcon?: string;
|
|
11
|
-
rightIconAction?: EventEmitter<void>;
|
|
12
10
|
prefix?: string;
|
|
13
11
|
context?: string;
|
|
14
12
|
/**
|
|
@@ -24,11 +22,15 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
|
|
|
24
22
|
size?: 'small' | 'medium' | 'large';
|
|
25
23
|
type?: string;
|
|
26
24
|
maxLength?: number;
|
|
27
|
-
autofocus?:
|
|
25
|
+
autofocus?: boolean;
|
|
28
26
|
autocomplete?: string;
|
|
27
|
+
value: string;
|
|
28
|
+
inputRef: ElementRef<HTMLInputElement>;
|
|
29
29
|
error?: boolean;
|
|
30
|
+
leftIconAction: EventEmitter<void>;
|
|
31
|
+
rightIconAction: EventEmitter<void>;
|
|
30
32
|
textInput: any;
|
|
31
|
-
|
|
33
|
+
width: string;
|
|
32
34
|
externalControl: FormControl;
|
|
33
35
|
onTouch: () => void;
|
|
34
36
|
onChange: (value: string) => void;
|
|
@@ -40,6 +42,7 @@ export declare class FwTextInputComponent implements ControlValueAccessor {
|
|
|
40
42
|
blurHandler(): void;
|
|
41
43
|
onLeftIconClick(): void;
|
|
42
44
|
onRightIconClick(): void;
|
|
45
|
+
focus(): void;
|
|
43
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": "disabled"; "useActionableIcons": "useActionableIcons"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; "prefix": "prefix"; "context": "context"; "helperText": "helperText"; "errorText": "errorText"; "placeholder": "placeholder"; "readOnly": "readOnly"; "size": "size"; "type": "type"; "maxLength": "maxLength"; "autofocus": "autofocus"; "autocomplete": "autocomplete"; "error": "error"; "
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, ["textInput"], ["input", "*"], false, never>;
|
|
45
48
|
}
|
|
@@ -30,5 +30,5 @@ export declare class FwTextAreaInputComponent implements ControlValueAccessor {
|
|
|
30
30
|
blurHandler(): void;
|
|
31
31
|
protected readonly min: typeof min;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextAreaInputComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextAreaInputComponent, "fw-textarea-input", never, { "minRows": "minRows"; "maxRows": "maxRows"; "disabled": "disabled"; "helperText": "helperText"; "errorText": "errorText"; "placeholder": "placeholder"; "readOnly": "readOnly"; "autofocus": "autofocus"; "width": "width"; "error": "error"; "value": "value"; }, {}, never, never, false, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextAreaInputComponent, "fw-textarea-input", never, { "minRows": { "alias": "minRows"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "width": { "alias": "width"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
34
|
}
|
|
@@ -8,5 +8,5 @@ export declare class FwTooltipPanelComponent {
|
|
|
8
8
|
get classes(): string;
|
|
9
9
|
hidePopover(e: MouseEvent): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipPanelComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipPanelComponent, "fw-tooltip-panel", never, { "position": "position"; "color": "color"; "maxWidth": "maxWidth"; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipPanelComponent, "fw-tooltip-panel", never, { "position": { "alias": "position"; "required": false; }; "color": { "alias": "color"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
|
|
12
12
|
}
|
|
@@ -13,5 +13,5 @@ export declare class FwTooltipComponent {
|
|
|
13
13
|
[key: string]: ConnectedPosition;
|
|
14
14
|
};
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipComponent, "fw-tooltip", never, { "title": "title"; "color": "color"; "position": "position"; "maxWidth": "maxWidth"; "fullWidth": "fullWidth"; "isOpen": "isOpen"; "trigger": "trigger"; }, {}, never, ["*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipComponent, "fw-tooltip", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "position": { "alias": "position"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -6,5 +6,5 @@ export declare class FwWrappedInputComponent {
|
|
|
6
6
|
errorText?: string;
|
|
7
7
|
class: boolean;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FwWrappedInputComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwWrappedInputComponent, "fw-wrapped-input", never, { "title": "title"; "description": "description"; "helperText": "helperText"; "errorText": "errorText"; }, {}, never, ["fw-form-heading", "fw-button-toggle, fw-date-input, fw-text-input, fw-number-input, fw-phone-input, fw-textarea-input, fw-select, fw-multi-select, fw-checkbox"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwWrappedInputComponent, "fw-wrapped-input", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; }, {}, never, ["fw-form-heading", "fw-button-toggle, fw-date-input, fw-text-input, fw-number-input, fw-phone-input, fw-textarea-input, fw-select, fw-multi-select, fw-checkbox"], false, never>;
|
|
10
10
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const accesibilityPallete = [
|
|
2
|
+
'#00c0cb',
|
|
3
|
+
'#ffff00',
|
|
4
|
+
'#00ff00',
|
|
5
|
+
'#80d8c7',
|
|
6
|
+
'#ffff80',
|
|
7
|
+
'#80ff80',
|
|
8
|
+
'#00ff00',
|
|
9
|
+
'#ffe0b0',
|
|
10
|
+
'#c0ffc0',
|
|
11
|
+
'#80c0ff',
|
|
12
|
+
'#ff8000',
|
|
13
|
+
'#80d8c7',
|
|
14
|
+
'#b080ff',
|
|
15
|
+
'#ffc080',
|
|
16
|
+
'#c0ffc0',
|
|
17
|
+
'#ff69b4',
|
|
18
|
+
'#fff0d0',
|
|
19
|
+
'#ff8080',
|
|
20
|
+
'#ff6040',
|
|
21
|
+
'#40e0e0',
|
|
22
|
+
'#ff6930',
|
|
23
|
+
'#ffc0c0',
|
|
24
|
+
'#80e0e0',
|
|
25
|
+
'#ff8000',
|
|
26
|
+
'#c0f0f0',
|
|
27
|
+
'#ffc000',
|
|
28
|
+
'#ffb0c0',
|
|
29
|
+
'#b0d0ff',
|
|
30
|
+
'#f0f0c0',
|
|
31
|
+
'#ffc0e0',
|
|
32
|
+
'#d0e0ff',
|
|
33
|
+
];
|
|
34
|
+
export const hashCode = (str) => {
|
|
35
|
+
let hash = 0;
|
|
36
|
+
for (let i = 0; i < str.length; i++) {
|
|
37
|
+
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
|
38
|
+
}
|
|
39
|
+
return Math.abs(hash);
|
|
40
|
+
};
|
|
41
|
+
export const pickColorViaHash = (seed = '') => {
|
|
42
|
+
const hash = hashCode(seed);
|
|
43
|
+
return accesibilityPallete[hash % (accesibilityPallete.length - 1)];
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3IudXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29sb3IudXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsTUFBTSxtQkFBbUIsR0FBRztJQUMxQixTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0NBQ1YsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxDQUFDLEdBQVcsRUFBVSxFQUFFO0lBQzlDLElBQUksSUFBSSxHQUFHLENBQUMsQ0FBQztJQUNiLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUM7UUFDcEMsSUFBSSxHQUFHLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQztJQUNsRCxDQUFDO0lBQ0QsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO0FBQ3hCLENBQUMsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBSSxHQUFHLEVBQUUsRUFBVSxFQUFFO0lBQ3BELE1BQU0sSUFBSSxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixPQUFPLG1CQUFtQixDQUFDLElBQUksR0FBRyxDQUFDLG1CQUFtQixDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ3JFLENBQUMsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbIlxuY29uc3QgYWNjZXNpYmlsaXR5UGFsbGV0ZSA9IFtcbiAgJyMwMGMwY2InLFxuICAnI2ZmZmYwMCcsXG4gICcjMDBmZjAwJyxcbiAgJyM4MGQ4YzcnLFxuICAnI2ZmZmY4MCcsXG4gICcjODBmZjgwJyxcbiAgJyMwMGZmMDAnLFxuICAnI2ZmZTBiMCcsXG4gICcjYzBmZmMwJyxcbiAgJyM4MGMwZmYnLFxuICAnI2ZmODAwMCcsXG4gICcjODBkOGM3JyxcbiAgJyNiMDgwZmYnLFxuICAnI2ZmYzA4MCcsXG4gICcjYzBmZmMwJyxcbiAgJyNmZjY5YjQnLFxuICAnI2ZmZjBkMCcsXG4gICcjZmY4MDgwJyxcbiAgJyNmZjYwNDAnLFxuICAnIzQwZTBlMCcsXG4gICcjZmY2OTMwJyxcbiAgJyNmZmMwYzAnLFxuICAnIzgwZTBlMCcsXG4gICcjZmY4MDAwJyxcbiAgJyNjMGYwZjAnLFxuICAnI2ZmYzAwMCcsXG4gICcjZmZiMGMwJyxcbiAgJyNiMGQwZmYnLFxuICAnI2YwZjBjMCcsXG4gICcjZmZjMGUwJyxcbiAgJyNkMGUwZmYnLFxuXVxuXG5leHBvcnQgY29uc3QgaGFzaENvZGUgPSAoc3RyOiBzdHJpbmcpOiBudW1iZXIgPT4ge1xuICBsZXQgaGFzaCA9IDA7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgc3RyLmxlbmd0aDsgaSsrKSB7XG4gICAgaGFzaCA9IHN0ci5jaGFyQ29kZUF0KGkpICsgKChoYXNoIDw8IDUpIC0gaGFzaCk7XG4gIH1cbiAgcmV0dXJuIE1hdGguYWJzKGhhc2gpO1xufVxuXG5leHBvcnQgY29uc3QgcGlja0NvbG9yVmlhSGFzaCA9IChzZWVkID0gJycpOiBzdHJpbmcgPT4ge1xuICBjb25zdCBoYXNoID0gaGFzaENvZGUoc2VlZCk7XG4gIHJldHVybiBhY2Nlc2liaWxpdHlQYWxsZXRlW2hhc2ggJSAoYWNjZXNpYmlsaXR5UGFsbGV0ZS5sZW5ndGggLSAxKV1cbn1cbiJdfQ==
|