@verisoft/ui-govcz 18.6.3 → 18.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/index.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/button/button.component.mjs +87 -0
- package/esm2022/lib/components/button/index.mjs +2 -0
- package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
- package/esm2022/lib/components/calendar/index.mjs +2 -0
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
- package/esm2022/lib/components/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
- package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
- package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
- package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
- package/esm2022/lib/components/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/errors/error.component.mjs +34 -0
- package/esm2022/lib/components/errors/index.mjs +2 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
- package/esm2022/lib/components/form-field/index.mjs +2 -0
- package/esm2022/lib/components/header/header.component.mjs +85 -0
- package/esm2022/lib/components/header/index.mjs +2 -0
- package/esm2022/lib/components/index.mjs +34 -0
- package/esm2022/lib/components/input-group/index.mjs +2 -0
- package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
- package/esm2022/lib/components/loader/index.mjs +2 -0
- package/esm2022/lib/components/loader/loader.component.mjs +34 -0
- package/esm2022/lib/components/multiselect/index.mjs +2 -0
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
- package/esm2022/lib/components/number-input/index.mjs +2 -0
- package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
- package/esm2022/lib/components/page-header/index.mjs +2 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
- package/esm2022/lib/components/password/index.mjs +2 -0
- package/esm2022/lib/components/password/password.component.mjs +94 -0
- package/esm2022/lib/components/radiobutton/index.mjs +2 -0
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
- package/esm2022/lib/components/search/index.mjs +2 -0
- package/esm2022/lib/components/search/search.component.mjs +40 -0
- package/esm2022/lib/components/section/index.mjs +2 -0
- package/esm2022/lib/components/section/section.component.mjs +70 -0
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/index.mjs +7 -0
- package/esm2022/lib/components/side-menu/index.mjs +3 -0
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
- package/esm2022/lib/components/snackbar/index.mjs +3 -0
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
- package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
- package/esm2022/lib/components/stepper/index.mjs +2 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
- package/esm2022/lib/components/switch/index.mjs +2 -0
- package/esm2022/lib/components/switch/switch.component.mjs +45 -0
- package/esm2022/lib/components/tab-view/index.mjs +4 -0
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
- package/esm2022/lib/components/table/table.component.mjs +359 -0
- package/esm2022/lib/components/table/table.model.mjs +14 -0
- package/esm2022/lib/components/textarea/index.mjs +2 -0
- package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
- package/esm2022/lib/components/textfield/index.mjs +2 -0
- package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
- package/esm2022/lib/components/tooltip/index.mjs +2 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
- package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
- package/esm2022/lib/icons.mjs +35 -0
- package/esm2022/lib/index.mjs +6 -0
- package/esm2022/lib/init.service.mjs +17 -0
- package/esm2022/lib/pages/index.mjs +4 -0
- package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
- package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
- package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
- package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
- package/esm2022/lib/pages/not-found/index.mjs +2 -0
- package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/index.mjs +4 -0
- package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
- package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
- package/esm2022/verisoft-ui-govcz.mjs +5 -0
- package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
- package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
- package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
- package/lib/components/button/button.component.d.ts +26 -0
- package/lib/components/button/index.d.ts +1 -0
- package/lib/components/calendar/calendar.component.d.ts +23 -0
- package/lib/components/calendar/index.d.ts +1 -0
- package/lib/components/checkbox/checkbox.component.d.ts +15 -0
- package/lib/components/checkbox/index.d.ts +1 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
- package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
- package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
- package/lib/components/dropdown/dropdown.component.d.ts +65 -0
- package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
- package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
- package/lib/components/errors/error.component.d.ts +14 -0
- package/lib/components/errors/index.d.ts +1 -0
- package/lib/components/form-field/form-field.component.d.ts +25 -0
- package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
- package/lib/components/header/header.component.d.ts +25 -0
- package/lib/components/header/index.d.ts +1 -0
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
- package/lib/components/input-group/index.d.ts +1 -0
- package/lib/components/input-group/input-group.component.d.ts +24 -0
- package/lib/components/loader/index.d.ts +1 -0
- package/lib/components/loader/loader.component.d.ts +8 -0
- package/lib/components/multiselect/index.d.ts +1 -0
- package/lib/components/multiselect/multiselect.component.d.ts +35 -0
- package/lib/components/number-input/index.d.ts +1 -0
- package/lib/components/number-input/number-input.component.d.ts +29 -0
- package/lib/components/page-header/index.d.ts +1 -0
- package/lib/components/page-header/page-header.component.d.ts +9 -0
- package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
- package/lib/components/password/password.component.d.ts +23 -0
- package/lib/components/radiobutton/index.d.ts +1 -0
- package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
- package/lib/components/search/index.d.ts +1 -0
- package/lib/components/search/search.component.d.ts +14 -0
- package/lib/components/section/index.d.ts +1 -0
- package/lib/components/section/section.component.d.ts +18 -0
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
- package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
- package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
- package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
- package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
- package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
- package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
- package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
- package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
- package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
- package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
- package/lib/components/side-menu/side-menu.component.d.ts +15 -0
- package/lib/components/side-menu/side-menu.module.d.ts +12 -0
- package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
- package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
- package/lib/components/snackbar/snackbar.component.d.ts +18 -0
- package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
- package/lib/components/stepper/index.d.ts +1 -0
- package/lib/components/stepper/stepper.component.d.ts +20 -0
- package/lib/components/switch/index.d.ts +1 -0
- package/lib/components/switch/switch.component.d.ts +12 -0
- package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
- package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
- package/lib/components/tab-view/tab-view.component.d.ts +19 -0
- package/lib/components/tab-view/tab-view.module.d.ts +12 -0
- package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
- package/lib/components/table/table-pagination-info.component.d.ts +12 -0
- package/lib/components/table/table.component.d.ts +91 -0
- package/lib/components/table/table.model.d.ts +3 -0
- package/lib/components/textarea/index.d.ts +1 -0
- package/lib/components/textarea/textarea.component.d.ts +25 -0
- package/lib/components/textfield/index.d.ts +1 -0
- package/lib/components/textfield/textfield.component.d.ts +28 -0
- package/lib/components/tooltip/index.d.ts +1 -0
- package/lib/components/tooltip/tooltip.component.d.ts +18 -0
- package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
- package/lib/icons.d.ts +2 -0
- package/{src/lib/index.ts → lib/index.d.ts} +5 -5
- package/lib/init.service.d.ts +6 -0
- package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
- package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
- package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
- package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
- package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
- package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
- package/lib/pages/not-found/not-found.component.d.ts +6 -0
- package/lib/pipes/color/color.pipe.d.ts +8 -0
- package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
- package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
- package/lib/pipes/size/size.pipe.d.ts +8 -0
- package/package.json +38 -23
- package/.eslintrc.json +0 -48
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -15
- package/project.json +0 -49
- package/src/assets/main.css +0 -18
- package/src/config.d.ts +0 -10
- package/src/index.ts +0 -1
- package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
- package/src/lib/components/button/button.component.html +0 -26
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.ts +0 -72
- package/src/lib/components/button/index.ts +0 -1
- package/src/lib/components/calendar/calendar.component.html +0 -28
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.ts +0 -79
- package/src/lib/components/calendar/index.ts +0 -1
- package/src/lib/components/checkbox/checkbox.component.html +0 -23
- package/src/lib/components/checkbox/checkbox.component.scss +0 -0
- package/src/lib/components/checkbox/checkbox.component.ts +0 -62
- package/src/lib/components/checkbox/index.ts +0 -1
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
- package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
- package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
- package/src/lib/components/dropdown/dropdown.component.html +0 -90
- package/src/lib/components/dropdown/dropdown.component.scss +0 -108
- package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
- package/src/lib/components/dropdown/dropdown.component.ts +0 -297
- package/src/lib/components/errors/error.component.html +0 -11
- package/src/lib/components/errors/error.component.scss +0 -0
- package/src/lib/components/errors/error.component.spec.ts +0 -19
- package/src/lib/components/errors/error.component.ts +0 -30
- package/src/lib/components/errors/index.ts +0 -1
- package/src/lib/components/form-field/form-field.component.html +0 -14
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
- package/src/lib/components/form-field/form-field.component.ts +0 -78
- package/src/lib/components/header/header.component.html +0 -122
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.ts +0 -91
- package/src/lib/components/header/index.ts +0 -1
- package/src/lib/components/input-group/index.ts +0 -1
- package/src/lib/components/input-group/input-group.component.html +0 -41
- package/src/lib/components/input-group/input-group.component.scss +0 -0
- package/src/lib/components/input-group/input-group.component.ts +0 -77
- package/src/lib/components/loader/index.ts +0 -1
- package/src/lib/components/loader/loader.component.html +0 -7
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +0 -21
- package/src/lib/components/loader/loader.component.ts +0 -33
- package/src/lib/components/multiselect/index.ts +0 -1
- package/src/lib/components/multiselect/multiselect.component.html +0 -21
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
- package/src/lib/components/multiselect/multiselect.component.ts +0 -119
- package/src/lib/components/number-input/index.ts +0 -1
- package/src/lib/components/number-input/number-input.component.html +0 -48
- package/src/lib/components/number-input/number-input.component.scss +0 -0
- package/src/lib/components/number-input/number-input.component.ts +0 -82
- package/src/lib/components/page-header/index.ts +0 -1
- package/src/lib/components/page-header/page-header.component.html +0 -3
- package/src/lib/components/page-header/page-header.component.scss +0 -11
- package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
- package/src/lib/components/page-header/page-header.component.ts +0 -29
- package/src/lib/components/password/password.component.html +0 -31
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +0 -21
- package/src/lib/components/password/password.component.ts +0 -85
- package/src/lib/components/radiobutton/index.ts +0 -1
- package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
- package/src/lib/components/search/index.ts +0 -1
- package/src/lib/components/search/search.component.html +0 -23
- package/src/lib/components/search/search.component.scss +0 -0
- package/src/lib/components/search/search.component.ts +0 -47
- package/src/lib/components/section/index.ts +0 -1
- package/src/lib/components/section/section.component.html +0 -26
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.ts +0 -57
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
- package/src/lib/components/shared-components/filter/filter.component.html +0 -68
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
- package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
- package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
- package/src/lib/components/side-menu/side-menu.component.html +0 -25
- package/src/lib/components/side-menu/side-menu.component.scss +0 -23
- package/src/lib/components/side-menu/side-menu.component.ts +0 -42
- package/src/lib/components/side-menu/side-menu.module.ts +0 -64
- package/src/lib/components/sidemenu/index.ts +0 -2
- package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
- package/src/lib/components/snackbar/snackbar.component.html +0 -14
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
- package/src/lib/components/snackbar/snackbar.component.ts +0 -45
- package/src/lib/components/stepper/index.ts +0 -1
- package/src/lib/components/stepper/stepper.component.html +0 -35
- package/src/lib/components/stepper/stepper.component.scss +0 -9
- package/src/lib/components/stepper/stepper.component.ts +0 -61
- package/src/lib/components/switch/index.ts +0 -1
- package/src/lib/components/switch/switch.component.html +0 -16
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.ts +0 -37
- package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
- package/src/lib/components/tab-view/tab-view.component.html +0 -51
- package/src/lib/components/tab-view/tab-view.component.scss +0 -43
- package/src/lib/components/tab-view/tab-view.component.ts +0 -61
- package/src/lib/components/tab-view/tab-view.module.ts +0 -25
- package/src/lib/components/table/table-pagination-info.component.html +0 -9
- package/src/lib/components/table/table-pagination-info.component.ts +0 -22
- package/src/lib/components/table/table.component.html +0 -198
- package/src/lib/components/table/table.component.scss +0 -193
- package/src/lib/components/table/table.component.ts +0 -387
- package/src/lib/components/table/table.model.ts +0 -17
- package/src/lib/components/table/table.models.ts +0 -12
- package/src/lib/components/textarea/index.ts +0 -1
- package/src/lib/components/textarea/textarea.component.html +0 -50
- package/src/lib/components/textarea/textarea.component.scss +0 -0
- package/src/lib/components/textarea/textarea.component.ts +0 -78
- package/src/lib/components/textfield/index.ts +0 -1
- package/src/lib/components/textfield/textfield.component.html +0 -56
- package/src/lib/components/textfield/textfield.component.scss +0 -0
- package/src/lib/components/textfield/textfield.component.ts +0 -114
- package/src/lib/components/tooltip/index.ts +0 -1
- package/src/lib/components/tooltip/tooltip.component.html +0 -10
- package/src/lib/components/tooltip/tooltip.component.scss +0 -0
- package/src/lib/components/tooltip/tooltip.component.ts +0 -57
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
- package/src/lib/icons.ts +0 -36
- package/src/lib/init.service.ts +0 -11
- package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
- package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
- package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
- package/src/lib/pages/error-page/error-page.component.html +0 -5
- package/src/lib/pages/error-page/error-page.component.scss +0 -0
- package/src/lib/pages/error-page/error-page.component.ts +0 -32
- package/src/lib/pages/error-page/error-page.constants.ts +0 -19
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
- package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
- package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
- package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
- package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
- package/src/lib/pages/not-found/not-found.component.html +0 -5
- package/src/lib/pages/not-found/not-found.component.ts +0 -18
- package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
- package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
- package/src/lib/pipes/color/color.pipe.ts +0 -24
- package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
- package/src/lib/pipes/size/size.pipe.ts +0 -20
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -30
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -16
- /package/{src/sass → sass}/header.css +0 -0
- /package/{src/sass → sass}/header.scss +0 -0
- /package/{src/sass → sass}/main.scss +0 -0
- /package/{src/sass → sass}/scrollbar.scss +0 -0
- /package/{src/sass → sass}/sidemenu.css +0 -0
- /package/{src/sass → sass}/vendors/_bootstrap.scss +0 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BreadcrumbCoreComponent } from '@verisoft/ui-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbComponent extends BreadcrumbCoreComponent {
|
|
4
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "v-breadcrumb", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './breadcrumb.component';
|
|
1
|
+
export * from './breadcrumb.component';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { Params } from "@angular/router";
|
|
3
|
+
import { ButtonEvent, GovButtonCustomEvent } from "@gov-design-system-ce/components";
|
|
4
|
+
import { ButtonCore, IconPositionType, FieldSizeType, ControlSeverityType, GovButtonTypeType } from "@verisoft/ui-core";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ButtonComponent implements ButtonCore {
|
|
7
|
+
label: string | undefined;
|
|
8
|
+
icon: string | undefined;
|
|
9
|
+
badge: string;
|
|
10
|
+
iconPos: IconPositionType;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
rounded: boolean;
|
|
13
|
+
outlined: boolean;
|
|
14
|
+
raised: boolean;
|
|
15
|
+
routerLink: any[];
|
|
16
|
+
size: FieldSizeType | undefined;
|
|
17
|
+
queryParams: Params;
|
|
18
|
+
severity: ControlSeverityType | undefined;
|
|
19
|
+
type: GovButtonTypeType;
|
|
20
|
+
expanded: boolean;
|
|
21
|
+
name: string;
|
|
22
|
+
click: EventEmitter<any>;
|
|
23
|
+
handleClick(event: GovButtonCustomEvent<ButtonEvent> | MouseEvent): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "v-button", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "raised": { "alias": "raised"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "size": { "alias": "size"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "type": { "alias": "type"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "click": "click"; }, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './button.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { BaseFormInputComponent, CalendarCore, FieldType, FieldSizeType, SlotPositionType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CalendarComponent extends BaseFormInputComponent implements ControlValueAccessor, CalendarCore {
|
|
5
|
+
icon: string;
|
|
6
|
+
floatLabel: string | undefined;
|
|
7
|
+
maxDate: Date;
|
|
8
|
+
minDate: Date;
|
|
9
|
+
header: string;
|
|
10
|
+
footer: string;
|
|
11
|
+
selectionMode: 'single' | 'multiple' | 'range' | undefined;
|
|
12
|
+
size: FieldSizeType;
|
|
13
|
+
errorSlot: SlotPositionType;
|
|
14
|
+
labelSlot: SlotPositionType;
|
|
15
|
+
messageSlot: SlotPositionType;
|
|
16
|
+
message: string;
|
|
17
|
+
name: string;
|
|
18
|
+
type: FieldType;
|
|
19
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
20
|
+
constructor(ngControl: NgControl);
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [{ optional: true; self: true; }]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "v-calendar", never, { "icon": { "alias": "icon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "header": { "alias": "header"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './calendar.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from "@angular/forms";
|
|
2
|
+
import { BaseFormInputComponent, CheckboxCore, FieldSizeType } from "@verisoft/ui-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CheckboxComponent extends BaseFormInputComponent implements ControlValueAccessor, CheckboxCore {
|
|
5
|
+
size: FieldSizeType;
|
|
6
|
+
value: string;
|
|
7
|
+
name: string;
|
|
8
|
+
indeterminate: boolean;
|
|
9
|
+
noLabel: boolean;
|
|
10
|
+
protected readonly icons: import("@verisoft/ui-core").CommonIcons;
|
|
11
|
+
constructor(ngControl: NgControl);
|
|
12
|
+
id: string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [{ optional: true; self: true; }]>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "v-checkbox", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './checkbox.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmDialogCore, DialogData, DialogService, UnsubscribeComponent } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ConfirmDialogComponent extends UnsubscribeComponent implements OnInit, ConfirmDialogCore {
|
|
5
|
+
private readonly dialogService;
|
|
6
|
+
private readonly cdr;
|
|
7
|
+
constructor(dialogService: DialogService, cdr: ChangeDetectorRef);
|
|
8
|
+
visible: boolean;
|
|
9
|
+
protected closable: boolean;
|
|
10
|
+
data: DialogData;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
protected dialogClick(confirm: boolean): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogComponent, "v-confirm-dialog", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './confirm-dialog.component';
|
|
1
|
+
export * from './confirm-dialog.component';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DropDownItemData } from './dropdown.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DropdownItemComponent<T> {
|
|
4
|
+
item: DropDownItemData<T> | undefined;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent<any>, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent<any>, "v-dropdown-item", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
|
|
3
|
+
import { FilterEvent, LazyLoadEvent } from '@verisoft/core';
|
|
4
|
+
import { BaseFormInputComponent, DropdownCore, FieldSizeType } from '@verisoft/ui-core';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { DropDownItemData } from './dropdown.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DropdownComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, DropdownCore<T>, OnInit, OnChanges, OnDestroy {
|
|
9
|
+
private changeDetectorRef;
|
|
10
|
+
filterTextField: ElementRef;
|
|
11
|
+
options: T[] | undefined;
|
|
12
|
+
optionLabel: string | undefined;
|
|
13
|
+
optionValue: string | undefined;
|
|
14
|
+
dropdownIcon: string | undefined;
|
|
15
|
+
floatLabel: string | undefined;
|
|
16
|
+
lazy: boolean;
|
|
17
|
+
filter: boolean;
|
|
18
|
+
editable: boolean;
|
|
19
|
+
loading: boolean;
|
|
20
|
+
size: FieldSizeType;
|
|
21
|
+
showFilter: boolean;
|
|
22
|
+
localSearch: boolean;
|
|
23
|
+
forceMinWidth: boolean;
|
|
24
|
+
changed: EventEmitter<any>;
|
|
25
|
+
showed: EventEmitter<any>;
|
|
26
|
+
cleared: EventEmitter<any>;
|
|
27
|
+
lazyLoad: EventEmitter<LazyLoadEvent>;
|
|
28
|
+
filtered: EventEmitter<FilterEvent>;
|
|
29
|
+
opened: boolean;
|
|
30
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
31
|
+
selectedItem: DropDownItemData<T> | undefined;
|
|
32
|
+
filterControl: FormControl<string | null>;
|
|
33
|
+
filterSub: Subscription | undefined;
|
|
34
|
+
dropdownOptions: DropDownItemData<T>[] | undefined;
|
|
35
|
+
private readonly pageSize;
|
|
36
|
+
private lastPage;
|
|
37
|
+
get labelClasses(): {
|
|
38
|
+
disabled: boolean | null | undefined;
|
|
39
|
+
error: boolean | null | undefined;
|
|
40
|
+
};
|
|
41
|
+
get inputClasses(): {
|
|
42
|
+
'disabled-input': boolean | null | undefined;
|
|
43
|
+
'error-input': boolean | null | undefined;
|
|
44
|
+
};
|
|
45
|
+
constructor(ngControl: NgControl, changeDetectorRef: ChangeDetectorRef);
|
|
46
|
+
ngOnInit(): void;
|
|
47
|
+
writeValue(value: any): void;
|
|
48
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
49
|
+
private convertToOptions;
|
|
50
|
+
ngOnDestroy(): void;
|
|
51
|
+
toggleDropdown(): void;
|
|
52
|
+
protected clearSelection(event: MouseEvent): void;
|
|
53
|
+
private openDropdown;
|
|
54
|
+
selectItem(option: DropDownItemData<T> | undefined, emitChange: boolean): void;
|
|
55
|
+
onDocumentClick(event: MouseEvent): void;
|
|
56
|
+
onScroll(index: number): void;
|
|
57
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
58
|
+
private loadDataForIndex;
|
|
59
|
+
private setFilterFocus;
|
|
60
|
+
private closeDropdown;
|
|
61
|
+
private filterOptions;
|
|
62
|
+
private createFilterObject;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent<any>, [{ optional: true; self: true; }, null]>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent<any>, "v-dropdown", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "localSearch": { "alias": "localSearch"; "required": false; }; "forceMinWidth": { "alias": "forceMinWidth"; "required": false; }; }, { "changed": "changed"; "showed": "showed"; "cleared": "cleared"; "lazyLoad": "lazyLoad"; "filtered": "filtered"; }, never, never, true, never>;
|
|
65
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface DropDownItemData<T> {
|
|
2
|
-
label: string;
|
|
3
|
-
value: string | number;
|
|
4
|
-
item: T;
|
|
5
|
-
selected: boolean;
|
|
6
|
-
}
|
|
1
|
+
export interface DropDownItemData<T> {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string | number;
|
|
4
|
+
item: T;
|
|
5
|
+
selected: boolean;
|
|
6
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './dropdown.component';
|
|
1
|
+
export * from './dropdown.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { NgControl, ValidationErrors } from "@angular/forms";
|
|
2
|
+
import { SlotPositionType } from "@verisoft/ui-core";
|
|
3
|
+
import { Observable } from "rxjs";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ErrorComponent {
|
|
6
|
+
ngControl?: NgControl;
|
|
7
|
+
errorSlot: SlotPositionType;
|
|
8
|
+
messageSlot: SlotPositionType;
|
|
9
|
+
readonly errorService: import("@verisoft/core").ErrorProvider;
|
|
10
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
11
|
+
getErrorMessage(errors: ValidationErrors): Observable<string>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "v-validation-message", never, { "ngControl": { "alias": "ngControl"; "required": true; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './error.component';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { BaseFormInputComponent, FieldSizeType, IconPositionType, FormFieldCore, FieldTypeType, SlotPositionType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormFieldComponent extends BaseFormInputComponent implements ControlValueAccessor, FormFieldCore {
|
|
5
|
+
constructor(ngControl: NgControl);
|
|
6
|
+
floatLabel: boolean;
|
|
7
|
+
type: FieldTypeType;
|
|
8
|
+
minlength: number;
|
|
9
|
+
maxlength: number;
|
|
10
|
+
prefix: string;
|
|
11
|
+
sufix: string;
|
|
12
|
+
message: string;
|
|
13
|
+
name: string;
|
|
14
|
+
role: string;
|
|
15
|
+
autocorrect: 'on' | 'off';
|
|
16
|
+
size: FieldSizeType | undefined;
|
|
17
|
+
icon: string;
|
|
18
|
+
iconPos: IconPositionType;
|
|
19
|
+
display: 'flex' | 'block';
|
|
20
|
+
labelSlot: SlotPositionType;
|
|
21
|
+
messageSlot: SlotPositionType;
|
|
22
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, [{ optional: true; self: true; }]>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "v-form-field", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "display": { "alias": "display"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
25
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './form-field.component';
|
|
1
|
+
export * from './form-field.component';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { TemplateRef } from "@angular/core";
|
|
2
|
+
import { HeaderCore, MenuItem, SideMenuService } from "@verisoft/ui-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HeaderComponent implements HeaderCore {
|
|
5
|
+
title: string;
|
|
6
|
+
userName: string;
|
|
7
|
+
logoUrl: string;
|
|
8
|
+
userRole: any;
|
|
9
|
+
menuRef: HTMLDivElement;
|
|
10
|
+
items: MenuItem[];
|
|
11
|
+
actionTemplate: TemplateRef<{
|
|
12
|
+
$implicit: any;
|
|
13
|
+
}>;
|
|
14
|
+
protected icons: import("@verisoft/ui-core").CommonIcons;
|
|
15
|
+
protected menuVisible: boolean;
|
|
16
|
+
private openedIndexes;
|
|
17
|
+
protected readonly tabsService: SideMenuService;
|
|
18
|
+
private readonly router;
|
|
19
|
+
toggleMenu(): void;
|
|
20
|
+
protected canRedirect(url?: string, canRedirect?: boolean): void;
|
|
21
|
+
protected showOrHide(index: number, children?: number): void;
|
|
22
|
+
protected canBeShown(index: number): boolean;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "v-header", never, { "title": { "alias": "title"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "userRole": { "alias": "userRole"; "required": false; }; "menuRef": { "alias": "menuRef"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, ["actionTemplate"], ["*"], true, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './header.component';
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export * from './button';
|
|
2
|
-
export * from './breadcrumb';
|
|
3
|
-
export * from './calendar';
|
|
4
|
-
export * from './checkbox';
|
|
5
|
-
export * from './confirm-dialog';
|
|
6
|
-
export * from './dropdown';
|
|
7
|
-
export * from './header';
|
|
8
|
-
export * from './checkbox';
|
|
9
|
-
export * from './password';
|
|
10
|
-
export * from './shared-components';
|
|
11
|
-
export * from './radiobutton';
|
|
12
|
-
export * from './switch';
|
|
13
|
-
export * from './multiselect';
|
|
14
|
-
export * from './search';
|
|
15
|
-
export * from './section';
|
|
16
|
-
export * from './side-menu';
|
|
17
|
-
export * from './snackbar';
|
|
18
|
-
export * from './table';
|
|
19
|
-
export * from './textarea';
|
|
20
|
-
export * from './textfield';
|
|
21
|
-
export * from './tooltip';
|
|
22
|
-
export * from './loader';
|
|
23
|
-
export * from './tristatecheckbox';
|
|
24
|
-
export * from './form-field';
|
|
25
|
-
export * from './input-group';
|
|
26
|
-
export * from './number-input';
|
|
27
|
-
export * from './tooltip';
|
|
28
|
-
export * from './snackbar';
|
|
29
|
-
export * from './section';
|
|
30
|
-
export * from './page-header';
|
|
31
|
-
export * from './section'
|
|
32
|
-
export * from './stepper';
|
|
33
|
-
export * from './tab-view';
|
|
1
|
+
export * from './button';
|
|
2
|
+
export * from './breadcrumb';
|
|
3
|
+
export * from './calendar';
|
|
4
|
+
export * from './checkbox';
|
|
5
|
+
export * from './confirm-dialog';
|
|
6
|
+
export * from './dropdown';
|
|
7
|
+
export * from './header';
|
|
8
|
+
export * from './checkbox';
|
|
9
|
+
export * from './password';
|
|
10
|
+
export * from './shared-components';
|
|
11
|
+
export * from './radiobutton';
|
|
12
|
+
export * from './switch';
|
|
13
|
+
export * from './multiselect';
|
|
14
|
+
export * from './search';
|
|
15
|
+
export * from './section';
|
|
16
|
+
export * from './side-menu';
|
|
17
|
+
export * from './snackbar';
|
|
18
|
+
export * from './table';
|
|
19
|
+
export * from './textarea';
|
|
20
|
+
export * from './textfield';
|
|
21
|
+
export * from './tooltip';
|
|
22
|
+
export * from './loader';
|
|
23
|
+
export * from './tristatecheckbox';
|
|
24
|
+
export * from './form-field';
|
|
25
|
+
export * from './input-group';
|
|
26
|
+
export * from './number-input';
|
|
27
|
+
export * from './tooltip';
|
|
28
|
+
export * from './snackbar';
|
|
29
|
+
export * from './section';
|
|
30
|
+
export * from './page-header';
|
|
31
|
+
export * from './section';
|
|
32
|
+
export * from './stepper';
|
|
33
|
+
export * from './tab-view';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './input-group.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { BaseFormInputComponent, InputGroupCore, InputGroupItem, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputGroupComponent extends BaseFormInputComponent implements ControlValueAccessor, InputGroupCore {
|
|
5
|
+
floatLabel: boolean;
|
|
6
|
+
type: FieldTypeType;
|
|
7
|
+
minlength: number;
|
|
8
|
+
items: InputGroupItem[];
|
|
9
|
+
prefix: string;
|
|
10
|
+
sufix: string;
|
|
11
|
+
maxlength: number;
|
|
12
|
+
name: string;
|
|
13
|
+
role: string;
|
|
14
|
+
message: string;
|
|
15
|
+
size: FieldSizeType | undefined;
|
|
16
|
+
icon: string;
|
|
17
|
+
iconPos: IconPositionType;
|
|
18
|
+
labelSlot: SlotPositionType;
|
|
19
|
+
messageSlot: SlotPositionType;
|
|
20
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
21
|
+
constructor(ngControl: NgControl);
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, [{ optional: true; self: true; }]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "v-input-group", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "items": { "alias": "items"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "message": { "alias": "message"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './loader.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LoaderCore, FieldSizeType } from '@verisoft/ui-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoaderComponent implements LoaderCore {
|
|
4
|
+
size: FieldSizeType;
|
|
5
|
+
message: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "v-loader", never, { "size": { "alias": "size"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './multiselect.component';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import { FilterEvent, LazyLoadEvent } from '@verisoft/core';
|
|
4
|
+
import { BaseFormInputComponent, MultiselectCore, FieldSizeType, SlotPositionType } from '@verisoft/ui-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MultiselectComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, OnChanges, MultiselectCore<T> {
|
|
7
|
+
constructor(ngControl: NgControl);
|
|
8
|
+
options: T[] | undefined;
|
|
9
|
+
optionLabel: string | undefined;
|
|
10
|
+
optionValue: string | undefined;
|
|
11
|
+
dropdownIcon: string | undefined;
|
|
12
|
+
floatLabel: string | undefined;
|
|
13
|
+
editable: boolean;
|
|
14
|
+
display: 'flex' | 'block';
|
|
15
|
+
errorSlot: SlotPositionType;
|
|
16
|
+
lazy: boolean;
|
|
17
|
+
filter: boolean;
|
|
18
|
+
loading: boolean;
|
|
19
|
+
size: FieldSizeType;
|
|
20
|
+
changed: EventEmitter<any>;
|
|
21
|
+
showed: EventEmitter<any>;
|
|
22
|
+
cleared: EventEmitter<any>;
|
|
23
|
+
lazyLoad: EventEmitter<LazyLoadEvent>;
|
|
24
|
+
filtered: EventEmitter<FilterEvent>;
|
|
25
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
26
|
+
lazyLoadOptions: LazyLoadEvent;
|
|
27
|
+
cdRef: ChangeDetectorRef;
|
|
28
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
29
|
+
onLazyLoad(event: any): void;
|
|
30
|
+
selectionChange(event: any): void;
|
|
31
|
+
onDropdownShow(): void;
|
|
32
|
+
onDropdownClear(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent<any>, [{ optional: true; self: true; }]>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent<any>, "v-multiselect", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "display": { "alias": "display"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "changed": "changed"; "showed": "showed"; "cleared": "cleared"; "lazyLoad": "lazyLoad"; "filtered": "filtered"; }, never, never, true, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './number-input.component';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { NumberInputCore, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NumberInputComponent extends BaseFormInputComponent implements ControlValueAccessor, NumberInputCore {
|
|
5
|
+
mode: string;
|
|
6
|
+
currency: string;
|
|
7
|
+
min: number;
|
|
8
|
+
max: number;
|
|
9
|
+
step: number;
|
|
10
|
+
floatLabel: boolean;
|
|
11
|
+
type: FieldTypeType;
|
|
12
|
+
minlength: number;
|
|
13
|
+
maxlength: number;
|
|
14
|
+
prefix: string;
|
|
15
|
+
sufix: string;
|
|
16
|
+
message: string;
|
|
17
|
+
name: string;
|
|
18
|
+
role: string;
|
|
19
|
+
size: FieldSizeType | undefined;
|
|
20
|
+
icon: string;
|
|
21
|
+
iconPos: IconPositionType;
|
|
22
|
+
labelSlot: SlotPositionType;
|
|
23
|
+
errorSlot: SlotPositionType;
|
|
24
|
+
messageSlot: SlotPositionType;
|
|
25
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
26
|
+
constructor(ngControl: NgControl);
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumberInputComponent, [{ optional: true; self: true; }]>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumberInputComponent, "v-number-input", never, { "mode": { "alias": "mode"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './page-header.component';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PageHeaderCore } from '@verisoft/ui-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PageHeaderComponent implements PageHeaderCore {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string | undefined;
|
|
6
|
+
showBackButton: boolean | undefined;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponent, "v-page-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './password.component';
|
|
1
|
+
export * from './password.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { BaseFormInputComponent, FieldType, PasswordCore, SlotPositionType, IconPositionType, FieldSizeType, PasswordStrength } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PasswordComponent extends BaseFormInputComponent implements ControlValueAccessor, PasswordCore {
|
|
5
|
+
toggleMask: boolean;
|
|
6
|
+
feedback: boolean;
|
|
7
|
+
labelSlot: SlotPositionType;
|
|
8
|
+
requiredStrength: PasswordStrength;
|
|
9
|
+
message: string;
|
|
10
|
+
name: string;
|
|
11
|
+
role: string;
|
|
12
|
+
icon: string;
|
|
13
|
+
iconPos: IconPositionType;
|
|
14
|
+
size: FieldSizeType | undefined;
|
|
15
|
+
messageSlot: SlotPositionType;
|
|
16
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
17
|
+
passwordStrength: PasswordStrength;
|
|
18
|
+
type: FieldType;
|
|
19
|
+
constructor(ngControl: NgControl);
|
|
20
|
+
valueChange(value: string): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, [{ optional: true; self: true; }]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "v-password", never, { "toggleMask": { "alias": "toggleMask"; "required": false; }; "feedback": { "alias": "feedback"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "requiredStrength": { "alias": "requiredStrength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "size": { "alias": "size"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './radiobutton.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { BaseFormInputComponent, FieldSizeType, RadiobuttonCore, RadioButtonItem } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadioButtonComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, RadiobuttonCore<T> {
|
|
5
|
+
radioGroupName: string;
|
|
6
|
+
items: RadioButtonItem<T>[];
|
|
7
|
+
size: FieldSizeType;
|
|
8
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
9
|
+
constructor(ngControl: NgControl);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent<any>, [{ optional: true; self: true; }]>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent<any>, "v-radiobutton", never, { "radioGroupName": { "alias": "radioGroupName"; "required": false; }; "items": { "alias": "items"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './search.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FieldSizeType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SearchComponent {
|
|
5
|
+
placeholder: string;
|
|
6
|
+
size: FieldSizeType;
|
|
7
|
+
searchTerm: EventEmitter<string>;
|
|
8
|
+
value: string;
|
|
9
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
10
|
+
setValue(event: any): void;
|
|
11
|
+
search(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchComponent, "v-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "searchTerm": "searchTerm"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './section.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FieldSizeType, SectionCore } from '@verisoft/ui-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SectionComponent implements SectionCore {
|
|
4
|
+
title: string;
|
|
5
|
+
badge: string;
|
|
6
|
+
showContent: boolean;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
annotation: string;
|
|
9
|
+
identifier: string;
|
|
10
|
+
icon: string;
|
|
11
|
+
iconType: string;
|
|
12
|
+
size: FieldSizeType;
|
|
13
|
+
badgeSlot: 'prefix' | 'sufix';
|
|
14
|
+
open: boolean;
|
|
15
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "v-section", never, { "title": { "alias": "title"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "showContent": { "alias": "showContent"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "annotation": { "alias": "annotation"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "badgeSlot": { "alias": "badgeSlot"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
18
|
+
}
|