@byline/ui 0.9.3 → 0.10.1
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/dist/admin/components/admin-account/change-password.js +1 -1
- package/dist/admin/components/admin-account/container.js +1 -1
- package/dist/admin/components/admin-account/update.js +1 -1
- package/dist/admin/components/admin-permissions/inspector.js +1 -1
- package/dist/admin/components/admin-roles/create.js +1 -1
- package/dist/admin/components/admin-roles/permissions.js +1 -1
- package/dist/admin/components/admin-roles/update.js +1 -1
- package/dist/admin/components/admin-users/create.js +1 -1
- package/dist/admin/components/admin-users/roles.js +1 -1
- package/dist/admin/components/admin-users/set-password.js +1 -1
- package/dist/admin/components/admin-users/update.js +1 -1
- package/dist/admin/components/auth/sign-in-form.js +1 -1
- package/dist/admin/components/collections/diff-modal.js +1 -1
- package/dist/admin/components/collections/status-badge.js +1 -1
- package/dist/admin/tabs.js +1 -1
- package/dist/admin.d.ts +24 -0
- package/dist/admin.d.ts.map +1 -0
- package/dist/admin.js +18 -0
- package/dist/components/@types/shared.d.ts +61 -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 +10 -0
- package/dist/components/accordion/accordion_module.css +53 -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 +5 -0
- package/dist/components/avatar/avatar.d.ts.map +1 -0
- package/dist/components/avatar/avatar.js +25 -0
- package/dist/components/avatar/avatar.module.js +12 -0
- package/dist/components/avatar/avatar_module.css +36 -0
- package/dist/components/badge/badge.d.ts +13 -0
- package/dist/components/badge/badge.d.ts.map +1 -0
- package/dist/components/badge/badge.js +18 -0
- package/dist/components/badge/badge.module.js +12 -0
- package/dist/components/badge/badge_module.css +51 -0
- package/dist/components/button/@types/button.d.ts +41 -0
- package/dist/components/button/@types/button.d.ts.map +1 -0
- package/dist/components/button/@types/button.js +8 -0
- package/dist/components/button/button-group.d.ts +39 -0
- package/dist/components/button/button-group.d.ts.map +1 -0
- package/dist/components/button/button-group.js +71 -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 +16 -0
- package/dist/components/button/button.d.ts.map +1 -0
- package/dist/components/button/button.js +29 -0
- package/dist/components/button/button.module.js +26 -0
- package/dist/components/button/button_module.css +382 -0
- package/dist/components/button/combo-button.d.ts +21 -0
- package/dist/components/button/combo-button.d.ts.map +1 -0
- package/dist/components/button/combo-button.js +54 -0
- package/dist/components/button/combo-button.module.js +12 -0
- package/dist/components/button/combo-button_module.css +52 -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 +109 -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 +71 -0
- package/dist/components/button/copy-button.module.js +13 -0
- package/dist/components/button/copy-button_module.css +49 -0
- package/dist/components/button/icon-button.d.ts +8 -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/card/card.d.ts +37 -0
- package/dist/components/card/card.d.ts.map +1 -0
- package/dist/components/card/card.js +56 -0
- package/dist/components/card/card.module.js +17 -0
- package/dist/components/card/card_module.css +62 -0
- package/dist/components/chips/@types/chip.d.ts +26 -0
- package/dist/components/chips/@types/chip.d.ts.map +1 -0
- package/dist/components/chips/@types/chip.js +7 -0
- package/dist/components/chips/chip.d.ts +26 -0
- package/dist/components/chips/chip.d.ts.map +1 -0
- package/dist/components/chips/chip.js +102 -0
- package/dist/components/chips/chip.module.js +27 -0
- package/dist/components/chips/chip_module.css +315 -0
- package/dist/components/chips/index.js +2 -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 +74 -0
- package/dist/components/dropdown/dropdown.d.ts.map +1 -0
- package/dist/components/dropdown/dropdown.js +106 -0
- package/dist/components/dropdown/dropdown.module.js +16 -0
- package/dist/components/dropdown/dropdown_module.css +111 -0
- package/dist/components/hamburger/hamburger.d.ts +13 -0
- package/dist/components/hamburger/hamburger.d.ts.map +1 -0
- package/dist/components/hamburger/hamburger.js +46 -0
- package/dist/components/hamburger/hamburger.module.js +10 -0
- package/dist/components/hamburger/hamburger_module.css +169 -0
- package/dist/components/inputs/@types/autocomplete.d.ts +35 -0
- package/dist/components/inputs/@types/autocomplete.d.ts.map +1 -0
- package/dist/components/inputs/@types/autocomplete.js +11 -0
- package/dist/components/inputs/@types/checkbox.d.ts +40 -0
- package/dist/components/inputs/@types/checkbox.d.ts.map +1 -0
- package/dist/components/inputs/@types/checkbox.js +10 -0
- package/dist/components/inputs/@types/input.d.ts +41 -0
- package/dist/components/inputs/@types/input.d.ts.map +1 -0
- package/dist/components/inputs/@types/input.js +11 -0
- package/dist/components/inputs/autocomplete.d.ts +42 -0
- package/dist/components/inputs/autocomplete.d.ts.map +1 -0
- package/dist/components/inputs/autocomplete.js +87 -0
- package/dist/components/inputs/autocomplete.module.js +36 -0
- package/dist/components/inputs/autocomplete_module.css +312 -0
- package/dist/components/inputs/calendar.d.ts +38 -0
- package/dist/components/inputs/calendar.d.ts.map +1 -0
- package/dist/components/inputs/calendar.js +131 -0
- package/dist/components/inputs/calendar.module.js +45 -0
- package/dist/components/inputs/calendar_module.css +223 -0
- package/dist/components/inputs/checkbox-group.d.ts +16 -0
- package/dist/components/inputs/checkbox-group.d.ts.map +1 -0
- package/dist/components/inputs/checkbox-group.js +45 -0
- package/dist/components/inputs/checkbox-group.module.js +6 -0
- package/dist/components/inputs/checkbox-group_module.css +10 -0
- package/dist/components/inputs/checkbox.d.ts +29 -0
- package/dist/components/inputs/checkbox.d.ts.map +1 -0
- package/dist/components/inputs/checkbox.js +54 -0
- package/dist/components/inputs/checkbox.module.js +25 -0
- package/dist/components/inputs/checkbox_module.css +216 -0
- package/dist/components/inputs/error-text.d.ts +10 -0
- package/dist/components/inputs/error-text.d.ts.map +1 -0
- package/dist/components/inputs/error-text.js +11 -0
- package/dist/components/inputs/error-text.module.js +8 -0
- package/dist/components/inputs/error-text_module.css +21 -0
- package/dist/components/inputs/errors.d.ts +14 -0
- package/dist/components/inputs/errors.d.ts.map +1 -0
- package/dist/components/inputs/errors.js +30 -0
- package/dist/components/inputs/help-text.d.ts +9 -0
- package/dist/components/inputs/help-text.d.ts.map +1 -0
- package/dist/components/inputs/help-text.js +10 -0
- package/dist/components/inputs/help-text.module.js +8 -0
- package/dist/components/inputs/help-text_module.css +21 -0
- package/dist/components/inputs/index.js +9 -0
- package/dist/components/inputs/input-adornment.d.ts +11 -0
- package/dist/components/inputs/input-adornment.d.ts.map +1 -0
- package/dist/components/inputs/input-adornment.js +15 -0
- package/dist/components/inputs/input-adornment.module.js +7 -0
- package/dist/components/inputs/input-adornment_module.css +19 -0
- package/dist/components/inputs/input-password.d.ts +3 -0
- package/dist/components/inputs/input-password.d.ts.map +1 -0
- package/dist/components/inputs/input-password.js +22 -0
- package/dist/components/inputs/input.d.ts +25 -0
- package/dist/components/inputs/input.d.ts.map +1 -0
- package/dist/components/inputs/input.js +62 -0
- package/dist/components/inputs/input.module.js +34 -0
- package/dist/components/inputs/input_module.css +259 -0
- package/dist/components/inputs/label.d.ts +11 -0
- package/dist/components/inputs/label.d.ts.map +1 -0
- package/dist/components/inputs/label.js +18 -0
- package/dist/components/inputs/label.module.js +6 -0
- package/dist/components/inputs/label_module.css +14 -0
- package/dist/components/inputs/radio-group.d.ts +24 -0
- package/dist/components/inputs/radio-group.d.ts.map +1 -0
- package/dist/components/inputs/radio-group.js +37 -0
- package/dist/components/inputs/radio-group.module.js +20 -0
- package/dist/components/inputs/radio-group_module.css +160 -0
- package/dist/components/inputs/select.d.ts +33 -0
- package/dist/components/inputs/select.d.ts.map +1 -0
- package/dist/components/inputs/select.js +87 -0
- package/dist/components/inputs/select.module.js +23 -0
- package/dist/components/inputs/select_module.css +141 -0
- package/dist/components/inputs/text-area.d.ts +20 -0
- package/dist/components/inputs/text-area.d.ts.map +1 -0
- package/dist/components/inputs/text-area.js +45 -0
- package/dist/components/inputs/text-area.module.js +7 -0
- package/dist/components/inputs/text-area_module.css +19 -0
- package/dist/components/inputs/utils.d.ts +3 -0
- package/dist/components/inputs/utils.d.ts.map +1 -0
- package/dist/components/inputs/utils.js +10 -0
- package/dist/components/notifications/@types/alert.d.ts +21 -0
- package/dist/components/notifications/@types/alert.d.ts.map +1 -0
- package/dist/components/notifications/@types/alert.js +1 -0
- package/dist/components/notifications/@types/toast.d.ts +46 -0
- package/dist/components/notifications/@types/toast.d.ts.map +1 -0
- package/dist/components/notifications/@types/toast.js +1 -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 +99 -0
- package/dist/components/notifications/alert.module.js +20 -0
- package/dist/components/notifications/alert_module.css +119 -0
- package/dist/components/notifications/index.js +2 -0
- package/dist/components/notifications/toast.d.ts +17 -0
- package/dist/components/notifications/toast.d.ts.map +1 -0
- package/dist/components/notifications/toast.js +98 -0
- package/dist/components/notifications/toast.module.js +20 -0
- package/dist/components/notifications/toast_module.css +212 -0
- package/dist/components/pager/@types/index.d.ts +15 -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 +38 -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 +1 -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 +38 -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 +42 -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 +45 -0
- package/dist/components/pager/pagination.d.ts +99 -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 +103 -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 +40 -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 +34 -0
- package/dist/components/scroll-area/scroll-area.module.js +9 -0
- package/dist/components/scroll-area/scroll-area_module.css +63 -0
- package/dist/components/scroll-to-top/scroll-to-top.d.ts +15 -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 +67 -0
- package/dist/components/scroll-to-top/scroll-to-top.module.js +8 -0
- package/dist/components/scroll-to-top/scroll-to-top_module.css +100 -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 +9 -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 +41 -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 +91 -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 +56 -0
- package/dist/components/tooltip/tooltip.d.ts +14 -0
- package/dist/components/tooltip/tooltip.d.ts.map +1 -0
- package/dist/components/tooltip/tooltip.js +63 -0
- package/dist/components/tooltip/tooltip.module.js +13 -0
- package/dist/components/tooltip/tooltip_module.css +73 -0
- package/dist/dnd/draggable-sortable/demo/draggable-list-demo.js +1 -1
- package/dist/dnd/draggable-sortable/draggable-sortable.d.ts +3 -3
- package/dist/dnd/draggable-sortable/draggable-sortable.d.ts.map +1 -1
- package/dist/dnd/draggable-sortable/types.d.ts +1 -1
- package/dist/dnd/draggable-sortable/types.d.ts.map +1 -1
- package/dist/fields/array/array-field.js +1 -1
- package/dist/fields/blocks/blocks-field.js +1 -1
- package/dist/fields/checkbox/checkbox-field.js +1 -1
- package/dist/fields/datetime/datetime-field.js +1 -1
- package/dist/fields/draggable-context-menu.js +1 -1
- package/dist/fields/file/file-field.js +1 -1
- package/dist/fields/group/group-field.js +1 -1
- package/dist/fields/image/image-field.js +1 -1
- package/dist/fields/numerical/numerical-field.js +1 -1
- package/dist/fields/relation/relation-field.js +1 -1
- package/dist/fields/relation/relation-picker.js +1 -1
- package/dist/fields/select/select-field.js +1 -1
- package/dist/fields/sortable-item.js +1 -1
- package/dist/fields/text/text-field.js +1 -1
- package/dist/fields/text-area/text-area-field.js +1 -1
- package/dist/fields.d.ts +28 -0
- package/dist/fields.d.ts.map +1 -0
- package/dist/fields.js +23 -0
- package/dist/forms/document-actions.js +1 -1
- package/dist/forms/form-renderer.js +1 -1
- package/dist/forms/path-widget.js +1 -1
- package/dist/forms.d.ts +10 -0
- package/dist/forms.d.ts.map +1 -0
- package/dist/forms.js +5 -0
- package/dist/hooks/use-focus-trap/index.js +1 -0
- package/dist/hooks/use-focus-trap/scope-tab.js +19 -0
- package/dist/hooks/use-focus-trap/tabbable.js +36 -0
- package/dist/hooks/use-focus-trap/use-focus-trap.js +45 -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/ai-icon.d.ts +7 -0
- package/dist/icons/ai-icon.d.ts.map +1 -0
- package/dist/icons/ai-icon.js +39 -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/chevron-up-icon.d.ts +7 -0
- package/dist/icons/chevron-up-icon.d.ts.map +1 -0
- package/dist/icons/chevron-up-icon.js +27 -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 +37 -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 +21 -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/eye-closed-icon.d.ts +7 -0
- package/dist/icons/eye-closed-icon.d.ts.map +1 -0
- package/dist/icons/eye-closed-icon.js +41 -0
- package/dist/icons/eye-open-icon.d.ts +7 -0
- package/dist/icons/eye-open-icon.d.ts.map +1 -0
- package/dist/icons/eye-open-icon.js +33 -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/history-icon.d.ts +7 -0
- package/dist/icons/history-icon.d.ts.map +1 -0
- package/dist/icons/history-icon.js +35 -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 +17 -0
- package/dist/icons/icon-sprite.js +15 -0
- package/dist/icons/icons.module.js +46 -0
- package/dist/icons/icons_module.css +163 -0
- package/dist/icons/index.d.ts +54 -0
- package/dist/icons/index.d.ts.map +1 -0
- package/dist/icons/index.js +53 -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 +21 -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/stop-icon.d.ts +7 -0
- package/dist/icons/stop-icon.d.ts.map +1 -0
- package/dist/icons/stop-icon.js +35 -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 +21 -0
- package/dist/icons/types/icon.d.ts +9 -0
- package/dist/icons/types/icon.d.ts.map +1 -0
- package/dist/icons/types/icon.js +1 -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 +21 -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/lib/ripple.d.ts +25 -0
- package/dist/lib/ripple.d.ts.map +1 -0
- package/dist/lib/ripple.js +53 -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 +1 -0
- package/dist/loaders/ellipses.d.ts +4 -0
- package/dist/loaders/ellipses.d.ts.map +1 -0
- package/dist/loaders/ellipses.js +22 -0
- package/dist/loaders/ellipses.module.js +14 -0
- package/dist/loaders/ellipses_module.css +73 -0
- package/dist/loaders/ring.d.ts +4 -0
- package/dist/loaders/ring.d.ts.map +1 -0
- package/dist/loaders/ring.js +22 -0
- package/dist/loaders/ring.module.js +8 -0
- package/dist/loaders/ring_module.css +49 -0
- package/dist/loaders/spinner.d.ts +4 -0
- package/dist/loaders/spinner.d.ts.map +1 -0
- package/dist/loaders/spinner.js +25 -0
- package/dist/loaders/spinner.module.js +10 -0
- package/dist/loaders/spinner_module.css +99 -0
- package/dist/react.d.ts +1 -49
- package/dist/react.d.ts.map +1 -1
- package/dist/react.js +1 -47
- package/dist/services.d.ts +10 -0
- package/dist/services.d.ts.map +1 -0
- package/dist/services.js +1 -0
- package/dist/styles/reset.css +209 -0
- package/dist/styles/styles.css +2922 -0
- package/dist/styles/typography.css +398 -0
- package/dist/uikit.d.ts +109 -0
- package/dist/uikit.d.ts.map +1 -0
- package/dist/uikit.js +104 -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.js +4 -0
- package/dist/utils/isTouchDevice.js +3 -0
- package/dist/utils/objectsToArray.js +9 -0
- package/dist/utils/objectsToString.js +5 -0
- package/dist/utils/polymorphic.js +1 -0
- package/dist/utils/to-kebab-case.js +2 -0
- package/dist/widgets/datepicker/datepicker.d.ts +38 -0
- package/dist/widgets/datepicker/datepicker.d.ts.map +1 -0
- package/dist/widgets/datepicker/datepicker.js +262 -0
- package/dist/widgets/datepicker/datepicker.module.js +33 -0
- package/dist/widgets/datepicker/datepicker_module.css +188 -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 +13 -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.d.ts +27 -0
- package/dist/widgets/drawer/drawer.d.ts.map +1 -0
- package/dist/widgets/drawer/drawer.js +59 -0
- package/dist/widgets/drawer/drawer.module.js +27 -0
- package/dist/widgets/drawer/drawer_module.css +129 -0
- package/dist/widgets/drawer/motionDomAnimation.js +4 -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.d.ts +35 -0
- package/dist/widgets/modal/modal.d.ts.map +1 -0
- package/dist/widgets/modal/modal.js +58 -0
- package/dist/widgets/modal/modal.module.js +15 -0
- package/dist/widgets/modal/modal_module.css +118 -0
- package/dist/widgets/modal/motionDomAnimation.js +4 -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 +109 -0
- package/dist/widgets/timeline/timeline.d.ts +60 -0
- package/dist/widgets/timeline/timeline.d.ts.map +1 -0
- package/dist/widgets/timeline/timeline.js +74 -0
- package/dist/widgets/timeline/timeline.module.js +17 -0
- package/dist/widgets/timeline/timeline_module.css +83 -0
- package/package.json +37 -24
- package/src/.uikit-sync.json +9 -0
- package/src/admin/components/admin-account/change-password.tsx +1 -1
- package/src/admin/components/admin-account/container.tsx +1 -1
- package/src/admin/components/admin-account/update.tsx +1 -1
- package/src/admin/components/admin-permissions/inspector.tsx +1 -1
- package/src/admin/components/admin-roles/create.tsx +1 -1
- package/src/admin/components/admin-roles/permissions.tsx +1 -1
- package/src/admin/components/admin-roles/update.tsx +1 -1
- package/src/admin/components/admin-users/create.tsx +1 -1
- package/src/admin/components/admin-users/roles.tsx +1 -1
- package/src/admin/components/admin-users/set-password.tsx +1 -1
- package/src/admin/components/admin-users/update.tsx +1 -1
- package/src/admin/components/auth/sign-in-form.tsx +1 -1
- package/src/admin/components/collections/diff-modal.tsx +1 -1
- package/src/admin/components/collections/status-badge.tsx +1 -1
- package/src/admin/tabs.tsx +1 -1
- package/src/admin.ts +39 -0
- package/src/components/@types/shared.ts +79 -0
- package/src/components/accordion/accordion.module.css +56 -0
- package/src/components/accordion/accordion.tsx +125 -0
- package/src/components/animation/fade-in-lift.tsx +43 -0
- package/src/components/avatar/avatar.module.css +45 -0
- package/src/components/avatar/avatar.tsx +28 -0
- package/src/components/badge/badge.module.css +66 -0
- package/src/components/badge/badge.tsx +42 -0
- package/src/components/button/@types/button.ts +50 -0
- package/src/components/button/button-group.module.css +19 -0
- package/src/components/button/button-group.tsx +142 -0
- package/src/components/button/button.module.css +542 -0
- package/src/components/button/button.tsx +70 -0
- package/src/components/button/combo-button.module.css +52 -0
- package/src/components/button/combo-button.tsx +89 -0
- package/src/components/button/control-buttons.module.css +134 -0
- package/src/components/button/control-buttons.tsx +140 -0
- package/src/components/button/copy-button.module.css +61 -0
- package/src/components/button/copy-button.tsx +123 -0
- package/src/components/button/icon-button.tsx +43 -0
- package/src/components/button/index.ts +5 -0
- package/src/components/card/card.module.css +80 -0
- package/src/components/card/card.tsx +91 -0
- package/src/components/chips/@types/chip.ts +29 -0
- package/src/components/chips/chip.module.css +445 -0
- package/src/components/chips/chip.tsx +198 -0
- package/src/components/chips/index.ts +2 -0
- package/src/components/container/container.module.css +41 -0
- package/src/components/container/container.tsx +23 -0
- package/src/components/dropdown/dropdown.module.css +128 -0
- package/src/components/dropdown/dropdown.tsx +225 -0
- package/src/components/hamburger/hamburger.module.css +141 -0
- package/src/components/hamburger/hamburger.tsx +75 -0
- package/src/components/inputs/@types/autocomplete.ts +39 -0
- package/src/components/inputs/@types/checkbox.ts +50 -0
- package/src/components/inputs/@types/input.ts +51 -0
- package/src/components/inputs/autocomplete.module.css +370 -0
- package/src/components/inputs/autocomplete.tsx +179 -0
- package/src/components/inputs/calendar.module.css +274 -0
- package/src/components/inputs/calendar.tsx +185 -0
- package/src/components/inputs/checkbox-group.module.css +15 -0
- package/src/components/inputs/checkbox-group.tsx +86 -0
- package/src/components/inputs/checkbox.module.css +278 -0
- package/src/components/inputs/checkbox.tsx +109 -0
- package/src/components/inputs/error-text.module.css +29 -0
- package/src/components/inputs/error-text.tsx +20 -0
- package/src/components/inputs/errors.tsx +37 -0
- package/src/components/inputs/help-text.module.css +29 -0
- package/src/components/inputs/help-text.tsx +19 -0
- package/src/components/inputs/index.tsx +9 -0
- package/src/components/inputs/input-adornment.module.css +26 -0
- package/src/components/inputs/input-adornment.tsx +37 -0
- package/src/components/inputs/input-password.tsx +24 -0
- package/src/components/inputs/input.module.css +289 -0
- package/src/components/inputs/input.tsx +119 -0
- package/src/components/inputs/label.module.css +20 -0
- package/src/components/inputs/label.tsx +26 -0
- package/src/components/inputs/radio-group.module.css +175 -0
- package/src/components/inputs/radio-group.tsx +72 -0
- package/src/components/inputs/select.module.css +152 -0
- package/src/components/inputs/select.tsx +134 -0
- package/src/components/inputs/text-area.module.css +34 -0
- package/src/components/inputs/text-area.tsx +83 -0
- package/src/components/inputs/utils.ts +21 -0
- package/src/components/notifications/@types/alert.ts +25 -0
- package/src/components/notifications/@types/toast.ts +53 -0
- package/src/components/notifications/alert.module.css +136 -0
- package/src/components/notifications/alert.tsx +124 -0
- package/src/components/notifications/index.ts +2 -0
- package/src/components/notifications/toast.module.css +234 -0
- package/src/components/notifications/toast.tsx +121 -0
- package/src/components/pager/@types/index.ts +15 -0
- package/src/components/pager/ellipses.tsx +18 -0
- package/src/components/pager/event-pager.tsx +20 -0
- package/src/components/pager/first-button.tsx +56 -0
- package/src/components/pager/hooks/types/usePagination.ts +80 -0
- package/src/components/pager/hooks/usePagination.ts +140 -0
- package/src/components/pager/icons/first.tsx +33 -0
- package/src/components/pager/icons/index.tsx +4 -0
- package/src/components/pager/icons/last.tsx +33 -0
- package/src/components/pager/icons/next.tsx +20 -0
- package/src/components/pager/icons/previous.tsx +20 -0
- package/src/components/pager/index.ts +4 -0
- package/src/components/pager/last-button.tsx +61 -0
- package/src/components/pager/next-button.tsx +61 -0
- package/src/components/pager/number-button.tsx +87 -0
- package/src/components/pager/pagination.module.css +147 -0
- package/src/components/pager/pagination.tsx +265 -0
- package/src/components/pager/previous-button.tsx +56 -0
- package/src/components/scroll-area/scroll-area.module.css +74 -0
- package/src/components/scroll-area/scroll-area.tsx +32 -0
- package/src/components/scroll-to-top/scroll-to-top.module.css +86 -0
- package/src/components/scroll-to-top/scroll-to-top.tsx +87 -0
- package/src/components/section/section.module.css +14 -0
- package/src/components/section/section.tsx +23 -0
- package/src/components/shimmer/shimmer.module.css +61 -0
- package/src/components/shimmer/shimmer.tsx +71 -0
- package/src/components/table/table.module.css +120 -0
- package/src/components/table/table.tsx +171 -0
- package/src/components/tabs/tabs.module.css +64 -0
- package/src/components/tabs/tabs.tsx +76 -0
- package/src/components/tooltip/tooltip.module.css +80 -0
- package/src/components/tooltip/tooltip.tsx +83 -0
- package/src/dnd/draggable-sortable/demo/draggable-list-demo.tsx +1 -1
- package/src/dnd/draggable-sortable/draggable-sortable.tsx +3 -3
- package/src/dnd/draggable-sortable/types.ts +1 -1
- package/src/fields/array/array-field.tsx +1 -1
- package/src/fields/blocks/blocks-field.tsx +1 -1
- package/src/fields/checkbox/checkbox-field.tsx +1 -1
- package/src/fields/datetime/datetime-field.tsx +1 -1
- package/src/fields/draggable-context-menu.tsx +3 -3
- package/src/fields/file/file-field.tsx +1 -1
- package/src/fields/group/group-field.tsx +1 -1
- package/src/fields/image/image-field.tsx +1 -1
- package/src/fields/numerical/numerical-field.tsx +1 -1
- package/src/fields/relation/relation-field.tsx +1 -1
- package/src/fields/relation/relation-picker.tsx +1 -1
- package/src/fields/select/select-field.tsx +1 -1
- package/src/fields/sortable-item.tsx +1 -1
- package/src/fields/text/text-field.tsx +1 -1
- package/src/fields/text-area/text-area-field.tsx +1 -1
- package/src/fields.ts +28 -0
- package/src/forms/document-actions.tsx +3 -3
- package/src/forms/form-renderer.tsx +1 -1
- package/src/forms/path-widget.test.tsx +1 -1
- package/src/forms/path-widget.tsx +1 -1
- package/src/forms.ts +10 -0
- package/src/hooks/use-focus-trap/index.ts +1 -0
- package/src/hooks/use-focus-trap/scope-tab.ts +48 -0
- package/src/hooks/use-focus-trap/tabbable.ts +72 -0
- package/src/hooks/use-focus-trap/use-focus-trap.ts +83 -0
- package/src/hooks/use-media-query.ts +20 -0
- package/src/icons/activity-icon.tsx +41 -0
- package/src/icons/ai-icon.tsx +45 -0
- package/src/icons/calendar-icon.tsx +37 -0
- package/src/icons/check-icon.tsx +30 -0
- package/src/icons/chevron-down-icon.tsx +37 -0
- package/src/icons/chevron-left-double-icon.tsx +59 -0
- package/src/icons/chevron-left-icon.tsx +59 -0
- package/src/icons/chevron-right-double-icon.tsx +59 -0
- package/src/icons/chevron-right-icon.tsx +59 -0
- package/src/icons/chevron-up-icon.tsx +37 -0
- package/src/icons/chevrons-up-down.tsx +38 -0
- package/src/icons/close-icon.tsx +33 -0
- package/src/icons/copy-icon.tsx +32 -0
- package/src/icons/danger-icon.tsx +19 -0
- package/src/icons/dashboard-icon.tsx +39 -0
- package/src/icons/delete-icon.tsx +32 -0
- package/src/icons/document-icon.tsx +36 -0
- package/src/icons/download-icon.tsx +37 -0
- package/src/icons/edit-icon.tsx +33 -0
- package/src/icons/ellipsis-icon.tsx +36 -0
- package/src/icons/email-icon.tsx +31 -0
- package/src/icons/external-link-icon.tsx +37 -0
- package/src/icons/eye-closed-icon.tsx +39 -0
- package/src/icons/eye-open-icon.tsx +31 -0
- package/src/icons/github-icon.tsx +28 -0
- package/src/icons/globe-icon.tsx +48 -0
- package/src/icons/google-icon.tsx +43 -0
- package/src/icons/gripper-vertical-icon.tsx +41 -0
- package/src/icons/history-icon.tsx +33 -0
- package/src/icons/home-icon.tsx +32 -0
- package/src/icons/icon-element.tsx +31 -0
- package/src/icons/icon-sprite.tsx +18 -0
- package/src/icons/icons.module.css +165 -0
- package/src/icons/index.ts +53 -0
- package/src/icons/info-icon.tsx +19 -0
- package/src/icons/infonomic-icon.tsx +172 -0
- package/src/icons/light-icon.tsx +27 -0
- package/src/icons/location-pin-icon.tsx +34 -0
- package/src/icons/moon-icon.tsx +40 -0
- package/src/icons/plus-icon.tsx +32 -0
- package/src/icons/primary-icon.tsx +22 -0
- package/src/icons/refresh-icon.tsx +31 -0
- package/src/icons/return-icon.tsx +34 -0
- package/src/icons/roles-icon.tsx +32 -0
- package/src/icons/search-icon.tsx +27 -0
- package/src/icons/search-menu-icon.tsx +40 -0
- package/src/icons/settings-gear-icon.tsx +34 -0
- package/src/icons/settings-sliders-icon.tsx +41 -0
- package/src/icons/sign-out-icon.tsx +33 -0
- package/src/icons/source/icon-calendar.svg +1 -0
- package/src/icons/source/icon-check.svg +4 -0
- package/src/icons/source/icon-close.svg +3 -0
- package/src/icons/source/icon-coinbase.svg +9 -0
- package/src/icons/source/icon-copy.svg +4 -0
- package/src/icons/source/icon-document.svg +5 -0
- package/src/icons/source/icon-download.svg +4 -0
- package/src/icons/source/icon-edit.svg +6 -0
- package/src/icons/source/icon-eth-purple.svg +15 -0
- package/src/icons/source/icon-etherscan.svg +5 -0
- package/src/icons/source/icon-external-link.svg +4 -0
- package/src/icons/source/icon-globe.svg +7 -0
- package/src/icons/source/icon-gripper-vertical.svg +9 -0
- package/src/icons/source/icon-info.svg +4 -0
- package/src/icons/source/icon-infonomic.svg +43 -0
- package/src/icons/source/icon-ledger.svg +4 -0
- package/src/icons/source/icon-light.svg +3 -0
- package/src/icons/source/icon-location-pin.svg +8 -0
- package/src/icons/source/icon-logout.svg +6 -0
- package/src/icons/source/icon-metamask.svg +32 -0
- package/src/icons/source/icon-moon.svg +3 -0
- package/src/icons/source/icon-plus.svg +4 -0
- package/src/icons/source/icon-refresh.svg +4 -0
- package/src/icons/source/icon-return.svg +4 -0
- package/src/icons/source/icon-search-menu.svg +13 -0
- package/src/icons/source/icon-search.svg +3 -0
- package/src/icons/source/icon-settings-gear.svg +5 -0
- package/src/icons/source/icon-settings.svg +12 -0
- package/src/icons/source/icon-wallet.svg +3 -0
- package/src/icons/source/icon-walletconnect.svg +4 -0
- package/src/icons/source/icon-x.svg +4 -0
- package/src/icons/stop-icon.tsx +33 -0
- package/src/icons/stopwatch-icon.tsx +37 -0
- package/src/icons/success-icon.tsx +19 -0
- package/src/icons/types/icon.ts +8 -0
- package/src/icons/user-icon.tsx +31 -0
- package/src/icons/users-icon.tsx +33 -0
- package/src/icons/wallet-icon.tsx +27 -0
- package/src/icons/warning-icon.tsx +19 -0
- package/src/icons/x-icon.tsx +31 -0
- package/src/lib/ripple.ts +95 -0
- package/src/loaders/@types/index.ts +6 -0
- package/src/loaders/ellipses.module.css +79 -0
- package/src/loaders/ellipses.tsx +43 -0
- package/src/loaders/ring.module.css +55 -0
- package/src/loaders/ring.tsx +45 -0
- package/src/loaders/spinner.module.css +106 -0
- package/src/loaders/spinner.tsx +52 -0
- package/src/react.ts +11 -73
- package/src/services.ts +18 -0
- package/src/styles/base/animations.css +141 -0
- package/src/styles/base/base.css +11 -0
- package/src/styles/base/borders.css +30 -0
- package/src/styles/base/breakpoints.css +15 -0
- package/src/styles/base/colors.css +163 -0
- package/src/styles/base/opacity.css +12 -0
- package/src/styles/base/shadows.css +13 -0
- package/src/styles/base/size.css +24 -0
- package/src/styles/base/spacing.css +24 -0
- package/src/styles/base/transitions.css +7 -0
- package/src/styles/base/typography.css +46 -0
- package/src/styles/base/z-index.css +12 -0
- package/src/styles/components/components.css +4 -0
- package/src/styles/components/fade-in-lift.css +15 -0
- package/src/styles/components/hamburger.css +122 -0
- package/src/styles/components/loaders.css +198 -0
- package/src/styles/functional/README.md +67 -0
- package/src/styles/functional/borders.css +42 -0
- package/src/styles/functional/colors.css +1279 -0
- package/src/styles/functional/functional.css +6 -0
- package/src/styles/functional/grid-flex.css +52 -0
- package/src/styles/functional/shadcn-compat.css +90 -0
- package/src/styles/functional/surfaces.css +132 -0
- package/src/styles/functional/typography.css +54 -0
- package/src/styles/local-fonts.css +98 -0
- package/src/styles/reset.css +466 -0
- package/src/styles/styles.css +12 -0
- package/src/styles/theme/autofill.css +67 -0
- package/src/styles/theme/defaults.css +75 -0
- package/src/styles/theme/scrollers.css +54 -0
- package/src/styles/theme/theme.css +17 -0
- package/src/styles/typography/fonts.css +33 -0
- package/src/styles/typography/prose.css +414 -0
- package/src/styles/typography.css +24 -0
- package/src/styles/utils/scroll-layout-shift.css +9 -0
- package/src/styles/utils/utility-classes.css +1395 -0
- package/src/styles/utils/utils.css +2 -0
- package/src/uikit.ts +116 -0
- package/src/utils/capitalize.ts +6 -0
- package/src/utils/externalLinkProps.ts +6 -0
- package/src/utils/findMatch.ts +7 -0
- package/src/utils/getPortalRoot.ts +3 -0
- package/src/utils/isTouchDevice.ts +11 -0
- package/src/utils/objectsToArray.ts +13 -0
- package/src/utils/objectsToString.ts +5 -0
- package/src/utils/polymorphic.ts +16 -0
- package/src/utils/to-kebab-case.ts +5 -0
- package/src/widgets/datepicker/datepicker.module.css +207 -0
- package/src/widgets/datepicker/datepicker.tsx +355 -0
- package/src/widgets/drawer/drawer-container.tsx +31 -0
- package/src/widgets/drawer/drawer-content.tsx +31 -0
- package/src/widgets/drawer/drawer-context.tsx +47 -0
- package/src/widgets/drawer/drawer-header.tsx +28 -0
- package/src/widgets/drawer/drawer-top-actions.tsx +28 -0
- package/src/widgets/drawer/drawer.module.css +141 -0
- package/src/widgets/drawer/drawer.tsx +98 -0
- package/src/widgets/drawer/motionDomAnimation.ts +5 -0
- package/src/widgets/drawer/motionDomMax.ts +5 -0
- package/src/widgets/modal/modal-actions.tsx +31 -0
- package/src/widgets/modal/modal-container.tsx +31 -0
- package/src/widgets/modal/modal-content.tsx +31 -0
- package/src/widgets/modal/modal-header.tsx +28 -0
- package/src/widgets/modal/modal.module.css +127 -0
- package/src/widgets/modal/modal.tsx +88 -0
- package/src/widgets/modal/motionDomAnimation.ts +5 -0
- package/src/widgets/modal/motionDomMax.ts +5 -0
- package/src/widgets/search/index.ts +1 -0
- package/src/widgets/search/search.tsx +187 -0
- package/src/widgets/timeline/timeline.module.css +102 -0
- package/src/widgets/timeline/timeline.tsx +177 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const CalendarIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('calendar-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
className={applied}
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
focusable="false"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
viewBox="0 0 15 15"
|
|
24
|
+
strokeWidth="0"
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M4.5 1C4.77614 1 5 1.22386 5 1.5V2H10V1.5C10 1.22386 10.2239 1 10.5 1C10.7761 1 11 1.22386 11 1.5V2H12.5C13.3284 2 14 2.67157 14 3.5V12.5C14 13.3284 13.3284 14 12.5 14H2.5C1.67157 14 1 13.3284 1 12.5V3.5C1 2.67157 1.67157 2 2.5 2H4V1.5C4 1.22386 4.22386 1 4.5 1ZM10 3V3.5C10 3.77614 10.2239 4 10.5 4C10.7761 4 11 3.77614 11 3.5V3H12.5C12.7761 3 13 3.22386 13 3.5V5H2V3.5C2 3.22386 2.22386 3 2.5 3H4V3.5C4 3.77614 4.22386 4 4.5 4C4.77614 4 5 3.77614 5 3.5V3H10ZM2 6V12.5C2 12.7761 2.22386 13 2.5 13H12.5C12.7761 13 13 12.7761 13 12.5V6H2ZM7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5ZM9.5 7C9.22386 7 9 7.22386 9 7.5C9 7.77614 9.22386 8 9.5 8C9.77614 8 10 7.77614 10 7.5C10 7.22386 9.77614 7 9.5 7ZM11 7.5C11 7.22386 11.2239 7 11.5 7C11.7761 7 12 7.22386 12 7.5C12 7.77614 11.7761 8 11.5 8C11.2239 8 11 7.77614 11 7.5ZM11.5 9C11.2239 9 11 9.22386 11 9.5C11 9.77614 11.2239 10 11.5 10C11.7761 10 12 9.77614 12 9.5C12 9.22386 11.7761 9 11.5 9ZM9 9.5C9 9.22386 9.22386 9 9.5 9C9.77614 9 10 9.22386 10 9.5C10 9.77614 9.77614 10 9.5 10C9.22386 10 9 9.77614 9 9.5ZM7.5 9C7.22386 9 7 9.22386 7 9.5C7 9.77614 7.22386 10 7.5 10C7.77614 10 8 9.77614 8 9.5C8 9.22386 7.77614 9 7.5 9ZM5 9.5C5 9.22386 5.22386 9 5.5 9C5.77614 9 6 9.22386 6 9.5C6 9.77614 5.77614 10 5.5 10C5.22386 10 5 9.77614 5 9.5ZM3.5 9C3.22386 9 3 9.22386 3 9.5C3 9.77614 3.22386 10 3.5 10C3.77614 10 4 9.77614 4 9.5C4 9.22386 3.77614 9 3.5 9ZM3 11.5C3 11.2239 3.22386 11 3.5 11C3.77614 11 4 11.2239 4 11.5C4 11.7761 3.77614 12 3.5 12C3.22386 12 3 11.7761 3 11.5ZM5.5 11C5.22386 11 5 11.2239 5 11.5C5 11.7761 5.22386 12 5.5 12C5.77614 12 6 11.7761 6 11.5C6 11.2239 5.77614 11 5.5 11ZM7 11.5C7 11.2239 7.22386 11 7.5 11C7.77614 11 8 11.2239 8 11.5C8 11.7761 7.77614 12 7.5 12C7.22386 12 7 11.7761 7 11.5ZM9.5 11C9.22386 11 9 11.2239 9 11.5C9 11.7761 9.22386 12 9.5 12C9.77614 12 10 11.7761 10 11.5C10 11.2239 9.77614 11 9.5 11Z"
|
|
28
|
+
// fill="currentColor"
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
</IconElement>
|
|
34
|
+
)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
CalendarIcon.displayName = 'Calendar'
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const CheckIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
|
|
10
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
11
|
+
return (
|
|
12
|
+
<IconElement className={cx('check-icon', className)} {...rest}>
|
|
13
|
+
<svg
|
|
14
|
+
className={applied}
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
focusable="false"
|
|
17
|
+
aria-hidden="true"
|
|
18
|
+
viewBox="0 0 15 15"
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
d="M11.4669 3.72684C11.7558 3.91574 11.8369 4.30308 11.648 4.59198L7.39799 11.092C7.29783 11.2452 7.13556 11.3467 6.95402 11.3699C6.77247 11.3931 6.58989 11.3355 6.45446 11.2124L3.70446 8.71241C3.44905 8.48022 3.43023 8.08494 3.66242 7.82953C3.89461 7.57412 4.28989 7.55529 4.5453 7.78749L6.75292 9.79441L10.6018 3.90792C10.7907 3.61902 11.178 3.53795 11.4669 3.72684Z"
|
|
22
|
+
fillRule="evenodd"
|
|
23
|
+
clipRule="evenodd"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
</IconElement>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
CheckIcon.displayName = 'CheckIcon'
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const ChevronDownIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('chevron-down-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
className={applied}
|
|
21
|
+
role="presentation"
|
|
22
|
+
focusable="false"
|
|
23
|
+
aria-hidden="true"
|
|
24
|
+
viewBox="0 0 15 15"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M3.13523 6.15803C3.3241 5.95657 3.64052 5.94637 3.84197 6.13523L7.5 9.56464L11.158 6.13523C11.3595 5.94637 11.6759 5.95657 11.8648 6.15803C12.0536 6.35949 12.0434 6.67591 11.842 6.86477L7.84197 10.6148C7.64964 10.7951 7.35036 10.7951 7.15803 10.6148L3.15803 6.86477C2.95657 6.67591 2.94637 6.35949 3.13523 6.15803Z"
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
></path>
|
|
32
|
+
</svg>
|
|
33
|
+
</IconElement>
|
|
34
|
+
)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
ChevronDownIcon.displayName = 'ChevronDownIcon'
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Byline CMS
|
|
3
|
+
*
|
|
4
|
+
* Copyright © 2025 Anthony Bouch and contributors.
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Byline CMS.
|
|
7
|
+
*
|
|
8
|
+
* This program is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as
|
|
10
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
* License, or (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import type React from 'react'
|
|
23
|
+
|
|
24
|
+
import cx from 'classnames'
|
|
25
|
+
|
|
26
|
+
import { IconElement } from './icon-element.jsx'
|
|
27
|
+
import styles from './icons.module.css'
|
|
28
|
+
import type { IconProps } from './types/icon.js'
|
|
29
|
+
|
|
30
|
+
export const ChevronLeftDoubleIcon = ({
|
|
31
|
+
className,
|
|
32
|
+
svgClassName,
|
|
33
|
+
...rest
|
|
34
|
+
}: IconProps): React.JSX.Element => {
|
|
35
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<IconElement className={cx('chevron-left-double-icon', className)} {...rest}>
|
|
39
|
+
<svg
|
|
40
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
41
|
+
className={applied}
|
|
42
|
+
role="presentation"
|
|
43
|
+
focusable="false"
|
|
44
|
+
aria-hidden="true"
|
|
45
|
+
viewBox="0 0 15 15"
|
|
46
|
+
strokeWidth={1}
|
|
47
|
+
>
|
|
48
|
+
<path
|
|
49
|
+
d="M6.85355 3.85355C7.04882 3.65829 7.04882 3.34171 6.85355 3.14645C6.65829 2.95118 6.34171 2.95118 6.14645 3.14645L2.14645 7.14645C1.95118 7.34171 1.95118 7.65829 2.14645 7.85355L6.14645 11.8536C6.34171 12.0488 6.65829 12.0488 6.85355 11.8536C7.04882 11.6583 7.04882 11.3417 6.85355 11.1464L3.20711 7.5L6.85355 3.85355ZM12.8536 3.85355C13.0488 3.65829 13.0488 3.34171 12.8536 3.14645C12.6583 2.95118 12.3417 2.95118 12.1464 3.14645L8.14645 7.14645C7.95118 7.34171 7.95118 7.65829 8.14645 7.85355L12.1464 11.8536C12.3417 12.0488 12.6583 12.0488 12.8536 11.8536C13.0488 11.6583 13.0488 11.3417 12.8536 11.1464L9.20711 7.5L12.8536 3.85355Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
fillRule="evenodd"
|
|
52
|
+
clipRule="evenodd"
|
|
53
|
+
></path>
|
|
54
|
+
</svg>
|
|
55
|
+
</IconElement>
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
ChevronLeftDoubleIcon.displayName = 'ChevronLeftDoubleIcon'
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Byline CMS
|
|
3
|
+
*
|
|
4
|
+
* Copyright © 2025 Anthony Bouch and contributors.
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Byline CMS.
|
|
7
|
+
*
|
|
8
|
+
* This program is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as
|
|
10
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
* License, or (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import type React from 'react'
|
|
23
|
+
|
|
24
|
+
import cx from 'classnames'
|
|
25
|
+
|
|
26
|
+
import { IconElement } from './icon-element.jsx'
|
|
27
|
+
import styles from './icons.module.css'
|
|
28
|
+
import type { IconProps } from './types/icon.js'
|
|
29
|
+
|
|
30
|
+
export const ChevronLeftIcon = ({
|
|
31
|
+
className,
|
|
32
|
+
svgClassName,
|
|
33
|
+
...rest
|
|
34
|
+
}: IconProps): React.JSX.Element => {
|
|
35
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<IconElement className={cx('chevron-left-icon', className)} {...rest}>
|
|
39
|
+
<svg
|
|
40
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
41
|
+
className={applied}
|
|
42
|
+
role="presentation"
|
|
43
|
+
focusable="false"
|
|
44
|
+
aria-hidden="true"
|
|
45
|
+
viewBox="0 0 15 15"
|
|
46
|
+
strokeWidth={1}
|
|
47
|
+
>
|
|
48
|
+
<path
|
|
49
|
+
d="M8.84182 3.13514C9.04327 3.32401 9.05348 3.64042 8.86462 3.84188L5.43521 7.49991L8.86462 11.1579C9.05348 11.3594 9.04327 11.6758 8.84182 11.8647C8.64036 12.0535 8.32394 12.0433 8.13508 11.8419L4.38508 7.84188C4.20477 7.64955 4.20477 7.35027 4.38508 7.15794L8.13508 3.15794C8.32394 2.95648 8.64036 2.94628 8.84182 3.13514Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
fillRule="evenodd"
|
|
52
|
+
clipRule="evenodd"
|
|
53
|
+
></path>
|
|
54
|
+
</svg>
|
|
55
|
+
</IconElement>
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
ChevronLeftIcon.displayName = 'ChevronLeftIcon'
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Byline CMS
|
|
3
|
+
*
|
|
4
|
+
* Copyright © 2025 Anthony Bouch and contributors.
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Byline CMS.
|
|
7
|
+
*
|
|
8
|
+
* This program is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as
|
|
10
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
* License, or (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import type React from 'react'
|
|
23
|
+
|
|
24
|
+
import cx from 'classnames'
|
|
25
|
+
|
|
26
|
+
import { IconElement } from './icon-element.jsx'
|
|
27
|
+
import styles from './icons.module.css'
|
|
28
|
+
import type { IconProps } from './types/icon.js'
|
|
29
|
+
|
|
30
|
+
export const ChevronRightDoubleIcon = ({
|
|
31
|
+
className,
|
|
32
|
+
svgClassName,
|
|
33
|
+
...rest
|
|
34
|
+
}: IconProps): React.JSX.Element => {
|
|
35
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<IconElement className={cx('chevron-right-double-icon', className)} {...rest}>
|
|
39
|
+
<svg
|
|
40
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
41
|
+
className={applied}
|
|
42
|
+
role="presentation"
|
|
43
|
+
focusable="false"
|
|
44
|
+
aria-hidden="true"
|
|
45
|
+
viewBox="0 0 15 15"
|
|
46
|
+
strokeWidth={1}
|
|
47
|
+
>
|
|
48
|
+
<path
|
|
49
|
+
d="M2.14645 11.1464C1.95118 11.3417 1.95118 11.6583 2.14645 11.8536C2.34171 12.0488 2.65829 12.0488 2.85355 11.8536L6.85355 7.85355C7.04882 7.65829 7.04882 7.34171 6.85355 7.14645L2.85355 3.14645C2.65829 2.95118 2.34171 2.95118 2.14645 3.14645C1.95118 3.34171 1.95118 3.65829 2.14645 3.85355L5.79289 7.5L2.14645 11.1464ZM8.14645 11.1464C7.95118 11.3417 7.95118 11.6583 8.14645 11.8536C8.34171 12.0488 8.65829 12.0488 8.85355 11.8536L12.8536 7.85355C13.0488 7.65829 13.0488 7.34171 12.8536 7.14645L8.85355 3.14645C8.65829 2.95118 8.34171 2.95118 8.14645 3.14645C7.95118 3.34171 7.95118 3.65829 8.14645 3.85355L11.7929 7.5L8.14645 11.1464Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
fillRule="evenodd"
|
|
52
|
+
clipRule="evenodd"
|
|
53
|
+
></path>
|
|
54
|
+
</svg>
|
|
55
|
+
</IconElement>
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
ChevronRightDoubleIcon.displayName = 'ChevronRightDoubleIcon'
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Byline CMS
|
|
3
|
+
*
|
|
4
|
+
* Copyright © 2025 Anthony Bouch and contributors.
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Byline CMS.
|
|
7
|
+
*
|
|
8
|
+
* This program is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU Affero General Public License as
|
|
10
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
* License, or (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU Affero General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import type React from 'react'
|
|
23
|
+
|
|
24
|
+
import cx from 'classnames'
|
|
25
|
+
|
|
26
|
+
import { IconElement } from './icon-element.jsx'
|
|
27
|
+
import styles from './icons.module.css'
|
|
28
|
+
import type { IconProps } from './types/icon.js'
|
|
29
|
+
|
|
30
|
+
export const ChevronRightIcon = ({
|
|
31
|
+
className,
|
|
32
|
+
svgClassName,
|
|
33
|
+
...rest
|
|
34
|
+
}: IconProps): React.JSX.Element => {
|
|
35
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<IconElement className={cx('chevron-right-icon', className)} {...rest}>
|
|
39
|
+
<svg
|
|
40
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
41
|
+
className={applied}
|
|
42
|
+
role="presentation"
|
|
43
|
+
focusable="false"
|
|
44
|
+
aria-hidden="true"
|
|
45
|
+
viewBox="0 0 15 15"
|
|
46
|
+
strokeWidth={1}
|
|
47
|
+
>
|
|
48
|
+
<path
|
|
49
|
+
d="M6.1584 3.13508C6.35985 2.94621 6.67627 2.95642 6.86514 3.15788L10.6151 7.15788C10.7954 7.3502 10.7954 7.64949 10.6151 7.84182L6.86514 11.8418C6.67627 12.0433 6.35985 12.0535 6.1584 11.8646C5.95694 11.6757 5.94673 11.3593 6.1356 11.1579L9.565 7.49985L6.1356 3.84182C5.94673 3.64036 5.95694 3.32394 6.1584 3.13508Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
fillRule="evenodd"
|
|
52
|
+
clipRule="evenodd"
|
|
53
|
+
></path>
|
|
54
|
+
</svg>
|
|
55
|
+
</IconElement>
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
ChevronRightIcon.displayName = 'ChevronRightIcon'
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const ChevronUpIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('chevron-up-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
className={applied}
|
|
21
|
+
role="presentation"
|
|
22
|
+
focusable="false"
|
|
23
|
+
aria-hidden="true"
|
|
24
|
+
viewBox="0 0 15 15"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M3.13523 8.84197C3.3241 9.04343 3.64052 9.05363 3.84197 8.86477L7.5 5.43536L11.158 8.86477C11.3595 9.05363 11.6759 9.04343 11.8648 8.84197C12.0536 8.64051 12.0434 8.32409 11.842 8.13523L7.84197 4.38523C7.64964 4.20492 7.35036 4.20492 7.15803 4.38523L3.15803 8.13523C2.95657 8.32409 2.94637 8.64051 3.13523 8.84197Z"
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
></path>
|
|
32
|
+
</svg>
|
|
33
|
+
</IconElement>
|
|
34
|
+
)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
ChevronUpIcon.displayName = 'ChevronUpIcon'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.jsx'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const ChevronsUpDown = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['stroke-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('chevrons-up-down', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
className={applied}
|
|
21
|
+
role="presentation"
|
|
22
|
+
focusable="false"
|
|
23
|
+
aria-hidden="true"
|
|
24
|
+
viewBox="0 0 24 24"
|
|
25
|
+
fill="none"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
>
|
|
31
|
+
<path d="m7 15 5 5 5-5" />
|
|
32
|
+
<path d="m7 9 5-5 5 5" />
|
|
33
|
+
</svg>
|
|
34
|
+
</IconElement>
|
|
35
|
+
)
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
ChevronsUpDown.displayName = 'ChevronsUpDown'
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const CloseIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
|
|
10
|
+
const applied = cx(styles['stroke-current'], svgClassName)
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<IconElement className={cx('close-icon', className)} {...rest}>
|
|
14
|
+
<svg
|
|
15
|
+
className={applied}
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
focusable="false"
|
|
18
|
+
aria-hidden="true"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
fill="none"
|
|
21
|
+
strokeWidth="2"
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
>
|
|
25
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
26
|
+
<path d="M18 6l-12 12" />
|
|
27
|
+
<path d="M6 6l12 12" />
|
|
28
|
+
</svg>
|
|
29
|
+
</IconElement>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
CloseIcon.displayName = 'CloseIcon'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const CopyIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
|
|
10
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<IconElement className={cx('copy-icon', className)} {...rest}>
|
|
14
|
+
<svg
|
|
15
|
+
className={applied}
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
focusable="false"
|
|
18
|
+
aria-hidden="true"
|
|
19
|
+
viewBox="0 0 15 15"
|
|
20
|
+
strokeWidth="0"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M1 9.50006C1 10.3285 1.67157 11.0001 2.5 11.0001H4L4 10.0001H2.5C2.22386 10.0001 2 9.7762 2 9.50006L2 2.50006C2 2.22392 2.22386 2.00006 2.5 2.00006L9.5 2.00006C9.77614 2.00006 10 2.22392 10 2.50006V4.00002H5.5C4.67158 4.00002 4 4.67159 4 5.50002V12.5C4 13.3284 4.67158 14 5.5 14H12.5C13.3284 14 14 13.3284 14 12.5V5.50002C14 4.67159 13.3284 4.00002 12.5 4.00002H11V2.50006C11 1.67163 10.3284 1.00006 9.5 1.00006H2.5C1.67157 1.00006 1 1.67163 1 2.50006V9.50006ZM5 5.50002C5 5.22388 5.22386 5.00002 5.5 5.00002H12.5C12.7761 5.00002 13 5.22388 13 5.50002V12.5C13 12.7762 12.7761 13 12.5 13H5.5C5.22386 13 5 12.7762 5 12.5V5.50002Z"
|
|
24
|
+
fillRule="evenodd"
|
|
25
|
+
clipRule="evenodd"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
</IconElement>
|
|
29
|
+
)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
CopyIcon.displayName = 'CopyIcon'
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const DangerIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
|
|
10
|
+
const applied = cx(styles['fill-danger'], svgClassName)
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<IconElement className={cx('danger-icon', className)} {...rest}>
|
|
14
|
+
<svg className={applied} focusable="false" aria-hidden="true" viewBox="0 0 24 24">
|
|
15
|
+
<path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" />
|
|
16
|
+
</svg>
|
|
17
|
+
</IconElement>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.jsx'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const DashboardIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('dashboard-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
className={applied}
|
|
21
|
+
focusable="false"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
>
|
|
29
|
+
{' '}
|
|
30
|
+
<path d="M5 4h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1"></path>{' '}
|
|
31
|
+
<path d="M5 16h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1"></path>{' '}
|
|
32
|
+
<path d="M15 12h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1"></path>{' '}
|
|
33
|
+
<path d="M15 4h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1"></path>{' '}
|
|
34
|
+
</svg>
|
|
35
|
+
</IconElement>
|
|
36
|
+
)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
DashboardIcon.displayName = 'DashboardIcon'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const DeleteIcon = ({ className, svgClassName, ...rest }: IconProps): React.JSX.Element => {
|
|
10
|
+
const applied = cx(styles['fill-none'], styles['stroke-danger'], svgClassName)
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<IconElement className={cx('delete-icon', className)} {...rest}>
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={applied}
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
focusable="false"
|
|
21
|
+
aria-hidden="true"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
>
|
|
24
|
+
<path d="M4 7l16 0"></path> <path d="M10 11l0 6"></path> <path d="M14 11l0 6"></path>
|
|
25
|
+
<path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"></path>
|
|
26
|
+
<path d="M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"></path>
|
|
27
|
+
</svg>
|
|
28
|
+
</IconElement>
|
|
29
|
+
)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
DeleteIcon.displayName = 'DeleteIcon'
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const DocumentIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-none'], styles['stroke-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('document-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
className={applied}
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
focusable="false"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
strokeWidth="1.5"
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
>
|
|
28
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
29
|
+
<path d="M14 3v4a1 1 0 0 0 1 1h4" />
|
|
30
|
+
<path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" />
|
|
31
|
+
</svg>
|
|
32
|
+
</IconElement>
|
|
33
|
+
)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
DocumentIcon.displayName = 'DocumentIcon'
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type React from 'react'
|
|
2
|
+
|
|
3
|
+
import cx from 'classnames'
|
|
4
|
+
|
|
5
|
+
import { IconElement } from './icon-element.js'
|
|
6
|
+
import styles from './icons.module.css'
|
|
7
|
+
import type { IconProps } from './types/icon.js'
|
|
8
|
+
|
|
9
|
+
export const DownloadIcon = ({
|
|
10
|
+
className,
|
|
11
|
+
svgClassName,
|
|
12
|
+
...rest
|
|
13
|
+
}: IconProps): React.JSX.Element => {
|
|
14
|
+
const applied = cx(styles['fill-current'], svgClassName)
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<IconElement className={cx('download-icon', className)} {...rest}>
|
|
18
|
+
<svg
|
|
19
|
+
className={applied}
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
focusable="false"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
viewBox="0 0 15 15"
|
|
24
|
+
strokeWidth="0"
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M7.50005 1.04999C7.74858 1.04999 7.95005 1.25146 7.95005 1.49999V8.41359L10.1819 6.18179C10.3576 6.00605 10.6425 6.00605 10.8182 6.18179C10.994 6.35753 10.994 6.64245 10.8182 6.81819L7.81825 9.81819C7.64251 9.99392 7.35759 9.99392 7.18185 9.81819L4.18185 6.81819C4.00611 6.64245 4.00611 6.35753 4.18185 6.18179C4.35759 6.00605 4.64251 6.00605 4.81825 6.18179L7.05005 8.41359V1.49999C7.05005 1.25146 7.25152 1.04999 7.50005 1.04999ZM2.5 10C2.77614 10 3 10.2239 3 10.5V12C3 12.5539 3.44565 13 3.99635 13H11.0012C11.5529 13 12 12.5528 12 12V10.5C12 10.2239 12.2239 10 12.5 10C12.7761 10 13 10.2239 13 10.5V12C13 13.1041 12.1062 14 11.0012 14H3.99635C2.89019 14 2 13.103 2 12V10.5C2 10.2239 2.22386 10 2.5 10Z"
|
|
28
|
+
fill="currentColor"
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
></path>
|
|
32
|
+
</svg>
|
|
33
|
+
</IconElement>
|
|
34
|
+
)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
DownloadIcon.displayName = 'DownloadIcon'
|