@abcagency/hc-ui-components 1.3.20 → 1.3.22
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/.env +3 -0
- package/.eslintrc +136 -0
- package/bundleDist/bundle.js +28145 -0
- package/bundleDist/bundle.js.map +1 -0
- package/bundleDist/dist/styles/index.css +3 -0
- package/bundleDist/dist/types/apis/hcApi.d.ts +5 -0
- package/bundleDist/dist/types/clientToken.d.ts +2 -0
- package/{dist/types/components/modules → bundleDist/dist/types/components/containers}/jobListing/listing-details-container.d.ts +2 -2
- package/bundleDist/dist/types/components/modules/accordions/MapAccordionItem.d.ts +10 -0
- package/bundleDist/dist/types/components/modules/accordions/default.d.ts +19 -0
- package/bundleDist/dist/types/components/modules/buttons/button-group-apply.d.ts +24 -0
- package/bundleDist/dist/types/components/modules/buttons/commute-pill.d.ts +5 -0
- package/bundleDist/dist/types/components/modules/buttons/default.d.ts +48 -0
- package/bundleDist/dist/types/components/modules/buttons/pill-wrapper.d.ts +3 -0
- package/bundleDist/dist/types/components/modules/dialogs/apply-dialog.d.ts +8 -0
- package/bundleDist/dist/types/components/modules/filter/sort.d.ts +8 -0
- package/bundleDist/dist/types/components/modules/grid.d.ts +8 -0
- package/bundleDist/dist/types/components/modules/icon.d.ts +10 -0
- package/bundleDist/dist/types/components/modules/jobListing/listing-details.d.ts +18 -0
- package/bundleDist/dist/types/components/modules/list/field-mapper.d.ts +10 -0
- package/bundleDist/dist/types/components/modules/list/header-item.d.ts +11 -0
- package/bundleDist/dist/types/components/modules/list/header.d.ts +11 -0
- package/bundleDist/dist/types/components/modules/list/item-expand-card/index.d.ts +7 -0
- package/bundleDist/dist/types/components/modules/list/item-expand-card/recruiter-contact-nav.d.ts +17 -0
- package/bundleDist/dist/types/components/modules/list/item-expand-card/recruiter-details.d.ts +21 -0
- package/bundleDist/dist/types/components/modules/list/item-expand-card/recruiter-headshot.d.ts +8 -0
- package/bundleDist/dist/types/components/modules/list/item-list.d.ts +20 -0
- package/bundleDist/dist/types/components/modules/list/list-item/list-item.d.ts +3 -0
- package/bundleDist/dist/types/constants/eventTypes.d.ts +13 -0
- package/bundleDist/dist/types/contexts/mapContext.d.ts +29 -0
- package/bundleDist/dist/types/contexts/mapListContext.d.ts +59 -0
- package/bundleDist/dist/types/contexts/trackEventContext.d.ts +6 -0
- package/bundleDist/dist/types/enums/SectionType.d.ts +9 -0
- package/bundleDist/dist/types/hooks/useList.d.ts +13 -0
- package/bundleDist/dist/types/services/configService.d.ts +6 -0
- package/bundleDist/dist/types/services/googlePlacesNearbyService.d.ts +5 -0
- package/bundleDist/dist/types/services/listingAggregatorService.d.ts +12 -0
- package/bundleDist/dist/types/services/listingEntityService.d.ts +6 -0
- package/bundleDist/dist/types/services/listingService.d.ts +9 -0
- package/bundleDist/dist/types/services/recruiterService.d.ts +6 -0
- package/bundleDist/dist/types/types/Address.d.ts +7 -0
- package/bundleDist/dist/types/types/ContentSection.d.ts +8 -0
- package/bundleDist/dist/types/types/GetListingParams.d.ts +8 -0
- package/bundleDist/dist/types/types/LatLng.d.ts +4 -0
- package/bundleDist/dist/types/types/ListingEntity.d.ts +10 -0
- package/bundleDist/dist/types/types/ListingFields.d.ts +25 -0
- package/bundleDist/dist/types/types/Listings.d.ts +31 -0
- package/bundleDist/dist/types/types/Recruiter.d.ts +9 -0
- package/bundleDist/dist/types/types/SimilarListing.d.ts +24 -0
- package/bundleDist/dist/types/types/config/Colors.d.ts +8 -0
- package/bundleDist/dist/types/types/config/MapConfig.d.ts +30 -0
- package/bundleDist/dist/types/types/config/PointsOfInterestConfig.d.ts +13 -0
- package/bundleDist/dist/types/types/config/SearchConfig.d.ts +4 -0
- package/bundleDist/dist/types/util/filterUtil.d.ts +28 -0
- package/bundleDist/dist/types/util/loading.d.ts +3 -0
- package/bundleDist/dist/types/util/localStorageUtil.d.ts +3 -0
- package/bundleDist/dist/types/util/mapUtil.d.ts +15 -0
- package/bundleDist/dist/types/util/sortUtil.d.ts +1 -0
- package/bundleDist/dist/types/util/stringUtils.d.ts +1 -0
- package/bundleDist/dist/types/util/urlFilterUtil.d.ts +8 -0
- package/bundleDist/styles/index.css +3 -0
- package/bundleDist.map +1 -0
- package/dist/_virtual/_rollupPluginBabelHelpers.js +3 -3
- package/dist/_virtual/jsx-runtime.js +4 -0
- package/dist/_virtual/jsx-runtime.js.map +1 -0
- package/dist/_virtual/react-jsx-runtime.production.min.js +4 -0
- package/dist/_virtual/react-jsx-runtime.production.min.js.map +1 -0
- package/dist/apps/test-react-app/node_modules/react/cjs/react-jsx-runtime.production.min.js +49 -0
- package/dist/apps/test-react-app/node_modules/react/cjs/react-jsx-runtime.production.min.js.map +1 -0
- package/dist/apps/test-react-app/node_modules/react/jsx-runtime.js +12 -0
- package/dist/apps/test-react-app/node_modules/react/jsx-runtime.js.map +1 -0
- package/dist/components/HireControlMap.js +23 -18
- package/dist/components/HireControlMap.js.map +1 -1
- package/dist/components/containers/accordions/filter-container.js +48 -0
- package/dist/components/containers/accordions/filter-container.js.map +1 -0
- package/dist/components/containers/accordions/filter-item-container.js +50 -0
- package/dist/components/containers/accordions/filter-item-container.js.map +1 -0
- package/dist/components/{modules/list/list-item/index.js → containers/accordions/map-accordion-item-container.js} +14 -12
- package/dist/components/containers/accordions/map-accordion-item-container.js.map +1 -0
- package/dist/components/containers/filter/commute-container.js +141 -0
- package/dist/components/containers/filter/commute-container.js.map +1 -0
- package/dist/components/containers/filter/filter-container.js +83 -0
- package/dist/components/containers/filter/filter-container.js.map +1 -0
- package/dist/components/containers/filter/filter-item-container.js +79 -0
- package/dist/components/containers/filter/filter-item-container.js.map +1 -0
- package/dist/components/containers/filter/location-container.js +42 -0
- package/dist/components/containers/filter/location-container.js.map +1 -0
- package/dist/components/containers/filter/points-of-interest-container.js +37 -0
- package/dist/components/containers/filter/points-of-interest-container.js.map +1 -0
- package/dist/components/containers/filter/points-of-interest-radio-item-container.js +37 -0
- package/dist/components/containers/filter/points-of-interest-radio-item-container.js.map +1 -0
- package/dist/components/containers/filter/search-container.js +53 -0
- package/dist/components/containers/filter/search-container.js.map +1 -0
- package/dist/components/{modules → containers}/jobListing/listing-details-container.js +5 -5
- package/dist/components/containers/jobListing/listing-details-container.js.map +1 -0
- package/dist/components/containers/list/item-list-container.js +36 -0
- package/dist/components/containers/list/item-list-container.js.map +1 -0
- package/dist/components/{modules → containers}/list/list-item/list-item-container.js +3 -3
- package/dist/components/containers/list/list-item/list-item-container.js.map +1 -0
- package/dist/components/containers/maps/info-window-content-container.js +62 -0
- package/dist/components/containers/maps/info-window-content-container.js.map +1 -0
- package/dist/components/containers/maps/map-container.js +183 -0
- package/dist/components/containers/maps/map-container.js.map +1 -0
- package/dist/components/containers/maps/map-list-container.js +46 -0
- package/dist/components/containers/maps/map-list-container.js.map +1 -0
- package/dist/components/containers/maps/map-marker-container.js +83 -0
- package/dist/components/containers/maps/map-marker-container.js.map +1 -0
- package/dist/components/modules/accordions/MapAccordionItem.js +7 -9
- package/dist/components/modules/accordions/MapAccordionItem.js.map +1 -1
- package/dist/components/modules/accordions/default.js +15 -15
- package/dist/components/modules/accordions/default.js.map +1 -1
- package/dist/components/modules/accordions/filterItem.js +14 -40
- package/dist/components/modules/accordions/filterItem.js.map +1 -1
- package/dist/components/modules/accordions/filters.js +8 -27
- package/dist/components/modules/accordions/filters.js.map +1 -1
- package/dist/components/modules/buttons/button-group-apply.js +11 -11
- package/dist/components/modules/buttons/button-group-apply.js.map +1 -1
- package/dist/components/modules/buttons/commute-pill.js +3 -3
- package/dist/components/modules/buttons/commute-pill.js.map +1 -1
- package/dist/components/modules/buttons/default.js +9 -9
- package/dist/components/modules/buttons/default.js.map +1 -1
- package/dist/components/modules/buttons/items-pill.js +3 -3
- package/dist/components/modules/buttons/items-pill.js.map +1 -1
- package/dist/components/modules/buttons/pill-wrapper.js +2 -2
- package/dist/components/modules/buttons/pill-wrapper.js.map +1 -1
- package/dist/components/modules/buttons/show-all-button.js +3 -3
- package/dist/components/modules/buttons/show-all-button.js.map +1 -1
- package/dist/components/modules/cards/default.js +11 -11
- package/dist/components/modules/cards/default.js.map +1 -1
- package/dist/components/modules/cards/filter.js +5 -5
- package/dist/components/modules/cards/filter.js.map +1 -1
- package/dist/components/modules/dialogs/apply-dialog.js +16 -16
- package/dist/components/modules/dialogs/apply-dialog.js.map +1 -1
- package/dist/components/modules/filter/commute.js +40 -139
- package/dist/components/modules/filter/commute.js.map +1 -1
- package/dist/components/modules/filter/index.js +16 -66
- package/dist/components/modules/filter/index.js.map +1 -1
- package/dist/components/modules/filter/item.js +15 -62
- package/dist/components/modules/filter/item.js.map +1 -1
- package/dist/components/modules/filter/location.js +13 -39
- package/dist/components/modules/filter/location.js.map +1 -1
- package/dist/components/modules/filter/radio-item.js +12 -28
- package/dist/components/modules/filter/radio-item.js.map +1 -1
- package/dist/components/modules/filter/search.js +17 -45
- package/dist/components/modules/filter/search.js.map +1 -1
- package/dist/components/modules/filter/sort.js +28 -28
- package/dist/components/modules/filter/sort.js.map +1 -1
- package/dist/components/modules/grid.js +4 -4
- package/dist/components/modules/grid.js.map +1 -1
- package/dist/components/modules/icon.js +4 -4
- package/dist/components/modules/icon.js.map +1 -1
- package/dist/components/modules/jobListing/listing-details.js +15 -17
- package/dist/components/modules/jobListing/listing-details.js.map +1 -1
- package/dist/components/modules/list/field-mapper.js +20 -19
- package/dist/components/modules/list/field-mapper.js.map +1 -1
- package/dist/components/modules/list/header-item.js +6 -6
- package/dist/components/modules/list/header-item.js.map +1 -1
- package/dist/components/modules/list/header.js +5 -5
- package/dist/components/modules/list/header.js.map +1 -1
- package/dist/components/modules/list/item-expand-card/index.js +3 -5
- package/dist/components/modules/list/item-expand-card/index.js.map +1 -1
- package/dist/components/modules/list/item-expand-card/recruiter-contact-nav.js +5 -5
- package/dist/components/modules/list/item-expand-card/recruiter-contact-nav.js.map +1 -1
- package/dist/components/modules/list/item-expand-card/recruiter-details.js +6 -6
- package/dist/components/modules/list/item-expand-card/recruiter-details.js.map +1 -1
- package/dist/components/modules/list/item-expand-card/recruiter-headshot.js +3 -3
- package/dist/components/modules/list/item-expand-card/recruiter-headshot.js.map +1 -1
- package/dist/components/modules/list/item-list.js +14 -119
- package/dist/components/modules/list/item-list.js.map +1 -1
- package/dist/components/modules/list/list-item/list-item.js +14 -14
- package/dist/components/modules/list/list-item/list-item.js.map +1 -1
- package/dist/components/modules/maps/info-window-card.js +2 -2
- package/dist/components/modules/maps/info-window-card.js.map +1 -1
- package/dist/components/modules/maps/info-window-content.js +11 -55
- package/dist/components/modules/maps/info-window-content.js.map +1 -1
- package/dist/components/modules/maps/map-list.js +12 -46
- package/dist/components/modules/maps/map-list.js.map +1 -1
- package/dist/components/modules/maps/map-marker.js +17 -85
- package/dist/components/modules/maps/map-marker.js.map +1 -1
- package/dist/components/modules/maps/map.js +25 -163
- package/dist/components/modules/maps/map.js.map +1 -1
- package/dist/components/modules/maps/place-marker.js +5 -5
- package/dist/components/modules/maps/place-marker.js.map +1 -1
- package/dist/components/modules/maps/tabs.js +20 -20
- package/dist/components/modules/maps/tabs.js.map +1 -1
- package/dist/contexts/mapContext.js +2 -2
- package/dist/contexts/mapContext.js.map +1 -1
- package/dist/contexts/mapListContext.js +21 -12
- package/dist/contexts/mapListContext.js.map +1 -1
- package/dist/contexts/placesContext.js +2 -2
- package/dist/contexts/placesContext.js.map +1 -1
- package/dist/contexts/trackEventContext.js +2 -2
- package/dist/contexts/trackEventContext.js.map +1 -1
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +802 -0
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js.map +1 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +679 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +343 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +140 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +137 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/components/combobox/combobox.js +33 -0
- package/dist/node_modules/@headlessui/react/dist/components/combobox/combobox.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/components/keyboard.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/components/keyboard.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/components/transitions/transition.js +19 -0
- package/dist/node_modules/@headlessui/react/dist/components/transitions/transition.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/components/transitions/utils/transition.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/components/transitions/utils/transition.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-computed.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-computed.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-controllable.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-controllable.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-disposables.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-disposables.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-document-event.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-document-event.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-event.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-event.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-flags.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-flags.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-id.js +9 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-id.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-is-mounted.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-is-mounted.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-latest-value.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-latest-value.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-outside-click.js +10 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-outside-click.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-owner.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-owner.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-server-handoff-complete.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-server-handoff-complete.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-tracked-pointer.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-tracked-pointer.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-transition.js +11 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-transition.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-tree-walker.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-tree-walker.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-watch.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-watch.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-window-event.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-window-event.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/internal/hidden.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/internal/hidden.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/internal/open-closed.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/internal/open-closed.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/active-element-history.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/utils/active-element-history.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/bugs.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/bugs.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/calculate-active-index.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/calculate-active-index.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/class-names.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/class-names.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/disposables.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/utils/disposables.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/document-ready.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/document-ready.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/env.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/env.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/focus-management.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/utils/focus-management.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/form.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/form.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/match.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/match.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/micro-task.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/micro-task.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/once.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/once.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/owner.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/utils/owner.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/platform.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/utils/platform.js.map +1 -0
- package/dist/node_modules/@headlessui/react/dist/utils/render.js +11 -0
- package/dist/node_modules/@headlessui/react/dist/utils/render.js.map +1 -0
- package/dist/node_modules/@iconify/react/dist/iconify.js +1928 -0
- package/dist/node_modules/@iconify/react/dist/iconify.js.map +1 -0
- package/dist/node_modules/@radix-ui/number/dist/index.js +7 -0
- package/dist/node_modules/@radix-ui/number/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-accordion/dist/index.js +304 -0
- package/dist/node_modules/@radix-ui/react-accordion/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +26 -0
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-collapsible/dist/index.js +145 -0
- package/dist/node_modules/@radix-ui/react-collapsible/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-collection/dist/index.js +69 -0
- package/dist/node_modules/@radix-ui/react-collection/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +19 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +80 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +320 -0
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +212 -0
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +27 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +208 -0
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js +279 -0
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +18 -0
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js +120 -0
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +42 -0
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +221 -0
- package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-select/dist/index.js +1109 -0
- package/dist/node_modules/@radix-ui/react-select/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +82 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-tabs/dist/index.js +187 -0
- package/dist/node_modules/@radix-ui/react-tabs/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +13 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +47 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +19 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +8 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +41 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js.map +1 -0
- package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +35 -0
- package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js.map +1 -0
- package/dist/node_modules/@react-google-maps/api/dist/esm.js +8515 -0
- package/dist/node_modules/@react-google-maps/api/dist/esm.js.map +1 -0
- package/dist/node_modules/@remix-run/router/dist/router.js +271 -0
- package/dist/node_modules/@remix-run/router/dist/router.js.map +1 -0
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +43 -0
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js.map +1 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +669 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js.map +1 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +61 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js.map +1 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +137 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js.map +1 -0
- package/dist/node_modules/fuse.js/dist/fuse.js +1779 -0
- package/dist/node_modules/fuse.js/dist/fuse.js.map +1 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js +9 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js.map +1 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +17 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js.map +1 -0
- package/dist/node_modules/react/jsx-runtime.js +12 -0
- package/dist/node_modules/react/jsx-runtime.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +10 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +161 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +39 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +22 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +107 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +6 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js.map +1 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +8 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js.map +1 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +57 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js.map +1 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +11 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js.map +1 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +32 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js.map +1 -0
- package/dist/node_modules/react-router/dist/index.js +280 -0
- package/dist/node_modules/react-router/dist/index.js.map +1 -0
- package/dist/node_modules/react-router-dom/dist/index.js +201 -0
- package/dist/node_modules/react-router-dom/dist/index.js.map +1 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +20 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js.map +1 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +26 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js.map +1 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +52 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js.map +1 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +2530 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
- package/dist/node_modules/tslib/tslib.es6.js +57 -0
- package/dist/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +25 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js.map +1 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +49 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js.map +1 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +43 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js.map +1 -0
- package/dist/node_modules/use-places-autocomplete/dist/index.esm.js +243 -0
- package/dist/node_modules/use-places-autocomplete/dist/index.esm.js.map +1 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +22 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js.map +1 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +78 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/core/dist/floating-ui.core.js +802 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/core/dist/floating-ui.core.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +679 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/dom/dist/floating-ui.dom.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +343 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +140 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +137 -0
- package/dist/packages/hc-ui-components/node_modules/@floating-ui/utils/dist/floating-ui.utils.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/combobox/combobox.js +33 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/combobox/combobox.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/keyboard.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/keyboard.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/transitions/transition.js +19 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/transitions/transition.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/transitions/utils/transition.js +8 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/components/transitions/utils/transition.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-computed.js +8 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-computed.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-controllable.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-controllable.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-disposables.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-disposables.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-document-event.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-document-event.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-event.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-event.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-flags.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-flags.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-id.js +9 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-id.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-is-mounted.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-is-mounted.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-latest-value.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-latest-value.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-outside-click.js +10 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-outside-click.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-owner.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-owner.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-server-handoff-complete.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-server-handoff-complete.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-tracked-pointer.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-tracked-pointer.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-transition.js +11 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-transition.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-tree-walker.js +8 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-tree-walker.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-watch.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-watch.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-window-event.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/hooks/use-window-event.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/internal/hidden.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/internal/hidden.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/internal/open-closed.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/internal/open-closed.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/active-element-history.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/active-element-history.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/bugs.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/bugs.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/calculate-active-index.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/calculate-active-index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/class-names.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/class-names.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/disposables.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/disposables.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/document-ready.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/document-ready.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/env.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/env.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/focus-management.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/focus-management.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/form.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/form.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/match.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/match.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/micro-task.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/micro-task.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/once.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/once.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/owner.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/owner.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/platform.js +4 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/platform.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/render.js +11 -0
- package/dist/packages/hc-ui-components/node_modules/@headlessui/react/dist/utils/render.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@iconify/react/dist/iconify.js +1928 -0
- package/dist/packages/hc-ui-components/node_modules/@iconify/react/dist/iconify.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/number/dist/index.js +7 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/number/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/primitive/dist/index.js +12 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/primitive/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-accordion/dist/index.js +304 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-accordion/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-arrow/dist/index.js +26 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-arrow/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-collapsible/dist/index.js +145 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-collapsible/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-collection/dist/index.js +69 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-collection/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-compose-refs/dist/index.js +19 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-compose-refs/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-context/dist/index.js +80 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-context/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-dialog/dist/index.js +320 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-dialog/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-direction/dist/index.js +12 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-direction/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +212 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-dismissable-layer/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-focus-guards/dist/index.js +27 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-focus-guards/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-focus-scope/dist/index.js +208 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-focus-scope/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-id/dist/index.js +16 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-id/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-popper/dist/index.js +279 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-popper/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-portal/dist/index.js +18 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-portal/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-presence/dist/index.js +120 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-presence/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-primitive/dist/index.js +42 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-primitive/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-roving-focus/dist/index.js +221 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-roving-focus/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-select/dist/index.js +1109 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-select/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-slot/dist/index.js +82 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-slot/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-tabs/dist/index.js +187 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-tabs/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +13 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-callback-ref/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +47 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-controllable-state/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +19 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +8 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-layout-effect/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-previous/dist/index.js +16 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-previous/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-size/dist/index.js +41 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-use-size/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-visually-hidden/dist/index.js +35 -0
- package/dist/packages/hc-ui-components/node_modules/@radix-ui/react-visually-hidden/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@react-google-maps/api/dist/esm.js +8515 -0
- package/dist/packages/hc-ui-components/node_modules/@react-google-maps/api/dist/esm.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@remix-run/router/dist/router.js +271 -0
- package/dist/packages/hc-ui-components/node_modules/@remix-run/router/dist/router.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/react-virtual/dist/esm/index.js +43 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/react-virtual/dist/esm/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/virtual-core/dist/esm/index.js +669 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/virtual-core/dist/esm/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/virtual-core/dist/esm/utils.js +61 -0
- package/dist/packages/hc-ui-components/node_modules/@tanstack/virtual-core/dist/esm/utils.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/aria-hidden/dist/es2015/index.js +137 -0
- package/dist/packages/hc-ui-components/node_modules/aria-hidden/dist/es2015/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/fuse.js/dist/fuse.js +1779 -0
- package/dist/packages/hc-ui-components/node_modules/fuse.js/dist/fuse.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/get-nonce/dist/es2015/index.js +9 -0
- package/dist/packages/hc-ui-components/node_modules/get-nonce/dist/es2015/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/Combination.js +10 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/Combination.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +161 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/SideEffect.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/UI.js +39 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/UI.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +22 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +107 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/handleScroll.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/medium.js +6 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/medium.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/sidecar.js +8 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll/dist/es2015/sidecar.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/component.js +57 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/component.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +11 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/constants.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +32 -0
- package/dist/packages/hc-ui-components/node_modules/react-remove-scroll-bar/dist/es2015/utils.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-router/dist/index.js +280 -0
- package/dist/packages/hc-ui-components/node_modules/react-router/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-router-dom/dist/index.js +201 -0
- package/dist/packages/hc-ui-components/node_modules/react-router-dom/dist/index.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/component.js +20 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/component.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/hook.js +26 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/hook.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/singleton.js +52 -0
- package/dist/packages/hc-ui-components/node_modules/react-style-singleton/dist/es2015/singleton.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/tailwind-merge/dist/bundle-mjs.js +2530 -0
- package/dist/packages/hc-ui-components/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/tslib/tslib.es6.js +57 -0
- package/dist/packages/hc-ui-components/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/assignRef.js +25 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/assignRef.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +49 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/useMergeRef.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/useRef.js +43 -0
- package/dist/packages/hc-ui-components/node_modules/use-callback-ref/dist/es2015/useRef.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-places-autocomplete/dist/index.esm.js +243 -0
- package/dist/packages/hc-ui-components/node_modules/use-places-autocomplete/dist/index.esm.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-sidecar/dist/es2015/exports.js +22 -0
- package/dist/packages/hc-ui-components/node_modules/use-sidecar/dist/es2015/exports.js.map +1 -0
- package/dist/packages/hc-ui-components/node_modules/use-sidecar/dist/es2015/medium.js +78 -0
- package/dist/packages/hc-ui-components/node_modules/use-sidecar/dist/es2015/medium.js.map +1 -0
- package/dist/services/listingAggregatorService.js.map +1 -1
- package/dist/styles/index.css +2 -2
- package/dist/types/components/containers/accordions/map-accordion-item-container.d.ts +12 -0
- package/dist/types/components/containers/jobListing/listing-details-container.d.ts +6 -0
- package/dist/types/components/containers/list/item-list-container.d.ts +9 -0
- package/dist/types/components/containers/list/list-item/list-item-container.d.ts +14 -0
- package/dist/types/components/modules/accordions/MapAccordionItem.d.ts +2 -1
- package/dist/types/components/modules/jobListing/listing-details.d.ts +2 -2
- package/dist/types/components/modules/list/field-mapper.d.ts +1 -1
- package/dist/types/components/modules/list/item-list.d.ts +0 -1
- package/dist/types/contexts/mapListContext.d.ts +1 -0
- package/dist/types/types/ListingFields.d.ts +5 -0
- package/dist/types/types/config/MapConfig.d.ts +1 -0
- package/dist/types/util/urlFilterUtil.d.ts +8 -0
- package/dist/util/filterUtil.js +3 -3
- package/dist/util/filterUtil.js.map +1 -1
- package/dist/util/loading.js +3 -3
- package/dist/util/loading.js.map +1 -1
- package/dist/util/urlFilterUtil.js +77 -0
- package/dist/util/urlFilterUtil.js.map +1 -0
- package/package.json +26 -6
- package/postcss.config.js +14 -13
- package/rollup.config.mjs +111 -92
- package/src/.editorconfig +12 -0
- package/src/bundleIndex.js +14 -0
- package/src/components/HireControlMap.js +8 -5
- package/src/components/containers/accordions/filter-container.js +48 -0
- package/src/components/containers/accordions/filter-item-container.js +66 -0
- package/src/components/{modules/list/list-item/index.js → containers/accordions/map-accordion-item-container.js} +70 -70
- package/src/components/containers/filter/commute-container.js +89 -0
- package/src/components/containers/filter/filter-container.js +76 -0
- package/src/components/containers/filter/filter-item-container.js +71 -0
- package/src/components/containers/filter/location-container.js +45 -0
- package/src/components/containers/filter/points-of-interest-container.js +33 -0
- package/src/components/containers/filter/points-of-interest-radio-item-container.js +35 -0
- package/src/components/containers/filter/search-container.js +50 -0
- package/src/components/{modules → containers}/jobListing/listing-details-container.js +17 -17
- package/src/components/{modules/list/index.tsx → containers/list/item-list-container.tsx} +4 -6
- package/src/components/containers/maps/info-window-content-container.js +51 -0
- package/src/components/containers/maps/map-container.js +204 -0
- package/src/components/containers/maps/map-list-container.js +48 -0
- package/src/components/containers/maps/map-marker-container.js +78 -0
- package/src/components/modules/accordions/MapAccordionItem.js +30 -32
- package/src/components/modules/accordions/filterItem.js +27 -55
- package/src/components/modules/accordions/filters.js +32 -47
- package/src/components/modules/dialogs/apply-dialog.js +48 -48
- package/src/components/modules/filter/commute.js +108 -154
- package/src/components/modules/filter/index.js +30 -64
- package/src/components/modules/filter/item.js +48 -87
- package/src/components/modules/filter/location.js +48 -71
- package/src/components/modules/filter/radio-item.js +42 -56
- package/src/components/modules/filter/search.js +10 -38
- package/src/components/modules/jobListing/listing-details.js +5 -105
- package/src/components/modules/list/field-mapper.js +4 -4
- package/src/components/modules/list/item-expand-card/index.js +0 -2
- package/src/components/modules/list/item-list.tsx +1 -115
- package/src/components/modules/list/list-item/list-item.js +2 -1
- package/src/components/modules/maps/info-window-content.js +35 -81
- package/src/components/modules/maps/map-list.js +5 -51
- package/src/components/modules/maps/map-marker.js +29 -88
- package/src/components/modules/maps/map.js +76 -230
- package/src/contexts/mapListContext.tsx +311 -297
- package/src/contexts/placesContext.js +102 -102
- package/src/services/listingAggregatorService.ts +76 -76
- package/src/styles/bundle.css +268 -0
- package/src/styles/index.css +24 -23
- package/src/types/ListingFields.ts +5 -0
- package/src/types/config/MapConfig.ts +1 -0
- package/src/util/filterUtil.js +239 -239
- package/src/util/urlFilterUtil.js +85 -90
- package/stats.html +4842 -0
- package/tailwind.config.js +129 -126
- package/dist/components/modules/filter/points-of-interest.js +0 -38
- package/dist/components/modules/filter/points-of-interest.js.map +0 -1
- package/dist/components/modules/jobListing/listing-details-container.js.map +0 -1
- package/dist/components/modules/list/index.js +0 -36
- package/dist/components/modules/list/index.js.map +0 -1
- package/dist/components/modules/list/list-item/index.js.map +0 -1
- package/dist/components/modules/list/list-item/list-item-container.js.map +0 -1
- package/src/components/modules/filter/points-of-interest.js +0 -44
- /package/{dist/types/components/modules/list/list-item/index.d.ts → bundleDist/dist/types/components/containers/accordions/map-accordion-item-container.d.ts} +0 -0
- /package/{dist/types/components/modules/list/index.d.ts → bundleDist/dist/types/components/containers/list/item-list-container.d.ts} +0 -0
- /package/{dist/types/components/modules → bundleDist/dist/types/components/containers}/list/list-item/list-item-container.d.ts +0 -0
- /package/src/components/{modules → containers}/list/list-item/list-item-container.js +0 -0
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
import React, { createContext, useContext, useEffect, useState } from 'react';
|
|
2
|
-
|
|
3
|
-
import { markerIconProps } from '~/util/mapIconUtil';
|
|
4
|
-
|
|
5
|
-
import { useMap } from '~/contexts/mapContext';
|
|
6
|
-
|
|
7
|
-
import { searchNearbyPlaces } from '~/services/googlePlacesNearbyService';
|
|
8
|
-
|
|
9
|
-
const PlacesContext = createContext();
|
|
10
|
-
|
|
11
|
-
export const usePlaces = () => useContext(PlacesContext);
|
|
12
|
-
|
|
13
|
-
export const PlacesProvider = ({ children, placeMappings, markerColors }) => {
|
|
14
|
-
const { selectedPlaces, zoom, center } = useMap();
|
|
15
|
-
const [poiMarkers, setPoiMarkers] = useState({ markers: [], icon: null });
|
|
16
|
-
const [currentCenter, setCurrentCenter] = useState(center);
|
|
17
|
-
const [currentZoom, setCurrentZoom] = useState(zoom);
|
|
18
|
-
const [placesWindow, setPlacesWindow] = useState(false);
|
|
19
|
-
const [selectedPlaceMarker, setSelectedPlaceMarker] = useState(null);
|
|
20
|
-
|
|
21
|
-
const getRadiusForZoom = () => {
|
|
22
|
-
if (currentZoom >= 18) return 1000;
|
|
23
|
-
if (currentZoom <= 10) return 0;
|
|
24
|
-
|
|
25
|
-
let tempZoom = Math.pow(19 - currentZoom, 4.85);
|
|
26
|
-
let radius = tempZoom;
|
|
27
|
-
let minRadius = 1500;
|
|
28
|
-
let maxRadius = 800000;
|
|
29
|
-
|
|
30
|
-
if (radius < minRadius) radius = minRadius;
|
|
31
|
-
else if (radius > maxRadius) radius = maxRadius;
|
|
32
|
-
|
|
33
|
-
return radius;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
useEffect(() => {
|
|
37
|
-
if (!selectedPlaces || (!selectedPlaces.length > 0) || !center || currentZoom < 12) {
|
|
38
|
-
setPoiMarkers({ markers: [], icon: null });
|
|
39
|
-
return;
|
|
40
|
-
}
|
|
41
|
-
const fetchPlaces = async () => {
|
|
42
|
-
let poiTypes = [];
|
|
43
|
-
const selectedPOICategories = selectedPlaces;
|
|
44
|
-
selectedPOICategories.forEach(pointOfInterest => {
|
|
45
|
-
poiTypes = poiTypes.concat(placeMappings[pointOfInterest]);
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
const radius = getRadiusForZoom();
|
|
49
|
-
const location = { latitude: currentCenter.lat, longitude: currentCenter.lng };
|
|
50
|
-
|
|
51
|
-
try {
|
|
52
|
-
const response = await searchNearbyPlaces(poiTypes, location, radius);
|
|
53
|
-
const newMarkers = response.places.map(place => {
|
|
54
|
-
const getParentCategory = types => {
|
|
55
|
-
const selectedTypes = selectedPOICategories.reduce((acc, category) => {
|
|
56
|
-
return acc.concat(placeMappings[category]);
|
|
57
|
-
}, []);
|
|
58
|
-
|
|
59
|
-
for (const type of types) {
|
|
60
|
-
if (!selectedTypes.includes(type)) continue;
|
|
61
|
-
for (const category in placeMappings) {
|
|
62
|
-
if (placeMappings[category].includes(type)) {
|
|
63
|
-
return category;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
}
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
const icon = markerIconProps(markerColors.placeMarkers, getParentCategory(place.types));
|
|
71
|
-
|
|
72
|
-
return {
|
|
73
|
-
position: { lat: place.location.latitude, lng: place.location.longitude },
|
|
74
|
-
title: place.displayName.text,
|
|
75
|
-
icon: icon
|
|
76
|
-
};
|
|
77
|
-
});
|
|
78
|
-
setPoiMarkers({ markers: newMarkers, icon: null });
|
|
79
|
-
} catch (error) {
|
|
80
|
-
console.error('Failed to fetch places:', error);
|
|
81
|
-
}
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
fetchPlaces();
|
|
85
|
-
}, [selectedPlaces, currentZoom, currentCenter]);
|
|
86
|
-
|
|
87
|
-
return (
|
|
88
|
-
<PlacesContext.Provider value={{
|
|
89
|
-
poiMarkers,
|
|
90
|
-
setCurrentCenter,
|
|
91
|
-
currentCenter,
|
|
92
|
-
setCurrentZoom,
|
|
93
|
-
currentZoom,
|
|
94
|
-
placesWindow,
|
|
95
|
-
setPlacesWindow,
|
|
96
|
-
selectedPlaceMarker,
|
|
97
|
-
setSelectedPlaceMarker
|
|
98
|
-
}}>
|
|
99
|
-
{children}
|
|
100
|
-
</PlacesContext.Provider>
|
|
101
|
-
);
|
|
102
|
-
};
|
|
1
|
+
import React, { createContext, useContext, useEffect, useState } from 'react';
|
|
2
|
+
|
|
3
|
+
import { markerIconProps } from '~/util/mapIconUtil';
|
|
4
|
+
|
|
5
|
+
import { useMap } from '~/contexts/mapContext';
|
|
6
|
+
|
|
7
|
+
import { searchNearbyPlaces } from '~/services/googlePlacesNearbyService';
|
|
8
|
+
|
|
9
|
+
const PlacesContext = createContext();
|
|
10
|
+
|
|
11
|
+
export const usePlaces = () => useContext(PlacesContext);
|
|
12
|
+
|
|
13
|
+
export const PlacesProvider = ({ children, placeMappings, markerColors }) => {
|
|
14
|
+
const { selectedPlaces, zoom, center } = useMap();
|
|
15
|
+
const [poiMarkers, setPoiMarkers] = useState({ markers: [], icon: null });
|
|
16
|
+
const [currentCenter, setCurrentCenter] = useState(center);
|
|
17
|
+
const [currentZoom, setCurrentZoom] = useState(zoom);
|
|
18
|
+
const [placesWindow, setPlacesWindow] = useState(false);
|
|
19
|
+
const [selectedPlaceMarker, setSelectedPlaceMarker] = useState(null);
|
|
20
|
+
|
|
21
|
+
const getRadiusForZoom = () => {
|
|
22
|
+
if (currentZoom >= 18) return 1000;
|
|
23
|
+
if (currentZoom <= 10) return 0;
|
|
24
|
+
|
|
25
|
+
let tempZoom = Math.pow(19 - currentZoom, 4.85);
|
|
26
|
+
let radius = tempZoom;
|
|
27
|
+
let minRadius = 1500;
|
|
28
|
+
let maxRadius = 800000;
|
|
29
|
+
|
|
30
|
+
if (radius < minRadius) radius = minRadius;
|
|
31
|
+
else if (radius > maxRadius) radius = maxRadius;
|
|
32
|
+
|
|
33
|
+
return radius;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
if (!selectedPlaces || (!selectedPlaces.length > 0) || !center || currentZoom < 12) {
|
|
38
|
+
setPoiMarkers({ markers: [], icon: null });
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
const fetchPlaces = async () => {
|
|
42
|
+
let poiTypes = [];
|
|
43
|
+
const selectedPOICategories = selectedPlaces;
|
|
44
|
+
selectedPOICategories.forEach(pointOfInterest => {
|
|
45
|
+
poiTypes = poiTypes.concat(placeMappings[pointOfInterest]);
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
const radius = getRadiusForZoom();
|
|
49
|
+
const location = { latitude: currentCenter.lat, longitude: currentCenter.lng };
|
|
50
|
+
|
|
51
|
+
try {
|
|
52
|
+
const response = await searchNearbyPlaces(poiTypes, location, radius);
|
|
53
|
+
const newMarkers = response.places.map(place => {
|
|
54
|
+
const getParentCategory = types => {
|
|
55
|
+
const selectedTypes = selectedPOICategories.reduce((acc, category) => {
|
|
56
|
+
return acc.concat(placeMappings[category]);
|
|
57
|
+
}, []);
|
|
58
|
+
|
|
59
|
+
for (const type of types) {
|
|
60
|
+
if (!selectedTypes.includes(type)) continue;
|
|
61
|
+
for (const category in placeMappings) {
|
|
62
|
+
if (placeMappings[category].includes(type)) {
|
|
63
|
+
return category;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const icon = markerIconProps(markerColors.placeMarkers, getParentCategory(place.types));
|
|
71
|
+
|
|
72
|
+
return {
|
|
73
|
+
position: { lat: place.location.latitude, lng: place.location.longitude },
|
|
74
|
+
title: place.displayName.text,
|
|
75
|
+
icon: icon
|
|
76
|
+
};
|
|
77
|
+
});
|
|
78
|
+
setPoiMarkers({ markers: newMarkers, icon: null });
|
|
79
|
+
} catch (error) {
|
|
80
|
+
console.error('Failed to fetch places:', error);
|
|
81
|
+
}
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
fetchPlaces();
|
|
85
|
+
}, [selectedPlaces, currentZoom, currentCenter]);
|
|
86
|
+
|
|
87
|
+
return (
|
|
88
|
+
<PlacesContext.Provider value={{
|
|
89
|
+
poiMarkers,
|
|
90
|
+
setCurrentCenter,
|
|
91
|
+
currentCenter,
|
|
92
|
+
setCurrentZoom,
|
|
93
|
+
currentZoom,
|
|
94
|
+
placesWindow,
|
|
95
|
+
setPlacesWindow,
|
|
96
|
+
selectedPlaceMarker,
|
|
97
|
+
setSelectedPlaceMarker
|
|
98
|
+
}}>
|
|
99
|
+
{children}
|
|
100
|
+
</PlacesContext.Provider>
|
|
101
|
+
);
|
|
102
|
+
};
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
import { getListings } from '~/services/listingService';
|
|
2
|
-
import { getRecruiters } from '~/services/recruiterService';
|
|
3
|
-
import { getListingEntities } from '~/services/listingEntityService';
|
|
4
|
-
|
|
5
|
-
import { getDistinctItemsByProximity } from '~/util/mapUtil';
|
|
6
|
-
import { Listing } from '~/types/Listings';
|
|
7
|
-
import { Recruiter } from '~/types/Recruiter';
|
|
8
|
-
import { ListingEntity } from '~/types/ListingEntity';
|
|
9
|
-
import { MapConfig } from '~/types/config/MapConfig';
|
|
10
|
-
//import { ICommuteLocation } from '~/interfaces/ICommute';
|
|
11
|
-
|
|
12
|
-
interface SiteConfig {
|
|
13
|
-
companyId: number;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
interface FetchListingsResult {
|
|
17
|
-
listingsResult: Listing[];
|
|
18
|
-
fetchedRecruiters: Recruiter[];
|
|
19
|
-
fetchedEntities: Record<number, ListingEntity>;
|
|
20
|
-
distinctItems: any; // Update this type based on the return type of getDistinctItemsByProximity
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const fetchListings = async (
|
|
24
|
-
query: string,
|
|
25
|
-
siteConfig: MapConfig,
|
|
26
|
-
commuteLocation: any | null = null
|
|
27
|
-
): Promise<FetchListingsResult> => {
|
|
28
|
-
try {
|
|
29
|
-
const listingsResult = await getListings(
|
|
30
|
-
|
|
31
|
-
);
|
|
32
|
-
|
|
33
|
-
const recruiterIds: number[] = [
|
|
34
|
-
...new Set(listingsResult.map(listing => listing.recruiterId))
|
|
35
|
-
] as number[];
|
|
36
|
-
|
|
37
|
-
const fetchedRecruiters = await getRecruiters(recruiterIds);
|
|
38
|
-
|
|
39
|
-
const distinctEntityIds: number[] = [
|
|
40
|
-
...new Set(listingsResult.map(listing => listing.entityId))
|
|
41
|
-
] as number[];
|
|
42
|
-
|
|
43
|
-
const fetchedEntities = !commuteLocation
|
|
44
|
-
? await getListingEntities(distinctEntityIds)
|
|
45
|
-
: await getListingEntities(
|
|
46
|
-
distinctEntityIds,
|
|
47
|
-
`${commuteLocation.lat}, ${commuteLocation.lng}`
|
|
48
|
-
);
|
|
49
|
-
for (let i = 0; i < listingsResult.length; i++) {
|
|
50
|
-
const listing = listingsResult[i];
|
|
51
|
-
if (listing.entityId && listing.entityId !== -1 && listing.fields) {
|
|
52
|
-
const entity = fetchedEntities[listing.entityId];
|
|
53
|
-
if (entity) {
|
|
54
|
-
listing.fields.travelTime = entity.travelTime;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
const distinctItems = getDistinctItemsByProximity(
|
|
60
|
-
listingsResult,
|
|
61
|
-
fetchedEntities
|
|
62
|
-
);
|
|
63
|
-
|
|
64
|
-
return {
|
|
65
|
-
listingsResult,
|
|
66
|
-
fetchedRecruiters,
|
|
67
|
-
fetchedEntities,
|
|
68
|
-
distinctItems
|
|
69
|
-
};
|
|
70
|
-
} catch (error) {
|
|
71
|
-
console.error("Error fetching listings:", error);
|
|
72
|
-
throw error;
|
|
73
|
-
}
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
export default fetchListings;
|
|
1
|
+
import { getListings } from '~/services/listingService';
|
|
2
|
+
import { getRecruiters } from '~/services/recruiterService';
|
|
3
|
+
import { getListingEntities } from '~/services/listingEntityService';
|
|
4
|
+
|
|
5
|
+
import { getDistinctItemsByProximity } from '~/util/mapUtil';
|
|
6
|
+
import { Listing } from '~/types/Listings';
|
|
7
|
+
import { Recruiter } from '~/types/Recruiter';
|
|
8
|
+
import { ListingEntity } from '~/types/ListingEntity';
|
|
9
|
+
import { MapConfig } from '~/types/config/MapConfig';
|
|
10
|
+
//import { ICommuteLocation } from '~/interfaces/ICommute';
|
|
11
|
+
|
|
12
|
+
interface SiteConfig {
|
|
13
|
+
companyId: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface FetchListingsResult {
|
|
17
|
+
listingsResult: Listing[];
|
|
18
|
+
fetchedRecruiters: Recruiter[];
|
|
19
|
+
fetchedEntities: Record<number, ListingEntity>;
|
|
20
|
+
distinctItems: any; // Update this type based on the return type of getDistinctItemsByProximity
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const fetchListings = async (
|
|
24
|
+
query: string,
|
|
25
|
+
siteConfig: MapConfig,
|
|
26
|
+
commuteLocation: any | null = null
|
|
27
|
+
): Promise<FetchListingsResult> => {
|
|
28
|
+
try {
|
|
29
|
+
const listingsResult = await getListings(
|
|
30
|
+
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
const recruiterIds: number[] = [
|
|
34
|
+
...new Set(listingsResult.map(listing => listing.recruiterId))
|
|
35
|
+
] as number[];
|
|
36
|
+
|
|
37
|
+
const fetchedRecruiters = await getRecruiters(recruiterIds);
|
|
38
|
+
|
|
39
|
+
const distinctEntityIds: number[] = [
|
|
40
|
+
...new Set(listingsResult.map(listing => listing.entityId))
|
|
41
|
+
] as number[];
|
|
42
|
+
|
|
43
|
+
const fetchedEntities = !commuteLocation
|
|
44
|
+
? await getListingEntities(distinctEntityIds)
|
|
45
|
+
: await getListingEntities(
|
|
46
|
+
distinctEntityIds,
|
|
47
|
+
`${commuteLocation.lat}, ${commuteLocation.lng}`
|
|
48
|
+
);
|
|
49
|
+
for (let i = 0; i < listingsResult.length; i++) {
|
|
50
|
+
const listing = listingsResult[i];
|
|
51
|
+
if (listing.entityId && listing.entityId !== -1 && listing.fields) {
|
|
52
|
+
const entity = fetchedEntities[listing.entityId];
|
|
53
|
+
if (entity) {
|
|
54
|
+
listing.fields.travelTime = entity.travelTime;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const distinctItems = getDistinctItemsByProximity(
|
|
60
|
+
listingsResult,
|
|
61
|
+
fetchedEntities
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
return {
|
|
65
|
+
listingsResult,
|
|
66
|
+
fetchedRecruiters,
|
|
67
|
+
fetchedEntities,
|
|
68
|
+
distinctItems
|
|
69
|
+
};
|
|
70
|
+
} catch (error) {
|
|
71
|
+
console.error("Error fetching listings:", error);
|
|
72
|
+
throw error;
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export default fetchListings;
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
/* Custom prefixed styles */
|
|
2
|
+
@tailwind base;
|
|
3
|
+
@tailwind components;
|
|
4
|
+
@tailwind utilities;
|
|
5
|
+
.hc-bundle html {
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@media (min-width: 768px) {
|
|
10
|
+
.hc-bundle html {
|
|
11
|
+
font-size: 16px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.hc-bundle .btn:focus, .hc-bundle .btn:active:focus, .hc-bundle .btn-link.nav-link:focus, .hc-bundle .form-control:focus, .hc-bundle .form-check-input:focus {
|
|
16
|
+
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.hc-bundle html {
|
|
20
|
+
position: relative;
|
|
21
|
+
min-height: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.hc-bundle body {
|
|
25
|
+
margin-bottom: 60px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.hc-bundle *, .hc-bundle :after, .hc-bundle :before {
|
|
29
|
+
border: 0 solid #e5e7eb;
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.hc-bundle :after, .hc-bundle :before {
|
|
34
|
+
--tw-content: "";
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.hc-bundle :host, .hc-bundle html {
|
|
38
|
+
-webkit-text-size-adjust: 100%;
|
|
39
|
+
font-feature-settings: normal;
|
|
40
|
+
-webkit-tap-highlight-color: transparent;
|
|
41
|
+
font-family: var(--font-roboto-flex), ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
42
|
+
font-variation-settings: normal;
|
|
43
|
+
line-height: 1.5;
|
|
44
|
+
-moz-tab-size: 4;
|
|
45
|
+
-o-tab-size: 4;
|
|
46
|
+
tab-size: 4;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
.hc-bundle hr {
|
|
51
|
+
border-top-width: 1px;
|
|
52
|
+
color: inherit;
|
|
53
|
+
height: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.hc-bundle abbr:where([title]) {
|
|
57
|
+
-webkit-text-decoration: underline dotted;
|
|
58
|
+
text-decoration: underline dotted;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
.hc-bundle a {
|
|
63
|
+
color: inherit;
|
|
64
|
+
text-decoration: inherit;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.hc-bundle b, .hc-bundle strong {
|
|
68
|
+
font-weight: bolder;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.hc-bundle code, .hc-bundle kbd, .hc-bundle pre, .hc-bundle samp {
|
|
72
|
+
font-feature-settings: normal;
|
|
73
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
74
|
+
font-size: 1em;
|
|
75
|
+
font-variation-settings: normal;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.hc-bundle small {
|
|
79
|
+
font-size: 80%;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.hc-bundle sub, .hc-bundle sup {
|
|
83
|
+
font-size: 75%;
|
|
84
|
+
line-height: 0;
|
|
85
|
+
position: relative;
|
|
86
|
+
vertical-align: baseline;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.hc-bundle sub {
|
|
90
|
+
bottom: -.25em;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.hc-bundle sup {
|
|
94
|
+
top: -.5em;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.hc-bundle table {
|
|
98
|
+
border-collapse: collapse;
|
|
99
|
+
border-color: inherit;
|
|
100
|
+
text-indent: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.hc-bundle button, .hc-bundle input, .hc-bundle optgroup, .hc-bundle select, .hc-bundle textarea {
|
|
104
|
+
font-feature-settings: inherit;
|
|
105
|
+
color: inherit;
|
|
106
|
+
font-family: inherit;
|
|
107
|
+
font-size: 100%;
|
|
108
|
+
font-variation-settings: inherit;
|
|
109
|
+
font-weight: inherit;
|
|
110
|
+
letter-spacing: inherit;
|
|
111
|
+
line-height: inherit;
|
|
112
|
+
margin: 0;
|
|
113
|
+
padding: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.hc-bundle button, .hc-bundle select {
|
|
117
|
+
text-transform: none;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.hc-bundle button, .hc-bundle input:where([type=button]), .hc-bundle input:where([type=reset]), .hc-bundle input:where([type=submit]) {
|
|
121
|
+
-webkit-appearance: button;
|
|
122
|
+
background-color: transparent;
|
|
123
|
+
background-image: none;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.hc-bundle :-moz-focusring {
|
|
127
|
+
outline: auto;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.hc-bundle :-moz-ui-invalid {
|
|
131
|
+
box-shadow: none;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.hc-bundle progress {
|
|
135
|
+
vertical-align: baseline;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.hc-bundle ::-webkit-inner-spin-button, .hc-bundle ::-webkit-outer-spin-button {
|
|
139
|
+
height: auto;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.hc-bundle [type=search] {
|
|
143
|
+
-webkit-appearance: textfield;
|
|
144
|
+
outline-offset: -2px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.hc-bundle ::-webkit-search-decoration {
|
|
148
|
+
-webkit-appearance: none;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.hc-bundle ::-webkit-file-upload-button {
|
|
152
|
+
-webkit-appearance: button;
|
|
153
|
+
font: inherit;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.hc-bundle summary {
|
|
157
|
+
display: list-item;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.hc-bundle textarea {
|
|
161
|
+
resize: vertical;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.hc-bundle input::-moz-placeholder, .hc-bundle textarea::-moz-placeholder {
|
|
165
|
+
color: #9ca3af;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.hc-bundle input::placeholder, .hc-bundle textarea::placeholder {
|
|
169
|
+
color: #9ca3af;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.hc-bundle [role=button], .hc-bundle button {
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.hc-bundle :disabled {
|
|
177
|
+
cursor: default;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.hc-bundle audio, .hc-bundle canvas, .hc-bundle embed, .hc-bundle iframe, .hc-bundle img, .hc-bundle object, .hc-bundle svg, .hc-bundle video {
|
|
181
|
+
display: block;
|
|
182
|
+
vertical-align: middle;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.hc-bundle img, .hc-bundle video {
|
|
186
|
+
height: auto;
|
|
187
|
+
max-width: 100%;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.hc-bundle [hidden] {
|
|
191
|
+
display: none;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.hc-bundle [multiple], .hc-bundle [type=date], .hc-bundle [type=datetime-local], .hc-bundle [type=email], .hc-bundle [type=month], .hc-bundle [type=number], .hc-bundle [type=password], .hc-bundle [type=search], .hc-bundle [type=tel], .hc-bundle [type=text], .hc-bundle [type=time], .hc-bundle [type=url], .hc-bundle [type=week], .hc-bundle input:where(:not([type])), .hc-bundle select, .hc-bundle textarea {
|
|
195
|
+
--tw-shadow: 0 0 #0000;
|
|
196
|
+
-webkit-appearance: none;
|
|
197
|
+
-moz-appearance: none;
|
|
198
|
+
appearance: none;
|
|
199
|
+
background-color: #fff;
|
|
200
|
+
border-color: #6b7280;
|
|
201
|
+
border-radius: 0;
|
|
202
|
+
border-width: 1px;
|
|
203
|
+
font-size: 1rem;
|
|
204
|
+
line-height: 1.5rem;
|
|
205
|
+
padding: .5rem .75rem;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.hc-bundle [multiple]:focus, .hc-bundle [type=date]:focus, .hc-bundle [type=datetime-local]:focus, .hc-bundle [type=email]:focus, .hc-bundle [type=month]:focus, .hc-bundle [type=number]:focus, .hc-bundle [type=password]:focus, .hc-bundle [type=search]:focus, .hc-bundle [type=tel]:focus, .hc-bundle [type=text]:focus, .hc-bundle [type=time]:focus, .hc-bundle [type=url]:focus, .hc-bundle [type=week]:focus, .hc-bundle input:where(:not([type])):focus, .hc-bundle select:focus, .hc-bundle textarea:focus {
|
|
209
|
+
--tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
|
|
210
|
+
--tw-ring-offset-width: 0px;
|
|
211
|
+
--tw-ring-offset-color: #fff;
|
|
212
|
+
--tw-ring-color: #2563eb;
|
|
213
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
214
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
215
|
+
border-color: #2563eb;
|
|
216
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
217
|
+
outline: 2px solid transparent;
|
|
218
|
+
outline-offset: 2px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.hc-bundle input::-moz-placeholder, .hc-bundle textarea::-moz-placeholder {
|
|
222
|
+
color: #6b7280;
|
|
223
|
+
opacity: 1;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.hc-bundle input::placeholder, .hc-bundle textarea::placeholder {
|
|
227
|
+
color: #6b7280;
|
|
228
|
+
opacity: 1;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.hc-bundle ::-webkit-datetime-edit-fields-wrapper {
|
|
232
|
+
padding: 0;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.hc-bundle ::-webkit-date-and-time-value {
|
|
236
|
+
min-height: 1.5em;
|
|
237
|
+
text-align: inherit;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.hc-bundle ::-webkit-datetime-edit {
|
|
241
|
+
display: inline-flex;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.hc-bundle ::-webkit-datetime-edit, .hc-bundle ::-webkit-datetime-edit-day-field, .hc-bundle ::-webkit-datetime-edit-hour-field, .hc-bundle ::-webkit-datetime-edit-meridiem-field, .hc-bundle ::-webkit-datetime-edit-millisecond-field, .hc-bundle ::-webkit-datetime-edit-minute-field, .hc-bundle ::-webkit-datetime-edit-month-field, .hc-bundle ::-webkit-datetime-edit-second-field, .hc-bundle ::-webkit-datetime-edit-year-field {
|
|
245
|
+
padding-bottom: 0;
|
|
246
|
+
padding-top: 0;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.hc-bundle select {
|
|
250
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
|
|
251
|
+
background-position: right .5rem center;
|
|
252
|
+
background-repeat: no-repeat;
|
|
253
|
+
background-size: 1.5em 1.5em;
|
|
254
|
+
padding-right: 2.5rem;
|
|
255
|
+
-webkit-print-color-adjust: exact;
|
|
256
|
+
print-color-adjust: exact;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.hc-bundle [multiple], .hc-bundle [size]:where(select:not([size="1"])) {
|
|
260
|
+
background-image: none;
|
|
261
|
+
background-position: 0 0;
|
|
262
|
+
background-repeat: unset;
|
|
263
|
+
background-size: auto auto;
|
|
264
|
+
background-size: initial;
|
|
265
|
+
padding-right: .75rem;
|
|
266
|
+
-webkit-print-color-adjust: unset;
|
|
267
|
+
print-color-adjust: unset;
|
|
268
|
+
}
|
package/src/styles/index.css
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
@tailwind
|
|
2
|
-
@tailwind
|
|
3
|
-
@tailwind
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
@config "../../tailwind.config.js";
|
|
2
|
+
@tailwind base;
|
|
3
|
+
@tailwind components;
|
|
4
|
+
@tailwind utilities;
|
|
5
|
+
|
|
6
|
+
@layer base {
|
|
7
|
+
html {
|
|
8
|
+
@apply hc-text-400 hc-text-uiText [scroll-behavior:smooth];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@layer components {
|
|
13
|
+
.track * {
|
|
14
|
+
@apply hc-pointer-events-none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.stretched-link::after {
|
|
18
|
+
@apply hc-content-[''] hc-absolute hc-inset-0 hc-z-[1] hc-pointer-events-auto hc-bg-transparent;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fit-content{
|
|
23
|
+
height:fit-content;
|
|
24
|
+
}
|