@norwegian/core-components 5.18.0 → 5.18.2
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/esm2020/lib/components/accordion/accordion.component.mjs +148 -0
- package/esm2020/lib/components/accordion/accordion.module.mjs +20 -0
- package/esm2020/lib/components/airport-select/airport-select-dropdown/airport-select-dropdown.component.mjs +610 -0
- package/esm2020/lib/components/airport-select/airport-select.component.mjs +438 -0
- package/esm2020/lib/components/airport-select/airport-select.module.mjs +42 -0
- package/esm2020/lib/components/airport-select/services/airport-select-dropdown.service.mjs +35 -0
- package/esm2020/lib/components/airport-select/services/airport-select.service.mjs +38 -0
- package/esm2020/lib/components/autocomplete/autocomplete.component.mjs +287 -0
- package/esm2020/lib/components/autocomplete/autocomplete.module.mjs +43 -0
- package/esm2020/lib/components/backdrop/backdrop.component.mjs +56 -0
- package/esm2020/lib/components/backdrop/backdrop.module.mjs +24 -0
- package/esm2020/lib/components/box/box.component.mjs +68 -0
- package/esm2020/lib/components/box/box.module.mjs +19 -0
- package/esm2020/lib/components/button/button.component.mjs +167 -0
- package/esm2020/lib/components/button/button.module.mjs +20 -0
- package/esm2020/lib/components/checkbox/checkbox.component.mjs +148 -0
- package/esm2020/lib/components/checkbox/checkbox.module.mjs +20 -0
- package/esm2020/lib/components/chip/chip.component.mjs +53 -0
- package/esm2020/lib/components/chip/chip.module.mjs +24 -0
- package/esm2020/lib/components/container/container.component.mjs +50 -0
- package/esm2020/lib/components/container/container.module.mjs +19 -0
- package/esm2020/lib/components/continue/continue.component.mjs +194 -0
- package/esm2020/lib/components/continue/continue.module.mjs +34 -0
- package/esm2020/lib/components/cover/cover.component.mjs +75 -0
- package/esm2020/lib/components/cover/cover.module.mjs +21 -0
- package/esm2020/lib/components/datepicker/calendar/calendar.component.mjs +583 -0
- package/esm2020/lib/components/datepicker/datepicker.component.mjs +550 -0
- package/esm2020/lib/components/datepicker/datepicker.module.mjs +55 -0
- package/esm2020/lib/components/datepicker/services/calendar.service.mjs +213 -0
- package/esm2020/lib/components/datepicker-combo/datepicker-combo.component.mjs +355 -0
- package/esm2020/lib/components/datepicker-combo/datepicker-combo.module.mjs +31 -0
- package/esm2020/lib/components/divider/divider.component.mjs +61 -0
- package/esm2020/lib/components/divider/divider.module.mjs +20 -0
- package/esm2020/lib/components/dropdown/dropdown.component.mjs +169 -0
- package/esm2020/lib/components/dropdown/dropdown.module.mjs +32 -0
- package/esm2020/lib/components/filter/filter.component.mjs +1253 -0
- package/esm2020/lib/components/filter/filter.module.mjs +73 -0
- package/esm2020/lib/components/grid/col/col.component.mjs +49 -0
- package/esm2020/lib/components/grid/grid.component.mjs +72 -0
- package/esm2020/lib/components/grid/grid.module.mjs +20 -0
- package/esm2020/lib/components/icon/icon.component.mjs +44 -0
- package/esm2020/lib/components/icon/icon.module.mjs +24 -0
- package/esm2020/lib/components/icon-list/icon-list.component.mjs +50 -0
- package/esm2020/lib/components/icon-list/icon-list.module.mjs +20 -0
- package/esm2020/lib/components/info/info.component.mjs +106 -0
- package/esm2020/lib/components/info/info.module.mjs +36 -0
- package/esm2020/lib/components/input/input.component.mjs +179 -0
- package/esm2020/lib/components/input/input.module.mjs +21 -0
- package/esm2020/lib/components/journey/journey.component.mjs +126 -0
- package/esm2020/lib/components/journey/journey.module.mjs +28 -0
- package/esm2020/lib/components/journey-availability/journey-availability.component.mjs +126 -0
- package/esm2020/lib/components/journey-availability/journey-availability.module.mjs +39 -0
- package/esm2020/lib/components/journey-availability-list/journey-availability-list.component.mjs +185 -0
- package/{esm2015/lib/components/journey-availability-list/journey-availability-list.module.js → esm2020/lib/components/journey-availability-list/journey-availability-list.module.mjs} +27 -14
- package/esm2020/lib/components/journey-selection/journey-selection.component.mjs +112 -0
- package/esm2020/lib/components/journey-selection/journey-selection.module.mjs +35 -0
- package/esm2020/lib/components/journey-stopover/journey-stopover.component.mjs +125 -0
- package/esm2020/lib/components/journey-stopover/journey-stopover.module.mjs +28 -0
- package/esm2020/lib/components/list/list-item/list-item.component.mjs +52 -0
- package/esm2020/lib/components/list/list.component.mjs +78 -0
- package/esm2020/lib/components/list/list.module.mjs +20 -0
- package/esm2020/lib/components/modal/modal.component.mjs +141 -0
- package/esm2020/lib/components/modal/modal.module.mjs +38 -0
- package/esm2020/lib/components/number-field/number-field.component.mjs +135 -0
- package/esm2020/lib/components/number-field/number-field.module.mjs +39 -0
- package/esm2020/lib/components/page-footer/page-footer.component.mjs +54 -0
- package/esm2020/lib/components/page-footer/page-footer.module.mjs +21 -0
- package/esm2020/lib/components/page-header/hamburger/hamburger.component.mjs +22 -0
- package/esm2020/lib/components/page-header/page-header.component.mjs +142 -0
- package/esm2020/lib/components/page-header/page-header.module.mjs +23 -0
- package/esm2020/lib/components/page-header/search/search.component.mjs +49 -0
- package/{esm2015/lib/components/passenger-select/models/passengers.model.js → esm2020/lib/components/passenger-select/models/passengers.model.mjs} +1 -1
- package/esm2020/lib/components/passenger-select/passenger-select.component.mjs +225 -0
- package/esm2020/lib/components/passenger-select/passenger-select.module.mjs +28 -0
- package/esm2020/lib/components/phone-number/phone-number.component.mjs +148 -0
- package/esm2020/lib/components/phone-number/phone-number.module.mjs +44 -0
- package/esm2020/lib/components/premium-toggle/premium-toggle.component.mjs +69 -0
- package/esm2020/lib/components/premium-toggle/premium-toggle.module.mjs +28 -0
- package/esm2020/lib/components/radio/radio.component.mjs +98 -0
- package/esm2020/lib/components/radio/radio.module.mjs +20 -0
- package/esm2020/lib/components/select/optgroup/optgroup.component.mjs +29 -0
- package/esm2020/lib/components/select/option/option.component.mjs +26 -0
- package/esm2020/lib/components/select/select.component.mjs +354 -0
- package/esm2020/lib/components/select/select.module.mjs +30 -0
- package/esm2020/lib/components/simple-list/simple-list.component.mjs +48 -0
- package/esm2020/lib/components/simple-list/simple-list.module.mjs +19 -0
- package/esm2020/lib/components/slide-toggle/slide-toggle.component.mjs +111 -0
- package/esm2020/lib/components/slide-toggle/slide-toggle.module.mjs +31 -0
- package/esm2020/lib/components/slider/slider.component.mjs +501 -0
- package/esm2020/lib/components/slider/slider.module.mjs +28 -0
- package/esm2020/lib/components/sort/sort.component.mjs +93 -0
- package/esm2020/lib/components/sort/sort.module.mjs +36 -0
- package/esm2020/lib/components/spinner/spinner.component.mjs +112 -0
- package/esm2020/lib/components/spinner/spinner.module.mjs +19 -0
- package/esm2020/lib/components/subsidy-discount/subsidy-discount.component.mjs +110 -0
- package/esm2020/lib/components/subsidy-discount/subsidy-discount.module.mjs +36 -0
- package/esm2020/lib/components/suggestions/suggestions.component.mjs +43 -0
- package/esm2020/lib/components/suggestions/suggestions.module.mjs +28 -0
- package/esm2020/lib/components/tab-group/tab/tab.component.mjs +131 -0
- package/esm2020/lib/components/tab-group/tab-group.component.mjs +87 -0
- package/esm2020/lib/components/tab-group/tab-group.module.mjs +29 -0
- package/esm2020/lib/components/table/column/column.component.mjs +16 -0
- package/esm2020/lib/components/table/column-group/column-group.component.mjs +30 -0
- package/esm2020/lib/components/table/services/table.service.mjs +21 -0
- package/esm2020/lib/components/table/table-body/table-body.component.mjs +23 -0
- package/esm2020/lib/components/table/table-foot/table-foot.component.mjs +23 -0
- package/esm2020/lib/components/table/table-head/table-head.component.mjs +23 -0
- package/esm2020/lib/components/table/table-row/table-data/table-data.component.mjs +15 -0
- package/esm2020/lib/components/table/table-row/table-header/table-header.component.mjs +15 -0
- package/esm2020/lib/components/table/table-row/table-row.component.mjs +23 -0
- package/esm2020/lib/components/table/table.component.mjs +29 -0
- package/esm2020/lib/components/table/table.module.mjs +68 -0
- package/esm2020/lib/components/textarea/textarea.component.mjs +93 -0
- package/esm2020/lib/components/textarea/textarea.module.mjs +31 -0
- package/esm2020/lib/components/toggle/toggle.component.mjs +103 -0
- package/esm2020/lib/components/toggle/toggle.module.mjs +35 -0
- package/esm2020/lib/components/trip-summary/trip-summary.component.mjs +170 -0
- package/esm2020/lib/components/trip-summary/trip-summary.module.mjs +36 -0
- package/esm2020/lib/components/weather-icon/weather-icon.component.mjs +60 -0
- package/esm2020/lib/components/weather-icon/weather-icon.module.mjs +19 -0
- package/esm2020/lib/core/base/nas-component.base.mjs +47 -0
- package/esm2020/lib/core/directives/nas-class/nas-class.directive.mjs +80 -0
- package/esm2020/lib/core/directives/nas-class/nas-class.module.mjs +22 -0
- package/{esm2015/lib/core/extensions/html-element.extension.js → esm2020/lib/core/extensions/html-element.extension.mjs} +1 -1
- package/esm2020/lib/core/services/abandoned-basket/abandoned-basket.service.mjs +58 -0
- package/esm2020/lib/core/services/animate-helper/animate-helper.service.mjs +49 -0
- package/esm2020/lib/core/services/bem-helper/bem-helper.service.mjs +44 -0
- package/esm2020/lib/core/services/date/date-helper.service.mjs +199 -0
- package/esm2020/lib/core/services/device/device-helper.service.mjs +46 -0
- package/esm2020/lib/core/services/geolocation/geolocation.service.mjs +63 -0
- package/esm2020/lib/core/services/language/language-helper.service.mjs +129 -0
- package/esm2020/lib/core/services/sort/sort.service.mjs +22 -0
- package/esm2020/lib/core/services/viewport/viewport.service.mjs +32 -0
- package/esm2020/lib/services/get-position.service.mjs +23 -0
- package/esm2020/norwegian-core-components.mjs +5 -0
- package/fesm2015/norwegian-core-components.mjs +11843 -0
- package/fesm2015/norwegian-core-components.mjs.map +1 -0
- package/fesm2020/norwegian-core-components.mjs +11829 -0
- package/fesm2020/norwegian-core-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/accordion/accordion.component.d.ts +3 -0
- package/lib/components/accordion/accordion.module.d.ts +8 -0
- package/lib/components/airport-select/airport-select-dropdown/airport-select-dropdown.component.d.ts +5 -2
- package/lib/components/airport-select/airport-select.component.d.ts +5 -2
- package/lib/components/airport-select/airport-select.module.d.ts +11 -0
- package/lib/components/airport-select/services/airport-select-dropdown.service.d.ts +3 -0
- package/lib/components/airport-select/services/airport-select.service.d.ts +3 -0
- package/lib/components/autocomplete/autocomplete.component.d.ts +5 -2
- package/lib/components/autocomplete/autocomplete.module.d.ts +11 -0
- package/lib/components/backdrop/backdrop.component.d.ts +3 -0
- package/lib/components/backdrop/backdrop.module.d.ts +7 -0
- package/lib/components/box/box.component.d.ts +3 -4
- package/lib/components/box/box.module.d.ts +7 -0
- package/lib/components/button/button.component.d.ts +3 -0
- package/lib/components/button/button.module.d.ts +8 -0
- package/lib/components/checkbox/checkbox.component.d.ts +5 -2
- package/lib/components/checkbox/checkbox.module.d.ts +8 -0
- package/lib/components/chip/chip.component.d.ts +3 -0
- package/lib/components/chip/chip.module.d.ts +7 -0
- package/lib/components/container/container.component.d.ts +3 -4
- package/lib/components/container/container.module.d.ts +7 -0
- package/lib/components/continue/continue.component.d.ts +3 -0
- package/lib/components/continue/continue.module.d.ts +9 -0
- package/lib/components/cover/cover.component.d.ts +3 -0
- package/lib/components/cover/cover.module.d.ts +9 -0
- package/lib/components/datepicker/calendar/calendar.component.d.ts +5 -2
- package/lib/components/datepicker/datepicker.component.d.ts +5 -2
- package/lib/components/datepicker/datepicker.module.d.ts +14 -0
- package/lib/components/datepicker/services/calendar.service.d.ts +3 -0
- package/lib/components/datepicker-combo/datepicker-combo.component.d.ts +3 -0
- package/lib/components/datepicker-combo/datepicker-combo.module.d.ts +8 -0
- package/lib/components/divider/divider.component.d.ts +3 -4
- package/lib/components/divider/divider.module.d.ts +8 -0
- package/lib/components/dropdown/dropdown.component.d.ts +3 -0
- package/lib/components/dropdown/dropdown.module.d.ts +9 -0
- package/lib/components/filter/filter.component.d.ts +5 -2
- package/lib/components/filter/filter.module.d.ts +18 -0
- package/lib/components/grid/col/col.component.d.ts +4 -1
- package/lib/components/grid/grid.component.d.ts +3 -4
- package/lib/components/grid/grid.module.d.ts +8 -0
- package/lib/components/icon/icon.component.d.ts +3 -4
- package/lib/components/icon/icon.module.d.ts +7 -0
- package/lib/components/icon-list/icon-list.component.d.ts +3 -0
- package/lib/components/icon-list/icon-list.module.d.ts +8 -0
- package/lib/components/info/info.component.d.ts +3 -0
- package/lib/components/info/info.module.d.ts +10 -0
- package/lib/components/input/input.component.d.ts +5 -2
- package/lib/components/input/input.module.d.ts +9 -0
- package/lib/components/journey/journey.component.d.ts +3 -0
- package/lib/components/journey/journey.module.d.ts +8 -0
- package/lib/components/journey-availability/journey-availability.component.d.ts +3 -0
- package/lib/components/journey-availability/journey-availability.module.d.ts +10 -0
- package/lib/components/journey-availability-list/journey-availability-list.component.d.ts +3 -0
- package/lib/components/journey-availability-list/journey-availability-list.module.d.ts +10 -0
- package/lib/components/journey-selection/journey-selection.component.d.ts +3 -0
- package/lib/components/journey-selection/journey-selection.module.d.ts +9 -0
- package/lib/components/journey-stopover/journey-stopover.component.d.ts +3 -0
- package/lib/components/journey-stopover/journey-stopover.module.d.ts +8 -0
- package/lib/components/list/list-item/list-item.component.d.ts +3 -0
- package/lib/components/list/list.component.d.ts +4 -1
- package/lib/components/list/list.module.d.ts +8 -0
- package/lib/components/modal/modal.component.d.ts +3 -0
- package/lib/components/modal/modal.module.d.ts +10 -0
- package/lib/components/number-field/number-field.component.d.ts +5 -2
- package/lib/components/number-field/number-field.module.d.ts +10 -0
- package/lib/components/page-footer/page-footer.component.d.ts +3 -0
- package/lib/components/page-footer/page-footer.module.d.ts +9 -0
- package/lib/components/page-header/hamburger/hamburger.component.d.ts +3 -0
- package/lib/components/page-header/page-header.component.d.ts +3 -0
- package/lib/components/page-header/page-header.module.d.ts +11 -0
- package/lib/components/page-header/search/search.component.d.ts +3 -0
- package/lib/components/passenger-select/models/passengers.model.d.ts +2 -2
- package/lib/components/passenger-select/passenger-select.component.d.ts +5 -2
- package/lib/components/passenger-select/passenger-select.module.d.ts +8 -0
- package/lib/components/phone-number/phone-number.component.d.ts +5 -2
- package/lib/components/phone-number/phone-number.module.d.ts +11 -0
- package/lib/components/premium-toggle/premium-toggle.component.d.ts +3 -0
- package/lib/components/premium-toggle/premium-toggle.module.d.ts +8 -0
- package/lib/components/radio/radio.component.d.ts +5 -2
- package/lib/components/radio/radio.module.d.ts +8 -0
- package/lib/components/select/optgroup/optgroup.component.d.ts +3 -0
- package/lib/components/select/option/option.component.d.ts +3 -0
- package/lib/components/select/select.component.d.ts +6 -3
- package/lib/components/select/select.module.d.ts +10 -0
- package/lib/components/simple-list/simple-list.component.d.ts +4 -1
- package/lib/components/simple-list/simple-list.module.d.ts +7 -0
- package/lib/components/slide-toggle/slide-toggle.component.d.ts +5 -2
- package/lib/components/slide-toggle/slide-toggle.module.d.ts +8 -0
- package/lib/components/slider/slider.component.d.ts +5 -2
- package/lib/components/slider/slider.module.d.ts +8 -0
- package/lib/components/sort/sort.component.d.ts +3 -0
- package/lib/components/sort/sort.module.d.ts +10 -0
- package/lib/components/spinner/spinner.component.d.ts +11 -4
- package/lib/components/spinner/spinner.module.d.ts +7 -0
- package/lib/components/subsidy-discount/subsidy-discount.component.d.ts +3 -0
- package/lib/components/subsidy-discount/subsidy-discount.module.d.ts +10 -0
- package/lib/components/suggestions/suggestions.component.d.ts +3 -0
- package/lib/components/suggestions/suggestions.module.d.ts +8 -0
- package/lib/components/tab-group/tab/tab.component.d.ts +3 -0
- package/lib/components/tab-group/tab-group.component.d.ts +3 -0
- package/lib/components/tab-group/tab-group.module.d.ts +9 -0
- package/lib/components/table/column/column.component.d.ts +3 -0
- package/lib/components/table/column-group/column-group.component.d.ts +3 -0
- package/lib/components/table/services/table.service.d.ts +3 -0
- package/lib/components/table/table-body/table-body.component.d.ts +3 -0
- package/lib/components/table/table-foot/table-foot.component.d.ts +3 -0
- package/lib/components/table/table-head/table-head.component.d.ts +3 -0
- package/lib/components/table/table-row/table-data/table-data.component.d.ts +3 -0
- package/lib/components/table/table-row/table-header/table-header.component.d.ts +3 -0
- package/lib/components/table/table-row/table-row.component.d.ts +3 -0
- package/lib/components/table/table.component.d.ts +3 -0
- package/lib/components/table/table.module.d.ts +15 -0
- package/lib/components/textarea/textarea.component.d.ts +5 -2
- package/lib/components/textarea/textarea.module.d.ts +8 -0
- package/lib/components/toggle/toggle.component.d.ts +6 -3
- package/lib/components/toggle/toggle.module.d.ts +9 -0
- package/lib/components/trip-summary/trip-summary.component.d.ts +3 -0
- package/lib/components/trip-summary/trip-summary.module.d.ts +10 -0
- package/lib/components/weather-icon/weather-icon.component.d.ts +3 -0
- package/lib/components/weather-icon/weather-icon.module.d.ts +7 -0
- package/lib/core/directives/nas-class/nas-class.directive.d.ts +3 -0
- package/lib/core/directives/nas-class/nas-class.module.d.ts +6 -0
- package/lib/core/services/abandoned-basket/abandoned-basket.service.d.ts +3 -0
- package/lib/core/services/animate-helper/animate-helper.service.d.ts +3 -0
- package/lib/core/services/bem-helper/bem-helper.service.d.ts +3 -0
- package/lib/core/services/date/date-helper.service.d.ts +3 -0
- package/lib/core/services/device/device-helper.service.d.ts +3 -0
- package/lib/core/services/geolocation/geolocation.service.d.ts +3 -0
- package/lib/core/services/language/language-helper.service.d.ts +3 -0
- package/lib/core/services/sort/sort.service.d.ts +3 -0
- package/lib/core/services/viewport/viewport.service.d.ts +3 -0
- package/lib/services/get-position.service.d.ts +3 -0
- package/package.json +21 -9
- package/bundles/norwegian-core-components.umd.js +0 -12174
- package/bundles/norwegian-core-components.umd.js.map +0 -1
- package/esm2015/lib/components/accordion/accordion.component.js +0 -130
- package/esm2015/lib/components/accordion/accordion.module.js +0 -15
- package/esm2015/lib/components/airport-select/airport-select-dropdown/airport-select-dropdown.component.js +0 -583
- package/esm2015/lib/components/airport-select/airport-select.component.js +0 -400
- package/esm2015/lib/components/airport-select/airport-select.module.js +0 -27
- package/esm2015/lib/components/airport-select/services/airport-select-dropdown.service.js +0 -34
- package/esm2015/lib/components/airport-select/services/airport-select.service.js +0 -37
- package/esm2015/lib/components/autocomplete/autocomplete.component.js +0 -265
- package/esm2015/lib/components/autocomplete/autocomplete.module.js +0 -26
- package/esm2015/lib/components/backdrop/backdrop.component.js +0 -54
- package/esm2015/lib/components/backdrop/backdrop.module.js +0 -17
- package/esm2015/lib/components/box/box.component.js +0 -61
- package/esm2015/lib/components/box/box.module.js +0 -14
- package/esm2015/lib/components/button/button.component.js +0 -140
- package/esm2015/lib/components/button/button.module.js +0 -15
- package/esm2015/lib/components/checkbox/checkbox.component.js +0 -127
- package/esm2015/lib/components/checkbox/checkbox.module.js +0 -15
- package/esm2015/lib/components/chip/chip.component.js +0 -50
- package/esm2015/lib/components/chip/chip.module.js +0 -17
- package/esm2015/lib/components/container/container.component.js +0 -47
- package/esm2015/lib/components/container/container.module.js +0 -14
- package/esm2015/lib/components/continue/continue.component.js +0 -173
- package/esm2015/lib/components/continue/continue.module.js +0 -23
- package/esm2015/lib/components/cover/cover.component.js +0 -61
- package/esm2015/lib/components/cover/cover.module.js +0 -16
- package/esm2015/lib/components/datepicker/calendar/calendar.component.js +0 -560
- package/esm2015/lib/components/datepicker/datepicker.component.js +0 -515
- package/esm2015/lib/components/datepicker/datepicker.module.js +0 -34
- package/esm2015/lib/components/datepicker/services/calendar.service.js +0 -217
- package/esm2015/lib/components/datepicker-combo/datepicker-combo.component.js +0 -317
- package/esm2015/lib/components/datepicker-combo/datepicker-combo.module.js +0 -22
- package/esm2015/lib/components/divider/divider.component.js +0 -53
- package/esm2015/lib/components/divider/divider.module.js +0 -15
- package/esm2015/lib/components/dropdown/dropdown.component.js +0 -150
- package/esm2015/lib/components/dropdown/dropdown.module.js +0 -21
- package/esm2015/lib/components/filter/filter.component.js +0 -1122
- package/esm2015/lib/components/filter/filter.module.js +0 -44
- package/esm2015/lib/components/grid/col/col.component.js +0 -49
- package/esm2015/lib/components/grid/grid.component.js +0 -63
- package/esm2015/lib/components/grid/grid.module.js +0 -15
- package/esm2015/lib/components/icon/icon.component.js +0 -42
- package/esm2015/lib/components/icon/icon.module.js +0 -17
- package/esm2015/lib/components/icon-list/icon-list.component.js +0 -46
- package/esm2015/lib/components/icon-list/icon-list.module.js +0 -15
- package/esm2015/lib/components/info/info.component.js +0 -94
- package/esm2015/lib/components/info/info.module.js +0 -23
- package/esm2015/lib/components/input/input.component.js +0 -148
- package/esm2015/lib/components/input/input.module.js +0 -16
- package/esm2015/lib/components/journey/journey.component.js +0 -122
- package/esm2015/lib/components/journey/journey.module.js +0 -19
- package/esm2015/lib/components/journey-availability/journey-availability.component.js +0 -125
- package/esm2015/lib/components/journey-availability/journey-availability.module.js +0 -26
- package/esm2015/lib/components/journey-availability-list/journey-availability-list.component.js +0 -175
- package/esm2015/lib/components/journey-selection/journey-selection.component.js +0 -110
- package/esm2015/lib/components/journey-selection/journey-selection.module.js +0 -24
- package/esm2015/lib/components/journey-stopover/journey-stopover.component.js +0 -121
- package/esm2015/lib/components/journey-stopover/journey-stopover.module.js +0 -19
- package/esm2015/lib/components/list/list-item/list-item.component.js +0 -56
- package/esm2015/lib/components/list/list.component.js +0 -75
- package/esm2015/lib/components/list/list.module.js +0 -15
- package/esm2015/lib/components/modal/modal.component.js +0 -131
- package/esm2015/lib/components/modal/modal.module.js +0 -25
- package/esm2015/lib/components/number-field/number-field.component.js +0 -118
- package/esm2015/lib/components/number-field/number-field.module.js +0 -24
- package/esm2015/lib/components/page-footer/page-footer.component.js +0 -49
- package/esm2015/lib/components/page-footer/page-footer.module.js +0 -16
- package/esm2015/lib/components/page-header/hamburger/hamburger.component.js +0 -24
- package/esm2015/lib/components/page-header/page-header.component.js +0 -126
- package/esm2015/lib/components/page-header/page-header.module.js +0 -18
- package/esm2015/lib/components/page-header/search/search.component.js +0 -47
- package/esm2015/lib/components/passenger-select/passenger-select.component.js +0 -207
- package/esm2015/lib/components/passenger-select/passenger-select.module.js +0 -19
- package/esm2015/lib/components/phone-number/phone-number.component.js +0 -115
- package/esm2015/lib/components/phone-number/phone-number.module.js +0 -27
- package/esm2015/lib/components/premium-toggle/premium-toggle.component.js +0 -66
- package/esm2015/lib/components/premium-toggle/premium-toggle.module.js +0 -19
- package/esm2015/lib/components/radio/radio.component.js +0 -79
- package/esm2015/lib/components/radio/radio.module.js +0 -15
- package/esm2015/lib/components/select/optgroup/optgroup.component.js +0 -31
- package/esm2015/lib/components/select/option/option.component.js +0 -29
- package/esm2015/lib/components/select/select.component.js +0 -325
- package/esm2015/lib/components/select/select.module.js +0 -21
- package/esm2015/lib/components/simple-list/simple-list.component.js +0 -42
- package/esm2015/lib/components/simple-list/simple-list.module.js +0 -14
- package/esm2015/lib/components/slide-toggle/slide-toggle.component.js +0 -105
- package/esm2015/lib/components/slide-toggle/slide-toggle.module.js +0 -20
- package/esm2015/lib/components/slider/slider.component.js +0 -475
- package/esm2015/lib/components/slider/slider.module.js +0 -19
- package/esm2015/lib/components/sort/sort.component.js +0 -87
- package/esm2015/lib/components/sort/sort.module.js +0 -23
- package/esm2015/lib/components/spinner/spinner.component.js +0 -84
- package/esm2015/lib/components/spinner/spinner.module.js +0 -14
- package/esm2015/lib/components/subsidy-discount/subsidy-discount.component.js +0 -101
- package/esm2015/lib/components/subsidy-discount/subsidy-discount.module.js +0 -23
- package/esm2015/lib/components/suggestions/suggestions.component.js +0 -40
- package/esm2015/lib/components/suggestions/suggestions.module.js +0 -19
- package/esm2015/lib/components/tab-group/tab/tab.component.js +0 -123
- package/esm2015/lib/components/tab-group/tab-group.component.js +0 -85
- package/esm2015/lib/components/tab-group/tab-group.module.js +0 -20
- package/esm2015/lib/components/table/column/column.component.js +0 -17
- package/esm2015/lib/components/table/column-group/column-group.component.js +0 -34
- package/esm2015/lib/components/table/services/table.service.js +0 -20
- package/esm2015/lib/components/table/table-body/table-body.component.js +0 -27
- package/esm2015/lib/components/table/table-foot/table-foot.component.js +0 -27
- package/esm2015/lib/components/table/table-head/table-head.component.js +0 -27
- package/esm2015/lib/components/table/table-row/table-data/table-data.component.js +0 -15
- package/esm2015/lib/components/table/table-row/table-header/table-header.component.js +0 -15
- package/esm2015/lib/components/table/table-row/table-row.component.js +0 -27
- package/esm2015/lib/components/table/table.component.js +0 -29
- package/esm2015/lib/components/table/table.module.js +0 -45
- package/esm2015/lib/components/textarea/textarea.component.js +0 -73
- package/esm2015/lib/components/textarea/textarea.module.js +0 -20
- package/esm2015/lib/components/toggle/toggle.component.js +0 -86
- package/esm2015/lib/components/toggle/toggle.module.js +0 -22
- package/esm2015/lib/components/trip-summary/trip-summary.component.js +0 -152
- package/esm2015/lib/components/trip-summary/trip-summary.module.js +0 -23
- package/esm2015/lib/components/weather-icon/weather-icon.component.js +0 -56
- package/esm2015/lib/components/weather-icon/weather-icon.module.js +0 -14
- package/esm2015/lib/core/base/nas-component.base.js +0 -48
- package/esm2015/lib/core/directives/nas-class/nas-class.directive.js +0 -75
- package/esm2015/lib/core/directives/nas-class/nas-class.module.js +0 -17
- package/esm2015/lib/core/services/abandoned-basket/abandoned-basket.service.js +0 -55
- package/esm2015/lib/core/services/animate-helper/animate-helper.service.js +0 -47
- package/esm2015/lib/core/services/bem-helper/bem-helper.service.js +0 -41
- package/esm2015/lib/core/services/date/date-helper.service.js +0 -196
- package/esm2015/lib/core/services/device/device-helper.service.js +0 -43
- package/esm2015/lib/core/services/geolocation/geolocation.service.js +0 -60
- package/esm2015/lib/core/services/language/language-helper.service.js +0 -162
- package/esm2015/lib/core/services/sort/sort.service.js +0 -19
- package/esm2015/lib/core/services/viewport/viewport.service.js +0 -29
- package/esm2015/lib/services/get-position.service.js +0 -21
- package/esm2015/norwegian-core-components.js +0 -12
- package/fesm2015/norwegian-core-components.js +0 -10835
- package/fesm2015/norwegian-core-components.js.map +0 -1
- package/norwegian-core-components.d.ts +0 -11
- package/norwegian-core-components.metadata.json +0 -1
- /package/{esm2015/lib/components/accordion/index.js → esm2020/lib/components/accordion/index.mjs} +0 -0
- /package/{esm2015/lib/components/airport-select/index.js → esm2020/lib/components/airport-select/index.mjs} +0 -0
- /package/{esm2015/lib/components/airport-select/models/airport.model.js → esm2020/lib/components/airport-select/models/airport.model.mjs} +0 -0
- /package/{esm2015/lib/components/airport-select/models/results-labels.model.js → esm2020/lib/components/airport-select/models/results-labels.model.mjs} +0 -0
- /package/{esm2015/lib/components/autocomplete/index.js → esm2020/lib/components/autocomplete/index.mjs} +0 -0
- /package/{esm2015/lib/components/autocomplete/models/autocomplete.model.js → esm2020/lib/components/autocomplete/models/autocomplete.model.mjs} +0 -0
- /package/{esm2015/lib/components/backdrop/index.js → esm2020/lib/components/backdrop/index.mjs} +0 -0
- /package/{esm2015/lib/components/box/index.js → esm2020/lib/components/box/index.mjs} +0 -0
- /package/{esm2015/lib/components/button/index.js → esm2020/lib/components/button/index.mjs} +0 -0
- /package/{esm2015/lib/components/checkbox/index.js → esm2020/lib/components/checkbox/index.mjs} +0 -0
- /package/{esm2015/lib/components/chip/index.js → esm2020/lib/components/chip/index.mjs} +0 -0
- /package/{esm2015/lib/components/container/index.js → esm2020/lib/components/container/index.mjs} +0 -0
- /package/{esm2015/lib/components/continue/index.js → esm2020/lib/components/continue/index.mjs} +0 -0
- /package/{esm2015/lib/components/cover/index.js → esm2020/lib/components/cover/index.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/calendar/calendar-date.model.js → esm2020/lib/components/datepicker/calendar/calendar-date.model.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/calendar/enums/week-start.enum.js → esm2020/lib/components/datepicker/calendar/enums/week-start.enum.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/calendar/models/day.model.js → esm2020/lib/components/datepicker/calendar/models/day.model.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/calendar/models/select-option.model.js → esm2020/lib/components/datepicker/calendar/models/select-option.model.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/calendar/models/week.model.js → esm2020/lib/components/datepicker/calendar/models/week.model.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker/index.js → esm2020/lib/components/datepicker/index.mjs} +0 -0
- /package/{esm2015/lib/components/datepicker-combo/index.js → esm2020/lib/components/datepicker-combo/index.mjs} +0 -0
- /package/{esm2015/lib/components/divider/index.js → esm2020/lib/components/divider/index.mjs} +0 -0
- /package/{esm2015/lib/components/dropdown/index.js → esm2020/lib/components/dropdown/index.mjs} +0 -0
- /package/{esm2015/lib/components/filter/enums/trip-type.enum.js → esm2020/lib/components/filter/enums/trip-type.enum.mjs} +0 -0
- /package/{esm2015/lib/components/filter/index.js → esm2020/lib/components/filter/index.mjs} +0 -0
- /package/{esm2015/lib/components/grid/index.js → esm2020/lib/components/grid/index.mjs} +0 -0
- /package/{esm2015/lib/components/icon/index.js → esm2020/lib/components/icon/index.mjs} +0 -0
- /package/{esm2015/lib/components/icon-list/icon-list.model.js → esm2020/lib/components/icon-list/icon-list.model.mjs} +0 -0
- /package/{esm2015/lib/components/icon-list/index.js → esm2020/lib/components/icon-list/index.mjs} +0 -0
- /package/{esm2015/lib/components/index.js → esm2020/lib/components/index.mjs} +0 -0
- /package/{esm2015/lib/components/info/index.js → esm2020/lib/components/info/index.mjs} +0 -0
- /package/{esm2015/lib/components/info/models/info.model.js → esm2020/lib/components/info/models/info.model.mjs} +0 -0
- /package/{esm2015/lib/components/input/index.js → esm2020/lib/components/input/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey/index.js → esm2020/lib/components/journey/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey/models/journey-flight.model.js → esm2020/lib/components/journey/models/journey-flight.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey/models/journey.model.js → esm2020/lib/components/journey/models/journey.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey-availability/index.js → esm2020/lib/components/journey-availability/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey-availability-list/enums/availability-sort-option.enum.js → esm2020/lib/components/journey-availability-list/enums/availability-sort-option.enum.mjs} +0 -0
- /package/{esm2015/lib/components/journey-availability-list/index.js → esm2020/lib/components/journey-availability-list/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey-selection/index.js → esm2020/lib/components/journey-selection/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey-selection/models/journey-selection-collapsed.model.js → esm2020/lib/components/journey-selection/models/journey-selection-collapsed.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey-selection/models/journey-selection-common.model.js → esm2020/lib/components/journey-selection/models/journey-selection-common.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey-selection/models/journey-selection-expanded.model.js → esm2020/lib/components/journey-selection/models/journey-selection-expanded.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey-selection/models/journey-selection.model.js → esm2020/lib/components/journey-selection/models/journey-selection.model.mjs} +0 -0
- /package/{esm2015/lib/components/journey-stopover/index.js → esm2020/lib/components/journey-stopover/index.mjs} +0 -0
- /package/{esm2015/lib/components/journey-stopover/models/stopover-time.model.js → esm2020/lib/components/journey-stopover/models/stopover-time.model.mjs} +0 -0
- /package/{esm2015/lib/components/list/index.js → esm2020/lib/components/list/index.mjs} +0 -0
- /package/{esm2015/lib/components/modal/index.js → esm2020/lib/components/modal/index.mjs} +0 -0
- /package/{esm2015/lib/components/number-field/index.js → esm2020/lib/components/number-field/index.mjs} +0 -0
- /package/{esm2015/lib/components/page-footer/index.js → esm2020/lib/components/page-footer/index.mjs} +0 -0
- /package/{esm2015/lib/components/page-header/index.js → esm2020/lib/components/page-header/index.mjs} +0 -0
- /package/{esm2015/lib/components/passenger-select/enums/passenger-type.enum.js → esm2020/lib/components/passenger-select/enums/passenger-type.enum.mjs} +0 -0
- /package/{esm2015/lib/components/passenger-select/index.js → esm2020/lib/components/passenger-select/index.mjs} +0 -0
- /package/{esm2015/lib/components/phone-number/index.js → esm2020/lib/components/phone-number/index.mjs} +0 -0
- /package/{esm2015/lib/components/premium-toggle/index.js → esm2020/lib/components/premium-toggle/index.mjs} +0 -0
- /package/{esm2015/lib/components/radio/index.js → esm2020/lib/components/radio/index.mjs} +0 -0
- /package/{esm2015/lib/components/select/index.js → esm2020/lib/components/select/index.mjs} +0 -0
- /package/{esm2015/lib/components/select/models/select-option.model.js → esm2020/lib/components/select/models/select-option.model.mjs} +0 -0
- /package/{esm2015/lib/components/simple-list/index.js → esm2020/lib/components/simple-list/index.mjs} +0 -0
- /package/{esm2015/lib/components/slide-toggle/index.js → esm2020/lib/components/slide-toggle/index.mjs} +0 -0
- /package/{esm2015/lib/components/slider/index.js → esm2020/lib/components/slider/index.mjs} +0 -0
- /package/{esm2015/lib/components/sort/index.js → esm2020/lib/components/sort/index.mjs} +0 -0
- /package/{esm2015/lib/components/spinner/index.js → esm2020/lib/components/spinner/index.mjs} +0 -0
- /package/{esm2015/lib/components/subsidy-discount/index.js → esm2020/lib/components/subsidy-discount/index.mjs} +0 -0
- /package/{esm2015/lib/components/subsidy-discount/models/subsidy-discount.model.js → esm2020/lib/components/subsidy-discount/models/subsidy-discount.model.mjs} +0 -0
- /package/{esm2015/lib/components/suggestions/index.js → esm2020/lib/components/suggestions/index.mjs} +0 -0
- /package/{esm2015/lib/components/tab-group/index.js → esm2020/lib/components/tab-group/index.mjs} +0 -0
- /package/{esm2015/lib/components/table/index.js → esm2020/lib/components/table/index.mjs} +0 -0
- /package/{esm2015/lib/components/textarea/index.js → esm2020/lib/components/textarea/index.mjs} +0 -0
- /package/{esm2015/lib/components/toggle/index.js → esm2020/lib/components/toggle/index.mjs} +0 -0
- /package/{esm2015/lib/components/toggle/models/options.model.js → esm2020/lib/components/toggle/models/options.model.mjs} +0 -0
- /package/{esm2015/lib/components/trip-summary/index.js → esm2020/lib/components/trip-summary/index.mjs} +0 -0
- /package/{esm2015/lib/components/weather-icon/index.js → esm2020/lib/components/weather-icon/index.mjs} +0 -0
- /package/{esm2015/lib/core/decorators/debounce.decorator.js → esm2020/lib/core/decorators/debounce.decorator.mjs} +0 -0
- /package/{esm2015/lib/core/directives/index.js → esm2020/lib/core/directives/index.mjs} +0 -0
- /package/{esm2015/lib/core/index.js → esm2020/lib/core/index.mjs} +0 -0
- /package/{esm2015/lib/core/models/abandoned-basket-item.model.js → esm2020/lib/core/models/abandoned-basket-item.model.mjs} +0 -0
- /package/{esm2015/lib/core/models/animate.model.js → esm2020/lib/core/models/animate.model.mjs} +0 -0
- /package/{esm2015/lib/core/models/class.model.js → esm2020/lib/core/models/class.model.mjs} +0 -0
- /package/{esm2015/lib/core/models/index.js → esm2020/lib/core/models/index.mjs} +0 -0
- /package/{esm2015/lib/core/models/link.model.js → esm2020/lib/core/models/link.model.mjs} +0 -0
- /package/{esm2015/lib/core/models/position.model.js → esm2020/lib/core/models/position.model.mjs} +0 -0
- /package/{esm2015/lib/core/models/utc-date.model.js → esm2020/lib/core/models/utc-date.model.mjs} +0 -0
- /package/{esm2015/lib/core/services/date/date-compare.enum.js → esm2020/lib/core/services/date/date-compare.enum.mjs} +0 -0
- /package/{esm2015/lib/core/services/geolocation/geolocation-state.enum.js → esm2020/lib/core/services/geolocation/geolocation-state.enum.mjs} +0 -0
- /package/{esm2015/lib/core/services/index.js → esm2020/lib/core/services/index.mjs} +0 -0
- /package/{esm2015/lib/index.js → esm2020/lib/index.mjs} +0 -0
- /package/{esm2015/lib/services/index.js → esm2020/lib/services/index.mjs} +0 -0
- /package/{esm2015/lib/shared/index.js → esm2020/lib/shared/index.mjs} +0 -0
- /package/{esm2015/lib/shared/models/flight-details.js → esm2020/lib/shared/models/flight-details.mjs} +0 -0
- /package/{esm2015/lib/shared/models/index.js → esm2020/lib/shared/models/index.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-availability-sort.model.js → esm2020/lib/shared/models/journey-availability-sort.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-availability.model.js → esm2020/lib/shared/models/journey-availability.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-details.model.js → esm2020/lib/shared/models/journey-details.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-duration.model.js → esm2020/lib/shared/models/journey-duration.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-stopover.model.js → esm2020/lib/shared/models/journey-stopover.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/journey-transit-info.model.js → esm2020/lib/shared/models/journey-transit-info.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/operating-carrier.model.js → esm2020/lib/shared/models/operating-carrier.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/sort-option.model.js → esm2020/lib/shared/models/sort-option.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/sort.model.js → esm2020/lib/shared/models/sort.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/trip-item-details.model.js → esm2020/lib/shared/models/trip-item-details.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/trip-summary-details.model.js → esm2020/lib/shared/models/trip-summary-details.model.mjs} +0 -0
- /package/{esm2015/lib/shared/models/trip-summary.model.js → esm2020/lib/shared/models/trip-summary.model.mjs} +0 -0
- /package/{esm2015/public_api.js → esm2020/public_api.mjs} +0 -0
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
6
6
|
import { TableService } from '../services/table.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TableFootComponent implements AfterViewInit {
|
|
8
9
|
private elementRef;
|
|
9
10
|
private tableService;
|
|
10
11
|
constructor(elementRef: ElementRef<HTMLElement>, tableService: TableService);
|
|
11
12
|
ngAfterViewInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableFootComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableFootComponent, "nas-table-foot", never, {}, {}, never, ["nas-table-row"], false, never>;
|
|
12
15
|
}
|
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
6
6
|
import { TableService } from '../services/table.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TableHeadComponent implements AfterViewInit {
|
|
8
9
|
private elementRef;
|
|
9
10
|
private tableService;
|
|
10
11
|
constructor(elementRef: ElementRef<HTMLElement>, tableService: TableService);
|
|
11
12
|
ngAfterViewInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableHeadComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableHeadComponent, "nas-table-head", never, {}, {}, never, ["nas-table-row"], false, never>;
|
|
12
15
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TableDataComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableDataComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableDataComponent, "nas-table-data", never, {}, {}, never, ["*"], false, never>;
|
|
2
5
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TableHeaderComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableHeaderComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableHeaderComponent, "nas-table-header", never, {}, {}, never, ["*"], false, never>;
|
|
2
5
|
}
|
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
6
6
|
import { TableService } from '../services/table.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TableRowComponent implements AfterViewInit {
|
|
8
9
|
private elementRef;
|
|
9
10
|
private tableService;
|
|
10
11
|
constructor(elementRef: ElementRef<HTMLElement>, tableService: TableService);
|
|
11
12
|
ngAfterViewInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableRowComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableRowComponent, "nas-table-row", never, {}, {}, never, ["nas-table-header", "nas-table-data"], false, never>;
|
|
12
15
|
}
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { OnInit } from '@angular/core';
|
|
6
6
|
import { NasComponentBase } from '../../core';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* @description
|
|
9
10
|
* Norwegian Table Component | Layout | Beta
|
|
@@ -18,4 +19,6 @@ export declare class TableComponent extends NasComponentBase implements OnInit {
|
|
|
18
19
|
caption: string;
|
|
19
20
|
constructor();
|
|
20
21
|
ngOnInit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "nas-table", never, { "caption": "caption"; }, {}, never, ["nas-column-group", "nas-table-row", "nas-table-head", "nas-table-body", "nas-table-foot"], false, never>;
|
|
21
24
|
}
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./table.component";
|
|
3
|
+
import * as i2 from "./table-row/table-row.component";
|
|
4
|
+
import * as i3 from "./table-row/table-header/table-header.component";
|
|
5
|
+
import * as i4 from "./table-row/table-data/table-data.component";
|
|
6
|
+
import * as i5 from "./table-head/table-head.component";
|
|
7
|
+
import * as i6 from "./table-body/table-body.component";
|
|
8
|
+
import * as i7 from "./table-foot/table-foot.component";
|
|
9
|
+
import * as i8 from "./column-group/column-group.component";
|
|
10
|
+
import * as i9 from "./column/column.component";
|
|
11
|
+
import * as i10 from "@angular/common";
|
|
12
|
+
import * as i11 from "../../core/directives/nas-class/nas-class.module";
|
|
1
13
|
export declare class TableModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderComponent, typeof i4.TableDataComponent, typeof i5.TableHeadComponent, typeof i6.TableBodyComponent, typeof i7.TableFootComponent, typeof i8.ColumnGroupComponent, typeof i9.ColumnComponent], [typeof i10.CommonModule, typeof i11.NasClassModule], [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderComponent, typeof i4.TableDataComponent, typeof i5.TableHeadComponent, typeof i6.TableBodyComponent, typeof i7.TableFootComponent, typeof i8.ColumnGroupComponent, typeof i9.ColumnComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
2
17
|
}
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { EventEmitter } from '@angular/core';
|
|
6
6
|
import { NasComponentBase, ClassModel } from '../../core';
|
|
7
|
-
import {
|
|
7
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
10
|
* @description
|
|
10
11
|
* Norwegian Textarea Component | Form Controls
|
|
@@ -99,7 +100,7 @@ export declare class TextareaComponent extends NasComponentBase {
|
|
|
99
100
|
* <nas-textarea [nasFormGroup]="loginGroup"></nas-textarea>
|
|
100
101
|
* ```
|
|
101
102
|
*/
|
|
102
|
-
nasFormGroup:
|
|
103
|
+
nasFormGroup: UntypedFormGroup;
|
|
103
104
|
/**
|
|
104
105
|
* @description
|
|
105
106
|
* Whether the element is readonly.
|
|
@@ -118,4 +119,6 @@ export declare class TextareaComponent extends NasComponentBase {
|
|
|
118
119
|
constructor();
|
|
119
120
|
mainClass(): ClassModel;
|
|
120
121
|
textareaStyle(): Map<string, any>;
|
|
122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "nas-textarea", never, { "label": "label"; "resizable": "resizable"; "height": "height"; "maxHeight": "maxHeight"; "ariaDescribedby": "aria-describedby"; "disabled": "disabled"; "error": "error"; "errorMessage": "errorMessage"; "id": "id"; "info": "info"; "loading": "loading"; "maxLength": "maxLength"; "model": "model"; "nasFormControlName": "nasFormControlName"; "nasFormGroup": "nasFormGroup"; "readonly": "readonly"; "required": "required"; "spaceless": "spaceless"; }, { "modelChange": "modelChange"; }, never, never, false, never>;
|
|
121
124
|
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textarea.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../core/directives/nas-class/nas-class.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
1
6
|
export declare class TextareaModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextareaModule, [typeof i1.TextareaComponent], [typeof i2.CommonModule, typeof i3.NasClassModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.TextareaComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextareaModule>;
|
|
2
10
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
3
3
|
import { OptionModel } from './models/options.model';
|
|
4
4
|
import { NasComponentBase } from '../../core/base/nas-component.base';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* @description
|
|
7
8
|
* Norwegian Toogle Component | Buttons and Indicators
|
|
@@ -171,7 +172,7 @@ export declare class ToggleComponent extends NasComponentBase implements OnInit
|
|
|
171
172
|
* @example
|
|
172
173
|
* <nas-toggle [nasFormGroup]="formGroup"></nas-toggle>
|
|
173
174
|
*/
|
|
174
|
-
nasFormGroup:
|
|
175
|
+
nasFormGroup: UntypedFormGroup;
|
|
175
176
|
/**
|
|
176
177
|
* @description
|
|
177
178
|
* To set horizontal scroll.
|
|
@@ -186,5 +187,7 @@ export declare class ToggleComponent extends NasComponentBase implements OnInit
|
|
|
186
187
|
getIcon(option: OptionModel): string;
|
|
187
188
|
getOptionId(option: OptionModel): string;
|
|
188
189
|
onChange(option: OptionModel): void;
|
|
189
|
-
mainClasses(): import("
|
|
190
|
+
mainClasses(): import("@norwegian/core-components").ClassModel;
|
|
191
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
192
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "nas-toggle", never, { "options": "options"; "large": "large"; "compact": "compact"; "light": "light"; "rounded": "rounded"; "small": "small"; "big": "big"; "selectedValue": "selectedValue"; "label": "label"; "vertical": "vertical"; "grouped": "grouped"; "group": "group"; "nasFormControlName": "nasFormControlName"; "nasFormGroup": "nasFormGroup"; "scrollable": "scrollable"; }, { "handleChange": "handleChange"; }, never, never, false, never>;
|
|
190
193
|
}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./toggle.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
5
|
+
import * as i4 from "../../core/directives/nas-class/nas-class.module";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
1
7
|
export declare class ToggleModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleModule, [typeof i1.ToggleComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.NasClassModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule], [typeof i1.ToggleComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ToggleModule>;
|
|
2
11
|
}
|
|
@@ -7,6 +7,7 @@ import { NasComponentBase } from '../../core/base/nas-component.base';
|
|
|
7
7
|
import { TripSummaryModel } from '../../shared/models/trip-summary.model';
|
|
8
8
|
import { JourneyModel } from '../journey/models/journey.model';
|
|
9
9
|
import { JourneyStopoverModel } from '../../shared/models/journey-stopover.model';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* @description
|
|
12
13
|
* Norwegian Trip Summary Component | Functional
|
|
@@ -170,4 +171,6 @@ export declare class TripSummaryComponent extends NasComponentBase implements On
|
|
|
170
171
|
ngOnChanges(changes: SimpleChanges): void;
|
|
171
172
|
makeJourneyModel(): void;
|
|
172
173
|
addStopovers(): void;
|
|
174
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TripSummaryComponent, never>;
|
|
175
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TripSummaryComponent, "nas-trip-summary", never, { "tripSummaryModel": "tripSummaryModel"; "expanded": "expanded"; "collapsable": "collapsable"; "displayMinimumInfo": "displayMinimumInfo"; "expandTitle": "expandTitle"; "arrivalLabel": "arrivalLabel"; "departureLabel": "departureLabel"; "arrivalEstimatedLabel": "arrivalEstimatedLabel"; "departureEstimatedLabel": "departureEstimatedLabel"; "dateFormat": "dateFormat"; "timeFormat": "timeFormat"; "transitHoursIndicator": "transitHoursIndicator"; "transitMinutesIndicator": "transitMinutesIndicator"; "transitLabel": "transitLabel"; "locale": "locale"; "timeZone": "timeZone"; }, {}, never, never, false, never>;
|
|
173
176
|
}
|
|
@@ -1,2 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./trip-summary.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../core/directives/nas-class/nas-class.module";
|
|
5
|
+
import * as i4 from "../accordion/accordion.module";
|
|
6
|
+
import * as i5 from "../journey/journey.module";
|
|
7
|
+
import * as i6 from "../journey-stopover/journey-stopover.module";
|
|
1
8
|
export declare class TripSummaryModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TripSummaryModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TripSummaryModule, [typeof i1.TripSummaryComponent], [typeof i2.CommonModule, typeof i3.NasClassModule, typeof i4.AccordionModule, typeof i5.JourneyModule, typeof i6.JourneyStopoverModule], [typeof i1.TripSummaryComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TripSummaryModule>;
|
|
2
12
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
2
|
import { NasComponentBase } from '../../core/base/nas-component.base';
|
|
3
3
|
import { ClassModel } from '../../core/models/class.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* @description
|
|
6
7
|
* Norwegian Weather Component | Buttons and Indicators
|
|
@@ -48,4 +49,6 @@ export declare class WeatherIconComponent extends NasComponentBase implements Af
|
|
|
48
49
|
ngAfterViewInit(): void;
|
|
49
50
|
showModifier(value: string): string;
|
|
50
51
|
mainClass(): ClassModel;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WeatherIconComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WeatherIconComponent, "nas-weather-icon", never, { "weather": "weather"; "temperature": "temperature"; "temperatureText": "temperatureText"; "small": "small"; "medium": "medium"; "light": "light"; }, {}, never, never, false, never>;
|
|
51
54
|
}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./weather-icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../core/directives/nas-class/nas-class.module";
|
|
1
5
|
export declare class WeatherIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WeatherIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<WeatherIconModule, [typeof i1.WeatherIconComponent], [typeof i2.CommonModule, typeof i3.NasClassModule], [typeof i1.WeatherIconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<WeatherIconModule>;
|
|
2
9
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { BemHelper } from '../../services/bem-helper/bem-helper.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class NasClassDirective {
|
|
3
4
|
private bem;
|
|
4
5
|
set nasClass(value: any);
|
|
@@ -8,4 +9,6 @@ export declare class NasClassDirective {
|
|
|
8
9
|
private elementClassValue;
|
|
9
10
|
constructor(bem: BemHelper);
|
|
10
11
|
private pushClassToModels;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NasClassDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NasClassDirective, "[nasClass]", never, { "nasClass": "nasClass"; "elementClass": "attr.class"; }, {}, never, never, false, never>;
|
|
11
14
|
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./nas-class.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
export declare class NasClassModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NasClassModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NasClassModule, [typeof i1.NasClassDirective], [typeof i2.CommonModule], [typeof i1.NasClassDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NasClassModule>;
|
|
2
8
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { AbandonedBasketItemModel } from '../../models/abandoned-basket-item.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AbandonedBasketService {
|
|
3
4
|
private abandonedBasketKey;
|
|
4
5
|
getAll(): Array<AbandonedBasketItemModel>;
|
|
5
6
|
private remove;
|
|
6
7
|
private replace;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbandonedBasketService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AbandonedBasketService>;
|
|
7
10
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class AnimateHelper {
|
|
2
3
|
constructor();
|
|
3
4
|
animateFromElement(from: HTMLElement, to: HTMLElement, time?: number): string;
|
|
4
5
|
private makeAnimation;
|
|
5
6
|
private makeKeyframe;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnimateHelper, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnimateHelper>;
|
|
6
9
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class BemHelper {
|
|
2
3
|
getClasses(block: string): any;
|
|
3
4
|
class(block: string, element?: string, modifiers?: any, addition?: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BemHelper, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BemHelper>;
|
|
4
7
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UtcDate } from '../../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DateHelper {
|
|
3
4
|
utcDate(input?: Date | string): UtcDate | null;
|
|
4
5
|
date(utcDate: UtcDate): Date | null;
|
|
@@ -16,4 +17,6 @@ export declare class DateHelper {
|
|
|
16
17
|
private getNumberOfDaysBetween;
|
|
17
18
|
private getNumberOfMonthBetween;
|
|
18
19
|
private compare;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateHelper, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DateHelper>;
|
|
19
22
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class DeviceHelper {
|
|
2
3
|
private readonly mobileMaxWidth;
|
|
3
4
|
private readonly tabletMaxWidth;
|
|
@@ -10,4 +11,6 @@ export declare class DeviceHelper {
|
|
|
10
11
|
isWidthDesktop(width: number): boolean;
|
|
11
12
|
isTabletWindow(): boolean;
|
|
12
13
|
isIE(): boolean;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DeviceHelper, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DeviceHelper>;
|
|
13
16
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { GeolocationState } from './geolocation-state.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class GeolocationService {
|
|
4
5
|
getCurrentPosition(): Observable<GeolocationPosition>;
|
|
5
6
|
getState(): Observable<GeolocationState>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeolocationService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GeolocationService>;
|
|
6
9
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class LanguageHelper {
|
|
2
3
|
private languageCodeValue;
|
|
3
4
|
private fallbackLanguageCodeValue;
|
|
@@ -6,4 +7,6 @@ export declare class LanguageHelper {
|
|
|
6
7
|
fallbackLanguageCode(): string;
|
|
7
8
|
defaultCountryCode(): string;
|
|
8
9
|
setLanguageBasedOnMarketCode(marketCode: string): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LanguageHelper, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LanguageHelper>;
|
|
9
12
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class SortService {
|
|
2
3
|
sortByObject(array: Array<any>, order: Array<string>, key: string): any[];
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortService, never>;
|
|
5
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SortService>;
|
|
3
6
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class ViewPortService {
|
|
2
3
|
isElementInViewport(element: HTMLElement): boolean;
|
|
3
4
|
getElementPosition(element: HTMLElement): Position;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewPortService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ViewPortService>;
|
|
4
7
|
}
|
|
5
8
|
export interface Position {
|
|
6
9
|
x: number;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class GetPositionService {
|
|
2
3
|
get(element: any): {
|
|
3
4
|
x: number;
|
|
4
5
|
y: number;
|
|
5
6
|
};
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetPositionService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GetPositionService>;
|
|
6
9
|
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norwegian/core-components",
|
|
3
|
-
"version": "5.18.
|
|
3
|
+
"version": "5.18.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=12.0.0 < 16.0.0",
|
|
6
6
|
"@angular/core": ">=12.0.0 < 16.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"tslib": "^2.
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/norwegian-core-components.mjs",
|
|
12
|
+
"es2020": "fesm2020/norwegian-core-components.mjs",
|
|
13
|
+
"esm2020": "esm2020/norwegian-core-components.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/norwegian-core-components.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/norwegian-core-components.mjs",
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/norwegian-core-components.mjs",
|
|
24
|
+
"es2020": "./fesm2020/norwegian-core-components.mjs",
|
|
25
|
+
"es2015": "./fesm2015/norwegian-core-components.mjs",
|
|
26
|
+
"node": "./fesm2015/norwegian-core-components.mjs",
|
|
27
|
+
"default": "./fesm2020/norwegian-core-components.mjs"
|
|
28
|
+
}
|
|
10
29
|
},
|
|
11
|
-
"main": "bundles/norwegian-core-components.umd.js",
|
|
12
|
-
"module": "fesm2015/norwegian-core-components.js",
|
|
13
|
-
"es2015": "fesm2015/norwegian-core-components.js",
|
|
14
|
-
"esm2015": "esm2015/norwegian-core-components.js",
|
|
15
|
-
"fesm2015": "fesm2015/norwegian-core-components.js",
|
|
16
|
-
"typings": "norwegian-core-components.d.ts",
|
|
17
|
-
"metadata": "norwegian-core-components.metadata.json",
|
|
18
30
|
"sideEffects": false
|
|
19
31
|
}
|