@verisoft/ui-govcz 18.4.0 → 18.6.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/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 +59 -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 +3728 -0
- package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
- package/{src/index.ts → index.d.ts} +1 -1
- 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 +37 -21
- package/.eslintrc.json +0 -48
- package/assets/i18n/cs.json +0 -9
- package/assets/i18n/en.json +0 -9
- package/assets/icons/components/24-7.svg +0 -12
- package/assets/icons/components/NO-ICON.svg +0 -2
- package/assets/icons/components/add.svg +0 -6
- package/assets/icons/components/all.svg +0 -3
- package/assets/icons/components/arrival.svg +0 -12
- package/assets/icons/components/arrow-left.svg +0 -3
- package/assets/icons/components/arrow-right.svg +0 -3
- package/assets/icons/components/bars.svg +0 -3
- package/assets/icons/components/bell.svg +0 -4
- package/assets/icons/components/big-help.svg +0 -12
- package/assets/icons/components/book.svg +0 -10
- package/assets/icons/components/bookmarks.svg +0 -11
- package/assets/icons/components/box-arrow-up-right.svg +0 -11
- package/assets/icons/components/business-file.svg +0 -14
- package/assets/icons/components/businessman.svg +0 -3
- package/assets/icons/components/cactus.svg +0 -14
- package/assets/icons/components/calendar.svg +0 -3
- package/assets/icons/components/camera.svg +0 -5
- package/assets/icons/components/car.svg +0 -5
- package/assets/icons/components/card-400.svg +0 -11
- package/assets/icons/components/card-401.svg +0 -11
- package/assets/icons/components/card-403.svg +0 -11
- package/assets/icons/components/card-404.svg +0 -11
- package/assets/icons/components/card-500.svg +0 -11
- package/assets/icons/components/card-502.svg +0 -11
- package/assets/icons/components/card-503.svg +0 -12
- package/assets/icons/components/card-504.svg +0 -15
- package/assets/icons/components/caret-right-fill.svg +0 -3
- package/assets/icons/components/certification.svg +0 -14
- package/assets/icons/components/chamber-deputies-cr.svg +0 -11
- package/assets/icons/components/chamber-deputies.svg +0 -13
- package/assets/icons/components/chat.svg +0 -11
- package/assets/icons/components/check-circle.svg +0 -4
- package/assets/icons/components/check-lg.svg +0 -3
- package/assets/icons/components/chevron-double-left.svg +0 -4
- package/assets/icons/components/chevron-double-right.svg +0 -4
- package/assets/icons/components/chevron-down.svg +0 -3
- package/assets/icons/components/chevron-left.svg +0 -3
- package/assets/icons/components/chevron-right.svg +0 -3
- package/assets/icons/components/chevron-up.svg +0 -3
- package/assets/icons/components/cities.svg +0 -17
- package/assets/icons/components/city-office.svg +0 -17
- package/assets/icons/components/coins.svg +0 -14
- package/assets/icons/components/communication.svg +0 -4
- package/assets/icons/components/confusion.svg +0 -8
- package/assets/icons/components/contact.svg +0 -6
- package/assets/icons/components/copy.svg +0 -10
- package/assets/icons/components/court.svg +0 -5
- package/assets/icons/components/covid.svg +0 -5
- package/assets/icons/components/czech-lion.svg +0 -134
- package/assets/icons/components/dash-lg.svg +0 -3
- package/assets/icons/components/diagram.svg +0 -3
- package/assets/icons/components/digital.svg +0 -10
- package/assets/icons/components/disability.svg +0 -5
- package/assets/icons/components/doc-agreement.svg +0 -7
- package/assets/icons/components/doc-basic-info.svg +0 -18
- package/assets/icons/components/doc-business.svg +0 -8
- package/assets/icons/components/doc-car-point-list.svg +0 -16
- package/assets/icons/components/doc-diploma.svg +0 -17
- package/assets/icons/components/doc-driver-info.svg +0 -8
- package/assets/icons/components/doc-election.svg +0 -13
- package/assets/icons/components/doc-filled.svg +0 -16
- package/assets/icons/components/doc-health.svg +0 -3
- package/assets/icons/components/doc-judgment.svg +0 -8
- package/assets/icons/components/doc-patient.svg +0 -8
- package/assets/icons/components/doc-personal-info.svg +0 -11
- package/assets/icons/components/doc-petition.svg +0 -8
- package/assets/icons/components/doc-registers.svg +0 -7
- package/assets/icons/components/doc-review.svg +0 -20
- package/assets/icons/components/doc-search.svg +0 -8
- package/assets/icons/components/doc-stamp.svg +0 -15
- package/assets/icons/components/doc-state.svg +0 -13
- package/assets/icons/components/doc-taxes.svg +0 -16
- package/assets/icons/components/doc-universal.svg +0 -13
- package/assets/icons/components/doc-visa.svg +0 -14
- package/assets/icons/components/documents.svg +0 -11
- package/assets/icons/components/download.svg +0 -4
- package/assets/icons/components/driver-file.svg +0 -14
- package/assets/icons/components/driver.svg +0 -7
- package/assets/icons/components/driving-licence.svg +0 -7
- package/assets/icons/components/email-notification.svg +0 -12
- package/assets/icons/components/empty-file.svg +0 -13
- package/assets/icons/components/energy.svg +0 -11
- package/assets/icons/components/envelope-fill.svg +0 -3
- package/assets/icons/components/envelope.svg +0 -3
- package/assets/icons/components/error.svg +0 -12
- package/assets/icons/components/european-parliament.svg +0 -11
- package/assets/icons/components/exclamation-lg.svg +0 -3
- package/assets/icons/components/exclamation-triangle-fill.svg +0 -10
- package/assets/icons/components/export.svg +0 -13
- package/assets/icons/components/eye.svg +0 -4
- package/assets/icons/components/family.svg +0 -12
- package/assets/icons/components/fast-forward.svg +0 -1
- package/assets/icons/components/filter.svg +0 -3
- package/assets/icons/components/gear.svg +0 -11
- package/assets/icons/components/geo-alt-fill.svg +0 -10
- package/assets/icons/components/globe.svg +0 -12
- package/assets/icons/components/graduate.svg +0 -4
- package/assets/icons/components/group.svg +0 -3
- package/assets/icons/components/hand-503.svg +0 -10
- package/assets/icons/components/hand-504.svg +0 -7
- package/assets/icons/components/hand.svg +0 -14
- package/assets/icons/components/health.svg +0 -5
- package/assets/icons/components/help.svg +0 -4
- package/assets/icons/components/history.svg +0 -4
- package/assets/icons/components/holiday.svg +0 -13
- package/assets/icons/components/hourglass.svg +0 -4
- package/assets/icons/components/house-door-fill.svg +0 -3
- package/assets/icons/components/house.svg +0 -13
- package/assets/icons/components/id-card.svg +0 -6
- package/assets/icons/components/id-info.svg +0 -9
- package/assets/icons/components/id.svg +0 -6
- package/assets/icons/components/illness.svg +0 -9
- package/assets/icons/components/info-circle-fill.svg +0 -10
- package/assets/icons/components/info-circle.svg +0 -11
- package/assets/icons/components/info-list.svg +0 -14
- package/assets/icons/components/info.svg +0 -3
- package/assets/icons/components/institute-file.svg +0 -23
- package/assets/icons/components/institution.svg +0 -10
- package/assets/icons/components/job-loss.svg +0 -4
- package/assets/icons/components/job.svg +0 -3
- package/assets/icons/components/lightbulb-fill.svg +0 -10
- package/assets/icons/components/list.svg +0 -3
- package/assets/icons/components/loader.svg +0 -3
- package/assets/icons/components/login.svg +0 -11
- package/assets/icons/components/logout.svg +0 -13
- package/assets/icons/components/map.svg +0 -11
- package/assets/icons/components/mobile-phone.svg +0 -13
- package/assets/icons/components/moon.svg +0 -10
- package/assets/icons/components/mouse.svg +0 -3
- package/assets/icons/components/my-filing.svg +0 -15
- package/assets/icons/components/my-state-data.svg +0 -19
- package/assets/icons/components/new-comments.svg +0 -6
- package/assets/icons/components/newborn.svg +0 -16
- package/assets/icons/components/news.svg +0 -20
- package/assets/icons/components/packet.svg +0 -11
- package/assets/icons/components/passport.svg +0 -7
- package/assets/icons/components/pencil.svg +0 -3
- package/assets/icons/components/personal-file.svg +0 -14
- package/assets/icons/components/pet.svg +0 -10
- package/assets/icons/components/petrol-station.svg +0 -14
- package/assets/icons/components/pills.svg +0 -4
- package/assets/icons/components/plus-lg.svg +0 -3
- package/assets/icons/components/population-register.svg +0 -12
- package/assets/icons/components/port-card.svg +0 -8
- package/assets/icons/components/portal.svg +0 -8
- package/assets/icons/components/pregnant.svg +0 -11
- package/assets/icons/components/president.svg +0 -13
- package/assets/icons/components/presidential-election.svg +0 -12
- package/assets/icons/components/print-fill.svg +0 -4
- package/assets/icons/components/profile-settings.svg +0 -13
- package/assets/icons/components/property.svg +0 -4
- package/assets/icons/components/question-circle.svg +0 -4
- package/assets/icons/components/queue.svg +0 -13
- package/assets/icons/components/quotes.svg +0 -6
- package/assets/icons/components/region.svg +0 -11
- package/assets/icons/components/regional-elections-clear.svg +0 -11
- package/assets/icons/components/regional-elections.svg +0 -12
- package/assets/icons/components/register-of-persons.svg +0 -7
- package/assets/icons/components/retiree.svg +0 -8
- package/assets/icons/components/rings.svg +0 -5
- package/assets/icons/components/search.svg +0 -10
- package/assets/icons/components/senate.svg +0 -11
- package/assets/icons/components/senior.svg +0 -4
- package/assets/icons/components/settings.svg +0 -13
- package/assets/icons/components/simple-envelope.svg +0 -3
- package/assets/icons/components/sms-notification.svg +0 -7
- package/assets/icons/components/sos.svg +0 -6
- package/assets/icons/components/star-fill.svg +0 -10
- package/assets/icons/components/state-file.svg +0 -8
- package/assets/icons/components/sun.svg +0 -10
- package/assets/icons/components/telephone.svg +0 -10
- package/assets/icons/components/three-dots-vertical.svg +0 -3
- package/assets/icons/components/time.svg +0 -4
- package/assets/icons/components/tombstone.svg +0 -7
- package/assets/icons/components/trash.svg +0 -6
- package/assets/icons/components/twitter-x.svg +0 -10
- package/assets/icons/components/upload.svg +0 -4
- package/assets/icons/components/user-login.svg +0 -13
- package/assets/icons/components/user.svg +0 -3
- package/assets/icons/components/vaccine.svg +0 -11
- package/assets/icons/components/x-circle.svg +0 -4
- package/assets/icons/components/x-lg.svg +0 -3
- package/assets/icons/components/x.svg +0 -3
- package/assets/logos/v-logo.svg +0 -4
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -10
- package/project.json +0 -49
- package/src/config.d.ts +0 -10
- 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 -56
- 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/sass/header.css +0 -526
- package/src/sass/header.scss +0 -480
- package/src/sass/main.scss +0 -246
- package/src/sass/scrollbar.scss +0 -22
- package/src/sass/sidemenu.css +0 -205
- package/src/sass/vendors/_bootstrap.scss +0 -2
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -32
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -16
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tab-view.component";
|
|
3
|
+
import * as i2 from "./tab-view-item.component";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@gov-design-system-ce/angular";
|
|
7
|
+
import * as i6 from "@ngx-translate/core";
|
|
8
|
+
export declare class TabViewModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabViewModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabViewModule, [typeof i1.TabViewComponent, typeof i2.TabViewItemComponent], [typeof i3.RouterOutlet, typeof i4.NgTemplateOutlet, typeof i5.GovDesignSystemModule, typeof i3.RouterLinkActive, typeof i3.RouterLink, typeof i6.TranslateModule], [typeof i1.TabViewComponent, typeof i2.TabViewItemComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TabViewModule>;
|
|
12
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './table.component';
|
|
1
|
+
export * from './table.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TablePaginationInfoComponent {
|
|
3
|
+
showingText: string;
|
|
4
|
+
toText: string;
|
|
5
|
+
ofText: string;
|
|
6
|
+
entriesText: string;
|
|
7
|
+
currentPage: number;
|
|
8
|
+
pageSize: number;
|
|
9
|
+
total: number;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TablePaginationInfoComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TablePaginationInfoComponent, "v-table-pagination-info", never, { "showingText": { "alias": "showingText"; "required": false; }; "toText": { "alias": "toText"; "required": false; }; "ofText": { "alias": "ofText"; "required": false; }; "entriesText": { "alias": "entriesText"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "total": { "alias": "total"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnChanges, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { FormCheckboxEvent, FormSelectEvent } from '@gov-design-system-ce/components';
|
|
3
|
+
import { LazyLoadEvent, Sort } from '@verisoft/core';
|
|
4
|
+
import { ColumnDefinition, ColumnModel, ColumnProvider, FieldSizeType, RowModel, TableCore } from '@verisoft/ui-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TableComponent<T> implements OnChanges, AfterViewInit, TableCore<T> {
|
|
7
|
+
viewColumns: QueryList<ColumnProvider<T>>;
|
|
8
|
+
rowDetailTemplate: TemplateRef<{
|
|
9
|
+
$implicit: T;
|
|
10
|
+
}>;
|
|
11
|
+
rowDetailButtonTemplate: TemplateRef<{
|
|
12
|
+
$implicit: T;
|
|
13
|
+
}>;
|
|
14
|
+
sorters: Sort[];
|
|
15
|
+
data: T[];
|
|
16
|
+
total: number;
|
|
17
|
+
filter: Partial<T> | undefined;
|
|
18
|
+
extraFilter: Partial<T> | undefined;
|
|
19
|
+
loading: boolean;
|
|
20
|
+
scrollable: boolean;
|
|
21
|
+
pageSize: number;
|
|
22
|
+
currentPage: number;
|
|
23
|
+
showPaginator: boolean;
|
|
24
|
+
userTableWrapper: boolean;
|
|
25
|
+
sortMultiple: boolean;
|
|
26
|
+
lazy: boolean;
|
|
27
|
+
selectionMode: 'single' | 'multiple' | undefined;
|
|
28
|
+
selection: T[];
|
|
29
|
+
showPageSizePicker: boolean;
|
|
30
|
+
entityKey: string | undefined;
|
|
31
|
+
customRoute: string | undefined;
|
|
32
|
+
disableCustomClicks: boolean;
|
|
33
|
+
tableName?: string;
|
|
34
|
+
size: FieldSizeType;
|
|
35
|
+
showActionButtons: boolean;
|
|
36
|
+
maximumColumnLength: number;
|
|
37
|
+
set columns(value: ColumnDefinition<T>[]);
|
|
38
|
+
get columns(): ColumnDefinition<T>[];
|
|
39
|
+
selectionChange: EventEmitter<T[]>;
|
|
40
|
+
lazyLoad: EventEmitter<LazyLoadEvent>;
|
|
41
|
+
download: EventEmitter<RowModel<T>[]>;
|
|
42
|
+
delete: EventEmitter<RowModel<T>[]>;
|
|
43
|
+
save: EventEmitter<RowModel<T>[]>;
|
|
44
|
+
private readonly cdRef;
|
|
45
|
+
private readonly router;
|
|
46
|
+
private readonly route;
|
|
47
|
+
private readonly service;
|
|
48
|
+
private _columns;
|
|
49
|
+
tableColumns: ColumnModel<T>[];
|
|
50
|
+
tableRows: RowModel<T>[];
|
|
51
|
+
pageSizeOptions: {
|
|
52
|
+
value: string;
|
|
53
|
+
}[];
|
|
54
|
+
allSelected: boolean;
|
|
55
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
56
|
+
get govPageSize(): string;
|
|
57
|
+
get tableRowView(): RowModel<T>[];
|
|
58
|
+
get selected(): RowModel<T>[];
|
|
59
|
+
get selectedCount(): number;
|
|
60
|
+
constructor();
|
|
61
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
62
|
+
ngAfterViewInit(): void;
|
|
63
|
+
protected sortColumn(column: ColumnModel<T>): void;
|
|
64
|
+
protected changePage(event: {
|
|
65
|
+
detail: {
|
|
66
|
+
pagination: {
|
|
67
|
+
currentPage: number;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
}): void;
|
|
71
|
+
protected changePageSize(event: CustomEvent<FormSelectEvent>): void;
|
|
72
|
+
protected selectRow(row: RowModel<T>, event: MouseEvent): void;
|
|
73
|
+
protected navigate(row: RowModel<T>, event: MouseEvent): void;
|
|
74
|
+
protected navigateNewWindow(row: RowModel<T>, event: MouseEvent): void;
|
|
75
|
+
protected toggleAll(event: CustomEvent<FormCheckboxEvent>): void;
|
|
76
|
+
protected toggleDetail(row: RowModel<T>): void;
|
|
77
|
+
protected selectRowCheckbox(row: RowModel<T>, event: CustomEvent<FormCheckboxEvent>): void;
|
|
78
|
+
protected truncate(text: string): string;
|
|
79
|
+
protected deselectAll(): void;
|
|
80
|
+
private createUrl;
|
|
81
|
+
private reactToSignals;
|
|
82
|
+
private updateColumnModels;
|
|
83
|
+
private updateRowModels;
|
|
84
|
+
private fireSelectionChange;
|
|
85
|
+
private selectSelected;
|
|
86
|
+
private fireLazyLoad;
|
|
87
|
+
private updateFilter;
|
|
88
|
+
private getSorts;
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any>, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any>, "v-table", never, { "sorters": { "alias": "sorters"; "required": false; }; "data": { "alias": "data"; "required": false; }; "total": { "alias": "total"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "extraFilter": { "alias": "extraFilter"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "userTableWrapper": { "alias": "userTableWrapper"; "required": false; }; "sortMultiple": { "alias": "sortMultiple"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "showPageSizePicker": { "alias": "showPageSizePicker"; "required": false; }; "entityKey": { "alias": "entityKey"; "required": false; }; "customRoute": { "alias": "customRoute"; "required": false; }; "disableCustomClicks": { "alias": "disableCustomClicks"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "maximumColumnLength": { "alias": "maximumColumnLength"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; }, { "selectionChange": "selectionChange"; "lazyLoad": "lazyLoad"; "download": "download"; "delete": "delete"; "save": "save"; }, ["rowDetailTemplate", "rowDetailButtonTemplate", "viewColumns"], never, true, never>;
|
|
91
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { SortDirectionType } from '@verisoft/core';
|
|
2
|
+
export declare function getNextSortDirection(sortDirection: SortDirectionType | undefined, isNullable?: boolean): SortDirectionType | undefined;
|
|
3
|
+
export declare function createCustomRoute<T>(row: T, entityKey?: string, customRoute?: string): string | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './textarea.component';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
2
|
+
import { TextfieldCore, FieldType, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType } from '@verisoft/ui-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextareaComponent extends BaseFormInputComponent implements ControlValueAccessor, TextfieldCore {
|
|
5
|
+
floatLabel: boolean;
|
|
6
|
+
type: FieldType;
|
|
7
|
+
minlength: number;
|
|
8
|
+
maxlength: number;
|
|
9
|
+
prefix: string;
|
|
10
|
+
sufix: string;
|
|
11
|
+
message: string;
|
|
12
|
+
name: string;
|
|
13
|
+
role: string;
|
|
14
|
+
size: FieldSizeType;
|
|
15
|
+
icon: string;
|
|
16
|
+
iconPos: IconPositionType;
|
|
17
|
+
labelSlot: SlotPositionType;
|
|
18
|
+
messageSlot: SlotPositionType;
|
|
19
|
+
rows: number;
|
|
20
|
+
cols: number;
|
|
21
|
+
icons: import("@verisoft/ui-core").CommonIcons;
|
|
22
|
+
constructor(ngControl: NgControl);
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, [{ optional: true; self: true; }]>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "v-textarea", 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; }; "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; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './textfield.component';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import { TextfieldCore, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TextfieldComponent extends BaseFormInputComponent implements ControlValueAccessor, TextfieldCore, OnInit {
|
|
6
|
+
floatLabel: boolean;
|
|
7
|
+
type: FieldTypeType;
|
|
8
|
+
minlength: number;
|
|
9
|
+
maxlength: number;
|
|
10
|
+
min: number;
|
|
11
|
+
max: number;
|
|
12
|
+
prefix: string;
|
|
13
|
+
sufix: string;
|
|
14
|
+
message: string;
|
|
15
|
+
name: string;
|
|
16
|
+
role: string;
|
|
17
|
+
size: FieldSizeType | undefined;
|
|
18
|
+
icon: string;
|
|
19
|
+
iconPos: IconPositionType;
|
|
20
|
+
labelSlot: SlotPositionType;
|
|
21
|
+
errorSlot: SlotPositionType;
|
|
22
|
+
messageSlot: SlotPositionType;
|
|
23
|
+
constructor(ngControl: NgControl);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
private setMinMaxNumberInputValidators;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextfieldComponent, [{ optional: true; self: true; }]>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextfieldComponent, "v-textfield", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "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>;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tooltip.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ElementRef, Renderer2, AfterViewInit } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TooltipComponent implements AfterViewInit {
|
|
4
|
+
private el;
|
|
5
|
+
private renderer;
|
|
6
|
+
color: 'primary' | 'secondary';
|
|
7
|
+
size: 'small' | 'medium' | 'large';
|
|
8
|
+
position: 'top' | 'right' | 'bottom' | 'left';
|
|
9
|
+
message: string;
|
|
10
|
+
label: string;
|
|
11
|
+
isVisible: boolean;
|
|
12
|
+
tooltipId: string | null;
|
|
13
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
14
|
+
ngAfterViewInit(): void;
|
|
15
|
+
toggleTooltip(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "v-tooltip", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "position": { "alias": "position"; "required": false; }; "message": { "alias": "message"; "required": true; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './tristatecheckbox.component';
|
|
1
|
+
export * from './tristatecheckbox.component';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import { BaseFormInputComponent, TristateCheckboxCore, SlotPositionType, FieldSizeType } from '@verisoft/ui-core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
declare enum States {
|
|
6
|
+
None = -1,
|
|
7
|
+
False = 0,
|
|
8
|
+
True = 1
|
|
9
|
+
}
|
|
10
|
+
export declare class TristatecheckboxComponent extends BaseFormInputComponent implements ControlValueAccessor, TristateCheckboxCore, OnInit {
|
|
11
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
12
|
+
size: FieldSizeType;
|
|
13
|
+
value: string;
|
|
14
|
+
name: string;
|
|
15
|
+
noLabel: boolean;
|
|
16
|
+
errorSlot: SlotPositionType;
|
|
17
|
+
checked: boolean;
|
|
18
|
+
protected isChecked: States;
|
|
19
|
+
constructor(ngControl: NgControl, changeDetectorRef: ChangeDetectorRef);
|
|
20
|
+
writeValue(value: any): void;
|
|
21
|
+
protected toggleCheckbox(): void;
|
|
22
|
+
private updateControlValue;
|
|
23
|
+
private getCurrentValue;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TristatecheckboxComponent, [{ optional: true; self: true; }, null]>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TristatecheckboxComponent, "v-tristatecheckbox", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
package/lib/icons.d.ts
ADDED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './components';
|
|
2
|
-
export * from './pipes';
|
|
3
|
-
export * from './init.service';
|
|
4
|
-
export * from './pages';
|
|
5
|
-
export * from './icons';
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './pipes';
|
|
3
|
+
export * from './init.service';
|
|
4
|
+
export * from './pages';
|
|
5
|
+
export * from './icons';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './not-authenticated';
|
|
2
|
-
export * from './not-authorized';
|
|
3
|
-
export * from './not-found';
|
|
1
|
+
export * from './not-authenticated';
|
|
2
|
+
export * from './not-authorized';
|
|
3
|
+
export * from './not-found';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './not-authenticated.component';
|
|
1
|
+
export * from './not-authenticated.component';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class NotAuthenticatedComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthenticatedComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotAuthenticatedComponent, "v-not-authenticated", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './not-authorized.component';
|
|
1
|
+
export * from './not-authorized.component';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class NotAuthorizedComponent {
|
|
3
|
+
goBack(): void;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthorizedComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotAuthorizedComponent, "v-not-authorized", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './not-found.component';
|
|
1
|
+
export * from './not-found.component';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class NotFoundComponent {
|
|
3
|
+
goBack(): void;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "v-not-found", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import { ControlSeverityType } from "@verisoft/ui-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GovColorPipe implements PipeTransform {
|
|
5
|
+
transform(color: ControlSeverityType | undefined): string | undefined;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GovColorPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GovColorPipe, "govColor", true>;
|
|
8
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './color/color.pipe';
|
|
2
|
-
export * from './multiselect/multiselect-options.pipe';
|
|
3
|
-
export * from './size/size.pipe';
|
|
1
|
+
export * from './color/color.pipe';
|
|
2
|
+
export * from './multiselect/multiselect-options.pipe';
|
|
3
|
+
export * from './size/size.pipe';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { GovFormMultiSelectItem } from '@gov-design-system-ce/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GovMultiselectOptionsPipe implements PipeTransform {
|
|
5
|
+
transform(options: any[] | undefined, optionLabel?: string, optionValue?: string, addEmptyOption?: boolean): GovFormMultiSelectItem[];
|
|
6
|
+
private convertToGovOption;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GovMultiselectOptionsPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GovMultiselectOptionsPipe, "govMultiselectOptions", true>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import { FieldSizeType } from "@verisoft/ui-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GovSizePipe implements PipeTransform {
|
|
5
|
+
transform(size: FieldSizeType | undefined): string | undefined;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GovSizePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GovSizePipe, "govSize", true>;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,37 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@verisoft/ui-govcz",
|
|
3
|
-
"version": "18.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^18.2.8",
|
|
6
|
-
"@angular/core": "^18.2.8",
|
|
7
|
-
"@angular/router": "18.2.8",
|
|
8
|
-
"@gov-design-system-ce/angular": "^1.1.1",
|
|
9
|
-
"@verisoft/ui-core": "18.
|
|
10
|
-
"@gov-design-system-ce/components": "^4.1.3-BETA-10",
|
|
11
|
-
"@angular/forms": "18.2.8",
|
|
12
|
-
"uuid": "^10.0.0",
|
|
13
|
-
"@verisoft/core": "18.
|
|
14
|
-
"zxcvbn": "^4.4.2",
|
|
15
|
-
"rxjs": "~7.8.0",
|
|
16
|
-
"@angular/cdk": "^18.2.14",
|
|
17
|
-
"@ngx-translate/core": "^15.0.0",
|
|
18
|
-
"@verisoft/security-core": "18.
|
|
19
|
-
},
|
|
20
|
-
"sideEffects": false
|
|
21
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@verisoft/ui-govcz",
|
|
3
|
+
"version": "18.6.0",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^18.2.8",
|
|
6
|
+
"@angular/core": "^18.2.8",
|
|
7
|
+
"@angular/router": "18.2.8",
|
|
8
|
+
"@gov-design-system-ce/angular": "^1.1.1",
|
|
9
|
+
"@verisoft/ui-core": "18.6.0",
|
|
10
|
+
"@gov-design-system-ce/components": "^4.1.3-BETA-10",
|
|
11
|
+
"@angular/forms": "18.2.8",
|
|
12
|
+
"uuid": "^10.0.0",
|
|
13
|
+
"@verisoft/core": "18.6.0",
|
|
14
|
+
"zxcvbn": "^4.4.2",
|
|
15
|
+
"rxjs": "~7.8.0",
|
|
16
|
+
"@angular/cdk": "^18.2.14",
|
|
17
|
+
"@ngx-translate/core": "^15.0.0",
|
|
18
|
+
"@verisoft/security-core": "18.6.0"
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"module": "fesm2022/verisoft-ui-govcz.mjs",
|
|
22
|
+
"typings": "index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
"./package.json": {
|
|
25
|
+
"default": "./package.json"
|
|
26
|
+
},
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./index.d.ts",
|
|
29
|
+
"esm2022": "./esm2022/verisoft-ui-govcz.mjs",
|
|
30
|
+
"esm": "./esm2022/verisoft-ui-govcz.mjs",
|
|
31
|
+
"default": "./fesm2022/verisoft-ui-govcz.mjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"tslib": "^2.3.0"
|
|
36
|
+
}
|
|
37
|
+
}
|
package/.eslintrc.json
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": ["../../../.eslintrc.base.json"],
|
|
3
|
-
"ignorePatterns": ["!**/*"],
|
|
4
|
-
"overrides": [
|
|
5
|
-
{
|
|
6
|
-
"files": ["*.ts"],
|
|
7
|
-
"extends": [
|
|
8
|
-
"plugin:@nx/angular",
|
|
9
|
-
"plugin:@angular-eslint/template/process-inline-templates"
|
|
10
|
-
],
|
|
11
|
-
"rules": {
|
|
12
|
-
"@angular-eslint/directive-selector": [
|
|
13
|
-
"error",
|
|
14
|
-
{
|
|
15
|
-
"type": "attribute",
|
|
16
|
-
"prefix": "v",
|
|
17
|
-
"style": "camelCase"
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"@angular-eslint/component-selector": [
|
|
21
|
-
"error",
|
|
22
|
-
{
|
|
23
|
-
"type": "element",
|
|
24
|
-
"prefix": "v",
|
|
25
|
-
"style": "kebab-case"
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"files": ["*.html"],
|
|
32
|
-
"extends": ["plugin:@nx/angular-template"],
|
|
33
|
-
"rules": {}
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"files": ["*.json"],
|
|
37
|
-
"parser": "jsonc-eslint-parser",
|
|
38
|
-
"rules": {
|
|
39
|
-
"@nx/dependency-checks": [
|
|
40
|
-
"error",
|
|
41
|
-
{
|
|
42
|
-
"ignoredFiles": ["{projectRoot}/eslint.config.{js,cjs,mjs}"]
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
]
|
|
48
|
-
}
|
package/assets/i18n/cs.json
DELETED
package/assets/i18n/en.json
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"VALIDATIONS": {
|
|
3
|
-
"REQUIRED": "This field is required",
|
|
4
|
-
"EMAIL": "Email is in a wrong format",
|
|
5
|
-
"PATTERN": "Input doesn't match the pattern",
|
|
6
|
-
"MIN_LENGTH": "Value doesn't have enough characters",
|
|
7
|
-
"MAX_LENGTH": "Value exceeds the maximum amount of characters"
|
|
8
|
-
}
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00092C25.1804 8.00092 26.2414 7.48961 26.9736 6.67639L35.8491 15.5519C36.0085 15.7113 36.2247 15.8009 36.4501 15.8009C37.2074 15.8009 37.5866 14.8853 37.0512 14.3498L27.8368 5.13547C27.943 4.77579 28 4.39501 28 4.00092C28 1.79178 26.2091 0.000915527 24 0.000915527C21.7909 0.000915527 20 1.79178 20 4.00092C20 4.39501 20.057 4.77579 20.1632 5.13547L10.9488 14.3498C10.4134 14.8853 10.7926 15.8009 11.5499 15.8009C11.7753 15.8009 11.9915 15.7113 12.1509 15.5519L21.0264 6.67639C21.7586 7.48961 22.8196 8.00092 24 8.00092ZM24 6.30092C25.2703 6.30092 26.3 5.27117 26.3 4.00092C26.3 2.73066 25.2703 1.70092 24 1.70092C22.7297 1.70092 21.7 2.73066 21.7 4.00092C21.7 5.27117 22.7297 6.30092 24 6.30092Z" fill="currentColor"/>
|
|
3
|
-
<path d="M15.4844 39.0009V37.5009H10.2344L12.6953 34.79C13.0391 34.4358 13.3542 34.0869 13.6406 33.7431C13.9271 33.3941 14.1745 33.0478 14.3828 32.704C14.5964 32.3551 14.7604 32.0061 14.875 31.6572C14.9896 31.3082 15.0469 30.9566 15.0469 30.6025C15.0469 29.9619 14.9062 29.4072 14.625 28.9384C14.349 28.4697 13.9453 28.1077 13.4141 27.8525C12.8828 27.5973 12.237 27.4697 11.4766 27.4697C10.6693 27.4697 9.97917 27.6337 9.40625 27.9619C8.83333 28.2848 8.39583 28.7223 8.09375 29.2744C7.79167 29.8212 7.64062 30.4254 7.64062 31.0869H9.52344C9.52344 30.6754 9.59635 30.3108 9.74219 29.9931C9.88802 29.6702 10.1042 29.4176 10.3906 29.2353C10.6771 29.053 11.0312 28.9619 11.4531 28.9619C11.8177 28.9619 12.1276 29.0426 12.3828 29.204C12.638 29.3603 12.8307 29.5764 12.9609 29.8525C13.0964 30.1233 13.1641 30.4384 13.1641 30.7978C13.1641 31.053 13.1146 31.316 13.0156 31.5869C12.9219 31.8525 12.7578 32.152 12.5234 32.4853C12.2891 32.8186 11.9688 33.2145 11.5625 33.6728L7.85938 37.7119V39.0009H15.4844Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.7891 34.9462V36.4462H23.3672V39.0009H21.4844V36.4462H16.5859L16.5234 35.3134L21.4297 27.6259H23.3672V34.9462H24.7891ZM21.3047 30.4228L21.4844 30.115V34.9462H18.4844L21.3047 30.4228Z" fill="currentColor"/>
|
|
5
|
-
<path d="M31.1016 27.6259L26.6719 39.9775H25.1953L29.6328 27.6259H31.1016Z" fill="currentColor"/>
|
|
6
|
-
<path d="M39.8516 27.6259V28.6572L35.3047 39.0009H33.3203L37.8594 29.1259H31.9688V27.6259H39.8516Z" fill="currentColor"/>
|
|
7
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"/>
|
|
8
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"/>
|
|
9
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"/>
|
|
10
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"/>
|
|
11
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7918 0 22.0009V44.0009C0 46.2101 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.2101 48 44.0009V22.0009C48 19.7918 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"/>
|
|
12
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="20px" height="20px" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<g transform="matrix(1 0 0 1 -24 -24 )">
|
|
4
|
-
<path d="M 17.5 0 C 17.5 0 2.5 0 2.5 0 C 1.8369587510824203 0 1.2010740116238594 0.2633921429514885 0.732233077287674 0.732233077287674 C 0.2633921429514885 1.2010740116238594 0 1.8369587510824203 0 2.5 C 0 2.5 0 17.5 0 17.5 C 0 18.16304124891758 0.2633921429514885 18.798925541341305 0.732233077287674 19.26776647567749 C 1.2010740116238594 19.736607410013676 1.8369587510824203 20 2.5 20 C 2.5 20 17.5 20 17.5 20 C 18.16304124891758 20 18.798925541341305 19.736607410013676 19.26776647567749 19.26776647567749 C 19.736607410013676 18.798925541341305 20 18.16304124891758 20 17.5 C 20 17.5 20 2.5 20 2.5 C 20 1.8369587510824203 19.736607410013676 1.2010740116238594 19.26776647567749 0.732233077287674 C 18.798925541341305 0.2633921429514885 18.16304124891758 0 17.5 0 Z M 10.44194221496582 5.183058381080627 C 10.559152448549867 5.300268614664674 10.625 5.459239687770605 10.625 5.625 C 10.625 5.625 10.625 9.375 10.625 9.375 C 10.625 9.375 14.375 9.375 14.375 9.375 C 14.540760312229395 9.375 14.699731981381774 9.440848147496581 14.81694221496582 9.558058381080627 C 14.934152448549867 9.675268614664674 15 9.834239687770605 15 10 C 15 10.165760312229395 14.934152448549867 10.324731981381774 14.81694221496582 10.44194221496582 C 14.699731981381774 10.559152448549867 14.540760312229395 10.625 14.375 10.625 C 14.375 10.625 10.625 10.625 10.625 10.625 C 10.625 10.625 10.625 14.375 10.625 14.375 C 10.625 14.540760312229395 10.559152448549867 14.699731981381774 10.44194221496582 14.81694221496582 C 10.324731981381774 14.934152448549867 10.165760312229395 15 10 15 C 9.834239687770605 15 9.675268614664674 14.934152448549867 9.558058381080627 14.81694221496582 C 9.440848147496581 14.699731981381774 9.375 14.540760312229395 9.375 14.375 C 9.375 14.375 9.375 10.625 9.375 10.625 C 9.375 10.625 5.625 10.625 5.625 10.625 C 5.459239687770605 10.625 5.300268614664674 10.559152448549867 5.183058381080627 10.44194221496582 C 5.065848147496581 10.324731981381774 4.999999999999999 10.165760312229395 5 10 C 4.999999999999999 9.834239687770605 5.065848147496581 9.675268614664674 5.183058381080627 9.558058381080627 C 5.300268614664674 9.440848147496581 5.459239687770605 9.375 5.625 9.375 C 5.625 9.375 9.375 9.375 9.375 9.375 C 9.375 9.375 9.375 5.625 9.375 5.625 C 9.375 5.459239687770605 9.440848147496581 5.300268614664674 9.558058381080627 5.183058381080627 C 9.675268614664674 5.065848147496581 9.834239687770605 4.999999999999999 10 5 C 10.165760312229395 4.999999999999999 10.324731981381774 5.065848147496581 10.44194221496582 5.183058381080627 Z " fill-rule="nonzero" fill="#1e4382" stroke="none" transform="matrix(1 0 0 1 24 24 )" />
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34 10.0009H30V4.00085C30 1.79172 28.2091 0.000854492 26 0.000854492H6C3.79086 0.000854492 2 1.79172 2 4.00085V24.0009C2 26.21 3.79086 28.0009 6 28.0009H10V34.0009C10 36.21 11.7909 38.0009 14 38.0009H18V44.0009C18 46.21 19.7909 48.0009 22 48.0009H42C44.2091 48.0009 46 46.21 46 44.0009V24.0009C46 21.7917 44.2091 20.0009 42 20.0009H38V14.0009C38 11.7917 36.2091 10.0009 34 10.0009ZM6 1.50085H26C27.3807 1.50085 28.5 2.62014 28.5 4.00085V10.0009H14C11.7909 10.0009 10 11.7917 10 14.0009V26.5009H6C4.61929 26.5009 3.5 25.3816 3.5 24.0009V4.00085C3.5 2.62014 4.61929 1.50085 6 1.50085ZM36.5 20.0009V14.0009C36.5 12.6201 35.3807 11.5009 34 11.5009H14C12.6193 11.5009 11.5 12.6201 11.5 14.0009V34.0009C11.5 35.3816 12.6193 36.5009 14 36.5009H18V24.0009C18 21.7917 19.7909 20.0009 22 20.0009H36.5ZM22 21.5009H42C43.3807 21.5009 44.5 22.6201 44.5 24.0009V44.0009C44.5 45.3816 43.3807 46.5009 42 46.5009H22C20.6193 46.5009 19.5 45.3816 19.5 44.0009V24.0009C19.5 22.6201 20.6193 21.5009 22 21.5009Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_771)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2456 5.62366C24.2456 7.11491 23.6532 8.54509 22.5987 9.59956C21.5442 10.654 20.114 11.2464 18.6228 11.2464C17.1315 11.2464 15.7013 10.654 14.6469 9.59956C13.5924 8.54509 13 7.11491 13 5.62366C13 4.13241 13.5924 2.70223 14.6469 1.64776C15.7013 0.593283 17.1315 0.00088501 18.6228 0.00088501C20.114 0.00088501 21.5442 0.593283 22.5987 1.64776C23.6532 2.70223 24.2456 4.13241 24.2456 5.62366ZM22.7456 5.62366C22.7456 6.71709 22.3112 7.76573 21.538 8.5389C20.7648 9.31207 19.7162 9.74644 18.6228 9.74644C17.5293 9.74644 16.4807 9.31207 15.7075 8.5389C14.9344 7.76573 14.5 6.71709 14.5 5.62366C14.5 4.53023 14.9344 3.48159 15.7075 2.70842C16.4807 1.93525 17.5293 1.50089 18.6228 1.50089C19.7162 1.50089 20.7648 1.93525 21.538 2.70842C22.3112 3.48159 22.7456 4.53023 22.7456 5.62366Z" fill="currentColor"/>
|
|
4
|
-
<path d="M26.25 31.0009C26.25 30.5867 26.5858 30.2509 27 30.2509H38C38.4142 30.2509 38.75 30.5867 38.75 31.0009C38.75 31.4151 38.4142 31.7509 38 31.7509H27C26.5858 31.7509 26.25 31.4151 26.25 31.0009Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.42055 32.7237C9.92606 32.7681 10.4362 32.7095 10.9199 32.5504C10.9199 34.4974 10.9201 36.4443 10.9202 38.3912C10.9204 40.3383 10.9206 42.2853 10.9206 44.2327C10.9193 45.1982 11.2906 46.1271 11.9573 46.8256C12.6239 47.5241 13.5344 47.9385 14.499 47.9823C15.4636 48.0261 16.4078 47.696 17.1351 47.0608C17.4014 46.8282 17.6311 46.5612 17.8195 46.2689C18.1374 45.7759 18.3377 45.211 18.3982 44.6181L18.4014 44.5857L18.4026 44.5725L18.6658 33.9871L18.9303 44.5725L18.9315 44.5857L18.9347 44.6203C18.9932 45.213 19.1914 45.7782 19.5072 46.2721C19.6957 46.5668 19.9261 46.8361 20.1936 47.0707C20.9215 47.709 21.8681 48.041 22.8352 47.9971C23.8024 47.9532 24.715 47.5367 25.382 46.835C25.6514 46.5517 25.8723 46.2307 26.0396 45.8848C26.3472 45.9607 26.6689 46.0009 27 46.0009V47.0009C27 47.5531 27.4478 48.0009 28 48.0009C28.5522 48.0009 29 47.5531 29 47.0009V46.0009H36V47.0009C36 47.5531 36.4478 48.0009 37 48.0009C37.5522 48.0009 38 47.5531 38 47.0009V46.0009C40.2092 46.0009 42 44.2101 42 42.0009V28.0009C42 25.7917 40.2092 24.0009 38 24.0009H35.5V21.7509H37C37.4143 21.7509 37.75 21.4152 37.75 21.0009C37.75 20.5866 37.4143 20.2509 37 20.2509H30.9873C30.7429 19.0712 30.3745 17.9561 29.8373 16.9563C29.1875 15.7481 28.2554 14.6435 26.9597 13.8601C25.6602 13.0729 24.2207 12.7455 22.7701 12.7455H14.6403C13.1909 12.7455 11.7502 13.0729 10.452 13.8601C9.15625 14.6435 8.22412 15.7468 7.57438 16.9563C6.34361 19.2429 6 22.1368 6 25.0232V28.9891C5.99992 29.5819 6.14044 30.1663 6.41002 30.6943C6.67961 31.2222 7.07057 31.6787 7.55081 32.0263C8.03105 32.3738 8.58688 32.6026 9.17266 32.6936C9.25507 32.7064 9.33775 32.7165 9.42055 32.7237ZM29.4521 20.2509C29.2352 19.3079 28.9306 18.4381 28.5162 17.6668C27.9694 16.65 27.2096 15.7641 26.1836 15.1437L26.1825 15.143C25.1542 14.5201 23.9932 14.2455 22.7701 14.2455H14.6403C13.4182 14.2455 12.2563 14.5202 11.2297 15.1427L11.2281 15.1437C10.2016 15.7643 9.44215 16.6491 8.89578 17.6662L8.8952 17.6673C7.84347 19.6213 7.5 22.211 7.5 25.0232V28.9891C7.49995 29.3447 7.58424 29.6954 7.74595 30.0121C7.90766 30.3288 8.14217 30.6027 8.43024 30.8111C8.71831 31.0196 9.05172 31.1568 9.40309 31.2114C9.75447 31.2661 10.1138 31.2366 10.4516 31.1254C10.6046 31.075 10.9199 31.0009 10.9199 31.0009V22.5009C10.9199 22.0867 11.2557 21.7509 11.6699 21.7509C12.0841 21.7509 12.4199 22.0867 12.4199 22.5009C12.4199 26.1235 12.4201 29.7457 12.4202 33.368C12.4204 36.9901 12.4206 40.6123 12.4206 44.2346C12.4198 44.8138 12.6425 45.371 13.0424 45.79C13.4423 46.209 13.9884 46.4575 14.567 46.4838C15.1456 46.5101 15.7121 46.3121 16.1483 45.9311C16.5739 45.5593 16.8435 45.0414 16.9044 44.4806L17.1663 33.9498C17.1865 33.1362 17.8519 32.4872 18.6658 32.4871C19.4796 32.4871 20.145 33.136 20.1654 33.9496L20.4286 44.4839C20.4869 45.0474 20.7559 45.5687 21.1826 45.9429C21.6192 46.3258 22.187 46.525 22.7672 46.4986C23.3473 46.4723 23.8948 46.2225 24.2949 45.8016C24.4497 45.6387 24.5779 45.455 24.6766 45.2574C23.6616 44.5319 23 43.3437 23 42.0009V28.0009C23 26.5577 23.7641 25.2932 24.9099 24.5897V22.5009C24.9099 22.0867 25.2457 21.7509 25.6599 21.7509C26.0741 21.7509 26.4099 22.0867 26.4099 22.5009V24.0441C26.6025 24.0156 26.7995 24.0009 27 24.0009H29.5V21.7509H28C27.5857 21.7509 27.25 21.4152 27.25 21.0009C27.25 20.9118 27.2656 20.8263 27.2939 20.7472C27.3296 20.6481 27.3855 20.5585 27.4568 20.4838C27.5935 20.3402 27.7861 20.2509 28 20.2509H29.4521ZM34 21.7509V24.0009H31V21.7509H34ZM38 25.5009H27C25.6194 25.5009 24.5 26.6203 24.5 28.0009V42.0009C24.5 43.3815 25.6194 44.5009 27 44.5009H38C39.3806 44.5009 40.5 43.3815 40.5 42.0009V28.0009C40.5 26.6203 39.3806 25.5009 38 25.5009Z" fill="currentColor"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_100_771">
|
|
9
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-left" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-list" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.7916 40C43.9192 40 44.8333 39.1393 44.8333 38.0776V37.4778C44.8333 36.9628 44.6138 36.4693 44.2241 36.108L42.7752 34.7648C40.8265 32.9582 39.7291 30.4908 39.7291 27.9158V20.1109C39.7291 12.7764 35.6458 6.86139 28.2448 5.2052V3.54901C28.2448 1.65622 26.4583 3.05176e-05 24.4166 3.05176e-05C22.375 3.05176e-05 20.5885 1.65622 20.5885 3.54901V5.2052C13.1875 6.86139 9.10416 12.7764 9.10416 20.1109V27.9158C9.10416 30.4908 8.0068 32.9582 6.05804 34.7648L4.60922 36.108C4.21947 36.4693 4 36.9628 4 37.4778V38.0776C4 39.1393 4.91408 40 6.04166 40H42.7916ZM26.5093 3.54901V6.56064L27.8583 6.8625C34.3551 8.31634 37.9937 13.4477 37.9937 20.1109V27.9158C37.9937 30.9687 39.2954 33.8793 41.5824 35.9996L43.0312 37.3427C43.0827 37.3905 43.0979 37.4408 43.0979 37.4778V38.0776C43.0979 38.1169 43.0837 38.1633 43.0327 38.2113C42.9805 38.2605 42.8988 38.3 42.7916 38.3H6.04166C5.93452 38.3 5.85282 38.2605 5.80059 38.2113C5.74957 38.1633 5.73541 38.1169 5.73541 38.0776V37.4778C5.73541 37.4408 5.75057 37.3905 5.8021 37.3427L7.25092 35.9996C9.5379 33.8793 10.8396 30.9688 10.8396 27.9158V20.1109C10.8396 13.4477 14.4782 8.31634 20.975 6.8625L22.3239 6.56064V3.54901C22.3239 2.68214 23.2421 1.70003 24.4166 1.70003C25.5912 1.70003 26.5093 2.68214 26.5093 3.54901Z" fill="currentColor"/>
|
|
3
|
-
<path d="M24.4166 48C27.2239 48 29.5208 45.7846 29.5208 43.077H19.3125C19.3125 45.7846 21.6094 48 24.4166 48Z" fill="currentColor"/>
|
|
4
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_791)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3802 2.34023C20.907 0.842144 18.9114 0.00088501 16.831 0.00088501C14.7505 0.00088501 12.7549 0.842144 11.2817 2.34023C9.81994 3.84647 9 5.88004 9 7.9992C9 10.1184 9.81994 12.1519 11.2817 13.6582L22.9351 25.5573C23.0753 25.6991 23.2415 25.8112 23.4242 25.8873C23.6069 25.9634 23.8026 26.002 24 26.0009C24.1974 26.002 24.3931 25.9634 24.5758 25.8873C24.7585 25.8112 24.9247 25.6991 25.0649 25.5573L36.7183 13.6582C38.1801 12.1519 39 10.1184 39 7.9992C39 5.88004 38.1801 3.84647 36.7183 2.34023C35.2451 0.842144 33.2495 0.00088501 31.169 0.00088501C29.0886 0.00088501 27.093 0.842144 25.6198 2.34023L24 3.99204L22.3802 2.34023ZM35.6453 3.38844C34.4513 2.17613 32.8412 1.50089 31.169 1.50089C29.4955 1.50089 27.8843 2.17717 26.69 3.39124L26.6893 3.39197L24 6.13443L21.31 3.39124C20.1157 2.17717 18.5045 1.50089 16.831 1.50089C15.1588 1.50089 13.5487 2.17612 12.3547 3.38842C11.1696 4.61141 10.5 6.26755 10.5 7.9992C10.5 9.73145 11.1701 11.3881 12.3559 12.6112L12.3581 12.6135L24 24.5008L35.6419 12.6135L35.6441 12.6113C36.8299 11.3882 37.5 9.73146 37.5 7.9992C37.5 6.26756 36.8304 4.61143 35.6453 3.38844Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.816 24.6199C40.9033 24.2231 40.984 23.7346 41.0621 23.1692C41.1632 22.4369 41.2508 21.649 41.3425 20.8244C41.4008 20.2999 41.4609 19.7596 41.5271 19.2098C41.6902 17.8555 41.8897 16.4554 42.1925 15.3715C42.3414 14.8385 42.5444 14.271 42.8477 13.8034C43.1404 13.3521 43.724 12.707 44.681 12.6724C45.7847 12.6326 46.4566 13.393 46.7827 13.9292C47.1223 14.4878 47.3412 15.1845 47.495 15.8664C47.8089 17.258 47.953 19.0673 47.9888 20.8691C48.025 22.6877 47.952 24.5789 47.803 26.1672C47.7285 26.9608 47.6335 27.6957 47.5195 28.3176C47.4119 28.9049 47.2676 29.5068 47.0548 29.963L47.0362 30.003L47.0152 30.0419C45.8191 32.2567 44.2408 34.263 42.7598 36.1456L42.7576 36.1484C42.5621 36.3969 42.3683 36.6432 42.1774 36.8876C40.5737 38.9396 39.1406 40.8833 38.2067 43.0268C38.8447 43.5526 39.0734 44.4614 38.7077 45.2455L37.9251 46.9238C37.4915 47.8538 36.3859 48.2562 35.4559 47.8225L26.3833 43.5919C25.4533 43.1582 25.0509 42.0527 25.4846 41.1227L26.2672 39.4444C26.5896 38.753 27.2833 38.3532 28.0001 38.3717C27.9973 36.4561 28.2825 34.8652 28.8015 33.4868C29.4202 31.8435 30.3375 30.5928 31.3302 29.5099C31.8947 28.894 32.5689 28.2507 33.2105 27.6385C33.6062 27.2609 33.9896 26.8951 34.3272 26.5548C35.2896 25.5849 36.1855 24.5459 36.9352 23.2132C37.2504 22.6527 37.815 22.275 38.4497 22.2073C39.1266 22.135 39.8664 22.4312 40.2736 23.132C40.5622 23.625 40.7333 24.1248 40.816 24.6199ZM29.5088 38.9058C29.3403 33.3937 31.6354 31.2095 34.172 28.7952C35.3897 27.6363 36.6631 26.4244 37.7463 24.766L37.7551 24.7525C37.8059 24.6746 37.8563 24.5957 37.9062 24.5157L37.6838 24.6462L37.6777 24.6358L37.9174 24.4978C38.0281 24.3199 38.1365 24.137 38.2425 23.9485C38.4073 23.6557 38.8097 23.5959 38.9774 23.887C39.0981 24.0927 39.1888 24.303 39.253 24.5169C39.2946 24.6556 39.3251 24.7959 39.3453 24.9375C39.3492 24.9647 39.3527 24.992 39.3559 25.0193C39.5545 26.7474 38.2658 28.6569 37.1743 30.2739C36.9435 30.6159 36.7209 30.9457 36.5238 31.2571C36.2759 31.6483 36.4001 32.1541 36.7815 32.4168C37.1944 32.7011 37.7597 32.5997 38.0461 32.1882C39.4207 30.213 40.7589 28.2092 41.9072 26.0917C42.3577 25.2627 42.5912 23.1651 42.8372 20.9563C43.1992 17.705 43.588 14.2129 44.7351 14.1715C47.1135 14.0855 46.714 27.1447 45.6954 29.3291C44.5649 31.4223 43.072 33.3212 41.5826 35.2156C40.017 37.207 38.4552 39.1934 37.3223 41.3955C37.1629 41.7054 37.0119 42.0196 36.8706 42.3387L29.5088 38.9058ZM26.8441 41.7566L27.6266 40.0783C27.7102 39.8991 27.9233 39.8215 28.1025 39.9051L37.175 44.1357C37.3543 44.2193 37.4318 44.4324 37.3483 44.6116L36.5657 46.2899C36.4821 46.4691 36.269 46.5466 36.0898 46.4631L27.0173 42.2325C26.838 42.1489 26.7605 41.9358 26.8441 41.7566Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.9359 23.1692C7.01398 23.7346 7.0947 24.2231 7.18199 24.6199C7.26466 24.1248 7.43579 23.625 7.72441 23.132C8.13152 22.4312 8.87134 22.135 9.54822 22.2073C10.183 22.275 10.7476 22.6527 11.0628 23.2132C11.8124 24.5459 12.7084 25.5849 13.6708 26.5548C14.0084 26.8951 14.3917 27.2609 14.7875 27.6385C15.4291 28.2507 16.1033 28.894 16.6678 29.5099C17.6604 30.5928 18.5777 31.8435 19.1964 33.4868C19.7154 34.8652 20.0007 36.4561 19.9978 38.3717C20.7147 38.3532 21.4084 38.753 21.7308 39.4444L22.5134 41.1227C22.9471 42.0527 22.5447 43.1582 21.6146 43.5919L12.5421 47.8225C11.612 48.2562 10.5065 47.8538 10.0728 46.9238L9.29024 45.2455C8.92461 44.4614 9.15322 43.5526 9.79128 43.0268C8.85736 40.8833 7.42427 38.9396 5.8206 36.8876C5.62935 36.6428 5.43529 36.3961 5.23953 36.1473L5.23819 36.1456C3.75715 34.263 2.17888 32.2567 0.982746 30.0419L0.961767 30.003L0.943111 29.963C0.730354 29.5068 0.586101 28.9049 0.478426 28.3176C0.364414 27.6957 0.269438 26.9608 0.19499 26.1672C0.0460032 24.5789 -0.0270082 22.6877 0.00913034 20.8691C0.044937 19.0673 0.189085 17.258 0.50293 15.8664C0.656711 15.1845 0.875612 14.4878 1.21526 13.9292C1.54132 13.393 2.21324 12.6326 3.317 12.6724C4.27393 12.707 4.85758 13.3521 5.15026 13.8034C5.45356 14.271 5.65655 14.8385 5.80548 15.3715C6.1083 16.4554 6.30774 17.8555 6.47083 19.2098C6.53703 19.7596 6.59709 20.2996 6.65542 20.8241C6.74713 21.6488 6.83477 22.4368 6.9359 23.1692ZM13.8259 28.7952C16.3626 31.2095 18.6576 33.3937 18.4891 38.9058L11.1273 42.3387C10.9861 42.0196 10.8351 41.7054 10.6757 41.3955C9.54273 39.1934 7.98097 37.207 6.41538 35.2156C4.92594 33.3212 3.43302 31.4223 2.30257 29.3291C1.28398 27.1447 0.884434 14.0855 3.26286 14.1715C4.40994 14.2129 4.79878 17.705 5.16079 20.9563C5.40672 23.1651 5.64029 25.2627 6.09081 26.0917C7.23905 28.2092 8.57727 30.213 9.95189 32.1882C10.2383 32.5997 10.8035 32.7011 11.2165 32.4168C11.5979 32.1541 11.722 31.6483 11.4742 31.2571C11.2769 30.9455 11.0546 30.6162 10.8236 30.2739C9.73221 28.6569 8.44344 26.7474 8.64211 25.0193C8.64525 24.992 8.64876 24.9647 8.65265 24.9375C8.67288 24.7959 8.70332 24.6556 8.74494 24.5169C8.80912 24.303 8.89984 24.0927 9.02054 23.887C9.18827 23.5959 9.59071 23.6557 9.75542 23.9485C9.86142 24.137 9.9699 24.3199 10.0806 24.4978L10.3203 24.6358L10.3142 24.6462L10.0918 24.5157C10.1417 24.5957 10.1921 24.6746 10.2429 24.7525L10.2517 24.766C11.3349 26.4244 12.6083 27.6363 13.8259 28.7952ZM20.3713 40.0783L21.1539 41.7566C21.2375 41.9358 21.1599 42.1489 20.9807 42.2325L11.9082 46.4631C11.7289 46.5466 11.5159 46.4691 11.4323 46.2899L10.6497 44.6116C10.5661 44.4324 10.6437 44.2193 10.8229 44.1357L19.8954 39.9051C20.0747 39.8215 20.2877 39.8991 20.3713 40.0783Z" fill="currentColor"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_100_791">
|
|
9
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|