@infonomic/uikit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/components/@types/shared.d.ts +9 -0
- package/dist/components/@types/shared.d.ts.map +1 -0
- package/dist/components/@types/shared.js +30 -0
- package/dist/components/accordion/accordion.d.ts +32 -0
- package/dist/components/accordion/accordion.d.ts.map +1 -0
- package/dist/components/accordion/accordion.js +51 -0
- package/dist/components/accordion/accordion.module.js +11 -0
- package/dist/components/accordion/accordion_module.css +60 -0
- package/dist/components/animation/fade-in-lift.d.ts +12 -0
- package/dist/components/animation/fade-in-lift.d.ts.map +1 -0
- package/dist/components/animation/fade-in-lift.js +27 -0
- package/dist/components/avatar/avatar.d.ts +3 -0
- package/dist/components/avatar/avatar.d.ts.map +1 -0
- package/dist/components/avatar/avatar.js +24 -0
- package/dist/components/avatar/avatar.module.js +12 -0
- package/dist/components/avatar/avatar_module.css +44 -0
- package/dist/components/button/@types/button.d.ts +12 -0
- package/dist/components/button/@types/button.d.ts.map +1 -0
- package/dist/components/button/@types/button.js +7 -0
- package/dist/components/button/button-group.d.ts +37 -0
- package/dist/components/button/button-group.d.ts.map +1 -0
- package/dist/components/button/button-group.js +81 -0
- package/dist/components/button/button-group.module.js +6 -0
- package/dist/components/button/button-group_module.css +17 -0
- package/dist/components/button/button.d.ts +23 -0
- package/dist/components/button/button.d.ts.map +1 -0
- package/dist/components/button/button.js +28 -0
- package/dist/components/button/button.module.js +24 -0
- package/dist/components/button/button_module.css +503 -0
- package/dist/components/button/control-buttons.d.ts +17 -0
- package/dist/components/button/control-buttons.d.ts.map +1 -0
- package/dist/components/button/control-buttons.js +88 -0
- package/dist/components/button/control-buttons.module.js +20 -0
- package/dist/components/button/control-buttons_module.css +118 -0
- package/dist/components/button/copy-button.d.ts +12 -0
- package/dist/components/button/copy-button.d.ts.map +1 -0
- package/dist/components/button/copy-button.js +57 -0
- package/dist/components/button/copy-button.module.js +13 -0
- package/dist/components/button/copy-button_module.css +30 -0
- package/dist/components/button/icon-button.d.ts +9 -0
- package/dist/components/button/icon-button.d.ts.map +1 -0
- package/dist/components/button/icon-button.js +18 -0
- package/dist/components/button/index.d.ts +6 -0
- package/dist/components/button/index.d.ts.map +1 -0
- package/dist/components/button/index.js +5 -0
- package/dist/components/calendar/calendar.d.ts +31 -0
- package/dist/components/calendar/calendar.d.ts.map +1 -0
- package/dist/components/calendar/calendar.js +122 -0
- package/dist/components/calendar/calendar.module.js +45 -0
- package/dist/components/calendar/calendar_module.css +256 -0
- package/dist/components/card/card.d.ts +44 -0
- package/dist/components/card/card.d.ts.map +1 -0
- package/dist/components/card/card.js +52 -0
- package/dist/components/card/card.module.js +11 -0
- package/dist/components/card/card_module.css +66 -0
- package/dist/components/container/container.d.ts +9 -0
- package/dist/components/container/container.d.ts.map +1 -0
- package/dist/components/container/container.js +12 -0
- package/dist/components/container/container.module.js +5 -0
- package/dist/components/container/container_module.css +29 -0
- package/dist/components/dropdown/dropdown.d.ts +60 -0
- package/dist/components/dropdown/dropdown.d.ts.map +1 -0
- package/dist/components/dropdown/dropdown.js +92 -0
- package/dist/components/dropdown/dropdown.module.js +16 -0
- package/dist/components/dropdown/dropdown_module.css +117 -0
- package/dist/components/hamburger/hamburger.d.ts +11 -0
- package/dist/components/hamburger/hamburger.d.ts.map +1 -0
- package/dist/components/hamburger/hamburger.js +49 -0
- package/dist/components/input/@types/checkbox.d.ts +13 -0
- package/dist/components/input/@types/checkbox.d.ts.map +1 -0
- package/dist/components/input/@types/checkbox.js +10 -0
- package/dist/components/input/@types/input.d.ts +13 -0
- package/dist/components/input/@types/input.d.ts.map +1 -0
- package/dist/components/input/@types/input.js +11 -0
- package/dist/components/input/checkbox-group.d.ts +14 -0
- package/dist/components/input/checkbox-group.d.ts.map +1 -0
- package/dist/components/input/checkbox-group.js +42 -0
- package/dist/components/input/checkbox.d.ts +23 -0
- package/dist/components/input/checkbox.d.ts.map +1 -0
- package/dist/components/input/checkbox.js +47 -0
- package/dist/components/input/checkbox.module.js +25 -0
- package/dist/components/input/checkbox_module.css +248 -0
- package/dist/components/input/error-text.d.ts +9 -0
- package/dist/components/input/error-text.d.ts.map +1 -0
- package/dist/components/input/error-text.js +11 -0
- package/dist/components/input/error-text.module.js +5 -0
- package/dist/components/input/error-text_module.css +13 -0
- package/dist/components/input/errors.d.ts +14 -0
- package/dist/components/input/errors.d.ts.map +1 -0
- package/dist/components/input/errors.js +31 -0
- package/dist/components/input/help-text.d.ts +8 -0
- package/dist/components/input/help-text.d.ts.map +1 -0
- package/dist/components/input/help-text.js +10 -0
- package/dist/components/input/help-text.module.js +5 -0
- package/dist/components/input/help-text_module.css +13 -0
- package/dist/components/input/index.d.ts +9 -0
- package/dist/components/input/index.d.ts.map +1 -0
- package/dist/components/input/index.js +8 -0
- package/dist/components/input/input-adornment.d.ts +11 -0
- package/dist/components/input/input-adornment.d.ts.map +1 -0
- package/dist/components/input/input-adornment.js +15 -0
- package/dist/components/input/input-adornment.module.js +7 -0
- package/dist/components/input/input-adornment_module.css +19 -0
- package/dist/components/input/input.d.ts +25 -0
- package/dist/components/input/input.d.ts.map +1 -0
- package/dist/components/input/input.js +60 -0
- package/dist/components/input/input.module.js +27 -0
- package/dist/components/input/input_module.css +283 -0
- package/dist/components/input/label.d.ts +11 -0
- package/dist/components/input/label.d.ts.map +1 -0
- package/dist/components/input/label.js +18 -0
- package/dist/components/input/label.module.js +6 -0
- package/dist/components/input/label_module.css +22 -0
- package/dist/components/input/radio-group.d.ts +23 -0
- package/dist/components/input/radio-group.d.ts.map +1 -0
- package/dist/components/input/radio-group.js +32 -0
- package/dist/components/input/radio-group.module.js +20 -0
- package/dist/components/input/radio-group_module.css +186 -0
- package/dist/components/input/select.d.ts +33 -0
- package/dist/components/input/select.d.ts.map +1 -0
- package/dist/components/input/select.js +84 -0
- package/dist/components/input/select.module.js +13 -0
- package/dist/components/input/select_module.css +77 -0
- package/dist/components/input/text-area.d.ts +20 -0
- package/dist/components/input/text-area.d.ts.map +1 -0
- package/dist/components/input/text-area.js +45 -0
- package/dist/components/input/text-area.module.js +6 -0
- package/dist/components/input/text-area_module.css +10 -0
- package/dist/components/input/utils.d.ts +3 -0
- package/dist/components/input/utils.d.ts.map +1 -0
- package/dist/components/input/utils.js +11 -0
- package/dist/components/notifications/@types/alert.d.ts +6 -0
- package/dist/components/notifications/@types/alert.d.ts.map +1 -0
- package/dist/components/notifications/@types/alert.js +0 -0
- package/dist/components/notifications/@types/toast.d.ts +9 -0
- package/dist/components/notifications/@types/toast.d.ts.map +1 -0
- package/dist/components/notifications/@types/toast.js +0 -0
- package/dist/components/notifications/alert.d.ts +14 -0
- package/dist/components/notifications/alert.d.ts.map +1 -0
- package/dist/components/notifications/alert.js +103 -0
- package/dist/components/notifications/alert.module.js +20 -0
- package/dist/components/notifications/alert_module.css +114 -0
- package/dist/components/notifications/index.js +2 -0
- package/dist/components/notifications/toast.d.ts +21 -0
- package/dist/components/notifications/toast.d.ts.map +1 -0
- package/dist/components/notifications/toast.js +82 -0
- package/dist/components/notifications/toast.module.js +24 -0
- package/dist/components/notifications/toast_module.css +207 -0
- package/dist/components/overlay/index.d.ts +2 -0
- package/dist/components/overlay/index.d.ts.map +1 -0
- package/dist/components/overlay/index.js +1 -0
- package/dist/components/overlay/overlay.d.ts +9 -0
- package/dist/components/overlay/overlay.d.ts.map +1 -0
- package/dist/components/overlay/overlay.js +47 -0
- package/dist/components/overlay/overlay.module.js +13 -0
- package/dist/components/overlay/overlay_module.css +42 -0
- package/dist/components/pager/@types/index.d.ts +3 -0
- package/dist/components/pager/@types/index.d.ts.map +1 -0
- package/dist/components/pager/@types/index.js +6 -0
- package/dist/components/pager/ellipses.d.ts +3 -0
- package/dist/components/pager/ellipses.d.ts.map +1 -0
- package/dist/components/pager/ellipses.js +16 -0
- package/dist/components/pager/event-pager.js +15 -0
- package/dist/components/pager/first-button.d.ts +9 -0
- package/dist/components/pager/first-button.d.ts.map +1 -0
- package/dist/components/pager/first-button.js +31 -0
- package/dist/components/pager/hooks/types/usePagination.d.ts +75 -0
- package/dist/components/pager/hooks/types/usePagination.d.ts.map +1 -0
- package/dist/components/pager/hooks/types/usePagination.js +0 -0
- package/dist/components/pager/hooks/usePagination.d.ts +3 -0
- package/dist/components/pager/hooks/usePagination.d.ts.map +1 -0
- package/dist/components/pager/hooks/usePagination.js +80 -0
- package/dist/components/pager/icons/first.js +36 -0
- package/dist/components/pager/icons/index.js +4 -0
- package/dist/components/pager/icons/last.js +36 -0
- package/dist/components/pager/icons/next.js +24 -0
- package/dist/components/pager/icons/previous.js +24 -0
- package/dist/components/pager/index.js +4 -0
- package/dist/components/pager/last-button.d.ts +12 -0
- package/dist/components/pager/last-button.d.ts.map +1 -0
- package/dist/components/pager/last-button.js +31 -0
- package/dist/components/pager/next-button.d.ts +12 -0
- package/dist/components/pager/next-button.d.ts.map +1 -0
- package/dist/components/pager/next-button.js +35 -0
- package/dist/components/pager/number-button.d.ts +14 -0
- package/dist/components/pager/number-button.d.ts.map +1 -0
- package/dist/components/pager/number-button.js +42 -0
- package/dist/components/pager/pagination.d.ts +104 -0
- package/dist/components/pager/pagination.d.ts.map +1 -0
- package/dist/components/pager/pagination.js +134 -0
- package/dist/components/pager/pagination.module.js +29 -0
- package/dist/components/pager/pagination_module.css +98 -0
- package/dist/components/pager/previous-button.d.ts +9 -0
- package/dist/components/pager/previous-button.d.ts.map +1 -0
- package/dist/components/pager/previous-button.js +33 -0
- package/dist/components/scroll-area/scroll-area.d.ts +7 -0
- package/dist/components/scroll-area/scroll-area.d.ts.map +1 -0
- package/dist/components/scroll-area/scroll-area.js +32 -0
- package/dist/components/scroll-area/scroll-area.module.js +9 -0
- package/dist/components/scroll-area/scroll-area_module.css +79 -0
- package/dist/components/scroll-to-top/scroll-to-top.d.ts +10 -0
- package/dist/components/scroll-to-top/scroll-to-top.d.ts.map +1 -0
- package/dist/components/scroll-to-top/scroll-to-top.js +43 -0
- package/dist/components/section/section.d.ts +9 -0
- package/dist/components/section/section.d.ts.map +1 -0
- package/dist/components/section/section.js +12 -0
- package/dist/components/section/section.module.js +5 -0
- package/dist/components/section/section_module.css +8 -0
- package/dist/components/shimmer/shimmer.d.ts +13 -0
- package/dist/components/shimmer/shimmer.d.ts.map +1 -0
- package/dist/components/shimmer/shimmer.js +42 -0
- package/dist/components/shimmer/shimmer.module.js +9 -0
- package/dist/components/shimmer/shimmer_module.css +47 -0
- package/dist/components/table/table.d.ts +37 -0
- package/dist/components/table/table.d.ts.map +1 -0
- package/dist/components/table/table.js +85 -0
- package/dist/components/table/table.module.js +19 -0
- package/dist/components/table/table_module.css +82 -0
- package/dist/components/tabs/tabs.d.ts +28 -0
- package/dist/components/tabs/tabs.d.ts.map +1 -0
- package/dist/components/tabs/tabs.js +34 -0
- package/dist/components/tabs/tabs.module.js +12 -0
- package/dist/components/tabs/tabs_module.css +57 -0
- package/dist/components/timeline/timeline.d.ts +60 -0
- package/dist/components/timeline/timeline.d.ts.map +1 -0
- package/dist/components/timeline/timeline.js +74 -0
- package/dist/components/timeline/timeline.module.js +17 -0
- package/dist/components/timeline/timeline_module.css +77 -0
- package/dist/components/tooltip/tooltip.d.ts +16 -0
- package/dist/components/tooltip/tooltip.d.ts.map +1 -0
- package/dist/components/tooltip/tooltip.js +33 -0
- package/dist/components/tooltip/tooltip.module.js +7 -0
- package/dist/components/tooltip/tooltip_module.css +51 -0
- package/dist/hooks/use-media-query.d.ts +2 -0
- package/dist/hooks/use-media-query.d.ts.map +1 -0
- package/dist/hooks/use-media-query.js +20 -0
- package/dist/icons/activity-icon.d.ts +7 -0
- package/dist/icons/activity-icon.d.ts.map +1 -0
- package/dist/icons/activity-icon.js +45 -0
- package/dist/icons/calendar-icon.d.ts +7 -0
- package/dist/icons/calendar-icon.d.ts.map +1 -0
- package/dist/icons/calendar-icon.js +26 -0
- package/dist/icons/check-icon.d.ts +7 -0
- package/dist/icons/check-icon.d.ts.map +1 -0
- package/dist/icons/check-icon.js +25 -0
- package/dist/icons/chevron-down-icon.d.ts +7 -0
- package/dist/icons/chevron-down-icon.d.ts.map +1 -0
- package/dist/icons/chevron-down-icon.js +27 -0
- package/dist/icons/chevron-left-double-icon.d.ts +27 -0
- package/dist/icons/chevron-left-double-icon.d.ts.map +1 -0
- package/dist/icons/chevron-left-double-icon.js +28 -0
- package/dist/icons/chevron-left-icon.d.ts +27 -0
- package/dist/icons/chevron-left-icon.d.ts.map +1 -0
- package/dist/icons/chevron-left-icon.js +28 -0
- package/dist/icons/chevron-right-double-icon.d.ts +27 -0
- package/dist/icons/chevron-right-double-icon.d.ts.map +1 -0
- package/dist/icons/chevron-right-double-icon.js +28 -0
- package/dist/icons/chevron-right-icon.d.ts +27 -0
- package/dist/icons/chevron-right-icon.d.ts.map +1 -0
- package/dist/icons/chevron-right-icon.js +28 -0
- package/dist/icons/chevrons-up-down.d.ts +7 -0
- package/dist/icons/chevrons-up-down.d.ts.map +1 -0
- package/dist/icons/chevrons-up-down.js +34 -0
- package/dist/icons/close-icon.d.ts +7 -0
- package/dist/icons/close-icon.d.ts.map +1 -0
- package/dist/icons/close-icon.js +25 -0
- package/dist/icons/copy-icon.d.ts +7 -0
- package/dist/icons/copy-icon.d.ts.map +1 -0
- package/dist/icons/copy-icon.js +26 -0
- package/dist/icons/danger-icon.d.ts +4 -0
- package/dist/icons/danger-icon.d.ts.map +1 -0
- package/dist/icons/danger-icon.js +24 -0
- package/dist/icons/dashboard-icon.d.ts +7 -0
- package/dist/icons/dashboard-icon.d.ts.map +1 -0
- package/dist/icons/dashboard-icon.js +43 -0
- package/dist/icons/delete-icon.d.ts +7 -0
- package/dist/icons/delete-icon.d.ts.map +1 -0
- package/dist/icons/delete-icon.js +42 -0
- package/dist/icons/document-icon.d.ts +7 -0
- package/dist/icons/document-icon.d.ts.map +1 -0
- package/dist/icons/document-icon.js +36 -0
- package/dist/icons/download-icon.d.ts +7 -0
- package/dist/icons/download-icon.d.ts.map +1 -0
- package/dist/icons/download-icon.js +27 -0
- package/dist/icons/edit-icon.d.ts +7 -0
- package/dist/icons/edit-icon.d.ts.map +1 -0
- package/dist/icons/edit-icon.js +39 -0
- package/dist/icons/ellipsis-icon.d.ts +7 -0
- package/dist/icons/ellipsis-icon.d.ts.map +1 -0
- package/dist/icons/ellipsis-icon.js +40 -0
- package/dist/icons/email-icon.d.ts +7 -0
- package/dist/icons/email-icon.d.ts.map +1 -0
- package/dist/icons/email-icon.js +31 -0
- package/dist/icons/external-link-icon.d.ts +7 -0
- package/dist/icons/external-link-icon.d.ts.map +1 -0
- package/dist/icons/external-link-icon.js +27 -0
- package/dist/icons/github-icon.d.ts +7 -0
- package/dist/icons/github-icon.d.ts.map +1 -0
- package/dist/icons/github-icon.js +24 -0
- package/dist/icons/globe-icon.d.ts +7 -0
- package/dist/icons/globe-icon.d.ts.map +1 -0
- package/dist/icons/globe-icon.js +44 -0
- package/dist/icons/google-icon.d.ts +7 -0
- package/dist/icons/google-icon.d.ts.map +1 -0
- package/dist/icons/google-icon.js +42 -0
- package/dist/icons/gripper-vertical-icon.d.ts +7 -0
- package/dist/icons/gripper-vertical-icon.d.ts.map +1 -0
- package/dist/icons/gripper-vertical-icon.js +49 -0
- package/dist/icons/home-icon.d.ts +7 -0
- package/dist/icons/home-icon.d.ts.map +1 -0
- package/dist/icons/home-icon.js +37 -0
- package/dist/icons/icon-element.d.ts +11 -0
- package/dist/icons/icon-element.d.ts.map +1 -0
- package/dist/icons/icon-element.js +19 -0
- package/dist/icons/icon-sprite.js +10 -0
- package/dist/icons/icons.module.js +44 -0
- package/dist/icons/icons_module.css +148 -0
- package/dist/icons/index.d.ts +40 -0
- package/dist/icons/index.d.ts.map +1 -0
- package/dist/icons/index.js +39 -0
- package/dist/icons/info-icon.d.ts +4 -0
- package/dist/icons/info-icon.d.ts.map +1 -0
- package/dist/icons/info-icon.js +24 -0
- package/dist/icons/infonomic-icon.d.ts +7 -0
- package/dist/icons/infonomic-icon.d.ts.map +1 -0
- package/dist/icons/infonomic-icon.js +211 -0
- package/dist/icons/light-icon.d.ts +7 -0
- package/dist/icons/light-icon.d.ts.map +1 -0
- package/dist/icons/light-icon.js +23 -0
- package/dist/icons/location-pin-icon.d.ts +7 -0
- package/dist/icons/location-pin-icon.d.ts.map +1 -0
- package/dist/icons/location-pin-icon.js +31 -0
- package/dist/icons/moon-icon.d.ts +7 -0
- package/dist/icons/moon-icon.d.ts.map +1 -0
- package/dist/icons/moon-icon.js +26 -0
- package/dist/icons/plus-icon.d.ts +7 -0
- package/dist/icons/plus-icon.d.ts.map +1 -0
- package/dist/icons/plus-icon.js +32 -0
- package/dist/icons/primary-icon.d.ts +4 -0
- package/dist/icons/primary-icon.d.ts.map +1 -0
- package/dist/icons/primary-icon.js +21 -0
- package/dist/icons/refresh-icon.d.ts +7 -0
- package/dist/icons/refresh-icon.d.ts.map +1 -0
- package/dist/icons/refresh-icon.js +31 -0
- package/dist/icons/return-icon.d.ts +7 -0
- package/dist/icons/return-icon.d.ts.map +1 -0
- package/dist/icons/return-icon.js +35 -0
- package/dist/icons/roles-icon.d.ts +7 -0
- package/dist/icons/roles-icon.d.ts.map +1 -0
- package/dist/icons/roles-icon.js +34 -0
- package/dist/icons/search-icon.d.ts +7 -0
- package/dist/icons/search-icon.d.ts.map +1 -0
- package/dist/icons/search-icon.js +23 -0
- package/dist/icons/search-menu-icon.d.ts +7 -0
- package/dist/icons/search-menu-icon.d.ts.map +1 -0
- package/dist/icons/search-menu-icon.js +42 -0
- package/dist/icons/settings-gear-icon.d.ts +7 -0
- package/dist/icons/settings-gear-icon.d.ts.map +1 -0
- package/dist/icons/settings-gear-icon.js +34 -0
- package/dist/icons/settings-sliders-icon.d.ts +7 -0
- package/dist/icons/settings-sliders-icon.d.ts.map +1 -0
- package/dist/icons/settings-sliders-icon.js +55 -0
- package/dist/icons/sign-out-icon.d.ts +7 -0
- package/dist/icons/sign-out-icon.d.ts.map +1 -0
- package/dist/icons/sign-out-icon.js +39 -0
- package/dist/icons/stopwatch-icon.d.ts +7 -0
- package/dist/icons/stopwatch-icon.d.ts.map +1 -0
- package/dist/icons/stopwatch-icon.js +26 -0
- package/dist/icons/success-icon.d.ts +4 -0
- package/dist/icons/success-icon.d.ts.map +1 -0
- package/dist/icons/success-icon.js +24 -0
- package/dist/icons/types/icon.d.ts +10 -0
- package/dist/icons/types/icon.d.ts.map +1 -0
- package/dist/icons/types/icon.js +0 -0
- package/dist/icons/user-icon.d.ts +7 -0
- package/dist/icons/user-icon.d.ts.map +1 -0
- package/dist/icons/user-icon.js +31 -0
- package/dist/icons/users-icon.d.ts +7 -0
- package/dist/icons/users-icon.d.ts.map +1 -0
- package/dist/icons/users-icon.js +37 -0
- package/dist/icons/wallet-icon.d.ts +7 -0
- package/dist/icons/wallet-icon.d.ts.map +1 -0
- package/dist/icons/wallet-icon.js +23 -0
- package/dist/icons/warning-icon.d.ts +4 -0
- package/dist/icons/warning-icon.d.ts.map +1 -0
- package/dist/icons/warning-icon.js +24 -0
- package/dist/icons/x-icon.d.ts +7 -0
- package/dist/icons/x-icon.d.ts.map +1 -0
- package/dist/icons/x-icon.js +25 -0
- package/dist/loaders/ellipses.d.ts +4 -0
- package/dist/loaders/ellipses.d.ts.map +1 -0
- package/dist/loaders/ellipses.js +23 -0
- package/dist/loaders/ring.d.ts +4 -0
- package/dist/loaders/ring.d.ts.map +1 -0
- package/dist/loaders/ring.js +25 -0
- package/dist/loaders/spinner.d.ts +6 -0
- package/dist/loaders/spinner.d.ts.map +1 -0
- package/dist/loaders/spinner.js +22 -0
- package/dist/loaders/types/index.d.ts +7 -0
- package/dist/loaders/types/index.d.ts.map +1 -0
- package/dist/loaders/types/index.js +0 -0
- package/dist/react.d.ts +97 -0
- package/dist/react.d.ts.map +1 -0
- package/dist/react.js +92 -0
- package/dist/styles/styles.css +1 -0
- package/dist/styles/typography.css +1 -0
- package/dist/theme/theme-provider/index.js +1 -0
- package/dist/theme/theme-provider/provider.js +25 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/utils/capitalize.js +5 -0
- package/dist/utils/externalLinkProps.js +6 -0
- package/dist/utils/findMatch.js +6 -0
- package/dist/utils/getPortalRoot.d.ts +2 -0
- package/dist/utils/getPortalRoot.d.ts.map +1 -0
- package/dist/utils/getPortalRoot.js +4 -0
- package/dist/utils/isTouchDevice.js +3 -0
- package/dist/utils/objectsToArray.js +15 -0
- package/dist/utils/objectsToString.js +5 -0
- package/dist/utils/polymorphic.js +0 -0
- package/dist/utils/to-kebab-case.js +5 -0
- package/dist/widgets/datepicker/datepicker.js +245 -0
- package/dist/widgets/datepicker/datepicker.module.js +33 -0
- package/dist/widgets/datepicker/datepicker_module.css +187 -0
- package/dist/widgets/drawer/drawer-container.d.ts +10 -0
- package/dist/widgets/drawer/drawer-container.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-container.js +14 -0
- package/dist/widgets/drawer/drawer-content.d.ts +10 -0
- package/dist/widgets/drawer/drawer-content.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-content.js +13 -0
- package/dist/widgets/drawer/drawer-context.d.ts +14 -0
- package/dist/widgets/drawer/drawer-context.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-context.js +34 -0
- package/dist/widgets/drawer/drawer-header.d.ts +10 -0
- package/dist/widgets/drawer/drawer-header.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-header.js +17 -0
- package/dist/widgets/drawer/drawer-top-actions.d.ts +10 -0
- package/dist/widgets/drawer/drawer-top-actions.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-top-actions.js +17 -0
- package/dist/widgets/drawer/drawer-wrapper.d.ts +9 -0
- package/dist/widgets/drawer/drawer-wrapper.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer-wrapper.js +37 -0
- package/dist/widgets/drawer/drawer.d.ts +27 -0
- package/dist/widgets/drawer/drawer.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer.js +74 -0
- package/dist/widgets/drawer/drawer.module.js +29 -0
- package/dist/widgets/drawer/drawer_module.css +109 -0
- package/dist/widgets/drawer/motionDomAnimation.d.ts +3 -0
- package/dist/widgets/drawer/motionDomAnimation.d.ts.map +1 -0
- package/dist/widgets/drawer/motionDomAnimation.js +4 -0
- package/dist/widgets/drawer/motionDomMax.d.ts +3 -0
- package/dist/widgets/drawer/motionDomMax.d.ts.map +1 -0
- package/dist/widgets/drawer/motionDomMax.js +4 -0
- package/dist/widgets/modal/modal-actions.d.ts +10 -0
- package/dist/widgets/modal/modal-actions.d.ts.map +1 -0
- package/dist/widgets/modal/modal-actions.js +13 -0
- package/dist/widgets/modal/modal-container.d.ts +10 -0
- package/dist/widgets/modal/modal-container.d.ts.map +1 -0
- package/dist/widgets/modal/modal-container.js +13 -0
- package/dist/widgets/modal/modal-content.d.ts +10 -0
- package/dist/widgets/modal/modal-content.d.ts.map +1 -0
- package/dist/widgets/modal/modal-content.js +13 -0
- package/dist/widgets/modal/modal-header.d.ts +10 -0
- package/dist/widgets/modal/modal-header.d.ts.map +1 -0
- package/dist/widgets/modal/modal-header.js +17 -0
- package/dist/widgets/modal/modal-wrapper.d.ts +8 -0
- package/dist/widgets/modal/modal-wrapper.d.ts.map +1 -0
- package/dist/widgets/modal/modal-wrapper.js +36 -0
- package/dist/widgets/modal/modal.d.ts +35 -0
- package/dist/widgets/modal/modal.d.ts.map +1 -0
- package/dist/widgets/modal/modal.js +71 -0
- package/dist/widgets/modal/modal.module.js +14 -0
- package/dist/widgets/modal/modal_module.css +82 -0
- package/dist/widgets/modal/motionDomAnimation.d.ts +3 -0
- package/dist/widgets/modal/motionDomAnimation.d.ts.map +1 -0
- package/dist/widgets/modal/motionDomAnimation.js +4 -0
- package/dist/widgets/modal/motionDomMax.d.ts +3 -0
- package/dist/widgets/modal/motionDomMax.d.ts.map +1 -0
- package/dist/widgets/modal/motionDomMax.js +4 -0
- package/dist/widgets/search/index.js +1 -0
- package/dist/widgets/search/search.d.ts +21 -0
- package/dist/widgets/search/search.d.ts.map +1 -0
- package/dist/widgets/search/search.js +108 -0
- package/package.json +112 -0
- package/src/astro.js +43 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { IconElement } from "./icon-element.js";
|
|
4
|
+
import icons_module from "./icons.module.js";
|
|
5
|
+
const GlobeIcon = ({ className, svgClassName, ...rest })=>{
|
|
6
|
+
const applied = classnames(icons_module["fill-contrast"], icons_module["stroke-none"], svgClassName);
|
|
7
|
+
return /*#__PURE__*/ jsx(IconElement, {
|
|
8
|
+
className: classnames('globe-icon flex items-center justify-center', className),
|
|
9
|
+
...rest,
|
|
10
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
11
|
+
className: applied,
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
focusable: "false",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
width: "20",
|
|
16
|
+
height: "20",
|
|
17
|
+
viewBox: "0 0 15 15",
|
|
18
|
+
children: [
|
|
19
|
+
/*#__PURE__*/ jsx("path", {
|
|
20
|
+
d: "M7.49996 1.80002C4.35194 1.80002 1.79996 4.352 1.79996 7.50002C1.79996 10.648 4.35194 13.2 7.49996 13.2C10.648 13.2 13.2 10.648 13.2 7.50002C13.2 4.352 10.648 1.80002 7.49996 1.80002ZM0.899963 7.50002C0.899963 3.85494 3.85488 0.900024 7.49996 0.900024C11.145 0.900024 14.1 3.85494 14.1 7.50002C14.1 11.1451 11.145 14.1 7.49996 14.1C3.85488 14.1 0.899963 11.1451 0.899963 7.50002Z",
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd"
|
|
23
|
+
}),
|
|
24
|
+
/*#__PURE__*/ jsx("path", {
|
|
25
|
+
d: "M13.4999 7.89998H1.49994V7.09998H13.4999V7.89998Z",
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd"
|
|
28
|
+
}),
|
|
29
|
+
/*#__PURE__*/ jsx("path", {
|
|
30
|
+
d: "M7.09991 13.5V1.5H7.89991V13.5H7.09991zM10.375 7.49998C10.375 5.32724 9.59364 3.17778 8.06183 1.75656L8.53793 1.24341C10.2396 2.82218 11.075 5.17273 11.075 7.49998 11.075 9.82724 10.2396 12.1778 8.53793 13.7566L8.06183 13.2434C9.59364 11.8222 10.375 9.67273 10.375 7.49998zM3.99969 7.5C3.99969 5.17611 4.80786 2.82678 6.45768 1.24719L6.94177 1.75281C5.4582 3.17323 4.69969 5.32389 4.69969 7.5 4.6997 9.67611 5.45822 11.8268 6.94179 13.2472L6.45769 13.7528C4.80788 12.1732 3.9997 9.8239 3.99969 7.5z",
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd"
|
|
33
|
+
}),
|
|
34
|
+
/*#__PURE__*/ jsx("path", {
|
|
35
|
+
d: "M7.49996 3.95801C9.66928 3.95801 11.8753 4.35915 13.3706 5.19448 13.5394 5.28875 13.5998 5.50197 13.5055 5.67073 13.4113 5.83948 13.198 5.89987 13.0293 5.8056 11.6794 5.05155 9.60799 4.65801 7.49996 4.65801 5.39192 4.65801 3.32052 5.05155 1.97064 5.8056 1.80188 5.89987 1.58866 5.83948 1.49439 5.67073 1.40013 5.50197 1.46051 5.28875 1.62927 5.19448 3.12466 4.35915 5.33063 3.95801 7.49996 3.95801zM7.49996 10.85C9.66928 10.85 11.8753 10.4488 13.3706 9.6135 13.5394 9.51924 13.5998 9.30601 13.5055 9.13726 13.4113 8.9685 13.198 8.90812 13.0293 9.00238 11.6794 9.75643 9.60799 10.15 7.49996 10.15 5.39192 10.15 3.32052 9.75643 1.97064 9.00239 1.80188 8.90812 1.58866 8.9685 1.49439 9.13726 1.40013 9.30601 1.46051 9.51924 1.62927 9.6135 3.12466 10.4488 5.33063 10.85 7.49996 10.85z",
|
|
36
|
+
fillRule: "evenodd",
|
|
37
|
+
clipRule: "evenodd"
|
|
38
|
+
})
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
GlobeIcon.displayName = 'GlobeIcon';
|
|
44
|
+
export { GlobeIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"google-icon.d.ts","sourceRoot":"","sources":["../../src/icons/google-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,eAAO,MAAM,UAAU;2CAA0C,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CAiC7F,CAAA"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { IconElement } from "./icon-element.js";
|
|
4
|
+
const GoogleIcon = ({ className, svgClassName, ...rest })=>{
|
|
5
|
+
const applied = svgClassName;
|
|
6
|
+
return /*#__PURE__*/ jsx(IconElement, {
|
|
7
|
+
className: classnames('google-icon', className),
|
|
8
|
+
...rest,
|
|
9
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
viewBox: "0 0 24 24",
|
|
12
|
+
className: applied,
|
|
13
|
+
focusable: "false",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
strokeWidth: 1.75,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ jsx("path", {
|
|
18
|
+
d: "M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z",
|
|
19
|
+
fill: "#4285F4"
|
|
20
|
+
}),
|
|
21
|
+
/*#__PURE__*/ jsx("path", {
|
|
22
|
+
d: "M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z",
|
|
23
|
+
fill: "#34A853"
|
|
24
|
+
}),
|
|
25
|
+
/*#__PURE__*/ jsx("path", {
|
|
26
|
+
d: "M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z",
|
|
27
|
+
fill: "#FBBC05"
|
|
28
|
+
}),
|
|
29
|
+
/*#__PURE__*/ jsx("path", {
|
|
30
|
+
d: "M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z",
|
|
31
|
+
fill: "#EA4335"
|
|
32
|
+
}),
|
|
33
|
+
/*#__PURE__*/ jsx("path", {
|
|
34
|
+
d: "M1 1h22v22H1z",
|
|
35
|
+
fill: "none"
|
|
36
|
+
})
|
|
37
|
+
]
|
|
38
|
+
})
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
GoogleIcon.displayName = 'GoogleIcon';
|
|
42
|
+
export { GoogleIcon };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IconProps } from './types/icon.js';
|
|
3
|
+
export declare const GripperVerticalIcon: {
|
|
4
|
+
({ className, svgClassName, ...rest }: IconProps): React.JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=gripper-vertical-icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gripper-vertical-icon.d.ts","sourceRoot":"","sources":["../../src/icons/gripper-vertical-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAIhD,eAAO,MAAM,mBAAmB;2CAI7B,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CA0B/B,CAAA"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { IconElement } from "./icon-element.js";
|
|
4
|
+
import icons_module from "./icons.module.js";
|
|
5
|
+
const GripperVerticalIcon = ({ className, svgClassName, ...rest })=>{
|
|
6
|
+
const applied = classnames(icons_module["fill-none"], icons_module["stroke-contrast"], svgClassName);
|
|
7
|
+
return /*#__PURE__*/ jsx(IconElement, {
|
|
8
|
+
className: classnames('gripper-vertical-icon', className),
|
|
9
|
+
...rest,
|
|
10
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
11
|
+
className: applied,
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
focusable: "false",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
strokeWidth: "1.5",
|
|
17
|
+
fill: "none",
|
|
18
|
+
strokeLinecap: "round",
|
|
19
|
+
strokeLinejoin: "round",
|
|
20
|
+
children: [
|
|
21
|
+
/*#__PURE__*/ jsx("path", {
|
|
22
|
+
stroke: "none",
|
|
23
|
+
d: "M0 0h24v24H0z",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}),
|
|
26
|
+
/*#__PURE__*/ jsx("path", {
|
|
27
|
+
d: "M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
28
|
+
}),
|
|
29
|
+
/*#__PURE__*/ jsx("path", {
|
|
30
|
+
d: "M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
31
|
+
}),
|
|
32
|
+
/*#__PURE__*/ jsx("path", {
|
|
33
|
+
d: "M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
34
|
+
}),
|
|
35
|
+
/*#__PURE__*/ jsx("path", {
|
|
36
|
+
d: "M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
37
|
+
}),
|
|
38
|
+
/*#__PURE__*/ jsx("path", {
|
|
39
|
+
d: "M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
40
|
+
}),
|
|
41
|
+
/*#__PURE__*/ jsx("path", {
|
|
42
|
+
d: "M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"
|
|
43
|
+
})
|
|
44
|
+
]
|
|
45
|
+
})
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
GripperVerticalIcon.displayName = 'GripperVerticalIcon';
|
|
49
|
+
export { GripperVerticalIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"home-icon.d.ts","sourceRoot":"","sources":["../../src/icons/home-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAIhD,eAAO,MAAM,QAAQ;2CAA0C,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CAqB3F,CAAA"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { IconElement } from "./icon-element.js";
|
|
4
|
+
import icons_module from "./icons.module.js";
|
|
5
|
+
const HomeIcon = ({ className, svgClassName, ...rest })=>{
|
|
6
|
+
const applied = classnames(icons_module["fill-none"], icons_module["stroke-contrast"], svgClassName);
|
|
7
|
+
return /*#__PURE__*/ jsx(IconElement, {
|
|
8
|
+
className: classnames('home-icon', className),
|
|
9
|
+
...rest,
|
|
10
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
11
|
+
className: applied,
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
focusable: "false",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
strokeLinecap: "round",
|
|
16
|
+
strokeLinejoin: "round",
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
18
|
+
strokeWidth: 1.75,
|
|
19
|
+
children: [
|
|
20
|
+
/*#__PURE__*/ jsx("path", {
|
|
21
|
+
d: "M5 12l-2 0l9 -9l9 9l-2 0"
|
|
22
|
+
}),
|
|
23
|
+
' ',
|
|
24
|
+
/*#__PURE__*/ jsx("path", {
|
|
25
|
+
d: "M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"
|
|
26
|
+
}),
|
|
27
|
+
' ',
|
|
28
|
+
/*#__PURE__*/ jsx("path", {
|
|
29
|
+
d: "M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"
|
|
30
|
+
}),
|
|
31
|
+
' '
|
|
32
|
+
]
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
HomeIcon.displayName = 'HomeIcon';
|
|
37
|
+
export { HomeIcon };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import type React from 'react';
|
|
3
|
+
export interface IconElementProps extends React.ComponentProps<'div'> {
|
|
4
|
+
width?: string;
|
|
5
|
+
height?: string;
|
|
6
|
+
menuItem?: boolean;
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const IconElement: (props: IconElementProps) => React.JSX.Element;
|
|
11
|
+
//# sourceMappingURL=icon-element.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-element.d.ts","sourceRoot":"","sources":["../../src/icons/icon-element.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC;IACnE,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,EAAE,SAAS,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,WAAW,GAAI,OAAO,gBAAgB,KAAG,KAAK,CAAC,GAAG,CAAC,OAkB/D,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
const IconElement = (props)=>{
|
|
4
|
+
const { className, children, width = '22px', height = '22px', menuItem = false, ...rest } = props;
|
|
5
|
+
return /*#__PURE__*/ jsx("div", {
|
|
6
|
+
style: {
|
|
7
|
+
width,
|
|
8
|
+
height,
|
|
9
|
+
flex: `0 0 ${width}`,
|
|
10
|
+
alignItems: 'center',
|
|
11
|
+
justifyContent: 'center',
|
|
12
|
+
marginRight: null != menuItem && menuItem ? '1.2rem' : '0'
|
|
13
|
+
},
|
|
14
|
+
className: classnames('component--icon-element-root', className),
|
|
15
|
+
...rest,
|
|
16
|
+
children: children
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
export { IconElement };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import "./icons_module.css";
|
|
2
|
+
const icons_module = {
|
|
3
|
+
"stroke-none": "stroke-none-xQ3ypG",
|
|
4
|
+
strokeNone: "stroke-none-xQ3ypG",
|
|
5
|
+
"stroke-current": "stroke-current-BBkZuD",
|
|
6
|
+
strokeCurrent: "stroke-current-BBkZuD",
|
|
7
|
+
"stroke-gray": "stroke-gray-ztBX17",
|
|
8
|
+
strokeGray: "stroke-gray-ztBX17",
|
|
9
|
+
"stroke-contrast": "stroke-contrast-AT10aI",
|
|
10
|
+
strokeContrast: "stroke-contrast-AT10aI",
|
|
11
|
+
"stroke-primary": "stroke-primary-u7JF2h",
|
|
12
|
+
strokePrimary: "stroke-primary-u7JF2h",
|
|
13
|
+
"stroke-secondary": "stroke-secondary-MApqoB",
|
|
14
|
+
strokeSecondary: "stroke-secondary-MApqoB",
|
|
15
|
+
"stroke-success": "stroke-success-_1cLJV",
|
|
16
|
+
strokeSuccess: "stroke-success-_1cLJV",
|
|
17
|
+
"stroke-info": "stroke-info-Vzmoi8",
|
|
18
|
+
strokeInfo: "stroke-info-Vzmoi8",
|
|
19
|
+
"stroke-warning": "stroke-warning-I3SfVE",
|
|
20
|
+
strokeWarning: "stroke-warning-I3SfVE",
|
|
21
|
+
"stroke-danger": "stroke-danger-UyrLVd",
|
|
22
|
+
strokeDanger: "stroke-danger-UyrLVd",
|
|
23
|
+
"fill-none": "fill-none-xH4I95",
|
|
24
|
+
fillNone: "fill-none-xH4I95",
|
|
25
|
+
"fill-current": "fill-current-qOoqWe",
|
|
26
|
+
fillCurrent: "fill-current-qOoqWe",
|
|
27
|
+
"fill-contrast": "fill-contrast-L9qIfP",
|
|
28
|
+
fillContrast: "fill-contrast-L9qIfP",
|
|
29
|
+
"fill-gray": "fill-gray-bK_ByH",
|
|
30
|
+
fillGray: "fill-gray-bK_ByH",
|
|
31
|
+
"fill-primary": "fill-primary-H4rRqA",
|
|
32
|
+
fillPrimary: "fill-primary-H4rRqA",
|
|
33
|
+
"fill-secondary": "fill-secondary-rMFbuc",
|
|
34
|
+
fillSecondary: "fill-secondary-rMFbuc",
|
|
35
|
+
"fill-success": "fill-success-zkVkC0",
|
|
36
|
+
fillSuccess: "fill-success-zkVkC0",
|
|
37
|
+
"fill-info": "fill-info-uUXjQx",
|
|
38
|
+
fillInfo: "fill-info-uUXjQx",
|
|
39
|
+
"fill-warning": "fill-warning-MhDHOi",
|
|
40
|
+
fillWarning: "fill-warning-MhDHOi",
|
|
41
|
+
"fill-danger": "fill-danger-ON0cOW",
|
|
42
|
+
fillDanger: "fill-danger-ON0cOW"
|
|
43
|
+
};
|
|
44
|
+
export { icons_module as default };
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
@layer infonomic-base, infonomic-utilities, infonomic-theme;
|
|
2
|
+
|
|
3
|
+
@layer infonomic-components {
|
|
4
|
+
.stroke-none-xQ3ypG {
|
|
5
|
+
stroke: none;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.stroke-current-BBkZuD {
|
|
9
|
+
stroke: currentColor;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.stroke-gray-ztBX17 {
|
|
13
|
+
stroke: var(--gray-800);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.stroke-gray-ztBX17:is(.dark *) {
|
|
17
|
+
stroke: var(--gray-300);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.stroke-contrast-AT10aI {
|
|
21
|
+
stroke: var(--gray-950);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.stroke-contrast-AT10aI:is(.dark *) {
|
|
25
|
+
stroke: var(--gray-100);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.stroke-primary-u7JF2h {
|
|
29
|
+
stroke: var(--primary-500);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.stroke-primary-u7JF2h:is(.dark *) {
|
|
33
|
+
stroke: var(--primary-400);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.stroke-secondary-MApqoB {
|
|
37
|
+
stroke: var(--secondary-500);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.stroke-secondary-MApqoB:is(.dark *) {
|
|
41
|
+
stroke: var(--secondary-400);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.stroke-success-_1cLJV {
|
|
45
|
+
stroke: var(--green-500);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.stroke-success-_1cLJV:is(.dark *) {
|
|
49
|
+
stroke: var(--green-400);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.stroke-info-Vzmoi8 {
|
|
53
|
+
stroke: var(--blue-500);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.stroke-info-Vzmoi8:is(.dark *) {
|
|
57
|
+
stroke: var(--blue-400);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.stroke-warning-I3SfVE {
|
|
61
|
+
stroke: var(--yellow-500);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.stroke-warning-I3SfVE:is(.dark *) {
|
|
65
|
+
stroke: var(--yellow-400);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.stroke-danger-UyrLVd {
|
|
69
|
+
stroke: var(--red-500);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.stroke-danger-UyrLVd:is(.dark *) {
|
|
73
|
+
stroke: var(--red-400);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.fill-none-xH4I95 {
|
|
77
|
+
fill: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.fill-current-qOoqWe {
|
|
81
|
+
fill: currentColor;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.fill-contrast-L9qIfP {
|
|
85
|
+
fill: #000;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.fill-contrast-L9qIfP:is(.dark *) {
|
|
89
|
+
fill: #fff;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.fill-gray-bK_ByH {
|
|
93
|
+
stroke: var(--gray-700);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.fill-gray-bK_ByH:is(.dark *) {
|
|
97
|
+
stroke: var(--gray-300);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.fill-primary-H4rRqA {
|
|
101
|
+
fill: var(--primary-500);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.fill-primary-H4rRqA:is(.dark *) {
|
|
105
|
+
fill: var(--primary-400);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.fill-secondary-rMFbuc {
|
|
109
|
+
fill: var(--secondary-500);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.fill-secondary-rMFbuc:is(.dark *) {
|
|
113
|
+
fill: var(--secondary-400);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.fill-success-zkVkC0 {
|
|
117
|
+
fill: var(--green-500);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.fill-success-zkVkC0:is(.dark *) {
|
|
121
|
+
fill: var(--green-400);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.fill-info-uUXjQx {
|
|
125
|
+
fill: var(--blue-500);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.fill-info-uUXjQx:is(.dark *) {
|
|
129
|
+
fill: var(--blue-400);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.fill-warning-MhDHOi {
|
|
133
|
+
fill: var(--yellow-500);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.fill-warning-MhDHOi:is(.dark *) {
|
|
137
|
+
fill: var(--yellow-400);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.fill-danger-ON0cOW {
|
|
141
|
+
fill: var(--red-500);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.fill-danger-ON0cOW:is(.dark *) {
|
|
145
|
+
fill: var(--red-400);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export * from './danger-icon.js';
|
|
2
|
+
export * from './icon-element.js';
|
|
3
|
+
export * from './info-icon.js';
|
|
4
|
+
export * from './light-icon.js';
|
|
5
|
+
export * from './moon-icon.js';
|
|
6
|
+
export * from './return-icon.js';
|
|
7
|
+
export * from './success-icon.js';
|
|
8
|
+
export * from './warning-icon.js';
|
|
9
|
+
export * from './wallet-icon.js';
|
|
10
|
+
export * from './globe-icon.js';
|
|
11
|
+
export * from './close-icon.js';
|
|
12
|
+
export * from './search-icon.js';
|
|
13
|
+
export * from './search-menu-icon.js';
|
|
14
|
+
export * from './refresh-icon.js';
|
|
15
|
+
export * from './copy-icon.js';
|
|
16
|
+
export * from './check-icon.js';
|
|
17
|
+
export * from './x-icon.js';
|
|
18
|
+
export * from './calendar-icon.js';
|
|
19
|
+
export * from './location-pin-icon.js';
|
|
20
|
+
export * from './settings-sliders-icon.js';
|
|
21
|
+
export * from './settings-gear-icon.js';
|
|
22
|
+
export * from './infonomic-icon.js';
|
|
23
|
+
export * from './document-icon.js';
|
|
24
|
+
export * from './edit-icon.js';
|
|
25
|
+
export * from './sign-out-icon.js';
|
|
26
|
+
export * from './gripper-vertical-icon.js';
|
|
27
|
+
export * from './plus-icon.js';
|
|
28
|
+
export * from './user-icon.js';
|
|
29
|
+
export * from './users-icon.js';
|
|
30
|
+
export * from './roles-icon.js';
|
|
31
|
+
export * from './home-icon.js';
|
|
32
|
+
export * from './ellipsis-icon.js';
|
|
33
|
+
export * from './email-icon.js';
|
|
34
|
+
export * from './delete-icon.js';
|
|
35
|
+
export * from './activity-icon.js';
|
|
36
|
+
export * from './github-icon.js';
|
|
37
|
+
export * from './google-icon.js';
|
|
38
|
+
export * from './dashboard-icon.js';
|
|
39
|
+
export * from './stopwatch-icon.js';
|
|
40
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA;AAChC,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,kBAAkB,CAAA;AAChC,cAAc,uBAAuB,CAAA;AACrC,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,oBAAoB,CAAA;AAClC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,kBAAkB,CAAA;AAChC,cAAc,kBAAkB,CAAA;AAChC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export * from "./danger-icon.js";
|
|
2
|
+
export * from "./icon-element.js";
|
|
3
|
+
export * from "./info-icon.js";
|
|
4
|
+
export * from "./light-icon.js";
|
|
5
|
+
export * from "./moon-icon.js";
|
|
6
|
+
export * from "./return-icon.js";
|
|
7
|
+
export * from "./success-icon.js";
|
|
8
|
+
export * from "./warning-icon.js";
|
|
9
|
+
export * from "./wallet-icon.js";
|
|
10
|
+
export * from "./globe-icon.js";
|
|
11
|
+
export * from "./close-icon.js";
|
|
12
|
+
export * from "./search-icon.js";
|
|
13
|
+
export * from "./search-menu-icon.js";
|
|
14
|
+
export * from "./refresh-icon.js";
|
|
15
|
+
export * from "./copy-icon.js";
|
|
16
|
+
export * from "./check-icon.js";
|
|
17
|
+
export * from "./x-icon.js";
|
|
18
|
+
export * from "./calendar-icon.js";
|
|
19
|
+
export * from "./location-pin-icon.js";
|
|
20
|
+
export * from "./settings-sliders-icon.js";
|
|
21
|
+
export * from "./settings-gear-icon.js";
|
|
22
|
+
export * from "./infonomic-icon.js";
|
|
23
|
+
export * from "./document-icon.js";
|
|
24
|
+
export * from "./edit-icon.js";
|
|
25
|
+
export * from "./sign-out-icon.js";
|
|
26
|
+
export * from "./gripper-vertical-icon.js";
|
|
27
|
+
export * from "./plus-icon.js";
|
|
28
|
+
export * from "./user-icon.js";
|
|
29
|
+
export * from "./users-icon.js";
|
|
30
|
+
export * from "./roles-icon.js";
|
|
31
|
+
export * from "./home-icon.js";
|
|
32
|
+
export * from "./ellipsis-icon.js";
|
|
33
|
+
export * from "./email-icon.js";
|
|
34
|
+
export * from "./delete-icon.js";
|
|
35
|
+
export * from "./activity-icon.js";
|
|
36
|
+
export * from "./github-icon.js";
|
|
37
|
+
export * from "./google-icon.js";
|
|
38
|
+
export * from "./dashboard-icon.js";
|
|
39
|
+
export * from "./stopwatch-icon.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"info-icon.d.ts","sourceRoot":"","sources":["../../src/icons/info-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAMhD,eAAO,MAAM,QAAQ,GAAI,iDAKtB,SAAS,KAAG,KAAK,CAAC,GAAG,CAAC,OAcxB,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { IconElement } from "./icon-element.js";
|
|
4
|
+
import icons_module from "./icons.module.js";
|
|
5
|
+
const spriteID = 'icon-info';
|
|
6
|
+
const InfoIcon = ({ className, svgClassName, useSprite, ...rest })=>{
|
|
7
|
+
const applied = classnames(icons_module["fill-info"], svgClassName);
|
|
8
|
+
return /*#__PURE__*/ jsx(IconElement, {
|
|
9
|
+
className: classnames('info-icon', className),
|
|
10
|
+
...rest,
|
|
11
|
+
children: /*#__PURE__*/ jsx("svg", {
|
|
12
|
+
className: applied,
|
|
13
|
+
focusable: "false",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
children: true === useSprite ? /*#__PURE__*/ jsx("use", {
|
|
17
|
+
href: `/sprite.svg#${spriteID}`
|
|
18
|
+
}) : /*#__PURE__*/ jsx("path", {
|
|
19
|
+
d: "M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20, 12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10, 10 0 0,0 12,2M11,17H13V11H11V17Z"
|
|
20
|
+
})
|
|
21
|
+
})
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
export { InfoIcon };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { IconProps } from './types/icon.js';
|
|
3
|
+
export declare const InfonomicIcon: {
|
|
4
|
+
({ className, svgClassName, ...rest }: IconProps): React.JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=infonomic-icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infonomic-icon.d.ts","sourceRoot":"","sources":["../../src/icons/infonomic-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAIhD,eAAO,MAAM,aAAa;2CAIvB,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CA4J/B,CAAA"}
|