@fibery/ui-kit 2.1.1 → 3.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/CHANGELOG.md +16 -0
- package/esfint.config.mjs +17 -0
- package/package.json +12 -11
- package/scripts/generate-icons.mjs +12 -9
- package/src/a11y-color.ts +3 -1
- package/src/action-badge.tsx +8 -5
- package/src/actions-menu/actions-menu-checkbox-item.tsx +5 -3
- package/src/actions-menu/actions-menu-confirmation.tsx +1 -0
- package/src/actions-menu/actions-menu-item.tsx +9 -8
- package/src/actions-menu/actions-menu-props.tsx +4 -3
- package/src/actions-menu/actions-menu-separator.tsx +1 -1
- package/src/actions-menu/actions-menu-sub-command-menu.tsx +5 -4
- package/src/actions-menu/actions-menu-sub-menu.tsx +5 -5
- package/src/actions-menu/actions-menu.tsx +16 -17
- package/src/actions-menu/async-actions-menu-item.tsx +3 -1
- package/src/actions-menu/context-actions-menu.tsx +9 -7
- package/src/actions-menu/contexts/actions-menu-context.tsx +2 -1
- package/src/actions-menu/contexts/actions-menu-dangerous-rows.tsx +2 -1
- package/src/actions-menu/index.tsx +1 -1
- package/src/actions-panel.tsx +3 -1
- package/src/ai/max-tokens.tsx +2 -1
- package/src/ai/model.tsx +4 -3
- package/src/ai/temperature.tsx +4 -3
- package/src/animated-height-container.tsx +5 -3
- package/src/animated-number.tsx +2 -1
- package/src/animations.tsx +2 -1
- package/src/antd/ant-modal.tsx +4 -3
- package/src/antd/ant-upload.tsx +5 -3
- package/src/antd/auto-complete.ts +37 -0
- package/src/antd/auto-width-transparent-textarea.tsx +4 -3
- package/src/antd/index.tsx +2 -1
- package/src/antd/input-number.tsx +4 -3
- package/src/antd/input.tsx +5 -4
- package/src/antd/styles.ts +1 -0
- package/src/antd/tabs.d.ts +5 -0
- package/src/antd/tabs.tsx +62 -0
- package/src/antd/utils.tsx +2 -1
- package/src/apca.lc-low.test.ts +69 -0
- package/src/apca.test.ts +186 -0
- package/src/apca.ts +130 -0
- package/src/app-icon-with-fallback.tsx +9 -18
- package/src/app-icon-wrapper.tsx +4 -2
- package/src/app-icon.tsx +6 -20
- package/src/app-icons.json +13096 -0
- package/src/app-mode.tsx +1 -0
- package/src/avatar.tsx +18 -8
- package/src/axis-header.tsx +6 -4
- package/src/badge.tsx +5 -3
- package/src/banner/banner-action.tsx +3 -1
- package/src/banner/banner-context.tsx +2 -1
- package/src/banner/banner.tsx +23 -17
- package/src/beta-badge.tsx +4 -4
- package/src/board-table-loader.tsx +3 -2
- package/src/box.tsx +14 -7
- package/src/breadcrumb.tsx +5 -3
- package/src/breakpoints.tsx +2 -1
- package/src/button/actions-button-compact.tsx +5 -3
- package/src/button/actions-button.tsx +4 -2
- package/src/button/add-button.tsx +4 -2
- package/src/button/back-button.tsx +4 -2
- package/src/button/base-button.tsx +4 -2
- package/src/button/button-group.tsx +1 -0
- package/src/button/button.tsx +15 -13
- package/src/button/icon-button.tsx +5 -3
- package/src/button/make-button-colors.ts +10 -9
- package/src/button/select-button.tsx +4 -2
- package/src/canvas-colors.ts +15 -14
- package/src/card-container.tsx +3 -2
- package/src/card-hidden-link.tsx +1 -1
- package/src/checkbox-multi-select.tsx +6 -5
- package/src/checkbox.tsx +61 -17
- package/src/collapsible-section.tsx +6 -4
- package/src/color-adjuster.ts +105 -0
- package/src/color-filter.test.ts +2 -49
- package/src/color-filter.ts +42 -66
- package/src/color-inspect.ts +76 -0
- package/src/color-picker/color-picker-or-loader.tsx +24 -0
- package/src/color-picker/index.tsx +97 -17
- package/src/color-picker/slider-pointer.tsx +16 -0
- package/src/color-picker/swatch.tsx +8 -5
- package/src/color-utils.test.ts +6 -274
- package/src/color-utils.ts +17 -139
- package/src/command-menu/index.tsx +4 -2
- package/src/command-menu/nested-command-menu.tsx +9 -7
- package/src/comment.tsx +11 -3
- package/src/context-menu/index.tsx +1 -0
- package/src/count-badge.tsx +3 -2
- package/src/country-selector.tsx +2 -1
- package/src/date-picker/autocomplete.tsx +2 -1
- package/src/date-picker/contexts.ts +1 -1
- package/src/date-picker/date-range-input.tsx +8 -6
- package/src/date-picker/date-range-picker-popup-content.tsx +27 -23
- package/src/date-picker/date-range-picker.tsx +11 -10
- package/src/date-picker/day-with-start-end-buttons.tsx +5 -2
- package/src/date-picker/fake-date-input.tsx +4 -3
- package/src/date-picker/relative-date-picker.tsx +19 -15
- package/src/date-picker/single-date-input.tsx +7 -5
- package/src/date-picker/single-date-picker-popup-content.tsx +6 -5
- package/src/date-picker/single-date-picker.tsx +19 -16
- package/src/date-picker/styles.ts +1 -0
- package/src/date-picker/types.ts +5 -4
- package/src/date-picker/utils.ts +3 -2
- package/src/date-picker/with-popup-control.tsx +2 -1
- package/src/day-select/day-select.tsx +1 -0
- package/src/day-select/iso-week-day-select.tsx +3 -1
- package/src/day-select/mount-day-select.tsx +2 -1
- package/src/day-select/week-day-select.tsx +4 -2
- package/src/delayed.tsx +2 -1
- package/src/design-system/alpha.ts +7 -4
- package/src/design-system/animation.ts +13 -10
- package/src/design-system/colors-callout.neutral-dark.test.ts +78 -0
- package/src/design-system/colors-callout.neutral-light.test.ts +78 -0
- package/src/design-system/colors-callout.warm-dark.test.ts +78 -0
- package/src/design-system/colors-callout.warm-light.test.ts +78 -0
- package/src/design-system/colors-css.ts +6 -2
- package/src/design-system/colors-enum._.template +22 -0
- package/src/design-system/colors-enum.dark.neutral.test.ts +367 -0
- package/src/design-system/colors-enum.dark.warm.test.ts +367 -0
- package/src/design-system/colors-enum.light.neutral.test.ts +367 -0
- package/src/design-system/colors-enum.light.warm.test.ts +367 -0
- package/src/design-system/colors-highlight.neutral-dark.test.ts +78 -0
- package/src/design-system/colors-highlight.neutral-light.test.ts +78 -0
- package/src/design-system/colors-highlight.warm-dark.test.ts +78 -0
- package/src/design-system/colors-highlight.warm-light.test.ts +78 -0
- package/src/design-system/colors-js.test.ts +25 -169
- package/src/design-system/colors-js.ts +16 -24
- package/src/design-system/colors-swatches.ts +43 -0
- package/src/design-system/colors.test.ts +1 -22
- package/src/design-system/colors.ts +56 -134
- package/src/design-system/def.ts +21 -13
- package/src/design-system/fns.adaptive.test.ts +149 -0
- package/src/design-system/fns.badge.dark.neutral.test.ts +152 -0
- package/src/design-system/fns.badge.dark.warm.test.ts +152 -0
- package/src/design-system/fns.badge.light.neutral.test.ts +152 -0
- package/src/design-system/fns.badge.light.warm.test.ts +152 -0
- package/src/design-system/fns.enum.green-on-turquoise.test.ts +34 -0
- package/src/design-system/fns.enum.ts +79 -0
- package/src/design-system/fns.icon.dark.neutral.test.ts +124 -0
- package/src/design-system/fns.icon.dark.warm.test.ts +124 -0
- package/src/design-system/fns.icon.light.neutral.test.ts +124 -0
- package/src/design-system/fns.icon.light.warm.test.ts +124 -0
- package/src/design-system/fns.icon.ts +136 -0
- package/src/design-system/fns.ts +109 -0
- package/src/design-system/theme.test.ts +6 -5
- package/src/design-system/theme.ts +11 -13
- package/src/design-system/types.ts +20 -4
- package/src/design-system/typography.ts +196 -40
- package/src/design-system/vars.test.ts +10 -15
- package/src/design-system/vars.ts +42 -23
- package/src/design-system.ts +16 -3
- package/src/dnd.tsx +3 -2
- package/src/dot.tsx +4 -2
- package/src/double-apply.ts +19 -0
- package/src/dropdown-menu/index.tsx +1 -0
- package/src/emoji-picker/app-icon-picker.tsx +6 -4
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +6 -4
- package/src/emoji-picker/emoji-picker-preview-footer.tsx +5 -4
- package/src/emoji-picker/emoji-picker.tsx +3 -2
- package/src/emoji-picker/emoji.tsx +4 -2
- package/src/emoji-picker/icon-emoji-picker.tsx +8 -5
- package/src/emoji-picker/primitives/category-label.tsx +4 -5
- package/src/emoji-picker/primitives/content.tsx +4 -2
- package/src/emoji-picker/primitives/emoji.tsx +4 -3
- package/src/emoji-picker/primitives/footer.tsx +1 -0
- package/src/emoji-picker/primitives/grid-item.tsx +1 -0
- package/src/emoji-picker/primitives/grid.tsx +11 -8
- package/src/emoji-picker/primitives/header.tsx +1 -0
- package/src/emoji-picker/primitives/preview-provider.tsx +2 -2
- package/src/emoji-picker/primitives/root.tsx +6 -5
- package/src/emoji-picker/primitives/search-provider.tsx +1 -1
- package/src/emoji-picker/primitives/search.tsx +7 -7
- package/src/emoji-picker/primitives/skin-provider.tsx +3 -2
- package/src/emoji-picker/primitives/skin-tone.tsx +5 -5
- package/src/emoji-picker/stores/emoji-data-store.tsx +2 -1
- package/src/emoji-picker/stores/lazy-icon-data-store.tsx +5 -3
- package/src/emoji-picker/stores/static-emoji-data-store.tsx +3 -1
- package/src/emoji-picker/use-emoji-found.tsx +2 -1
- package/src/emoji-picker/use-responsive-emoji-size.ts +2 -1
- package/src/emoji-picker/utils/emoji-set.ts +2 -1
- package/src/emoji-picker/utils/emoji-support.ts +2 -2
- package/src/emoji.tsx +1 -0
- package/src/empty-state/empty-state-emoji.tsx +1 -0
- package/src/empty-state/empty-state.tsx +4 -5
- package/src/empty-value.tsx +2 -1
- package/src/errors.ts +1 -1
- package/src/favorites-icon.tsx +6 -5
- package/src/fibermoji-placeholder.tsx +58 -16
- package/src/field-container.tsx +9 -9
- package/src/field-icon.tsx +3 -2
- package/src/field-type-icon.tsx +31 -31
- package/src/file-item/file-icon.tsx +7 -7
- package/src/file-item/file-menu-items.tsx +9 -8
- package/src/file-item/file-preview-actions.tsx +4 -4
- package/src/file-item/file-title.tsx +2 -1
- package/src/file-item.tsx +9 -7
- package/src/flags.ts +4 -2
- package/src/form-field-loader.tsx +3 -1
- package/src/form-utils.ts +1 -1
- package/src/guide-link.tsx +2 -2
- package/src/header-layout.tsx +15 -13
- package/src/highlight-colors.test.ts +69 -37
- package/src/highlight-colors.ts +20 -47
- package/src/hint.tsx +6 -4
- package/src/hotkey-scope.test.ts +120 -0
- package/src/hotkey-scope.tsx +42 -0
- package/src/hoverable-via-display.tsx +2 -2
- package/src/hoverable.tsx +1 -1
- package/src/html-styles.ts +15 -16
- package/src/hue-shift.test.ts +1 -1
- package/src/icons/ast/error-circle-filled.ts +12 -0
- package/src/icons/ast/index.tsx +448 -447
- package/src/icons/generate-icon-from-ast.ts +1 -0
- package/src/icons/get-paths.ts +1 -1
- package/src/icons/get-shift-style.ts +1 -1
- package/src/icons/icon.tsx +76 -0
- package/src/icons/react/abort.tsx +18 -0
- package/src/icons/react/access-template.tsx +18 -0
- package/src/icons/react/activity-filled.tsx +18 -0
- package/src/icons/react/activity-log.tsx +18 -0
- package/src/icons/react/activity.tsx +18 -0
- package/src/icons/react/add-after.tsx +18 -0
- package/src/icons/react/add-before.tsx +18 -0
- package/src/icons/react/add-compact.tsx +18 -0
- package/src/icons/react/add-database.tsx +18 -0
- package/src/icons/react/add-group.tsx +18 -0
- package/src/icons/react/add-integration.tsx +18 -0
- package/src/icons/react/add-reactions.tsx +18 -0
- package/src/icons/react/add.tsx +18 -0
- package/src/icons/react/ai-assistant-filled.tsx +18 -0
- package/src/icons/react/ai-assistant.tsx +18 -0
- package/src/icons/react/ai-avatar.tsx +18 -0
- package/src/icons/react/ai-fibery-build.tsx +18 -0
- package/src/icons/react/ai-search.tsx +18 -0
- package/src/icons/react/alert-triangle.tsx +18 -0
- package/src/icons/react/anthropic.tsx +18 -0
- package/src/icons/react/app-details.tsx +18 -0
- package/src/icons/react/app-store-one-color.tsx +18 -0
- package/src/icons/react/app-store.tsx +18 -0
- package/src/icons/react/app-templates.tsx +18 -0
- package/src/icons/react/app-webhooks.tsx +18 -0
- package/src/icons/react/app-wiki.tsx +18 -0
- package/src/icons/react/app.tsx +18 -0
- package/src/icons/react/appearance-auto.tsx +18 -0
- package/src/icons/react/appearance-dark.tsx +18 -0
- package/src/icons/react/appearance-light.tsx +18 -0
- package/src/icons/react/apple.tsx +18 -0
- package/src/icons/react/arrow-bar-down.tsx +18 -0
- package/src/icons/react/arrow-bar-left.tsx +18 -0
- package/src/icons/react/arrow-bar-right.tsx +18 -0
- package/src/icons/react/arrow-bar-up.tsx +18 -0
- package/src/icons/react/arrow-bottom.tsx +18 -0
- package/src/icons/react/arrow-collapse-vertical.tsx +18 -0
- package/src/icons/react/arrow-collapse.tsx +18 -0
- package/src/icons/react/arrow-forward.tsx +18 -0
- package/src/icons/react/arrow-left.tsx +18 -0
- package/src/icons/react/arrow-right.tsx +18 -0
- package/src/icons/react/arrow-top.tsx +18 -0
- package/src/icons/react/arrow-up-circle.tsx +18 -0
- package/src/icons/react/arrows-right-left.tsx +18 -0
- package/src/icons/react/ask-for-input.tsx +18 -0
- package/src/icons/react/asterisk.tsx +18 -0
- package/src/icons/react/atom.tsx +18 -0
- package/src/icons/react/automations-cancelled.tsx +18 -0
- package/src/icons/react/automations-disabled.tsx +18 -0
- package/src/icons/react/automations-error.tsx +18 -0
- package/src/icons/react/automations-in-progress.tsx +18 -0
- package/src/icons/react/automations-not-started.tsx +18 -0
- package/src/icons/react/automations-success.tsx +18 -0
- package/src/icons/react/back.tsx +18 -0
- package/src/icons/react/backlog-icon.tsx +18 -0
- package/src/icons/react/batch-actions-icon.tsx +18 -0
- package/src/icons/react/bell-circle.tsx +18 -0
- package/src/icons/react/bell-filled.tsx +18 -0
- package/src/icons/react/bell-off.tsx +18 -0
- package/src/icons/react/bell-ringing.tsx +18 -0
- package/src/icons/react/bell-x.tsx +18 -0
- package/src/icons/react/bolt.tsx +18 -0
- package/src/icons/react/bring-forward.tsx +18 -0
- package/src/icons/react/bring-to-front.tsx +18 -0
- package/src/icons/react/cards.tsx +18 -0
- package/src/icons/react/chat-ai.tsx +18 -0
- package/src/icons/react/chat-bubble.tsx +18 -0
- package/src/icons/react/chat-float.tsx +18 -0
- package/src/icons/react/chat-sidebar.tsx +18 -0
- package/src/icons/react/chat.tsx +18 -0
- package/src/icons/react/check-circle-filled.tsx +18 -0
- package/src/icons/react/check-circle.tsx +18 -0
- package/src/icons/react/checked.tsx +18 -0
- package/src/icons/react/clean.tsx +18 -0
- package/src/icons/react/clear-input-filled.tsx +18 -0
- package/src/icons/react/clear-value.tsx +18 -0
- package/src/icons/react/clear.tsx +18 -0
- package/src/icons/react/clock-alarm.tsx +18 -0
- package/src/icons/react/clock-forward.tsx +18 -0
- package/src/icons/react/clock.tsx +18 -0
- package/src/icons/react/close.tsx +18 -0
- package/src/icons/react/collapse-all-horizontal.tsx +18 -0
- package/src/icons/react/collapse-all.tsx +18 -0
- package/src/icons/react/color-coding-filled.tsx +18 -0
- package/src/icons/react/color-coding.tsx +18 -0
- package/src/icons/react/columns-2.tsx +18 -0
- package/src/icons/react/columns-4.tsx +18 -0
- package/src/icons/react/columns.tsx +18 -0
- package/src/icons/react/comment-bubble.tsx +18 -0
- package/src/icons/react/copy.tsx +18 -0
- package/src/icons/react/create.tsx +18 -0
- package/src/icons/react/credits-filled.tsx +18 -0
- package/src/icons/react/cross-circle.tsx +18 -0
- package/src/icons/react/crosshair.tsx +18 -0
- package/src/icons/react/csv.tsx +18 -0
- package/src/icons/react/database-off.tsx +18 -0
- package/src/icons/react/database-stroke.tsx +18 -0
- package/src/icons/react/database.tsx +18 -0
- package/src/icons/react/date-range.tsx +18 -0
- package/src/icons/react/delete.tsx +18 -0
- package/src/icons/react/demo.tsx +18 -0
- package/src/icons/react/dependency.tsx +18 -0
- package/src/icons/react/dividers.tsx +18 -0
- package/src/icons/react/document.tsx +18 -0
- package/src/icons/react/double-arrow-left.tsx +18 -0
- package/src/icons/react/double-arrow-right.tsx +18 -0
- package/src/icons/react/double-line.tsx +18 -0
- package/src/icons/react/drag-block-handle-single.tsx +18 -0
- package/src/icons/react/drag-block-handle.tsx +18 -0
- package/src/icons/react/drag-handle.tsx +18 -0
- package/src/icons/react/duplicate.tsx +18 -0
- package/src/icons/react/dynamic-filter-value.tsx +18 -0
- package/src/icons/react/edit-value.tsx +18 -0
- package/src/icons/react/email.tsx +18 -0
- package/src/icons/react/emoji-delete.tsx +18 -0
- package/src/icons/react/entity-create-filled.tsx +18 -0
- package/src/icons/react/entity-create.tsx +18 -0
- package/src/icons/react/entity-merge.tsx +18 -0
- package/src/icons/react/equation.tsx +18 -0
- package/src/icons/react/error-circle-filled.tsx +18 -0
- package/src/icons/react/expand-all-horizontal.tsx +18 -0
- package/src/icons/react/expand-all.tsx +18 -0
- package/src/icons/react/export.tsx +18 -0
- package/src/icons/react/extension-assignments.tsx +18 -0
- package/src/icons/react/extension-avatar.tsx +18 -0
- package/src/icons/react/extension-comments.tsx +18 -0
- package/src/icons/react/extension-files.tsx +18 -0
- package/src/icons/react/extension-references.tsx +18 -0
- package/src/icons/react/extension-workflow.tsx +18 -0
- package/src/icons/react/eye.tsx +18 -0
- package/src/icons/react/favorites-checked.tsx +18 -0
- package/src/icons/react/favorites-off.tsx +18 -0
- package/src/icons/react/favorites.tsx +18 -0
- package/src/icons/react/fibery-desktop-app.tsx +18 -0
- package/src/icons/react/fibery-mono.tsx +18 -0
- package/src/icons/react/field-unit.tsx +18 -0
- package/src/icons/react/fields.tsx +18 -0
- package/src/icons/react/figma.tsx +18 -0
- package/src/icons/react/file-archive.tsx +18 -0
- package/src/icons/react/file-broken.tsx +18 -0
- package/src/icons/react/file-counter.tsx +18 -0
- package/src/icons/react/file-document.tsx +18 -0
- package/src/icons/react/file-download.tsx +18 -0
- package/src/icons/react/file-image.tsx +18 -0
- package/src/icons/react/file-multiple.tsx +18 -0
- package/src/icons/react/file-other.tsx +18 -0
- package/src/icons/react/file-presentation.tsx +18 -0
- package/src/icons/react/file-table.tsx +18 -0
- package/src/icons/react/file-upload.tsx +18 -0
- package/src/icons/react/file-video.tsx +18 -0
- package/src/icons/react/filter.tsx +18 -0
- package/src/icons/react/fit-to-screen.tsx +18 -0
- package/src/icons/react/focus-mode-off.tsx +18 -0
- package/src/icons/react/focus-mode.tsx +18 -0
- package/src/icons/react/folder-favorite.tsx +18 -0
- package/src/icons/react/folder.tsx +18 -0
- package/src/icons/react/form-with-cover.tsx +18 -0
- package/src/icons/react/form-without-cover.tsx +18 -0
- package/src/icons/react/fullscreen-mode-off-icon.tsx +18 -0
- package/src/icons/react/fullscreen-mode-on-icon.tsx +18 -0
- package/src/icons/react/fullscreen-mode-on.tsx +18 -0
- package/src/icons/react/gift.tsx +18 -0
- package/src/icons/react/github.tsx +18 -0
- package/src/icons/react/gitlab.tsx +18 -0
- package/src/icons/react/globe-simple.tsx +18 -0
- package/src/icons/react/globe-unpublish.tsx +18 -0
- package/src/icons/react/globe.tsx +18 -0
- package/src/icons/react/go-to.tsx +18 -0
- package/src/icons/react/google-drive.tsx +18 -0
- package/src/icons/react/google-map.tsx +18 -0
- package/src/icons/react/graduation-cap-filled.tsx +18 -0
- package/src/icons/react/headphones-ai.tsx +18 -0
- package/src/icons/react/headphones.tsx +18 -0
- package/src/icons/react/hide.tsx +18 -0
- package/src/icons/react/highlights.tsx +18 -0
- package/src/icons/react/hint.tsx +18 -0
- package/src/icons/react/home-filled.tsx +18 -0
- package/src/icons/react/home.tsx +18 -0
- package/src/icons/react/image-xmark.tsx +18 -0
- package/src/icons/react/import-filled.tsx +18 -0
- package/src/icons/react/import.tsx +18 -0
- package/src/icons/react/index.tsx +448 -447
- package/src/icons/react/info-circle-filled.tsx +18 -0
- package/src/icons/react/info-circle.tsx +18 -0
- package/src/icons/react/integration.tsx +18 -0
- package/src/icons/react/integrations-filled.tsx +18 -0
- package/src/icons/react/integrations-integration-discourse-color.tsx +18 -0
- package/src/icons/react/integrations-integration-intercom-color.tsx +18 -0
- package/src/icons/react/integrations-integration-slack-color.tsx +18 -0
- package/src/icons/react/integrations-integration-zendesk-color.tsx +18 -0
- package/src/icons/react/intercom.tsx +18 -0
- package/src/icons/react/invite-people.tsx +18 -0
- package/src/icons/react/items-timeline.tsx +18 -0
- package/src/icons/react/items.tsx +18 -0
- package/src/icons/react/jira.tsx +18 -0
- package/src/icons/react/key.tsx +18 -0
- package/src/icons/react/keyboard-hide-down.tsx +18 -0
- package/src/icons/react/lab.tsx +18 -0
- package/src/icons/react/layout-double.tsx +18 -0
- package/src/icons/react/layout-multiple.tsx +18 -0
- package/src/icons/react/layout-single.tsx +18 -0
- package/src/icons/react/left-panel.tsx +18 -0
- package/src/icons/react/level-plus.tsx +18 -0
- package/src/icons/react/levels.tsx +18 -0
- package/src/icons/react/line-divider.tsx +18 -0
- package/src/icons/react/line-jump.tsx +18 -0
- package/src/icons/react/link.tsx +18 -0
- package/src/icons/react/location-edit.tsx +18 -0
- package/src/icons/react/lock-outline.tsx +18 -0
- package/src/icons/react/lock.tsx +18 -0
- package/src/icons/react/logout.tsx +18 -0
- package/src/icons/react/loom.tsx +18 -0
- package/src/icons/react/loupe-zoom-in.tsx +18 -0
- package/src/icons/react/loupe-zoom-out.tsx +18 -0
- package/src/icons/react/loupe-zoom.tsx +18 -0
- package/src/icons/react/many-people.tsx +18 -0
- package/src/icons/react/map-mode.tsx +18 -0
- package/src/icons/react/markdown.tsx +18 -0
- package/src/icons/react/menu-collapser.tsx +18 -0
- package/src/icons/react/mermaid.tsx +18 -0
- package/src/icons/react/message-plus-square.tsx +18 -0
- package/src/icons/react/message-plus.tsx +18 -0
- package/src/icons/react/milestones.tsx +18 -0
- package/src/icons/react/minus.tsx +18 -0
- package/src/icons/react/miro.tsx +18 -0
- package/src/icons/react/mirror-off.tsx +18 -0
- package/src/icons/react/mirror-on.tsx +18 -0
- package/src/icons/react/mixpanel.tsx +18 -0
- package/src/icons/react/monitor.tsx +18 -0
- package/src/icons/react/more-compact.tsx +18 -0
- package/src/icons/react/more.tsx +18 -0
- package/src/icons/react/move-bottom.tsx +18 -0
- package/src/icons/react/move-left.tsx +18 -0
- package/src/icons/react/move-right.tsx +18 -0
- package/src/icons/react/move-space.tsx +18 -0
- package/src/icons/react/move-top.tsx +18 -0
- package/src/icons/react/network-add.tsx +18 -0
- package/src/icons/react/network.tsx +18 -0
- package/src/icons/react/no-border.tsx +18 -0
- package/src/icons/react/no-fill.tsx +18 -0
- package/src/icons/react/notifications.tsx +18 -0
- package/src/icons/react/obj-child.tsx +18 -0
- package/src/icons/react/obj-m2m.tsx +18 -0
- package/src/icons/react/obj-o2o.tsx +18 -0
- package/src/icons/react/obj-parent.tsx +18 -0
- package/src/icons/react/obj-self.tsx +18 -0
- package/src/icons/react/on-schedule.tsx +18 -0
- package/src/icons/react/open-ai.tsx +18 -0
- package/src/icons/react/open-as-page.tsx +18 -0
- package/src/icons/react/page-regular-mode.tsx +18 -0
- package/src/icons/react/page-wide-mode.tsx +18 -0
- package/src/icons/react/panel-add.tsx +18 -0
- package/src/icons/react/pencil.tsx +18 -0
- package/src/icons/react/people-check.tsx +18 -0
- package/src/icons/react/people.tsx +18 -0
- package/src/icons/react/photo.tsx +18 -0
- package/src/icons/react/pin-filled.tsx +18 -0
- package/src/icons/react/pin.tsx +18 -0
- package/src/icons/react/popup.tsx +18 -0
- package/src/icons/react/posts.tsx +18 -0
- package/src/icons/react/present-play.tsx +18 -0
- package/src/icons/react/present-stop.tsx +18 -0
- package/src/icons/react/print.tsx +18 -0
- package/src/icons/react/private-items.tsx +18 -0
- package/src/icons/react/question.tsx +18 -0
- package/src/icons/react/quick-filter-personal.tsx +18 -0
- package/src/icons/react/quick-filter.tsx +18 -0
- package/src/icons/react/read-only.tsx +18 -0
- package/src/icons/react/refresh.tsx +18 -0
- package/src/icons/react/remove-people.tsx +18 -0
- package/src/icons/react/remove.tsx +18 -0
- package/src/icons/react/reply.tsx +18 -0
- package/src/icons/react/reset-password.tsx +18 -0
- package/src/icons/react/restore.tsx +18 -0
- package/src/icons/react/richeditor-actions-more.tsx +18 -0
- package/src/icons/react/richeditor-block-callout.tsx +18 -0
- package/src/icons/react/richeditor-block-code.tsx +18 -0
- package/src/icons/react/richeditor-block-embed.tsx +18 -0
- package/src/icons/react/richeditor-block-entity.tsx +18 -0
- package/src/icons/react/richeditor-block-file.tsx +18 -0
- package/src/icons/react/richeditor-block-h1.tsx +18 -0
- package/src/icons/react/richeditor-block-h2.tsx +18 -0
- package/src/icons/react/richeditor-block-h3.tsx +18 -0
- package/src/icons/react/richeditor-block-h4.tsx +18 -0
- package/src/icons/react/richeditor-block-mention.tsx +18 -0
- package/src/icons/react/richeditor-block-paragraph.tsx +18 -0
- package/src/icons/react/richeditor-block-quote.tsx +18 -0
- package/src/icons/react/richeditor-checklist-create.tsx +18 -0
- package/src/icons/react/richeditor-comment-create.tsx +18 -0
- package/src/icons/react/richeditor-entity-link-create.tsx +18 -0
- package/src/icons/react/richeditor-history-redo.tsx +18 -0
- package/src/icons/react/richeditor-history-undo.tsx +18 -0
- package/src/icons/react/richeditor-image-align-center.tsx +18 -0
- package/src/icons/react/richeditor-image-align-left.tsx +18 -0
- package/src/icons/react/richeditor-image-align-right.tsx +18 -0
- package/src/icons/react/richeditor-image-upload.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-center.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-left.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-right.tsx +18 -0
- package/src/icons/react/richeditor-image-zoom.tsx +18 -0
- package/src/icons/react/richeditor-link-create.tsx +18 -0
- package/src/icons/react/richeditor-linkedhighlight-create.tsx +18 -0
- package/src/icons/react/richeditor-list-bullet.tsx +18 -0
- package/src/icons/react/richeditor-list-indent.tsx +18 -0
- package/src/icons/react/richeditor-list-ordered.tsx +18 -0
- package/src/icons/react/richeditor-list-unindent.tsx +18 -0
- package/src/icons/react/richeditor-mark-code.tsx +18 -0
- package/src/icons/react/richeditor-mark-em.tsx +18 -0
- package/src/icons/react/richeditor-mark-highlight.tsx +18 -0
- package/src/icons/react/richeditor-mark-strike.tsx +18 -0
- package/src/icons/react/richeditor-mark-strong.tsx +18 -0
- package/src/icons/react/richeditor-mark-text-background-color.tsx +18 -0
- package/src/icons/react/richeditor-mark-underline.tsx +18 -0
- package/src/icons/react/richeditor-open-link.tsx +18 -0
- package/src/icons/react/richeditor-table-create.tsx +18 -0
- package/src/icons/react/richeditor-unlink.tsx +18 -0
- package/src/icons/react/richeditor-video-upload.tsx +18 -0
- package/src/icons/react/right-panel.tsx +18 -0
- package/src/icons/react/rows.tsx +18 -0
- package/src/icons/react/rule-scheduled.tsx +18 -0
- package/src/icons/react/search-add.tsx +18 -0
- package/src/icons/react/search-filled.tsx +18 -0
- package/src/icons/react/search-remove.tsx +18 -0
- package/src/icons/react/search.tsx +18 -0
- package/src/icons/react/self-reference-off.tsx +18 -0
- package/src/icons/react/self-reference-on.tsx +18 -0
- package/src/icons/react/send-arrow.tsx +18 -0
- package/src/icons/react/send-backward.tsx +18 -0
- package/src/icons/react/send-to-back.tsx +18 -0
- package/src/icons/react/settings-filled.tsx +18 -0
- package/src/icons/react/settings-off.tsx +18 -0
- package/src/icons/react/settings.tsx +18 -0
- package/src/icons/react/share.tsx +18 -0
- package/src/icons/react/shared.tsx +18 -0
- package/src/icons/react/shield-keyhole.tsx +18 -0
- package/src/icons/react/show-author.tsx +18 -0
- package/src/icons/react/sidebar-fields-opened.tsx +18 -0
- package/src/icons/react/sidebar-fields.tsx +18 -0
- package/src/icons/react/sidebar.tsx +18 -0
- package/src/icons/react/simple-compass.tsx +18 -0
- package/src/icons/react/slack-icon.tsx +18 -0
- package/src/icons/react/slack.tsx +18 -0
- package/src/icons/react/slide-menu-close.tsx +18 -0
- package/src/icons/react/slide-menu-filled.tsx +18 -0
- package/src/icons/react/slide-menu-open.tsx +18 -0
- package/src/icons/react/slide-menu.tsx +18 -0
- package/src/icons/react/smart-folder.tsx +18 -0
- package/src/icons/react/sort-on-bottom.tsx +18 -0
- package/src/icons/react/sort-on-top.tsx +18 -0
- package/src/icons/react/sort.tsx +18 -0
- package/src/icons/react/space-app.tsx +18 -0
- package/src/icons/react/space-generate.tsx +18 -0
- package/src/icons/react/space-list.tsx +18 -0
- package/src/icons/react/space-scratch.tsx +18 -0
- package/src/icons/react/space-template.tsx +18 -0
- package/src/icons/react/spinner.tsx +18 -0
- package/src/icons/react/success.tsx +18 -0
- package/src/icons/react/suggest-integration.tsx +18 -0
- package/src/icons/react/switch-to-mention.tsx +18 -0
- package/src/icons/react/switch-to-text.tsx +18 -0
- package/src/icons/react/switch-to-widget.tsx +18 -0
- package/src/icons/react/table-layout.tsx +18 -0
- package/src/icons/react/template.tsx +18 -0
- package/src/icons/react/templates-filled.tsx +18 -0
- package/src/icons/react/templates.tsx +18 -0
- package/src/icons/react/terminal.tsx +18 -0
- package/src/icons/react/text-no-wrap.tsx +18 -0
- package/src/icons/react/text-tool-align-bottom.tsx +18 -0
- package/src/icons/react/text-tool-align-middle.tsx +18 -0
- package/src/icons/react/text-tool-align-top.tsx +18 -0
- package/src/icons/react/text-wrap.tsx +18 -0
- package/src/icons/react/thumbs-down.tsx +18 -0
- package/src/icons/react/thumbs-up.tsx +18 -0
- package/src/icons/react/toc.tsx +18 -0
- package/src/icons/react/twitter.tsx +18 -0
- package/src/icons/react/type-boolean.tsx +18 -0
- package/src/icons/react/type-button.tsx +18 -0
- package/src/icons/react/type-checkbox.tsx +18 -0
- package/src/icons/react/type-date.tsx +18 -0
- package/src/icons/react/type-email.tsx +18 -0
- package/src/icons/react/type-emoji.tsx +18 -0
- package/src/icons/react/type-formula.tsx +18 -0
- package/src/icons/react/type-function.tsx +18 -0
- package/src/icons/react/type-id.tsx +18 -0
- package/src/icons/react/type-location.tsx +18 -0
- package/src/icons/react/type-lookup.tsx +18 -0
- package/src/icons/react/type-money.tsx +18 -0
- package/src/icons/react/type-multi-select.tsx +18 -0
- package/src/icons/react/type-number.tsx +18 -0
- package/src/icons/react/type-percent.tsx +18 -0
- package/src/icons/react/type-phone.tsx +18 -0
- package/src/icons/react/type-relation.tsx +18 -0
- package/src/icons/react/type-rich-text.tsx +18 -0
- package/src/icons/react/type-rule.tsx +18 -0
- package/src/icons/react/type-single-select.tsx +18 -0
- package/src/icons/react/type-text.tsx +18 -0
- package/src/icons/react/type-url.tsx +18 -0
- package/src/icons/react/units-avatar.tsx +18 -0
- package/src/icons/react/units-collection.tsx +18 -0
- package/src/icons/react/units-counter.tsx +18 -0
- package/src/icons/react/units-date.tsx +18 -0
- package/src/icons/react/units-db-badge-abbr.tsx +18 -0
- package/src/icons/react/units-db-badge-full.tsx +18 -0
- package/src/icons/react/units-db-icon.tsx +18 -0
- package/src/icons/react/units-field-icon-button.tsx +18 -0
- package/src/icons/react/units-field.tsx +18 -0
- package/src/icons/react/units-input.tsx +18 -0
- package/src/icons/react/units-progress-bar.tsx +18 -0
- package/src/icons/react/units-rich-text.tsx +18 -0
- package/src/icons/react/units-snippet.tsx +18 -0
- package/src/icons/react/unlink.tsx +18 -0
- package/src/icons/react/unlock-filled.tsx +18 -0
- package/src/icons/react/unlock-outline.tsx +18 -0
- package/src/icons/react/upgrade.tsx +18 -0
- package/src/icons/react/usb-flash-drive.tsx +18 -0
- package/src/icons/react/user-check.tsx +18 -0
- package/src/icons/react/user-group-remove.tsx +18 -0
- package/src/icons/react/user-group.tsx +18 -0
- package/src/icons/react/user-role.tsx +18 -0
- package/src/icons/react/user-x.tsx +18 -0
- package/src/icons/react/value-edit.tsx +18 -0
- package/src/icons/react/view-ai.tsx +18 -0
- package/src/icons/react/view-board.tsx +18 -0
- package/src/icons/react/view-calendar.tsx +18 -0
- package/src/icons/react/view-canvas.tsx +18 -0
- package/src/icons/react/view-chart.tsx +18 -0
- package/src/icons/react/view-dashboard.tsx +18 -0
- package/src/icons/react/view-details.tsx +18 -0
- package/src/icons/react/view-document.tsx +18 -0
- package/src/icons/react/view-embed.tsx +18 -0
- package/src/icons/react/view-feed.tsx +18 -0
- package/src/icons/react/view-form.tsx +18 -0
- package/src/icons/react/view-gallery.tsx +18 -0
- package/src/icons/react/view-gantt.tsx +18 -0
- package/src/icons/react/view-list.tsx +18 -0
- package/src/icons/react/view-map.tsx +18 -0
- package/src/icons/react/view-page.tsx +18 -0
- package/src/icons/react/view-table.tsx +18 -0
- package/src/icons/react/view-timeline.tsx +18 -0
- package/src/icons/react/views.tsx +18 -0
- package/src/icons/react/warning-triangle-filled.tsx +18 -0
- package/src/icons/react/warning-triangle.tsx +18 -0
- package/src/icons/react/warning.tsx +18 -0
- package/src/icons/react/webhooks.tsx +18 -0
- package/src/icons/react/windows.tsx +18 -0
- package/src/icons/react/workspace-map.tsx +18 -0
- package/src/icons/react/youtube.tsx +18 -0
- package/src/icons/react/zoom-in.tsx +18 -0
- package/src/icons/react/zoom-out.tsx +18 -0
- package/src/icons/svg/error-circle-filled.svg +3 -0
- package/src/icons/types.ts +1 -1
- package/src/images-gallery/images-gallery-fall-through-provider.tsx +4 -2
- package/src/images-gallery/images-gallery.tsx +12 -10
- package/src/images-gallery/slide-buttons.tsx +17 -16
- package/src/images-gallery/zoom.tsx +2 -1
- package/src/integration-compact-info-button.tsx +7 -7
- package/src/is-in-popup.ts +1 -1
- package/src/item.tsx +3 -1
- package/src/kbd.tsx +20 -19
- package/src/layout-styles.ts +11 -10
- package/src/layout.tsx +2 -1
- package/src/link-input/components/ant-text-area-with-custom-read-state.tsx +76 -0
- package/src/link-input/index.tsx +3 -4
- package/src/lists/actions-menu-row-surface.tsx +7 -6
- package/src/lists/list-row-surface.tsx +7 -5
- package/src/loaders.tsx +7 -5
- package/src/loading-sausage.tsx +4 -2
- package/src/logo.tsx +2 -1
- package/src/memoize.test.ts +56 -0
- package/src/memoize.ts +8 -0
- package/src/menu-item-actions.tsx +2 -1
- package/src/mobile-keyboard-aware-popup.tsx +5 -3
- package/src/modal-menu/modal-menu-checkbox-item.tsx +4 -3
- package/src/modal-menu/modal-menu-content.tsx +5 -4
- package/src/modal-menu/modal-menu-group.tsx +1 -1
- package/src/modal-menu/modal-menu-item.tsx +4 -3
- package/src/modal-menu/modal-menu-label.tsx +14 -11
- package/src/modal-menu/modal-menu-root.tsx +5 -2
- package/src/modal-menu/modal-menu-separator.tsx +1 -0
- package/src/modal-menu/modal-menu-trigger.tsx +3 -1
- package/src/modal-menu/modal-submenu-content.tsx +3 -2
- package/src/modal-menu/modal-submenu-trigger.tsx +5 -4
- package/src/modal-menu/modal-submenu.tsx +3 -1
- package/src/new-badge.tsx +6 -4
- package/src/new-card-placeholder.tsx +6 -3
- package/src/notification-dot.tsx +2 -1
- package/src/number-input/edit-unit-styles.ts +1 -0
- package/src/number-input/number-input-inline-with-autosize.tsx +7 -6
- package/src/number-input/number-input-inline.tsx +9 -7
- package/src/number-input/number-input.test.tsx +4 -3
- package/src/number-input/number-input.tsx +3 -2
- package/src/number-input/stack.tsx +1 -1
- package/src/number-input/step-button.tsx +3 -2
- package/src/number-input/styles.ts +1 -0
- package/src/number-input/text-area-auto-sized.tsx +4 -3
- package/src/number-input/text-input-auto-sized.tsx +4 -3
- package/src/number-input/utils.ts +1 -1
- package/src/online-users.tsx +18 -5
- package/src/open-popover-tracker.tsx +2 -1
- package/src/palette-generator.test.ts +25 -30
- package/src/palette-generator.ts +27 -18
- package/src/palettes/common.ts +19 -0
- package/src/palettes/diff-colors.test.ts +416 -0
- package/src/palettes/diff-colors.ts +179 -51
- package/src/palettes/inspect.canvas-colors.test.ts +116 -116
- package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +1154 -1154
- package/src/palettes/inspect.defs.colors.neutral-user.test.ts +1154 -1154
- package/src/palettes/inspect.defs.colors.warm-arch.test.ts +1155 -1153
- package/src/palettes/inspect.defs.colors.warm-user.test.ts +1155 -1153
- package/src/palettes/inspect.neutral-arch.test.ts +152 -147
- package/src/palettes/inspect.neutral-user.test.ts +152 -147
- package/src/palettes/inspect.warm-arch.test.ts +152 -147
- package/src/palettes/inspect.warm-user.test.ts +152 -147
- package/src/palettes/neutral-arch.ts +3 -1
- package/src/palettes/neutral-user.ts +3 -1
- package/src/palettes/neutral.ts +41 -21
- package/src/palettes/show-colors.test.ts +131 -0
- package/src/palettes/testkit.test.ts +224 -0
- package/src/palettes/testkit.ts +227 -0
- package/src/palettes/warm-arch.ts +3 -1
- package/src/palettes/warm-user.ts +3 -1
- package/src/palettes/warm.ts +70 -3
- package/src/platform-symbols.ts +18 -5
- package/src/popover/index.tsx +21 -19
- package/src/popover/mobile-popover-context.tsx +3 -2
- package/src/popover/mobile-popover.tsx +16 -13
- package/src/popover/modifiers.tsx +5 -4
- package/src/popover/popup-modifiers-context.ts +4 -3
- package/src/popover/popup-stack-context.tsx +2 -1
- package/src/popover/reference.ts +1 -1
- package/src/popover/styles.ts +1 -0
- package/src/preference-setting.test.ts +12 -12
- package/src/progress.tsx +3 -2
- package/src/reactions/reaction-button.tsx +10 -8
- package/src/reactions/reaction-picker.tsx +6 -4
- package/src/reactions/reactions.tsx +6 -4
- package/src/reactions/tootltip.tsx +2 -1
- package/src/ready-to-scroll-context.tsx +2 -1
- package/src/rich-input-loader.tsx +4 -3
- package/src/rich-text-embed-error.tsx +3 -2
- package/src/root-theme-provider.test.tsx +30 -48
- package/src/scale-generator.ts +30 -17
- package/src/select/components/clear-indicator.tsx +3 -2
- package/src/select/components/drop-down-indicator.tsx +7 -6
- package/src/select/components/group-heading.tsx +7 -5
- package/src/select/components/menu-list-virtua.tsx +7 -13
- package/src/select/components/menu-list-virtualized.tsx +9 -15
- package/src/select/components/menu.tsx +4 -2
- package/src/select/components/no-option-message.tsx +8 -7
- package/src/select/components/option.tsx +7 -4
- package/src/select/index.tsx +5 -3
- package/src/select/reflection.ts +3 -2
- package/src/select/select-control-settings-context.tsx +2 -1
- package/src/select/select-in-popover.tsx +16 -23
- package/src/select/select-mock-context.tsx +1 -1
- package/src/select/select.tsx +11 -9
- package/src/select/styles.ts +1 -0
- package/src/select/util.ts +3 -2
- package/src/static-palettes.ts +1 -1
- package/src/tab-nav/tab-nav.tsx +19 -15
- package/src/table.tsx +4 -2
- package/src/thematic-color-picker.tsx +2 -1
- package/src/thematic-constants.tsx +4 -4
- package/src/thematic-controls.tsx +5 -1
- package/src/thematic-cvd.tsx +4 -3
- package/src/thematic-highlights.tsx +14 -34
- package/src/thematic-scales.tsx +1 -0
- package/src/thematic-state.ts +46 -28
- package/src/thematic-swatch-adjust.tsx +77 -0
- package/src/thematic.tsx +78 -41
- package/src/theme-provider.test.tsx +52 -64
- package/src/theme-provider.tsx +61 -55
- package/src/theme-settings.ts +4 -68
- package/src/theme-snapshots.test.ts +62 -0
- package/src/theme-styles.ts +9 -57
- package/src/themed-ink.tsx +2 -1
- package/src/theming/build.ts +36 -0
- package/src/theming/index.ts +20 -0
- package/src/theming/theming-fibery.snapshot.css +2000 -0
- package/src/theming/theming-fibery.snapshot.ts +2519 -0
- package/src/theming/theming-vzdbery.snapshot.css +2001 -0
- package/src/theming/theming-vzdbery.snapshot.ts +2519 -0
- package/src/toast/primitives.tsx +9 -7
- package/src/toast/toast-action.tsx +6 -3
- package/src/toast/toast-provider.tsx +2 -1
- package/src/toast/toast-queue.ts +2 -1
- package/src/toast/toast.tsx +5 -4
- package/src/toast/toaster.tsx +1 -0
- package/src/toggle-button/round-toggle-button.tsx +5 -2
- package/src/toggle-button/toggle-button-group.tsx +7 -5
- package/src/toggle-button/toggle-button.tsx +10 -7
- package/src/toggle-on-off.tsx +4 -2
- package/src/toggle.tsx +21 -17
- package/src/tooltip-if-overflown.tsx +3 -1
- package/src/tooltip.tsx +28 -4
- package/src/tree-utils.test.ts +15 -14
- package/src/tree-utils.ts +1 -1
- package/src/type-badge-box.tsx +3 -2
- package/src/type-badge.tsx +14 -38
- package/src/unit/index.tsx +2 -2
- package/src/unit/loading-unit-value.tsx +3 -1
- package/src/unit/primitive.tsx +5 -4
- package/src/unit/styles.ts +7 -3
- package/src/unit/types.ts +1 -1
- package/src/unit/unit-button-group.tsx +4 -2
- package/src/unit/unit-content-layout.tsx +5 -2
- package/src/unit/unit-content.tsx +3 -2
- package/src/unit/unit-with-tooltip.tsx +3 -2
- package/src/use-is-media-query-matched.ts +1 -0
- package/src/use-is-phone.tsx +17 -25
- package/src/use-long-press.tsx +2 -1
- package/src/use-on-screen-keyboard-data.tsx +4 -2
- package/src/with-data.tsx +5 -3
- package/src/workflow-progress-icon.tsx +3 -2
- package/jest.config.cjs +0 -36
- package/src/antd/AutoComplete.ts +0 -34
- package/src/antd/Tabs.d.ts +0 -5
- package/src/antd/Tabs.tsx +0 -61
- package/src/appIcons.json +0 -13096
- package/src/color-picker/ColorPickerOrLoader.tsx +0 -23
- package/src/color-picker/SliderPointer.tsx +0 -15
- package/src/heat.ts +0 -8
- package/src/icons/Icon.tsx +0 -75
- package/src/icons/react/Abort.tsx +0 -18
- package/src/icons/react/AccessTemplate.tsx +0 -18
- package/src/icons/react/Activity.tsx +0 -18
- package/src/icons/react/ActivityFilled.tsx +0 -18
- package/src/icons/react/ActivityLog.tsx +0 -18
- package/src/icons/react/Add.tsx +0 -18
- package/src/icons/react/AddAfter.tsx +0 -18
- package/src/icons/react/AddBefore.tsx +0 -18
- package/src/icons/react/AddCompact.tsx +0 -18
- package/src/icons/react/AddDatabase.tsx +0 -18
- package/src/icons/react/AddGroup.tsx +0 -18
- package/src/icons/react/AddIntegration.tsx +0 -18
- package/src/icons/react/AddReactions.tsx +0 -18
- package/src/icons/react/AiAssistant.tsx +0 -18
- package/src/icons/react/AiAssistantFilled.tsx +0 -18
- package/src/icons/react/AiAvatar.tsx +0 -18
- package/src/icons/react/AiFiberyBuild.tsx +0 -18
- package/src/icons/react/AiSearch.tsx +0 -18
- package/src/icons/react/AlertTriangle.tsx +0 -18
- package/src/icons/react/Anthropic.tsx +0 -18
- package/src/icons/react/App.tsx +0 -18
- package/src/icons/react/AppDetails.tsx +0 -18
- package/src/icons/react/AppStore.tsx +0 -18
- package/src/icons/react/AppStoreOneColor.tsx +0 -18
- package/src/icons/react/AppTemplates.tsx +0 -18
- package/src/icons/react/AppWebhooks.tsx +0 -18
- package/src/icons/react/AppWiki.tsx +0 -18
- package/src/icons/react/AppearanceAuto.tsx +0 -18
- package/src/icons/react/AppearanceDark.tsx +0 -18
- package/src/icons/react/AppearanceLight.tsx +0 -18
- package/src/icons/react/Apple.tsx +0 -18
- package/src/icons/react/ArrowBarDown.tsx +0 -18
- package/src/icons/react/ArrowBarLeft.tsx +0 -18
- package/src/icons/react/ArrowBarRight.tsx +0 -18
- package/src/icons/react/ArrowBarUp.tsx +0 -18
- package/src/icons/react/ArrowBottom.tsx +0 -18
- package/src/icons/react/ArrowCollapse.tsx +0 -18
- package/src/icons/react/ArrowCollapseVertical.tsx +0 -18
- package/src/icons/react/ArrowForward.tsx +0 -18
- package/src/icons/react/ArrowLeft.tsx +0 -18
- package/src/icons/react/ArrowRight.tsx +0 -18
- package/src/icons/react/ArrowTop.tsx +0 -18
- package/src/icons/react/ArrowUpCircle.tsx +0 -18
- package/src/icons/react/ArrowsRightLeft.tsx +0 -18
- package/src/icons/react/AskForInput.tsx +0 -18
- package/src/icons/react/Asterisk.tsx +0 -18
- package/src/icons/react/Atom.tsx +0 -18
- package/src/icons/react/AutomationsCancelled.tsx +0 -18
- package/src/icons/react/AutomationsDisabled.tsx +0 -18
- package/src/icons/react/AutomationsError.tsx +0 -18
- package/src/icons/react/AutomationsInProgress.tsx +0 -18
- package/src/icons/react/AutomationsNotStarted.tsx +0 -18
- package/src/icons/react/AutomationsSuccess.tsx +0 -18
- package/src/icons/react/Back.tsx +0 -18
- package/src/icons/react/BacklogIcon.tsx +0 -18
- package/src/icons/react/BatchActionsIcon.tsx +0 -18
- package/src/icons/react/BellCircle.tsx +0 -18
- package/src/icons/react/BellFilled.tsx +0 -18
- package/src/icons/react/BellOff.tsx +0 -18
- package/src/icons/react/BellRinging.tsx +0 -18
- package/src/icons/react/BellX.tsx +0 -18
- package/src/icons/react/Bolt.tsx +0 -18
- package/src/icons/react/BringForward.tsx +0 -18
- package/src/icons/react/BringToFront.tsx +0 -18
- package/src/icons/react/Cards.tsx +0 -18
- package/src/icons/react/Chat.tsx +0 -18
- package/src/icons/react/ChatAi.tsx +0 -18
- package/src/icons/react/ChatBubble.tsx +0 -18
- package/src/icons/react/ChatFloat.tsx +0 -18
- package/src/icons/react/ChatSidebar.tsx +0 -18
- package/src/icons/react/CheckCircle.tsx +0 -18
- package/src/icons/react/CheckCircleFilled.tsx +0 -18
- package/src/icons/react/Checked.tsx +0 -18
- package/src/icons/react/Clean.tsx +0 -18
- package/src/icons/react/Clear.tsx +0 -18
- package/src/icons/react/ClearInputFilled.tsx +0 -18
- package/src/icons/react/ClearValue.tsx +0 -18
- package/src/icons/react/Clock.tsx +0 -18
- package/src/icons/react/ClockAlarm.tsx +0 -18
- package/src/icons/react/ClockForward.tsx +0 -18
- package/src/icons/react/Close.tsx +0 -18
- package/src/icons/react/CollapseAll.tsx +0 -18
- package/src/icons/react/CollapseAllHorizontal.tsx +0 -18
- package/src/icons/react/ColorCoding.tsx +0 -18
- package/src/icons/react/ColorCodingFilled.tsx +0 -18
- package/src/icons/react/Columns.tsx +0 -18
- package/src/icons/react/Columns2.tsx +0 -18
- package/src/icons/react/Columns4.tsx +0 -18
- package/src/icons/react/CommentBubble.tsx +0 -18
- package/src/icons/react/Copy.tsx +0 -18
- package/src/icons/react/Create.tsx +0 -18
- package/src/icons/react/CreditsFilled.tsx +0 -18
- package/src/icons/react/CrossCircle.tsx +0 -18
- package/src/icons/react/Crosshair.tsx +0 -18
- package/src/icons/react/Csv.tsx +0 -18
- package/src/icons/react/Database.tsx +0 -18
- package/src/icons/react/DatabaseOff.tsx +0 -18
- package/src/icons/react/DatabaseStroke.tsx +0 -18
- package/src/icons/react/DateRange.tsx +0 -18
- package/src/icons/react/Delete.tsx +0 -18
- package/src/icons/react/Demo.tsx +0 -18
- package/src/icons/react/Dependency.tsx +0 -18
- package/src/icons/react/Dividers.tsx +0 -18
- package/src/icons/react/Document.tsx +0 -18
- package/src/icons/react/DoubleArrowLeft.tsx +0 -18
- package/src/icons/react/DoubleArrowRight.tsx +0 -18
- package/src/icons/react/DoubleLine.tsx +0 -18
- package/src/icons/react/DragBlockHandle.tsx +0 -18
- package/src/icons/react/DragBlockHandleSingle.tsx +0 -18
- package/src/icons/react/DragHandle.tsx +0 -18
- package/src/icons/react/Duplicate.tsx +0 -18
- package/src/icons/react/DynamicFilterValue.tsx +0 -18
- package/src/icons/react/EditValue.tsx +0 -18
- package/src/icons/react/Email.tsx +0 -18
- package/src/icons/react/EmojiDelete.tsx +0 -18
- package/src/icons/react/EntityCreate.tsx +0 -18
- package/src/icons/react/EntityCreateFilled.tsx +0 -18
- package/src/icons/react/EntityMerge.tsx +0 -18
- package/src/icons/react/Equation.tsx +0 -18
- package/src/icons/react/ExpandAll.tsx +0 -18
- package/src/icons/react/ExpandAllHorizontal.tsx +0 -18
- package/src/icons/react/Export.tsx +0 -18
- package/src/icons/react/ExtensionAssignments.tsx +0 -18
- package/src/icons/react/ExtensionAvatar.tsx +0 -18
- package/src/icons/react/ExtensionComments.tsx +0 -18
- package/src/icons/react/ExtensionFiles.tsx +0 -18
- package/src/icons/react/ExtensionReferences.tsx +0 -18
- package/src/icons/react/ExtensionWorkflow.tsx +0 -18
- package/src/icons/react/Eye.tsx +0 -18
- package/src/icons/react/Favorites.tsx +0 -18
- package/src/icons/react/FavoritesChecked.tsx +0 -18
- package/src/icons/react/FavoritesOff.tsx +0 -18
- package/src/icons/react/FiberyDesktopApp.tsx +0 -18
- package/src/icons/react/FiberyMono.tsx +0 -18
- package/src/icons/react/FieldUnit.tsx +0 -18
- package/src/icons/react/Fields.tsx +0 -18
- package/src/icons/react/Figma.tsx +0 -18
- package/src/icons/react/FileArchive.tsx +0 -18
- package/src/icons/react/FileBroken.tsx +0 -18
- package/src/icons/react/FileCounter.tsx +0 -18
- package/src/icons/react/FileDocument.tsx +0 -18
- package/src/icons/react/FileDownload.tsx +0 -18
- package/src/icons/react/FileImage.tsx +0 -18
- package/src/icons/react/FileMultiple.tsx +0 -18
- package/src/icons/react/FileOther.tsx +0 -18
- package/src/icons/react/FilePresentation.tsx +0 -18
- package/src/icons/react/FileTable.tsx +0 -18
- package/src/icons/react/FileUpload.tsx +0 -18
- package/src/icons/react/FileVideo.tsx +0 -18
- package/src/icons/react/Filter.tsx +0 -18
- package/src/icons/react/FitToScreen.tsx +0 -18
- package/src/icons/react/FocusMode.tsx +0 -18
- package/src/icons/react/FocusModeOff.tsx +0 -18
- package/src/icons/react/Folder.tsx +0 -18
- package/src/icons/react/FolderFavorite.tsx +0 -18
- package/src/icons/react/FormWithCover.tsx +0 -18
- package/src/icons/react/FormWithoutCover.tsx +0 -18
- package/src/icons/react/FullscreenModeOffIcon.tsx +0 -18
- package/src/icons/react/FullscreenModeOn.tsx +0 -18
- package/src/icons/react/FullscreenModeOnIcon.tsx +0 -18
- package/src/icons/react/Gift.tsx +0 -18
- package/src/icons/react/Github.tsx +0 -18
- package/src/icons/react/Gitlab.tsx +0 -18
- package/src/icons/react/Globe.tsx +0 -18
- package/src/icons/react/GlobeSimple.tsx +0 -18
- package/src/icons/react/GlobeUnpublish.tsx +0 -18
- package/src/icons/react/GoTo.tsx +0 -18
- package/src/icons/react/GoogleDrive.tsx +0 -18
- package/src/icons/react/GoogleMap.tsx +0 -18
- package/src/icons/react/GraduationCapFilled.tsx +0 -18
- package/src/icons/react/Headphones.tsx +0 -18
- package/src/icons/react/HeadphonesAi.tsx +0 -18
- package/src/icons/react/Hide.tsx +0 -18
- package/src/icons/react/Highlights.tsx +0 -18
- package/src/icons/react/Hint.tsx +0 -18
- package/src/icons/react/Home.tsx +0 -18
- package/src/icons/react/HomeFilled.tsx +0 -18
- package/src/icons/react/ImageXmark.tsx +0 -18
- package/src/icons/react/Import.tsx +0 -18
- package/src/icons/react/ImportFilled.tsx +0 -18
- package/src/icons/react/InfoCircle.tsx +0 -18
- package/src/icons/react/InfoCircleFilled.tsx +0 -18
- package/src/icons/react/Integration.tsx +0 -18
- package/src/icons/react/IntegrationsFilled.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationDiscourseColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationIntercomColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationSlackColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationZendeskColor.tsx +0 -18
- package/src/icons/react/Intercom.tsx +0 -18
- package/src/icons/react/InvitePeople.tsx +0 -18
- package/src/icons/react/Items.tsx +0 -18
- package/src/icons/react/ItemsTimeline.tsx +0 -18
- package/src/icons/react/Jira.tsx +0 -18
- package/src/icons/react/Key.tsx +0 -18
- package/src/icons/react/KeyboardHideDown.tsx +0 -18
- package/src/icons/react/Lab.tsx +0 -18
- package/src/icons/react/LayoutDouble.tsx +0 -18
- package/src/icons/react/LayoutMultiple.tsx +0 -18
- package/src/icons/react/LayoutSingle.tsx +0 -18
- package/src/icons/react/LeftPanel.tsx +0 -18
- package/src/icons/react/LevelPlus.tsx +0 -18
- package/src/icons/react/Levels.tsx +0 -18
- package/src/icons/react/LineDivider.tsx +0 -18
- package/src/icons/react/LineJump.tsx +0 -18
- package/src/icons/react/Link.tsx +0 -18
- package/src/icons/react/LocationEdit.tsx +0 -18
- package/src/icons/react/Lock.tsx +0 -18
- package/src/icons/react/LockOutline.tsx +0 -18
- package/src/icons/react/Logout.tsx +0 -18
- package/src/icons/react/Loom.tsx +0 -18
- package/src/icons/react/LoupeZoom.tsx +0 -18
- package/src/icons/react/LoupeZoomIn.tsx +0 -18
- package/src/icons/react/LoupeZoomOut.tsx +0 -18
- package/src/icons/react/ManyPeople.tsx +0 -18
- package/src/icons/react/MapMode.tsx +0 -18
- package/src/icons/react/Markdown.tsx +0 -18
- package/src/icons/react/MenuCollapser.tsx +0 -18
- package/src/icons/react/Mermaid.tsx +0 -18
- package/src/icons/react/MessagePlus.tsx +0 -18
- package/src/icons/react/MessagePlusSquare.tsx +0 -18
- package/src/icons/react/Milestones.tsx +0 -18
- package/src/icons/react/Minus.tsx +0 -18
- package/src/icons/react/Miro.tsx +0 -18
- package/src/icons/react/MirrorOff.tsx +0 -18
- package/src/icons/react/MirrorOn.tsx +0 -18
- package/src/icons/react/Mixpanel.tsx +0 -18
- package/src/icons/react/Monitor.tsx +0 -18
- package/src/icons/react/More.tsx +0 -18
- package/src/icons/react/MoreCompact.tsx +0 -18
- package/src/icons/react/MoveBottom.tsx +0 -18
- package/src/icons/react/MoveLeft.tsx +0 -18
- package/src/icons/react/MoveRight.tsx +0 -18
- package/src/icons/react/MoveSpace.tsx +0 -18
- package/src/icons/react/MoveTop.tsx +0 -18
- package/src/icons/react/Network.tsx +0 -18
- package/src/icons/react/NetworkAdd.tsx +0 -18
- package/src/icons/react/NoBorder.tsx +0 -18
- package/src/icons/react/NoFill.tsx +0 -18
- package/src/icons/react/Notifications.tsx +0 -18
- package/src/icons/react/ObjChild.tsx +0 -18
- package/src/icons/react/ObjM2M.tsx +0 -18
- package/src/icons/react/ObjO2O.tsx +0 -18
- package/src/icons/react/ObjParent.tsx +0 -18
- package/src/icons/react/ObjSelf.tsx +0 -18
- package/src/icons/react/OnSchedule.tsx +0 -18
- package/src/icons/react/OpenAi.tsx +0 -18
- package/src/icons/react/OpenAsPage.tsx +0 -18
- package/src/icons/react/PageRegularMode.tsx +0 -18
- package/src/icons/react/PageWideMode.tsx +0 -18
- package/src/icons/react/PanelAdd.tsx +0 -18
- package/src/icons/react/Pencil.tsx +0 -18
- package/src/icons/react/People.tsx +0 -18
- package/src/icons/react/PeopleCheck.tsx +0 -18
- package/src/icons/react/Photo.tsx +0 -18
- package/src/icons/react/Pin.tsx +0 -18
- package/src/icons/react/PinFilled.tsx +0 -18
- package/src/icons/react/Popup.tsx +0 -18
- package/src/icons/react/Posts.tsx +0 -18
- package/src/icons/react/PresentPlay.tsx +0 -18
- package/src/icons/react/PresentStop.tsx +0 -18
- package/src/icons/react/Print.tsx +0 -18
- package/src/icons/react/PrivateItems.tsx +0 -18
- package/src/icons/react/Question.tsx +0 -18
- package/src/icons/react/QuickFilter.tsx +0 -18
- package/src/icons/react/QuickFilterPersonal.tsx +0 -18
- package/src/icons/react/ReadOnly.tsx +0 -18
- package/src/icons/react/Refresh.tsx +0 -18
- package/src/icons/react/Remove.tsx +0 -18
- package/src/icons/react/RemovePeople.tsx +0 -18
- package/src/icons/react/Reply.tsx +0 -18
- package/src/icons/react/ResetPassword.tsx +0 -18
- package/src/icons/react/Restore.tsx +0 -18
- package/src/icons/react/RicheditorActionsMore.tsx +0 -18
- package/src/icons/react/RicheditorBlockCallout.tsx +0 -18
- package/src/icons/react/RicheditorBlockCode.tsx +0 -18
- package/src/icons/react/RicheditorBlockEmbed.tsx +0 -18
- package/src/icons/react/RicheditorBlockEntity.tsx +0 -18
- package/src/icons/react/RicheditorBlockFile.tsx +0 -18
- package/src/icons/react/RicheditorBlockH1.tsx +0 -18
- package/src/icons/react/RicheditorBlockH2.tsx +0 -18
- package/src/icons/react/RicheditorBlockH3.tsx +0 -18
- package/src/icons/react/RicheditorBlockH4.tsx +0 -18
- package/src/icons/react/RicheditorBlockMention.tsx +0 -18
- package/src/icons/react/RicheditorBlockParagraph.tsx +0 -18
- package/src/icons/react/RicheditorBlockQuote.tsx +0 -18
- package/src/icons/react/RicheditorChecklistCreate.tsx +0 -18
- package/src/icons/react/RicheditorCommentCreate.tsx +0 -18
- package/src/icons/react/RicheditorEntityLinkCreate.tsx +0 -18
- package/src/icons/react/RicheditorHistoryRedo.tsx +0 -18
- package/src/icons/react/RicheditorHistoryUndo.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignCenter.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignLeft.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignRight.tsx +0 -18
- package/src/icons/react/RicheditorImageUpload.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapCenter.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapLeft.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapRight.tsx +0 -18
- package/src/icons/react/RicheditorImageZoom.tsx +0 -18
- package/src/icons/react/RicheditorLinkCreate.tsx +0 -18
- package/src/icons/react/RicheditorLinkedhighlightCreate.tsx +0 -18
- package/src/icons/react/RicheditorListBullet.tsx +0 -18
- package/src/icons/react/RicheditorListIndent.tsx +0 -18
- package/src/icons/react/RicheditorListOrdered.tsx +0 -18
- package/src/icons/react/RicheditorListUnindent.tsx +0 -18
- package/src/icons/react/RicheditorMarkCode.tsx +0 -18
- package/src/icons/react/RicheditorMarkEm.tsx +0 -18
- package/src/icons/react/RicheditorMarkHighlight.tsx +0 -18
- package/src/icons/react/RicheditorMarkStrike.tsx +0 -18
- package/src/icons/react/RicheditorMarkStrong.tsx +0 -18
- package/src/icons/react/RicheditorMarkTextBackgroundColor.tsx +0 -18
- package/src/icons/react/RicheditorMarkUnderline.tsx +0 -18
- package/src/icons/react/RicheditorOpenLink.tsx +0 -18
- package/src/icons/react/RicheditorTableCreate.tsx +0 -18
- package/src/icons/react/RicheditorUnlink.tsx +0 -18
- package/src/icons/react/RicheditorVideoUpload.tsx +0 -18
- package/src/icons/react/RightPanel.tsx +0 -18
- package/src/icons/react/Rows.tsx +0 -18
- package/src/icons/react/RuleScheduled.tsx +0 -18
- package/src/icons/react/Search.tsx +0 -18
- package/src/icons/react/SearchAdd.tsx +0 -18
- package/src/icons/react/SearchFilled.tsx +0 -18
- package/src/icons/react/SearchRemove.tsx +0 -18
- package/src/icons/react/SelfReferenceOff.tsx +0 -18
- package/src/icons/react/SelfReferenceOn.tsx +0 -18
- package/src/icons/react/SendArrow.tsx +0 -18
- package/src/icons/react/SendBackward.tsx +0 -18
- package/src/icons/react/SendToBack.tsx +0 -18
- package/src/icons/react/Settings.tsx +0 -18
- package/src/icons/react/SettingsFilled.tsx +0 -18
- package/src/icons/react/SettingsOff.tsx +0 -18
- package/src/icons/react/Share.tsx +0 -18
- package/src/icons/react/Shared.tsx +0 -18
- package/src/icons/react/ShieldKeyhole.tsx +0 -18
- package/src/icons/react/ShowAuthor.tsx +0 -18
- package/src/icons/react/Sidebar.tsx +0 -18
- package/src/icons/react/SidebarFields.tsx +0 -18
- package/src/icons/react/SidebarFieldsOpened.tsx +0 -18
- package/src/icons/react/SimpleCompass.tsx +0 -18
- package/src/icons/react/Slack.tsx +0 -18
- package/src/icons/react/SlackIcon.tsx +0 -18
- package/src/icons/react/SlideMenu.tsx +0 -18
- package/src/icons/react/SlideMenuClose.tsx +0 -18
- package/src/icons/react/SlideMenuFilled.tsx +0 -18
- package/src/icons/react/SlideMenuOpen.tsx +0 -18
- package/src/icons/react/SmartFolder.tsx +0 -18
- package/src/icons/react/Sort.tsx +0 -18
- package/src/icons/react/SortOnBottom.tsx +0 -18
- package/src/icons/react/SortOnTop.tsx +0 -18
- package/src/icons/react/SpaceApp.tsx +0 -18
- package/src/icons/react/SpaceGenerate.tsx +0 -18
- package/src/icons/react/SpaceList.tsx +0 -18
- package/src/icons/react/SpaceScratch.tsx +0 -18
- package/src/icons/react/SpaceTemplate.tsx +0 -18
- package/src/icons/react/Spinner.tsx +0 -18
- package/src/icons/react/Success.tsx +0 -18
- package/src/icons/react/SuggestIntegration.tsx +0 -18
- package/src/icons/react/SwitchToMention.tsx +0 -18
- package/src/icons/react/SwitchToText.tsx +0 -18
- package/src/icons/react/SwitchToWidget.tsx +0 -18
- package/src/icons/react/TableLayout.tsx +0 -18
- package/src/icons/react/Template.tsx +0 -18
- package/src/icons/react/Templates.tsx +0 -18
- package/src/icons/react/TemplatesFilled.tsx +0 -18
- package/src/icons/react/Terminal.tsx +0 -18
- package/src/icons/react/TextNoWrap.tsx +0 -18
- package/src/icons/react/TextToolAlignBottom.tsx +0 -18
- package/src/icons/react/TextToolAlignMiddle.tsx +0 -18
- package/src/icons/react/TextToolAlignTop.tsx +0 -18
- package/src/icons/react/TextWrap.tsx +0 -18
- package/src/icons/react/ThumbsDown.tsx +0 -18
- package/src/icons/react/ThumbsUp.tsx +0 -18
- package/src/icons/react/Toc.tsx +0 -18
- package/src/icons/react/Twitter.tsx +0 -18
- package/src/icons/react/TypeBoolean.tsx +0 -18
- package/src/icons/react/TypeButton.tsx +0 -18
- package/src/icons/react/TypeCheckbox.tsx +0 -18
- package/src/icons/react/TypeDate.tsx +0 -18
- package/src/icons/react/TypeEmail.tsx +0 -18
- package/src/icons/react/TypeEmoji.tsx +0 -18
- package/src/icons/react/TypeFormula.tsx +0 -18
- package/src/icons/react/TypeFunction.tsx +0 -18
- package/src/icons/react/TypeId.tsx +0 -18
- package/src/icons/react/TypeLocation.tsx +0 -18
- package/src/icons/react/TypeLookup.tsx +0 -18
- package/src/icons/react/TypeMoney.tsx +0 -18
- package/src/icons/react/TypeMultiSelect.tsx +0 -18
- package/src/icons/react/TypeNumber.tsx +0 -18
- package/src/icons/react/TypePercent.tsx +0 -18
- package/src/icons/react/TypePhone.tsx +0 -18
- package/src/icons/react/TypeRelation.tsx +0 -18
- package/src/icons/react/TypeRichText.tsx +0 -18
- package/src/icons/react/TypeRule.tsx +0 -18
- package/src/icons/react/TypeSingleSelect.tsx +0 -18
- package/src/icons/react/TypeText.tsx +0 -18
- package/src/icons/react/TypeUrl.tsx +0 -18
- package/src/icons/react/UnitsAvatar.tsx +0 -18
- package/src/icons/react/UnitsCollection.tsx +0 -18
- package/src/icons/react/UnitsCounter.tsx +0 -18
- package/src/icons/react/UnitsDate.tsx +0 -18
- package/src/icons/react/UnitsDbBadgeAbbr.tsx +0 -18
- package/src/icons/react/UnitsDbBadgeFull.tsx +0 -18
- package/src/icons/react/UnitsDbIcon.tsx +0 -18
- package/src/icons/react/UnitsField.tsx +0 -18
- package/src/icons/react/UnitsFieldIconButton.tsx +0 -18
- package/src/icons/react/UnitsInput.tsx +0 -18
- package/src/icons/react/UnitsProgressBar.tsx +0 -18
- package/src/icons/react/UnitsRichText.tsx +0 -18
- package/src/icons/react/UnitsSnippet.tsx +0 -18
- package/src/icons/react/Unlink.tsx +0 -18
- package/src/icons/react/UnlockFilled.tsx +0 -18
- package/src/icons/react/UnlockOutline.tsx +0 -18
- package/src/icons/react/Upgrade.tsx +0 -18
- package/src/icons/react/UsbFlashDrive.tsx +0 -18
- package/src/icons/react/UserCheck.tsx +0 -18
- package/src/icons/react/UserGroup.tsx +0 -18
- package/src/icons/react/UserGroupRemove.tsx +0 -18
- package/src/icons/react/UserRole.tsx +0 -18
- package/src/icons/react/UserX.tsx +0 -18
- package/src/icons/react/ValueEdit.tsx +0 -18
- package/src/icons/react/ViewAi.tsx +0 -18
- package/src/icons/react/ViewBoard.tsx +0 -18
- package/src/icons/react/ViewCalendar.tsx +0 -18
- package/src/icons/react/ViewCanvas.tsx +0 -18
- package/src/icons/react/ViewChart.tsx +0 -18
- package/src/icons/react/ViewDashboard.tsx +0 -18
- package/src/icons/react/ViewDetails.tsx +0 -18
- package/src/icons/react/ViewDocument.tsx +0 -18
- package/src/icons/react/ViewEmbed.tsx +0 -18
- package/src/icons/react/ViewFeed.tsx +0 -18
- package/src/icons/react/ViewForm.tsx +0 -18
- package/src/icons/react/ViewGallery.tsx +0 -18
- package/src/icons/react/ViewGantt.tsx +0 -18
- package/src/icons/react/ViewList.tsx +0 -18
- package/src/icons/react/ViewMap.tsx +0 -18
- package/src/icons/react/ViewPage.tsx +0 -18
- package/src/icons/react/ViewTable.tsx +0 -18
- package/src/icons/react/ViewTimeline.tsx +0 -18
- package/src/icons/react/Views.tsx +0 -18
- package/src/icons/react/Warning.tsx +0 -18
- package/src/icons/react/WarningTriangle.tsx +0 -18
- package/src/icons/react/WarningTriangleFilled.tsx +0 -18
- package/src/icons/react/Webhooks.tsx +0 -18
- package/src/icons/react/Windows.tsx +0 -18
- package/src/icons/react/WorkspaceMap.tsx +0 -18
- package/src/icons/react/Youtube.tsx +0 -18
- package/src/icons/react/ZoomIn.tsx +0 -18
- package/src/icons/react/ZoomOut.tsx +0 -18
- package/src/link-input/components/AntTextAreaWithCustomReadState.tsx +0 -75
- package/src/palettes/_.test.ts +0 -226
- package/src/palettes/_.ts +0 -115
- /package/config/{jest/testFrameworkSetup.js → vitest/test-framework-setup.js} +0 -0
- /package/src/__mocks__/{styleMock.js → style-mock.js} +0 -0
- /package/src/antd/{AutoComplete.d.ts → auto-complete.d.ts} +0 -0
- /package/src/icons/ast/{Abort.ts → abort.ts} +0 -0
- /package/src/icons/ast/{AccessTemplate.ts → access-template.ts} +0 -0
- /package/src/icons/ast/{ActivityFilled.ts → activity-filled.ts} +0 -0
- /package/src/icons/ast/{ActivityLog.ts → activity-log.ts} +0 -0
- /package/src/icons/ast/{Activity.ts → activity.ts} +0 -0
- /package/src/icons/ast/{AddAfter.ts → add-after.ts} +0 -0
- /package/src/icons/ast/{AddBefore.ts → add-before.ts} +0 -0
- /package/src/icons/ast/{AddCompact.ts → add-compact.ts} +0 -0
- /package/src/icons/ast/{AddDatabase.ts → add-database.ts} +0 -0
- /package/src/icons/ast/{AddGroup.ts → add-group.ts} +0 -0
- /package/src/icons/ast/{AddIntegration.ts → add-integration.ts} +0 -0
- /package/src/icons/ast/{AddReactions.ts → add-reactions.ts} +0 -0
- /package/src/icons/ast/{Add.ts → add.ts} +0 -0
- /package/src/icons/ast/{AiAssistantFilled.ts → ai-assistant-filled.ts} +0 -0
- /package/src/icons/ast/{AiAssistant.ts → ai-assistant.ts} +0 -0
- /package/src/icons/ast/{AiAvatar.ts → ai-avatar.ts} +0 -0
- /package/src/icons/ast/{AiFiberyBuild.ts → ai-fibery-build.ts} +0 -0
- /package/src/icons/ast/{AiSearch.ts → ai-search.ts} +0 -0
- /package/src/icons/ast/{AlertTriangle.ts → alert-triangle.ts} +0 -0
- /package/src/icons/ast/{Anthropic.ts → anthropic.ts} +0 -0
- /package/src/icons/ast/{AppDetails.ts → app-details.ts} +0 -0
- /package/src/icons/ast/{AppStoreOneColor.ts → app-store-one-color.ts} +0 -0
- /package/src/icons/ast/{AppStore.ts → app-store.ts} +0 -0
- /package/src/icons/ast/{AppTemplates.ts → app-templates.ts} +0 -0
- /package/src/icons/ast/{AppWebhooks.ts → app-webhooks.ts} +0 -0
- /package/src/icons/ast/{AppWiki.ts → app-wiki.ts} +0 -0
- /package/src/icons/ast/{App.ts → app.ts} +0 -0
- /package/src/icons/ast/{AppearanceAuto.ts → appearance-auto.ts} +0 -0
- /package/src/icons/ast/{AppearanceDark.ts → appearance-dark.ts} +0 -0
- /package/src/icons/ast/{AppearanceLight.ts → appearance-light.ts} +0 -0
- /package/src/icons/ast/{Apple.ts → apple.ts} +0 -0
- /package/src/icons/ast/{ArrowBarDown.ts → arrow-bar-down.ts} +0 -0
- /package/src/icons/ast/{ArrowBarLeft.ts → arrow-bar-left.ts} +0 -0
- /package/src/icons/ast/{ArrowBarRight.ts → arrow-bar-right.ts} +0 -0
- /package/src/icons/ast/{ArrowBarUp.ts → arrow-bar-up.ts} +0 -0
- /package/src/icons/ast/{ArrowBottom.ts → arrow-bottom.ts} +0 -0
- /package/src/icons/ast/{ArrowCollapseVertical.ts → arrow-collapse-vertical.ts} +0 -0
- /package/src/icons/ast/{ArrowCollapse.ts → arrow-collapse.ts} +0 -0
- /package/src/icons/ast/{ArrowForward.ts → arrow-forward.ts} +0 -0
- /package/src/icons/ast/{ArrowLeft.ts → arrow-left.ts} +0 -0
- /package/src/icons/ast/{ArrowRight.ts → arrow-right.ts} +0 -0
- /package/src/icons/ast/{ArrowTop.ts → arrow-top.ts} +0 -0
- /package/src/icons/ast/{ArrowUpCircle.ts → arrow-up-circle.ts} +0 -0
- /package/src/icons/ast/{ArrowsRightLeft.ts → arrows-right-left.ts} +0 -0
- /package/src/icons/ast/{AskForInput.ts → ask-for-input.ts} +0 -0
- /package/src/icons/ast/{Asterisk.ts → asterisk.ts} +0 -0
- /package/src/icons/ast/{Atom.ts → atom.ts} +0 -0
- /package/src/icons/ast/{AutomationsCancelled.ts → automations-cancelled.ts} +0 -0
- /package/src/icons/ast/{AutomationsDisabled.ts → automations-disabled.ts} +0 -0
- /package/src/icons/ast/{AutomationsError.ts → automations-error.ts} +0 -0
- /package/src/icons/ast/{AutomationsInProgress.ts → automations-in-progress.ts} +0 -0
- /package/src/icons/ast/{AutomationsNotStarted.ts → automations-not-started.ts} +0 -0
- /package/src/icons/ast/{AutomationsSuccess.ts → automations-success.ts} +0 -0
- /package/src/icons/ast/{Back.ts → back.ts} +0 -0
- /package/src/icons/ast/{BacklogIcon.ts → backlog-icon.ts} +0 -0
- /package/src/icons/ast/{BatchActionsIcon.ts → batch-actions-icon.ts} +0 -0
- /package/src/icons/ast/{BellCircle.ts → bell-circle.ts} +0 -0
- /package/src/icons/ast/{BellFilled.ts → bell-filled.ts} +0 -0
- /package/src/icons/ast/{BellOff.ts → bell-off.ts} +0 -0
- /package/src/icons/ast/{BellRinging.ts → bell-ringing.ts} +0 -0
- /package/src/icons/ast/{BellX.ts → bell-x.ts} +0 -0
- /package/src/icons/ast/{Bolt.ts → bolt.ts} +0 -0
- /package/src/icons/ast/{BringForward.ts → bring-forward.ts} +0 -0
- /package/src/icons/ast/{BringToFront.ts → bring-to-front.ts} +0 -0
- /package/src/icons/ast/{Cards.ts → cards.ts} +0 -0
- /package/src/icons/ast/{ChatAi.ts → chat-ai.ts} +0 -0
- /package/src/icons/ast/{ChatBubble.ts → chat-bubble.ts} +0 -0
- /package/src/icons/ast/{ChatFloat.ts → chat-float.ts} +0 -0
- /package/src/icons/ast/{ChatSidebar.ts → chat-sidebar.ts} +0 -0
- /package/src/icons/ast/{Chat.ts → chat.ts} +0 -0
- /package/src/icons/ast/{CheckCircleFilled.ts → check-circle-filled.ts} +0 -0
- /package/src/icons/ast/{CheckCircle.ts → check-circle.ts} +0 -0
- /package/src/icons/ast/{Checked.ts → checked.ts} +0 -0
- /package/src/icons/ast/{Clean.ts → clean.ts} +0 -0
- /package/src/icons/ast/{ClearInputFilled.ts → clear-input-filled.ts} +0 -0
- /package/src/icons/ast/{ClearValue.ts → clear-value.ts} +0 -0
- /package/src/icons/ast/{Clear.ts → clear.ts} +0 -0
- /package/src/icons/ast/{ClockAlarm.ts → clock-alarm.ts} +0 -0
- /package/src/icons/ast/{ClockForward.ts → clock-forward.ts} +0 -0
- /package/src/icons/ast/{Clock.ts → clock.ts} +0 -0
- /package/src/icons/ast/{Close.ts → close.ts} +0 -0
- /package/src/icons/ast/{CollapseAllHorizontal.ts → collapse-all-horizontal.ts} +0 -0
- /package/src/icons/ast/{CollapseAll.ts → collapse-all.ts} +0 -0
- /package/src/icons/ast/{ColorCodingFilled.ts → color-coding-filled.ts} +0 -0
- /package/src/icons/ast/{ColorCoding.ts → color-coding.ts} +0 -0
- /package/src/icons/ast/{Columns2.ts → columns-2.ts} +0 -0
- /package/src/icons/ast/{Columns4.ts → columns-4.ts} +0 -0
- /package/src/icons/ast/{Columns.ts → columns.ts} +0 -0
- /package/src/icons/ast/{CommentBubble.ts → comment-bubble.ts} +0 -0
- /package/src/icons/ast/{Copy.ts → copy.ts} +0 -0
- /package/src/icons/ast/{Create.ts → create.ts} +0 -0
- /package/src/icons/ast/{CreditsFilled.ts → credits-filled.ts} +0 -0
- /package/src/icons/ast/{CrossCircle.ts → cross-circle.ts} +0 -0
- /package/src/icons/ast/{Crosshair.ts → crosshair.ts} +0 -0
- /package/src/icons/ast/{Csv.ts → csv.ts} +0 -0
- /package/src/icons/ast/{DatabaseOff.ts → database-off.ts} +0 -0
- /package/src/icons/ast/{DatabaseStroke.ts → database-stroke.ts} +0 -0
- /package/src/icons/ast/{Database.ts → database.ts} +0 -0
- /package/src/icons/ast/{DateRange.ts → date-range.ts} +0 -0
- /package/src/icons/ast/{Delete.ts → delete.ts} +0 -0
- /package/src/icons/ast/{Demo.ts → demo.ts} +0 -0
- /package/src/icons/ast/{Dependency.ts → dependency.ts} +0 -0
- /package/src/icons/ast/{Dividers.ts → dividers.ts} +0 -0
- /package/src/icons/ast/{Document.ts → document.ts} +0 -0
- /package/src/icons/ast/{DoubleArrowLeft.ts → double-arrow-left.ts} +0 -0
- /package/src/icons/ast/{DoubleArrowRight.ts → double-arrow-right.ts} +0 -0
- /package/src/icons/ast/{DoubleLine.ts → double-line.ts} +0 -0
- /package/src/icons/ast/{DragBlockHandleSingle.ts → drag-block-handle-single.ts} +0 -0
- /package/src/icons/ast/{DragBlockHandle.ts → drag-block-handle.ts} +0 -0
- /package/src/icons/ast/{DragHandle.ts → drag-handle.ts} +0 -0
- /package/src/icons/ast/{Duplicate.ts → duplicate.ts} +0 -0
- /package/src/icons/ast/{DynamicFilterValue.ts → dynamic-filter-value.ts} +0 -0
- /package/src/icons/ast/{EditValue.ts → edit-value.ts} +0 -0
- /package/src/icons/ast/{Email.ts → email.ts} +0 -0
- /package/src/icons/ast/{EmojiDelete.ts → emoji-delete.ts} +0 -0
- /package/src/icons/ast/{EntityCreateFilled.ts → entity-create-filled.ts} +0 -0
- /package/src/icons/ast/{EntityCreate.ts → entity-create.ts} +0 -0
- /package/src/icons/ast/{EntityMerge.ts → entity-merge.ts} +0 -0
- /package/src/icons/ast/{Equation.ts → equation.ts} +0 -0
- /package/src/icons/ast/{ExpandAllHorizontal.ts → expand-all-horizontal.ts} +0 -0
- /package/src/icons/ast/{ExpandAll.ts → expand-all.ts} +0 -0
- /package/src/icons/ast/{Export.ts → export.ts} +0 -0
- /package/src/icons/ast/{ExtensionAssignments.ts → extension-assignments.ts} +0 -0
- /package/src/icons/ast/{ExtensionAvatar.ts → extension-avatar.ts} +0 -0
- /package/src/icons/ast/{ExtensionComments.ts → extension-comments.ts} +0 -0
- /package/src/icons/ast/{ExtensionFiles.ts → extension-files.ts} +0 -0
- /package/src/icons/ast/{ExtensionReferences.ts → extension-references.ts} +0 -0
- /package/src/icons/ast/{ExtensionWorkflow.ts → extension-workflow.ts} +0 -0
- /package/src/icons/ast/{Eye.ts → eye.ts} +0 -0
- /package/src/icons/ast/{FavoritesChecked.ts → favorites-checked.ts} +0 -0
- /package/src/icons/ast/{FavoritesOff.ts → favorites-off.ts} +0 -0
- /package/src/icons/ast/{Favorites.ts → favorites.ts} +0 -0
- /package/src/icons/ast/{FiberyDesktopApp.ts → fibery-desktop-app.ts} +0 -0
- /package/src/icons/ast/{FiberyMono.ts → fibery-mono.ts} +0 -0
- /package/src/icons/ast/{FieldUnit.ts → field-unit.ts} +0 -0
- /package/src/icons/ast/{Fields.ts → fields.ts} +0 -0
- /package/src/icons/ast/{Figma.ts → figma.ts} +0 -0
- /package/src/icons/ast/{FileArchive.ts → file-archive.ts} +0 -0
- /package/src/icons/ast/{FileBroken.ts → file-broken.ts} +0 -0
- /package/src/icons/ast/{FileCounter.ts → file-counter.ts} +0 -0
- /package/src/icons/ast/{FileDocument.ts → file-document.ts} +0 -0
- /package/src/icons/ast/{FileDownload.ts → file-download.ts} +0 -0
- /package/src/icons/ast/{FileImage.ts → file-image.ts} +0 -0
- /package/src/icons/ast/{FileMultiple.ts → file-multiple.ts} +0 -0
- /package/src/icons/ast/{FileOther.ts → file-other.ts} +0 -0
- /package/src/icons/ast/{FilePresentation.ts → file-presentation.ts} +0 -0
- /package/src/icons/ast/{FileTable.ts → file-table.ts} +0 -0
- /package/src/icons/ast/{FileUpload.ts → file-upload.ts} +0 -0
- /package/src/icons/ast/{FileVideo.ts → file-video.ts} +0 -0
- /package/src/icons/ast/{Filter.ts → filter.ts} +0 -0
- /package/src/icons/ast/{FitToScreen.ts → fit-to-screen.ts} +0 -0
- /package/src/icons/ast/{FocusModeOff.ts → focus-mode-off.ts} +0 -0
- /package/src/icons/ast/{FocusMode.ts → focus-mode.ts} +0 -0
- /package/src/icons/ast/{FolderFavorite.ts → folder-favorite.ts} +0 -0
- /package/src/icons/ast/{Folder.ts → folder.ts} +0 -0
- /package/src/icons/ast/{FormWithCover.ts → form-with-cover.ts} +0 -0
- /package/src/icons/ast/{FormWithoutCover.ts → form-without-cover.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOffIcon.ts → fullscreen-mode-off-icon.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOnIcon.ts → fullscreen-mode-on-icon.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOn.ts → fullscreen-mode-on.ts} +0 -0
- /package/src/icons/ast/{Gift.ts → gift.ts} +0 -0
- /package/src/icons/ast/{Github.ts → github.ts} +0 -0
- /package/src/icons/ast/{Gitlab.ts → gitlab.ts} +0 -0
- /package/src/icons/ast/{GlobeSimple.ts → globe-simple.ts} +0 -0
- /package/src/icons/ast/{GlobeUnpublish.ts → globe-unpublish.ts} +0 -0
- /package/src/icons/ast/{Globe.ts → globe.ts} +0 -0
- /package/src/icons/ast/{GoTo.ts → go-to.ts} +0 -0
- /package/src/icons/ast/{GoogleDrive.ts → google-drive.ts} +0 -0
- /package/src/icons/ast/{GoogleMap.ts → google-map.ts} +0 -0
- /package/src/icons/ast/{GraduationCapFilled.ts → graduation-cap-filled.ts} +0 -0
- /package/src/icons/ast/{HeadphonesAi.ts → headphones-ai.ts} +0 -0
- /package/src/icons/ast/{Headphones.ts → headphones.ts} +0 -0
- /package/src/icons/ast/{Hide.ts → hide.ts} +0 -0
- /package/src/icons/ast/{Highlights.ts → highlights.ts} +0 -0
- /package/src/icons/ast/{Hint.ts → hint.ts} +0 -0
- /package/src/icons/ast/{HomeFilled.ts → home-filled.ts} +0 -0
- /package/src/icons/ast/{Home.ts → home.ts} +0 -0
- /package/src/icons/ast/{ImageXmark.ts → image-xmark.ts} +0 -0
- /package/src/icons/ast/{ImportFilled.ts → import-filled.ts} +0 -0
- /package/src/icons/ast/{Import.ts → import.ts} +0 -0
- /package/src/icons/ast/{InfoCircleFilled.ts → info-circle-filled.ts} +0 -0
- /package/src/icons/ast/{InfoCircle.ts → info-circle.ts} +0 -0
- /package/src/icons/ast/{Integration.ts → integration.ts} +0 -0
- /package/src/icons/ast/{IntegrationsFilled.ts → integrations-filled.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationDiscourseColor.ts → integrations-integration-discourse-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationIntercomColor.ts → integrations-integration-intercom-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationSlackColor.ts → integrations-integration-slack-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationZendeskColor.ts → integrations-integration-zendesk-color.ts} +0 -0
- /package/src/icons/ast/{Intercom.ts → intercom.ts} +0 -0
- /package/src/icons/ast/{InvitePeople.ts → invite-people.ts} +0 -0
- /package/src/icons/ast/{ItemsTimeline.ts → items-timeline.ts} +0 -0
- /package/src/icons/ast/{Items.ts → items.ts} +0 -0
- /package/src/icons/ast/{Jira.ts → jira.ts} +0 -0
- /package/src/icons/ast/{Key.ts → key.ts} +0 -0
- /package/src/icons/ast/{KeyboardHideDown.ts → keyboard-hide-down.ts} +0 -0
- /package/src/icons/ast/{Lab.ts → lab.ts} +0 -0
- /package/src/icons/ast/{LayoutDouble.ts → layout-double.ts} +0 -0
- /package/src/icons/ast/{LayoutMultiple.ts → layout-multiple.ts} +0 -0
- /package/src/icons/ast/{LayoutSingle.ts → layout-single.ts} +0 -0
- /package/src/icons/ast/{LeftPanel.ts → left-panel.ts} +0 -0
- /package/src/icons/ast/{LevelPlus.ts → level-plus.ts} +0 -0
- /package/src/icons/ast/{Levels.ts → levels.ts} +0 -0
- /package/src/icons/ast/{LineDivider.ts → line-divider.ts} +0 -0
- /package/src/icons/ast/{LineJump.ts → line-jump.ts} +0 -0
- /package/src/icons/ast/{Link.ts → link.ts} +0 -0
- /package/src/icons/ast/{LocationEdit.ts → location-edit.ts} +0 -0
- /package/src/icons/ast/{LockOutline.ts → lock-outline.ts} +0 -0
- /package/src/icons/ast/{Lock.ts → lock.ts} +0 -0
- /package/src/icons/ast/{Logout.ts → logout.ts} +0 -0
- /package/src/icons/ast/{Loom.ts → loom.ts} +0 -0
- /package/src/icons/ast/{LoupeZoomIn.ts → loupe-zoom-in.ts} +0 -0
- /package/src/icons/ast/{LoupeZoomOut.ts → loupe-zoom-out.ts} +0 -0
- /package/src/icons/ast/{LoupeZoom.ts → loupe-zoom.ts} +0 -0
- /package/src/icons/ast/{ManyPeople.ts → many-people.ts} +0 -0
- /package/src/icons/ast/{MapMode.ts → map-mode.ts} +0 -0
- /package/src/icons/ast/{Markdown.ts → markdown.ts} +0 -0
- /package/src/icons/ast/{MenuCollapser.ts → menu-collapser.ts} +0 -0
- /package/src/icons/ast/{Mermaid.ts → mermaid.ts} +0 -0
- /package/src/icons/ast/{MessagePlusSquare.ts → message-plus-square.ts} +0 -0
- /package/src/icons/ast/{MessagePlus.ts → message-plus.ts} +0 -0
- /package/src/icons/ast/{Milestones.ts → milestones.ts} +0 -0
- /package/src/icons/ast/{Minus.ts → minus.ts} +0 -0
- /package/src/icons/ast/{Miro.ts → miro.ts} +0 -0
- /package/src/icons/ast/{MirrorOff.ts → mirror-off.ts} +0 -0
- /package/src/icons/ast/{MirrorOn.ts → mirror-on.ts} +0 -0
- /package/src/icons/ast/{Mixpanel.ts → mixpanel.ts} +0 -0
- /package/src/icons/ast/{Monitor.ts → monitor.ts} +0 -0
- /package/src/icons/ast/{MoreCompact.ts → more-compact.ts} +0 -0
- /package/src/icons/ast/{More.ts → more.ts} +0 -0
- /package/src/icons/ast/{MoveBottom.ts → move-bottom.ts} +0 -0
- /package/src/icons/ast/{MoveLeft.ts → move-left.ts} +0 -0
- /package/src/icons/ast/{MoveRight.ts → move-right.ts} +0 -0
- /package/src/icons/ast/{MoveSpace.ts → move-space.ts} +0 -0
- /package/src/icons/ast/{MoveTop.ts → move-top.ts} +0 -0
- /package/src/icons/ast/{NetworkAdd.ts → network-add.ts} +0 -0
- /package/src/icons/ast/{Network.ts → network.ts} +0 -0
- /package/src/icons/ast/{NoBorder.ts → no-border.ts} +0 -0
- /package/src/icons/ast/{NoFill.ts → no-fill.ts} +0 -0
- /package/src/icons/ast/{Notifications.ts → notifications.ts} +0 -0
- /package/src/icons/ast/{ObjChild.ts → obj-child.ts} +0 -0
- /package/src/icons/ast/{ObjM2M.ts → obj-m2m.ts} +0 -0
- /package/src/icons/ast/{ObjO2O.ts → obj-o2o.ts} +0 -0
- /package/src/icons/ast/{ObjParent.ts → obj-parent.ts} +0 -0
- /package/src/icons/ast/{ObjSelf.ts → obj-self.ts} +0 -0
- /package/src/icons/ast/{OnSchedule.ts → on-schedule.ts} +0 -0
- /package/src/icons/ast/{OpenAi.ts → open-ai.ts} +0 -0
- /package/src/icons/ast/{OpenAsPage.ts → open-as-page.ts} +0 -0
- /package/src/icons/ast/{PageRegularMode.ts → page-regular-mode.ts} +0 -0
- /package/src/icons/ast/{PageWideMode.ts → page-wide-mode.ts} +0 -0
- /package/src/icons/ast/{PanelAdd.ts → panel-add.ts} +0 -0
- /package/src/icons/ast/{Pencil.ts → pencil.ts} +0 -0
- /package/src/icons/ast/{PeopleCheck.ts → people-check.ts} +0 -0
- /package/src/icons/ast/{People.ts → people.ts} +0 -0
- /package/src/icons/ast/{Photo.ts → photo.ts} +0 -0
- /package/src/icons/ast/{PinFilled.ts → pin-filled.ts} +0 -0
- /package/src/icons/ast/{Pin.ts → pin.ts} +0 -0
- /package/src/icons/ast/{Popup.ts → popup.ts} +0 -0
- /package/src/icons/ast/{Posts.ts → posts.ts} +0 -0
- /package/src/icons/ast/{PresentPlay.ts → present-play.ts} +0 -0
- /package/src/icons/ast/{PresentStop.ts → present-stop.ts} +0 -0
- /package/src/icons/ast/{Print.ts → print.ts} +0 -0
- /package/src/icons/ast/{PrivateItems.ts → private-items.ts} +0 -0
- /package/src/icons/ast/{Question.ts → question.ts} +0 -0
- /package/src/icons/ast/{QuickFilterPersonal.ts → quick-filter-personal.ts} +0 -0
- /package/src/icons/ast/{QuickFilter.ts → quick-filter.ts} +0 -0
- /package/src/icons/ast/{ReadOnly.ts → read-only.ts} +0 -0
- /package/src/icons/ast/{Refresh.ts → refresh.ts} +0 -0
- /package/src/icons/ast/{RemovePeople.ts → remove-people.ts} +0 -0
- /package/src/icons/ast/{Remove.ts → remove.ts} +0 -0
- /package/src/icons/ast/{Reply.ts → reply.ts} +0 -0
- /package/src/icons/ast/{ResetPassword.ts → reset-password.ts} +0 -0
- /package/src/icons/ast/{Restore.ts → restore.ts} +0 -0
- /package/src/icons/ast/{RicheditorActionsMore.ts → richeditor-actions-more.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockCallout.ts → richeditor-block-callout.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockCode.ts → richeditor-block-code.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockEmbed.ts → richeditor-block-embed.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockEntity.ts → richeditor-block-entity.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockFile.ts → richeditor-block-file.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH1.ts → richeditor-block-h1.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH2.ts → richeditor-block-h2.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH3.ts → richeditor-block-h3.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH4.ts → richeditor-block-h4.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockMention.ts → richeditor-block-mention.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockParagraph.ts → richeditor-block-paragraph.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockQuote.ts → richeditor-block-quote.ts} +0 -0
- /package/src/icons/ast/{RicheditorChecklistCreate.ts → richeditor-checklist-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorCommentCreate.ts → richeditor-comment-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorEntityLinkCreate.ts → richeditor-entity-link-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorHistoryRedo.ts → richeditor-history-redo.ts} +0 -0
- /package/src/icons/ast/{RicheditorHistoryUndo.ts → richeditor-history-undo.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignCenter.ts → richeditor-image-align-center.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignLeft.ts → richeditor-image-align-left.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignRight.ts → richeditor-image-align-right.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageUpload.ts → richeditor-image-upload.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapCenter.ts → richeditor-image-wrap-center.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapLeft.ts → richeditor-image-wrap-left.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapRight.ts → richeditor-image-wrap-right.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageZoom.ts → richeditor-image-zoom.ts} +0 -0
- /package/src/icons/ast/{RicheditorLinkCreate.ts → richeditor-link-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorLinkedhighlightCreate.ts → richeditor-linkedhighlight-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorListBullet.ts → richeditor-list-bullet.ts} +0 -0
- /package/src/icons/ast/{RicheditorListIndent.ts → richeditor-list-indent.ts} +0 -0
- /package/src/icons/ast/{RicheditorListOrdered.ts → richeditor-list-ordered.ts} +0 -0
- /package/src/icons/ast/{RicheditorListUnindent.ts → richeditor-list-unindent.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkCode.ts → richeditor-mark-code.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkEm.ts → richeditor-mark-em.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkHighlight.ts → richeditor-mark-highlight.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkStrike.ts → richeditor-mark-strike.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkStrong.ts → richeditor-mark-strong.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkTextBackgroundColor.ts → richeditor-mark-text-background-color.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkUnderline.ts → richeditor-mark-underline.ts} +0 -0
- /package/src/icons/ast/{RicheditorOpenLink.ts → richeditor-open-link.ts} +0 -0
- /package/src/icons/ast/{RicheditorTableCreate.ts → richeditor-table-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorUnlink.ts → richeditor-unlink.ts} +0 -0
- /package/src/icons/ast/{RicheditorVideoUpload.ts → richeditor-video-upload.ts} +0 -0
- /package/src/icons/ast/{RightPanel.ts → right-panel.ts} +0 -0
- /package/src/icons/ast/{Rows.ts → rows.ts} +0 -0
- /package/src/icons/ast/{RuleScheduled.ts → rule-scheduled.ts} +0 -0
- /package/src/icons/ast/{SearchAdd.ts → search-add.ts} +0 -0
- /package/src/icons/ast/{SearchFilled.ts → search-filled.ts} +0 -0
- /package/src/icons/ast/{SearchRemove.ts → search-remove.ts} +0 -0
- /package/src/icons/ast/{Search.ts → search.ts} +0 -0
- /package/src/icons/ast/{SelfReferenceOff.ts → self-reference-off.ts} +0 -0
- /package/src/icons/ast/{SelfReferenceOn.ts → self-reference-on.ts} +0 -0
- /package/src/icons/ast/{SendArrow.ts → send-arrow.ts} +0 -0
- /package/src/icons/ast/{SendBackward.ts → send-backward.ts} +0 -0
- /package/src/icons/ast/{SendToBack.ts → send-to-back.ts} +0 -0
- /package/src/icons/ast/{SettingsFilled.ts → settings-filled.ts} +0 -0
- /package/src/icons/ast/{SettingsOff.ts → settings-off.ts} +0 -0
- /package/src/icons/ast/{Settings.ts → settings.ts} +0 -0
- /package/src/icons/ast/{Share.ts → share.ts} +0 -0
- /package/src/icons/ast/{Shared.ts → shared.ts} +0 -0
- /package/src/icons/ast/{ShieldKeyhole.ts → shield-keyhole.ts} +0 -0
- /package/src/icons/ast/{ShowAuthor.ts → show-author.ts} +0 -0
- /package/src/icons/ast/{SidebarFieldsOpened.ts → sidebar-fields-opened.ts} +0 -0
- /package/src/icons/ast/{SidebarFields.ts → sidebar-fields.ts} +0 -0
- /package/src/icons/ast/{Sidebar.ts → sidebar.ts} +0 -0
- /package/src/icons/ast/{SimpleCompass.ts → simple-compass.ts} +0 -0
- /package/src/icons/ast/{SlackIcon.ts → slack-icon.ts} +0 -0
- /package/src/icons/ast/{Slack.ts → slack.ts} +0 -0
- /package/src/icons/ast/{SlideMenuClose.ts → slide-menu-close.ts} +0 -0
- /package/src/icons/ast/{SlideMenuFilled.ts → slide-menu-filled.ts} +0 -0
- /package/src/icons/ast/{SlideMenuOpen.ts → slide-menu-open.ts} +0 -0
- /package/src/icons/ast/{SlideMenu.ts → slide-menu.ts} +0 -0
- /package/src/icons/ast/{SmartFolder.ts → smart-folder.ts} +0 -0
- /package/src/icons/ast/{SortOnBottom.ts → sort-on-bottom.ts} +0 -0
- /package/src/icons/ast/{SortOnTop.ts → sort-on-top.ts} +0 -0
- /package/src/icons/ast/{Sort.ts → sort.ts} +0 -0
- /package/src/icons/ast/{SpaceApp.ts → space-app.ts} +0 -0
- /package/src/icons/ast/{SpaceGenerate.ts → space-generate.ts} +0 -0
- /package/src/icons/ast/{SpaceList.ts → space-list.ts} +0 -0
- /package/src/icons/ast/{SpaceScratch.ts → space-scratch.ts} +0 -0
- /package/src/icons/ast/{SpaceTemplate.ts → space-template.ts} +0 -0
- /package/src/icons/ast/{Spinner.ts → spinner.ts} +0 -0
- /package/src/icons/ast/{Success.ts → success.ts} +0 -0
- /package/src/icons/ast/{SuggestIntegration.ts → suggest-integration.ts} +0 -0
- /package/src/icons/ast/{SwitchToMention.ts → switch-to-mention.ts} +0 -0
- /package/src/icons/ast/{SwitchToText.ts → switch-to-text.ts} +0 -0
- /package/src/icons/ast/{SwitchToWidget.ts → switch-to-widget.ts} +0 -0
- /package/src/icons/ast/{TableLayout.ts → table-layout.ts} +0 -0
- /package/src/icons/ast/{Template.ts → template.ts} +0 -0
- /package/src/icons/ast/{TemplatesFilled.ts → templates-filled.ts} +0 -0
- /package/src/icons/ast/{Templates.ts → templates.ts} +0 -0
- /package/src/icons/ast/{Terminal.ts → terminal.ts} +0 -0
- /package/src/icons/ast/{TextNoWrap.ts → text-no-wrap.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignBottom.ts → text-tool-align-bottom.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignMiddle.ts → text-tool-align-middle.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignTop.ts → text-tool-align-top.ts} +0 -0
- /package/src/icons/ast/{TextWrap.ts → text-wrap.ts} +0 -0
- /package/src/icons/ast/{ThumbsDown.ts → thumbs-down.ts} +0 -0
- /package/src/icons/ast/{ThumbsUp.ts → thumbs-up.ts} +0 -0
- /package/src/icons/ast/{Toc.ts → toc.ts} +0 -0
- /package/src/icons/ast/{Twitter.ts → twitter.ts} +0 -0
- /package/src/icons/ast/{TypeBoolean.ts → type-boolean.ts} +0 -0
- /package/src/icons/ast/{TypeButton.ts → type-button.ts} +0 -0
- /package/src/icons/ast/{TypeCheckbox.ts → type-checkbox.ts} +0 -0
- /package/src/icons/ast/{TypeDate.ts → type-date.ts} +0 -0
- /package/src/icons/ast/{TypeEmail.ts → type-email.ts} +0 -0
- /package/src/icons/ast/{TypeEmoji.ts → type-emoji.ts} +0 -0
- /package/src/icons/ast/{TypeFormula.ts → type-formula.ts} +0 -0
- /package/src/icons/ast/{TypeFunction.ts → type-function.ts} +0 -0
- /package/src/icons/ast/{TypeId.ts → type-id.ts} +0 -0
- /package/src/icons/ast/{TypeLocation.ts → type-location.ts} +0 -0
- /package/src/icons/ast/{TypeLookup.ts → type-lookup.ts} +0 -0
- /package/src/icons/ast/{TypeMoney.ts → type-money.ts} +0 -0
- /package/src/icons/ast/{TypeMultiSelect.ts → type-multi-select.ts} +0 -0
- /package/src/icons/ast/{TypeNumber.ts → type-number.ts} +0 -0
- /package/src/icons/ast/{TypePercent.ts → type-percent.ts} +0 -0
- /package/src/icons/ast/{TypePhone.ts → type-phone.ts} +0 -0
- /package/src/icons/ast/{TypeRelation.ts → type-relation.ts} +0 -0
- /package/src/icons/ast/{TypeRichText.ts → type-rich-text.ts} +0 -0
- /package/src/icons/ast/{TypeRule.ts → type-rule.ts} +0 -0
- /package/src/icons/ast/{TypeSingleSelect.ts → type-single-select.ts} +0 -0
- /package/src/icons/ast/{TypeText.ts → type-text.ts} +0 -0
- /package/src/icons/ast/{TypeUrl.ts → type-url.ts} +0 -0
- /package/src/icons/ast/{UnitsAvatar.ts → units-avatar.ts} +0 -0
- /package/src/icons/ast/{UnitsCollection.ts → units-collection.ts} +0 -0
- /package/src/icons/ast/{UnitsCounter.ts → units-counter.ts} +0 -0
- /package/src/icons/ast/{UnitsDate.ts → units-date.ts} +0 -0
- /package/src/icons/ast/{UnitsDbBadgeAbbr.ts → units-db-badge-abbr.ts} +0 -0
- /package/src/icons/ast/{UnitsDbBadgeFull.ts → units-db-badge-full.ts} +0 -0
- /package/src/icons/ast/{UnitsDbIcon.ts → units-db-icon.ts} +0 -0
- /package/src/icons/ast/{UnitsFieldIconButton.ts → units-field-icon-button.ts} +0 -0
- /package/src/icons/ast/{UnitsField.ts → units-field.ts} +0 -0
- /package/src/icons/ast/{UnitsInput.ts → units-input.ts} +0 -0
- /package/src/icons/ast/{UnitsProgressBar.ts → units-progress-bar.ts} +0 -0
- /package/src/icons/ast/{UnitsRichText.ts → units-rich-text.ts} +0 -0
- /package/src/icons/ast/{UnitsSnippet.ts → units-snippet.ts} +0 -0
- /package/src/icons/ast/{Unlink.ts → unlink.ts} +0 -0
- /package/src/icons/ast/{UnlockFilled.ts → unlock-filled.ts} +0 -0
- /package/src/icons/ast/{UnlockOutline.ts → unlock-outline.ts} +0 -0
- /package/src/icons/ast/{Upgrade.ts → upgrade.ts} +0 -0
- /package/src/icons/ast/{UsbFlashDrive.ts → usb-flash-drive.ts} +0 -0
- /package/src/icons/ast/{UserCheck.ts → user-check.ts} +0 -0
- /package/src/icons/ast/{UserGroupRemove.ts → user-group-remove.ts} +0 -0
- /package/src/icons/ast/{UserGroup.ts → user-group.ts} +0 -0
- /package/src/icons/ast/{UserRole.ts → user-role.ts} +0 -0
- /package/src/icons/ast/{UserX.ts → user-x.ts} +0 -0
- /package/src/icons/ast/{ValueEdit.ts → value-edit.ts} +0 -0
- /package/src/icons/ast/{ViewAi.ts → view-ai.ts} +0 -0
- /package/src/icons/ast/{ViewBoard.ts → view-board.ts} +0 -0
- /package/src/icons/ast/{ViewCalendar.ts → view-calendar.ts} +0 -0
- /package/src/icons/ast/{ViewCanvas.ts → view-canvas.ts} +0 -0
- /package/src/icons/ast/{ViewChart.ts → view-chart.ts} +0 -0
- /package/src/icons/ast/{ViewDashboard.ts → view-dashboard.ts} +0 -0
- /package/src/icons/ast/{ViewDetails.ts → view-details.ts} +0 -0
- /package/src/icons/ast/{ViewDocument.ts → view-document.ts} +0 -0
- /package/src/icons/ast/{ViewEmbed.ts → view-embed.ts} +0 -0
- /package/src/icons/ast/{ViewFeed.ts → view-feed.ts} +0 -0
- /package/src/icons/ast/{ViewForm.ts → view-form.ts} +0 -0
- /package/src/icons/ast/{ViewGallery.ts → view-gallery.ts} +0 -0
- /package/src/icons/ast/{ViewGantt.ts → view-gantt.ts} +0 -0
- /package/src/icons/ast/{ViewList.ts → view-list.ts} +0 -0
- /package/src/icons/ast/{ViewMap.ts → view-map.ts} +0 -0
- /package/src/icons/ast/{ViewPage.ts → view-page.ts} +0 -0
- /package/src/icons/ast/{ViewTable.ts → view-table.ts} +0 -0
- /package/src/icons/ast/{ViewTimeline.ts → view-timeline.ts} +0 -0
- /package/src/icons/ast/{Views.ts → views.ts} +0 -0
- /package/src/icons/ast/{WarningTriangleFilled.ts → warning-triangle-filled.ts} +0 -0
- /package/src/icons/ast/{WarningTriangle.ts → warning-triangle.ts} +0 -0
- /package/src/icons/ast/{Warning.ts → warning.ts} +0 -0
- /package/src/icons/ast/{Webhooks.ts → webhooks.ts} +0 -0
- /package/src/icons/ast/{Windows.ts → windows.ts} +0 -0
- /package/src/icons/ast/{WorkspaceMap.ts → workspace-map.ts} +0 -0
- /package/src/icons/ast/{Youtube.ts → youtube.ts} +0 -0
- /package/src/icons/ast/{ZoomIn.ts → zoom-in.ts} +0 -0
- /package/src/icons/ast/{ZoomOut.ts → zoom-out.ts} +0 -0
- /package/src/{is-iOS.ts → is-ios.ts} +0 -0
package/src/scale-generator.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {cssFromColor} from "./color-utils";
|
|
2
2
|
import type {ColorScale, OneBasedScale, ZeroBasedScale} from "./design-system/types";
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function base0FromScale<T>(scale: OneBasedScale<T>) {
|
|
5
5
|
return scale.slice(1) as unknown as ZeroBasedScale<T>;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
+
export function scaleFromBase0T<T>(scale: ZeroBasedScale<T>) {
|
|
9
|
+
return [null, ...scale] as OneBasedScale<T>;
|
|
10
|
+
}
|
|
11
|
+
|
|
8
12
|
export interface ScaleCurves {
|
|
9
13
|
lightness: ZeroBasedScale<number>; // 0-100 scale
|
|
10
14
|
chroma: ZeroBasedScale<number>; // multipliers relative to peakChroma
|
|
@@ -127,19 +131,23 @@ function applyContrast(L: number, contrast: number): number {
|
|
|
127
131
|
return Math.max(0, Math.min(100, adjusted));
|
|
128
132
|
}
|
|
129
133
|
|
|
134
|
+
function map<T>(ts: ZeroBasedScale<T>, mapper: (_: T, number: number) => string) {
|
|
135
|
+
return ts.map(mapper) as unknown as ZeroBasedScale<string>;
|
|
136
|
+
}
|
|
137
|
+
|
|
130
138
|
export function generateColorScale(config: ScaleConfig): ColorScale {
|
|
131
139
|
const {hue, chroma, mode, curves, contrast = 1} = config;
|
|
132
140
|
|
|
133
141
|
const defaultCurves = mode === "light" ? DEFAULT_LIGHT_CURVES : DEFAULT_DARK_CURVES;
|
|
134
142
|
const {lightness, chroma: chromaCurve} = curves ?? defaultCurves;
|
|
135
143
|
|
|
136
|
-
const steps =
|
|
144
|
+
const steps = map(lightness, (L, i) => {
|
|
137
145
|
const adjustedL = applyContrast(L, contrast);
|
|
138
146
|
const C = chroma * chromaCurve[i];
|
|
139
|
-
return
|
|
147
|
+
return cssFromColor({mode: "oklch", l: adjustedL / 100, c: C, h: hue, alpha: 1});
|
|
140
148
|
});
|
|
141
149
|
|
|
142
|
-
return
|
|
150
|
+
return scaleFromBase0T(steps);
|
|
143
151
|
}
|
|
144
152
|
|
|
145
153
|
/**
|
|
@@ -300,26 +308,31 @@ export function paletteFromHueBoth(hue: number): {light: ColorScale; dark: Color
|
|
|
300
308
|
};
|
|
301
309
|
}
|
|
302
310
|
|
|
303
|
-
|
|
311
|
+
const alphasWhite: ZeroBasedScale<number> = [0, 0.01, 0.03, 0.06, 0.09, 0.12, 0.18, 0.25, 0.39, 0.45, 0.59, 0.92];
|
|
312
|
+
const alphasBlack: ZeroBasedScale<number> = [0.01, 0.03, 0.05, 0.07, 0.09, 0.11, 0.14, 0.22, 0.44, 0.48, 0.57, 0.91];
|
|
313
|
+
|
|
314
|
+
function colorScaleFrom(base0: ZeroBasedScale<string>) {
|
|
315
|
+
return [null, ...base0] as ColorScale;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
function map0BasedScale<T, U>(alphas: ZeroBasedScale<T>, mapper: (_: T) => U) {
|
|
319
|
+
return alphas.map(mapper) as unknown as ZeroBasedScale<U>;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export function generateWhites(h: number, chroma: number, luminosity = 1, chromaMul = 1, alphas = alphasWhite) {
|
|
304
323
|
const c = chroma * 0.1 * chromaMul;
|
|
305
324
|
const l = (1 - chroma * 0.1) * luminosity;
|
|
306
325
|
return {
|
|
307
|
-
white:
|
|
308
|
-
whiteA:
|
|
309
|
-
null,
|
|
310
|
-
...[0, 0.01, 0.03, 0.06, 0.09, 0.12, 0.18, 0.25, 0.39, 0.45, 0.59, 0.92].map((a) => fromOKLCH(l, c, hue, a)),
|
|
311
|
-
] as unknown as ColorScale,
|
|
326
|
+
white: cssFromColor({mode: "oklch", l, c, h}),
|
|
327
|
+
whiteA: colorScaleFrom(map0BasedScale(alphas, (alpha) => cssFromColor({mode: "oklch", l, c, h, alpha}))),
|
|
312
328
|
};
|
|
313
329
|
}
|
|
314
330
|
|
|
315
|
-
export function generateBlacks(
|
|
331
|
+
export function generateBlacks(h: number, chroma: number, luminosity = 1, chromaMul = 1, alphas = alphasBlack) {
|
|
316
332
|
const c = chroma * 0.1 * chromaMul;
|
|
317
333
|
const l = chroma * 0.1 * 4 * luminosity;
|
|
318
334
|
return {
|
|
319
|
-
black:
|
|
320
|
-
blackA:
|
|
321
|
-
null,
|
|
322
|
-
...[0.01, 0.03, 0.05, 0.07, 0.09, 0.11, 0.14, 0.22, 0.44, 0.48, 0.57, 0.91].map((a) => fromOKLCH(l, c, hue, a)),
|
|
323
|
-
] as unknown as ColorScale,
|
|
335
|
+
black: cssFromColor({mode: "oklch", l, c, h}),
|
|
336
|
+
blackA: colorScaleFrom(map0BasedScale(alphas, (alpha) => cssFromColor({mode: "oklch", l, c, h, alpha}))),
|
|
324
337
|
};
|
|
325
338
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {ClearIndicatorProps, GroupBase, MultiValueRemoveProps} from "react-select";
|
|
1
|
+
import type {ClearIndicatorProps, GroupBase, MultiValueRemoveProps} from "react-select";
|
|
2
|
+
|
|
2
3
|
import {IconButton} from "../../button/icon-button";
|
|
3
|
-
import RemoveIcon from "../../icons/react/
|
|
4
|
+
import RemoveIcon from "../../icons/react/remove";
|
|
4
5
|
|
|
5
6
|
export function ClearIndicator<
|
|
6
7
|
TOption,
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import {css} from "@linaria/core";
|
|
1
2
|
import cn from "classnames";
|
|
2
|
-
import {DropdownIndicatorProps} from "react-select";
|
|
3
|
-
import {expanderExpandedStyle} from "../styles";
|
|
4
|
-
import ArrowCollapseVertical from "../../icons/react/ArrowCollapseVertical";
|
|
5
|
-
import {themeVars, transition} from "../../design-system";
|
|
6
3
|
import React from "react";
|
|
7
|
-
import {
|
|
8
|
-
|
|
4
|
+
import type {DropdownIndicatorProps} from "react-select";
|
|
5
|
+
|
|
6
|
+
import {themeVars, transition} from "../../design-system";
|
|
7
|
+
import ArrowCollapseVertical from "../../icons/react/arrow-collapse-vertical";
|
|
8
|
+
import type {GroupBase} from "../select";
|
|
9
|
+
import {expanderExpandedStyle} from "../styles";
|
|
9
10
|
|
|
10
11
|
const expanderStyle = css`
|
|
11
12
|
transition: transform ${transition};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type {GroupHeadingProps} from "react-select";
|
|
3
|
+
import {components} from "react-select";
|
|
4
|
+
|
|
5
|
+
import {fontSize, layout, space, textStyles, themeVars} from "../../design-system";
|
|
6
|
+
import {mobileRootSelector} from "../../mobile-styles";
|
|
4
7
|
import {TooltipIfOverflown} from "../../tooltip-if-overflown";
|
|
5
|
-
import {GroupBase} from "../
|
|
8
|
+
import type {GroupBase} from "../select";
|
|
6
9
|
import {isPureTextChildren} from "../util";
|
|
7
|
-
import {mobileRootSelector} from "../../mobile-styles";
|
|
8
10
|
|
|
9
11
|
export const groupHeadingNulledStyles = {
|
|
10
12
|
paddingLeft: "",
|
|
@@ -32,7 +34,7 @@ const groupHeadingClass = css`
|
|
|
32
34
|
text-overflow: ellipsis;
|
|
33
35
|
${mobileRootSelector} & {
|
|
34
36
|
min-height: ${layout.mobileMenuItemHeight}px;
|
|
35
|
-
font-size: ${
|
|
37
|
+
font-size: ${fontSize.sm}px;
|
|
36
38
|
}
|
|
37
39
|
`;
|
|
38
40
|
const groupHeadingContentClass = css`
|
|
@@ -1,19 +1,13 @@
|
|
|
1
1
|
import compact from "lodash/compact";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ComponentType,
|
|
5
|
-
CSSProperties,
|
|
6
|
-
ReactNode,
|
|
7
|
-
useContext,
|
|
8
|
-
useEffect,
|
|
9
|
-
useMemo,
|
|
10
|
-
useRef,
|
|
11
|
-
useState,
|
|
12
|
-
} from "react";
|
|
2
|
+
import type {ComponentType, CSSProperties, ReactNode} from "react";
|
|
3
|
+
import {Children, useContext, useEffect, useMemo, useRef, useState} from "react";
|
|
13
4
|
import type {GroupHeadingProps, GroupProps, MenuListProps} from "react-select";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
5
|
+
import type {VListHandle} from "virtua";
|
|
6
|
+
import {VList} from "virtua";
|
|
7
|
+
|
|
16
8
|
import {isGroupChild, isReactElementWithProps} from "../reflection";
|
|
9
|
+
import type {GroupBase} from "../util";
|
|
10
|
+
import {ReactSelectRefContext} from "../util";
|
|
17
11
|
|
|
18
12
|
const DEFAULT_ITEM_SIZE_ESTIMATE = 48;
|
|
19
13
|
|
|
@@ -1,23 +1,17 @@
|
|
|
1
1
|
import compact from "lodash/compact";
|
|
2
2
|
import isFunction from "lodash/isFunction";
|
|
3
3
|
import isObject from "lodash/isObject";
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
useEffect,
|
|
11
|
-
useMemo,
|
|
12
|
-
useRef,
|
|
13
|
-
useState,
|
|
14
|
-
} from "react";
|
|
15
|
-
import {GroupHeadingProps, GroupProps, MenuListProps} from "react-select";
|
|
16
|
-
import {ItemContent, Virtuoso, VirtuosoHandle} from "react-virtuoso";
|
|
4
|
+
import type {ComponentType, CSSProperties, ReactNode} from "react";
|
|
5
|
+
import {Children, useContext, useEffect, useMemo, useRef, useState} from "react";
|
|
6
|
+
import type {GroupHeadingProps, GroupProps, MenuListProps} from "react-select";
|
|
7
|
+
import type {ItemContent, VirtuosoHandle} from "react-virtuoso";
|
|
8
|
+
import {Virtuoso} from "react-virtuoso";
|
|
9
|
+
|
|
17
10
|
import {layout} from "../../../src/design-system";
|
|
18
|
-
import {GroupBase, ReactSelectRefContext} from "../util";
|
|
19
|
-
import {useSelectControlSettings} from "../select-control-settings-context";
|
|
20
11
|
import {useIsPhone} from "../../use-is-phone";
|
|
12
|
+
import {useSelectControlSettings} from "../select-control-settings-context";
|
|
13
|
+
import type {GroupBase} from "../util";
|
|
14
|
+
import {ReactSelectRefContext} from "../util";
|
|
21
15
|
|
|
22
16
|
// Threshold to determine when to scroll: if focused item is less than this visible, scroll it into view
|
|
23
17
|
const MINIMAL_VISIBLE_PORTION_TO_SCROLL_INTO_VIEW = 0.2;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {css, cx} from "@linaria/core";
|
|
2
|
-
import {
|
|
2
|
+
import type {CSSObjectWithLabel, MenuProps} from "react-select";
|
|
3
|
+
import {components} from "react-select";
|
|
3
4
|
import type {MenuPortalProps} from "react-select/dist/declarations/src/components/Menu";
|
|
5
|
+
|
|
4
6
|
import {border, space, themeVars} from "../../design-system";
|
|
5
7
|
import {ThemeProvider} from "../../theme-provider";
|
|
6
|
-
import {GroupBase} from "../
|
|
8
|
+
import type {GroupBase} from "../select";
|
|
7
9
|
|
|
8
10
|
export const MenuListNulledStyles: CSSObjectWithLabel = {
|
|
9
11
|
paddingTop: "",
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import {css, cx} from "@linaria/core";
|
|
2
|
+
import type {CSSProperties} from "react";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import type {NoticeProps} from "react-select";
|
|
5
|
+
|
|
6
|
+
import {space, textClasses} from "../../design-system";
|
|
2
7
|
import {ListRowContent} from "../../lists/list-row-surface";
|
|
3
|
-
import {
|
|
4
|
-
import {space, textStyles} from "../../design-system";
|
|
5
|
-
import {NoticeProps} from "react-select";
|
|
6
|
-
import {GroupBase} from "../util";
|
|
8
|
+
import type {GroupBase} from "../util";
|
|
7
9
|
|
|
8
10
|
const noOptionMessageClass = css`
|
|
9
11
|
cursor: default;
|
|
@@ -15,7 +17,6 @@ const noOptionMessageContentClass = css`
|
|
|
15
17
|
text-overflow: ellipsis;
|
|
16
18
|
white-space: normal;
|
|
17
19
|
max-width: 100%;
|
|
18
|
-
${{...textStyles.regular}}
|
|
19
20
|
padding: ${space.s4}px ${space.s6}px;
|
|
20
21
|
`;
|
|
21
22
|
|
|
@@ -26,7 +27,7 @@ export const NoOptionsMessage = <Option, isMulty extends boolean, Group extends
|
|
|
26
27
|
return (
|
|
27
28
|
<div className={noOptionMessageClass}>
|
|
28
29
|
<ListRowContent
|
|
29
|
-
contentClassName={noOptionMessageContentClass}
|
|
30
|
+
contentClassName={cx(textClasses.regular, noOptionMessageContentClass)}
|
|
30
31
|
style={getStyles("noOptionsMessage", props) as CSSProperties}
|
|
31
32
|
>
|
|
32
33
|
{children}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
2
|
import cn from "classnames";
|
|
3
|
-
import {ComponentProps
|
|
4
|
-
import {
|
|
3
|
+
import type {ComponentProps} from "react";
|
|
4
|
+
import {useMemo} from "react";
|
|
5
|
+
import type {OptionProps} from "react-select";
|
|
6
|
+
import {components} from "react-select";
|
|
7
|
+
|
|
5
8
|
import {layout, space} from "../../design-system";
|
|
6
9
|
import {ListRowContent, ListRowSurface} from "../../lists/list-row-surface";
|
|
10
|
+
import {mobileRootSelector} from "../../mobile-styles";
|
|
7
11
|
import {TooltipIfOverflown} from "../../tooltip-if-overflown";
|
|
8
|
-
import {GroupBase} from "../
|
|
12
|
+
import type {GroupBase} from "../select";
|
|
9
13
|
import {isPureTextChildren} from "../util";
|
|
10
|
-
import {mobileRootSelector} from "../../mobile-styles";
|
|
11
14
|
|
|
12
15
|
export const OptionNulledVitualizedStyles = {
|
|
13
16
|
height: layout.menuItemHeight,
|
package/src/select/index.tsx
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
import {css, cx} from "@linaria/core";
|
|
2
|
+
import type {ForwardedRef} from "react";
|
|
3
|
+
import React, {forwardRef} from "react";
|
|
4
|
+
|
|
5
|
+
import type {$TSFixMe} from "../tsfixme";
|
|
1
6
|
import {useIsPhone} from "../use-is-phone";
|
|
2
7
|
import type {GroupBase, SelectInstance, SelectProps} from "./select";
|
|
3
8
|
import {combineStyles, SelectComponent} from "./select";
|
|
4
|
-
import React, {ForwardedRef, forwardRef} from "react";
|
|
5
9
|
import {SelectInPopover} from "./select-in-popover";
|
|
6
10
|
import {makeSingleLineStyles} from "./styles";
|
|
7
|
-
import {css, cx} from "@linaria/core";
|
|
8
|
-
import {$TSFixMe} from "../tsfixme";
|
|
9
11
|
|
|
10
12
|
export type {
|
|
11
13
|
ActionMeta,
|
package/src/select/reflection.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import isFunction from "lodash/isFunction";
|
|
1
2
|
import isObject from "lodash/isObject";
|
|
2
|
-
import {GroupBase} from "./util";
|
|
3
3
|
import type {GroupProps} from "react-select/dist/declarations/src";
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
import type {GroupBase} from "./util";
|
|
5
6
|
|
|
6
7
|
type ReactElementWithProps<P = object> = {props: P};
|
|
7
8
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type {ReactNode} from "react";
|
|
2
|
+
import {createContext, useContext, useMemo} from "react";
|
|
2
3
|
|
|
3
4
|
const SelectControlSettings = createContext<{
|
|
4
5
|
getPopupContainerElement?: () => HTMLElement | null;
|
|
@@ -1,43 +1,35 @@
|
|
|
1
1
|
import {useControllableState} from "@fibery/react/src/use-controllable-state";
|
|
2
|
+
import {Wrap} from "@fibery/react/src/wrap";
|
|
2
3
|
import {css, cx} from "@linaria/core";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
useMemo,
|
|
11
|
-
useRef,
|
|
12
|
-
useState,
|
|
13
|
-
} from "react";
|
|
14
|
-
import {space, textStyles} from "../design-system";
|
|
15
|
-
import {Placement, Popover} from "../popover";
|
|
4
|
+
import type {ForwardedRef, ReactNode, RefObject} from "react";
|
|
5
|
+
import React, {forwardRef, useCallback, useImperativeHandle, useMemo, useRef, useState} from "react";
|
|
6
|
+
import type {SelectInstance} from "react-select";
|
|
7
|
+
|
|
8
|
+
import {space, textClasses} from "../design-system";
|
|
9
|
+
import type {Placement} from "../popover";
|
|
10
|
+
import {Popover} from "../popover";
|
|
16
11
|
import {useIsPhone} from "../use-is-phone";
|
|
17
12
|
import {MenuTransparent} from "./components/menu";
|
|
18
|
-
import {
|
|
13
|
+
import {SELECT_IN_POPOVER_VALUE_MAX_HEIGHT} from "./constants";
|
|
14
|
+
import type {
|
|
19
15
|
ActionMeta,
|
|
20
|
-
combineStyles,
|
|
21
16
|
GroupBase,
|
|
22
17
|
OnChangeValue,
|
|
23
18
|
OptionsOrGroups,
|
|
24
19
|
PropsValue,
|
|
25
|
-
SelectComponent as ReactSelect,
|
|
26
20
|
SelectProps,
|
|
27
21
|
StylesConfig,
|
|
28
22
|
} from "./select";
|
|
23
|
+
import {combineStyles, SelectComponent as ReactSelect} from "./select";
|
|
29
24
|
import {SelectControlSettingsProvider} from "./select-control-settings-context";
|
|
30
25
|
import {makeSelectInPopoverStyles} from "./styles";
|
|
31
|
-
import {SelectInstance} from "react-select";
|
|
32
|
-
import {SELECT_IN_POPOVER_VALUE_MAX_HEIGHT} from "./constants";
|
|
33
|
-
import {Wrap} from "@fibery/react/src/wrap";
|
|
34
26
|
|
|
35
27
|
const offset = [0, space.s4] as [number, number];
|
|
36
28
|
const popupHeightVH = 45;
|
|
37
29
|
const popupMinHeightPx = 300;
|
|
38
30
|
const popupPaddingTop = space.s8;
|
|
39
31
|
const popupPaddingBottom = space.s8;
|
|
40
|
-
const
|
|
32
|
+
const defaultPopupContainerClassName = css`
|
|
41
33
|
z-index: 1050;
|
|
42
34
|
height: max(${popupHeightVH}vh, ${popupMinHeightPx}px);
|
|
43
35
|
display: flex;
|
|
@@ -64,7 +56,6 @@ const mobileClassName = css`
|
|
|
64
56
|
`;
|
|
65
57
|
|
|
66
58
|
const titleClassName = css`
|
|
67
|
-
${textStyles.heading6}
|
|
68
59
|
padding-top: ${space.s12}px;
|
|
69
60
|
padding-inline: ${space.s12}px;
|
|
70
61
|
`;
|
|
@@ -87,6 +78,7 @@ type Props<T, U extends boolean, V extends GroupBase<T>> = {
|
|
|
87
78
|
maxMenuHeight?: number;
|
|
88
79
|
hideOnChange?: boolean | ((newValue: OnChangeValue<T, U>, actionMeta: ActionMeta<T>) => boolean);
|
|
89
80
|
renderInPortal?: boolean;
|
|
81
|
+
popupContainerClassName?: string;
|
|
90
82
|
popupStyles?: string;
|
|
91
83
|
selectStyles?: StylesConfig<T, U, V>;
|
|
92
84
|
onMenuOpen?: () => void;
|
|
@@ -129,6 +121,7 @@ function SelectInPopoverInner<T, U extends boolean, V extends GroupBase<T>>(
|
|
|
129
121
|
title,
|
|
130
122
|
hideOnChange = true,
|
|
131
123
|
renderInPortal = true,
|
|
124
|
+
popupContainerClassName,
|
|
132
125
|
popupStyles,
|
|
133
126
|
selectStyles = {},
|
|
134
127
|
components = {},
|
|
@@ -222,12 +215,12 @@ function SelectInPopoverInner<T, U extends boolean, V extends GroupBase<T>>(
|
|
|
222
215
|
supportMobile
|
|
223
216
|
title={title}
|
|
224
217
|
offset={offset}
|
|
225
|
-
popupContainerClassName={popupContainerClassName}
|
|
218
|
+
popupContainerClassName={cx(defaultPopupContainerClassName, popupContainerClassName)}
|
|
226
219
|
popupClassName={cx(popupClassName, popupStyles)}
|
|
227
220
|
mobilePopupContentClassName={mobileClassName}
|
|
228
221
|
placement={popoverPlacement}
|
|
229
222
|
>
|
|
230
|
-
{title && !isPhone && <div className={titleClassName}>{title}</div>}
|
|
223
|
+
{title && !isPhone && <div className={cx(textClasses.heading6, titleClassName)}>{title}</div>}
|
|
231
224
|
{/*Usually we set popupContainerElement for react-select via context (SelectControlSettingsProvider). But here we render react-select in popover.*/}
|
|
232
225
|
{/*Render target in controlled by Popover here. So we just override SelectControlContext here and set popupContainerElement to undefined. */}
|
|
233
226
|
{/*So in dom react-select will be a child of popover. */}
|
package/src/select/select.tsx
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import {composeEventHandlers} from "@fibery/react/src/compose-event-handlers";
|
|
1
2
|
import {useComposedRefs} from "@fibery/react/src/use-composed-refs";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
3
|
+
import compact from "lodash/compact";
|
|
4
|
+
import type {ForwardedRef, RefObject} from "react";
|
|
5
|
+
import {forwardRef, useCallback, useMemo, useRef, useState} from "react";
|
|
6
|
+
import type {
|
|
4
7
|
ActionMeta,
|
|
5
|
-
components as reactSelectComponents,
|
|
6
8
|
ControlProps,
|
|
7
|
-
createFilter,
|
|
8
9
|
MenuListProps,
|
|
9
10
|
MenuProps,
|
|
10
|
-
mergeStyles,
|
|
11
11
|
MultiValue,
|
|
12
12
|
MultiValueProps,
|
|
13
13
|
OnChangeValue,
|
|
@@ -20,7 +20,10 @@ import BaseSelect, {
|
|
|
20
20
|
SingleValueProps,
|
|
21
21
|
StylesConfig,
|
|
22
22
|
} from "react-select";
|
|
23
|
-
import
|
|
23
|
+
import BaseSelect, {components as reactSelectComponents, createFilter, mergeStyles} from "react-select";
|
|
24
|
+
import type {CreatableProps} from "react-select/creatable";
|
|
25
|
+
import BaseCreatableSelect from "react-select/creatable";
|
|
26
|
+
|
|
24
27
|
import {ClearIndicator, NoClearIndicator} from "./components/clear-indicator";
|
|
25
28
|
import {DropdownIndicator} from "./components/drop-down-indicator";
|
|
26
29
|
import {GroupHeading} from "./components/group-heading";
|
|
@@ -30,9 +33,8 @@ import {NoOptionsMessage} from "./components/no-option-message";
|
|
|
30
33
|
import {Option, OptionSlow} from "./components/option";
|
|
31
34
|
import {useSelectControlSettings} from "./select-control-settings-context";
|
|
32
35
|
import {makeComponentsStyles, makeNonVirtualizedStyles, makeVirtualizedStyles, makeZIndexStyles} from "./styles";
|
|
33
|
-
import {
|
|
34
|
-
import
|
|
35
|
-
import {composeEventHandlers} from "@fibery/react/src/compose-event-handlers";
|
|
36
|
+
import type {GroupBase} from "./util";
|
|
37
|
+
import {countOptions, ReactSelectRefContext} from "./util";
|
|
36
38
|
|
|
37
39
|
export type {
|
|
38
40
|
ActionMeta,
|
package/src/select/styles.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
2
|
import type {CSSObjectWithLabel, GroupBase, StylesConfig} from "react-select";
|
|
3
|
+
|
|
3
4
|
import {inputOverrides} from "../antd/styles";
|
|
4
5
|
import {border, layout, space, themeVars} from "../design-system";
|
|
5
6
|
import {groupHeadingNulledStyles} from "./components/group-heading";
|
package/src/select/util.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {GroupBase as ReactSelectGroupBase, OptionsOrGroups, SelectInstance} from "react-select";
|
|
2
1
|
import isObject from "lodash/isObject";
|
|
3
|
-
import {
|
|
2
|
+
import type {ReactNode, RefObject} from "react";
|
|
3
|
+
import {Children, createContext} from "react";
|
|
4
|
+
import type {GroupBase as ReactSelectGroupBase, OptionsOrGroups, SelectInstance} from "react-select";
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* API used by ReactSelect internal partials (at least VirtualizedMenuList).
|
package/src/static-palettes.ts
CHANGED
package/src/tab-nav/tab-nav.tsx
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
import {createContext} from "@fibery/react/src/create-context";
|
|
2
|
+
import {useCallbackRef} from "@fibery/react/src/use-callback-ref";
|
|
2
3
|
import {useComposedRefs} from "@fibery/react/src/use-composed-refs";
|
|
4
|
+
import {useResizeObserver} from "@fibery/react/src/use-resize-observer";
|
|
3
5
|
import {css, cx} from "@linaria/core";
|
|
6
|
+
import type {
|
|
7
|
+
NavigationMenuItemProps,
|
|
8
|
+
NavigationMenuLinkProps,
|
|
9
|
+
NavigationMenuListProps,
|
|
10
|
+
NavigationMenuProps,
|
|
11
|
+
} from "@radix-ui/react-navigation-menu";
|
|
4
12
|
import {
|
|
5
13
|
NavigationMenu,
|
|
6
14
|
NavigationMenuItem,
|
|
7
|
-
NavigationMenuItemProps,
|
|
8
15
|
NavigationMenuLink,
|
|
9
|
-
NavigationMenuLinkProps,
|
|
10
16
|
NavigationMenuList,
|
|
11
|
-
NavigationMenuListProps,
|
|
12
|
-
NavigationMenuProps,
|
|
13
17
|
} from "@radix-ui/react-navigation-menu";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
|
|
18
|
+
import type {ReactNode, RefObject} from "react";
|
|
19
|
+
import {forwardRef, useEffect, useLayoutEffect, useRef, useState} from "react";
|
|
20
|
+
|
|
21
|
+
import {border, transitionDuration, fontWeight, space, themeVars, fontSize} from "../design-system";
|
|
17
22
|
import {mobileRootSelector} from "../mobile-styles";
|
|
23
|
+
import {ellipsis} from "../styles-utils";
|
|
18
24
|
import {TooltipIfOverflown} from "../tooltip-if-overflown";
|
|
19
|
-
import {useCallbackRef} from "@fibery/react/src/use-callback-ref";
|
|
20
|
-
import {useResizeObserver} from "@fibery/react/src/use-resize-observer";
|
|
21
25
|
|
|
22
26
|
const tabNavIndicatorWidth = 100;
|
|
23
27
|
|
|
@@ -55,7 +59,7 @@ export const tabButton = css`
|
|
|
55
59
|
transition-property: border, background-color, color, opacity;
|
|
56
60
|
transition-duration: ${transitionDuration.fast};
|
|
57
61
|
|
|
58
|
-
font-size: ${
|
|
62
|
+
font-size: ${fontSize.xs}px;
|
|
59
63
|
font-weight: ${fontWeight.medium};
|
|
60
64
|
line-height: 16px;
|
|
61
65
|
|
|
@@ -82,8 +86,8 @@ export const tabButton = css`
|
|
|
82
86
|
}
|
|
83
87
|
|
|
84
88
|
${mobileRootSelector} & {
|
|
85
|
-
padding: ${space.
|
|
86
|
-
font-size: ${
|
|
89
|
+
padding: ${space.s8}px;
|
|
90
|
+
font-size: ${fontSize.sm}px;
|
|
87
91
|
}
|
|
88
92
|
`;
|
|
89
93
|
|
|
@@ -135,15 +139,15 @@ const [TabNavContextProvider, useTabNavCtx] = createContext<TabNavContextValue>(
|
|
|
135
139
|
|
|
136
140
|
export type TabNavRootProps = NavigationMenuProps;
|
|
137
141
|
|
|
138
|
-
export const TabNavRoot = ({className, children, ...props}: NavigationMenuProps) => {
|
|
142
|
+
export const TabNavRoot = ({className, children, orientation = "horizontal", ...props}: NavigationMenuProps) => {
|
|
139
143
|
const indicatorRef = useRef<HTMLDivElement>(null);
|
|
140
144
|
const activeItemRef = useRef<HTMLElement | null>(null);
|
|
141
145
|
const [ctx] = useState<TabNavContextValue>(() => ({indicatorRef, activeItemRef}));
|
|
142
146
|
|
|
143
147
|
return (
|
|
144
|
-
<NavigationMenu className={className} {...props}>
|
|
148
|
+
<NavigationMenu className={className} orientation={orientation} {...props}>
|
|
145
149
|
<div className={tabNavIndicatorTrack}>
|
|
146
|
-
<div ref={indicatorRef} className={tabNavIndicator} />
|
|
150
|
+
{orientation === "horizontal" && <div ref={indicatorRef} className={tabNavIndicator} />}
|
|
147
151
|
|
|
148
152
|
<TabNavContextProvider value={ctx}>{children}</TabNavContextProvider>
|
|
149
153
|
</div>
|
package/src/table.tsx
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {PureComponent, ReactNode} from "react";
|
|
2
|
-
import {border, space, themeVars} from "./design-system";
|
|
3
1
|
import {css, cx} from "@linaria/core";
|
|
2
|
+
import type {ReactNode} from "react";
|
|
3
|
+
import {PureComponent} from "react";
|
|
4
|
+
|
|
5
|
+
import {border, space, themeVars} from "./design-system";
|
|
4
6
|
import {mobileRootSelector} from "./mobile-styles";
|
|
5
7
|
|
|
6
8
|
const tableStyle = css`
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
2
|
import {wcagLuminance} from "culori";
|
|
3
|
+
|
|
3
4
|
import {hslFrom, oklchFrom, rgbFrom} from "./color-utils";
|
|
4
5
|
|
|
5
6
|
export type InspectChannel = "oklch-l" | "oklch-c" | "oklch-h" | "hsl-l" | "hsl-s" | "hsl-h" | null;
|
|
@@ -17,7 +18,7 @@ function channelValue(color: string, channel: InspectChannel): string | null {
|
|
|
17
18
|
case "oklch-l":
|
|
18
19
|
return (oklch.l ?? 0).toFixed(2);
|
|
19
20
|
case "oklch-c":
|
|
20
|
-
return
|
|
21
|
+
return oklch.c.toFixed(3);
|
|
21
22
|
case "oklch-h":
|
|
22
23
|
return Math.round(oklch.h ?? 0).toString();
|
|
23
24
|
default:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import AppearanceAuto from "./icons/react/appearance-auto";
|
|
2
|
+
import AppearanceDark from "./icons/react/appearance-dark";
|
|
3
|
+
import AppearanceLight from "./icons/react/appearance-light";
|
|
1
4
|
import {type ThematicPrefs} from "./palette-generator";
|
|
2
|
-
import type {ThemePreference} from "./theme-settings";
|
|
3
|
-
import AppearanceLight from "./icons/react/AppearanceLight";
|
|
4
|
-
import AppearanceDark from "./icons/react/AppearanceDark";
|
|
5
|
-
import AppearanceAuto from "./icons/react/AppearanceAuto";
|
|
6
5
|
import {common} from "./palettes/common";
|
|
6
|
+
import type {ThemePreference} from "./theme-settings";
|
|
7
7
|
|
|
8
8
|
export const defaultPrefs: ThematicPrefs = {
|
|
9
9
|
baseHue: 0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
+
|
|
2
3
|
import {space, themeVars} from "./design-system";
|
|
3
4
|
import type {ZeroBasedScale} from "./palette-generator";
|
|
4
5
|
|
|
@@ -217,6 +218,7 @@ export function Slider({
|
|
|
217
218
|
onChange,
|
|
218
219
|
gradient,
|
|
219
220
|
color,
|
|
221
|
+
disabled,
|
|
220
222
|
onLabelHover,
|
|
221
223
|
onLabelLeave,
|
|
222
224
|
onLabelClick,
|
|
@@ -230,12 +232,13 @@ export function Slider({
|
|
|
230
232
|
onChange: (v: number) => void;
|
|
231
233
|
gradient?: string;
|
|
232
234
|
color?: string;
|
|
235
|
+
disabled?: boolean;
|
|
233
236
|
onLabelHover?: () => void;
|
|
234
237
|
onLabelLeave?: () => void;
|
|
235
238
|
onLabelClick?: () => void;
|
|
236
239
|
}) {
|
|
237
240
|
return (
|
|
238
|
-
<div className={controlRowCss}>
|
|
241
|
+
<div className={controlRowCss} style={disabled ? {opacity: 0.4, pointerEvents: "none"} : undefined}>
|
|
239
242
|
<span
|
|
240
243
|
className={controlLabelCss}
|
|
241
244
|
style={onLabelClick ? {cursor: "pointer"} : undefined}
|
|
@@ -253,6 +256,7 @@ export function Slider({
|
|
|
253
256
|
max={max}
|
|
254
257
|
step={step}
|
|
255
258
|
value={value}
|
|
259
|
+
disabled={disabled}
|
|
256
260
|
onChange={(e) => onChange(parseFloat(e.target.value))}
|
|
257
261
|
/>
|
|
258
262
|
<ValueDisplay value={value} format={format} />
|