@fibery/ui-kit 1.17.1 → 1.19.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/index.ts +1 -1
- package/package.json +29 -23
- package/src/antd/styles.ts +1 -1
- package/src/back-button.tsx +3 -0
- package/src/{Button → button}/actions-button.tsx +2 -2
- package/src/{Button → button}/button-base.tsx +2 -2
- package/src/{Button → button}/button-group.tsx +1 -1
- package/src/{Button → button}/button.tsx +3 -3
- package/src/{Button → button}/icon-button.tsx +1 -0
- package/src/button.tsx +3 -0
- package/src/create-inline-theme.ts +2 -0
- package/src/design-system.ts +1009 -0
- package/src/emoji-picker/app-icon-picker.tsx +2 -2
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +7 -7
- package/src/emoji-picker/emoji-picker.tsx +11 -5
- package/src/emoji-picker/icon-emoji-picker.tsx +2 -2
- package/src/emoji-picker/primitives/category.tsx +2 -2
- package/src/emoji-picker/primitives/content.tsx +3 -2
- package/src/emoji-picker/primitives/emoji.tsx +1 -1
- package/src/emoji-picker/primitives/footer.tsx +1 -1
- package/src/emoji-picker/primitives/header.tsx +1 -1
- package/src/emoji-picker/primitives/layout.ts +1 -1
- package/src/emoji-picker/primitives/search.tsx +2 -2
- package/src/emoji-picker/primitives/skin-tone.tsx +2 -2
- package/src/emoji-picker/stores/lazy-emoji-data-store.tsx +3 -3
- package/src/emoji-picker/stores/lazy-icon-data-store.tsx +1 -1
- package/src/error-alert.tsx +3 -3
- package/src/form-field-loader.tsx +1 -1
- package/src/icons/Icon.tsx +5 -5
- package/src/icons/ast/Activity.ts +1 -1
- package/src/icons/ast/BellFilled.ts +8 -0
- package/src/icons/ast/BellOff.ts +8 -0
- package/src/icons/ast/BellRinging.ts +8 -0
- package/src/icons/ast/Clock.ts +8 -0
- package/src/icons/ast/ClockAlarm.ts +8 -0
- package/src/icons/ast/Copy.ts +1 -1
- package/src/icons/ast/Export.ts +8 -0
- package/src/icons/ast/ExtensionComments.ts +1 -1
- package/src/icons/ast/Favorites.ts +1 -1
- package/src/icons/ast/FavoritesChecked.ts +1 -1
- package/src/icons/ast/FavoritesOff.ts +8 -0
- package/src/icons/ast/GlobeSimple.ts +8 -0
- package/src/icons/ast/Import.ts +8 -0
- package/src/icons/ast/Lab.ts +8 -0
- package/src/icons/ast/Link.ts +8 -0
- package/src/icons/ast/Monitor.ts +8 -0
- package/src/icons/ast/Network.ts +8 -0
- package/src/icons/ast/Pencil.ts +8 -0
- package/src/icons/ast/People.ts +8 -0
- package/src/icons/ast/RicheditorCommentCreate.ts +1 -1
- package/src/icons/ast/RicheditorLinkCreate.ts +1 -1
- package/src/icons/ast/RicheditorOpenLink.ts +1 -1
- package/src/icons/ast/RicheditorUnlink.ts +1 -1
- package/src/icons/ast/ShieldKeyhole.ts +8 -0
- package/src/icons/ast/Success.ts +8 -0
- package/src/icons/ast/Terminal.ts +8 -0
- package/src/icons/ast/TypeUrl.ts +1 -1
- package/src/icons/ast/WarningTriangle.ts +8 -0
- package/src/icons/ast/index.tsx +19 -4
- package/src/icons/{getIconContainerStyle.tsx → get-icon-container-style.tsx} +1 -1
- package/src/icons/react/BellFilled.tsx +12 -0
- package/src/icons/react/BellOff.tsx +12 -0
- package/src/icons/react/BellRinging.tsx +12 -0
- package/src/icons/react/Clock.tsx +12 -0
- package/src/icons/react/ClockAlarm.tsx +12 -0
- package/src/icons/react/Export.tsx +12 -0
- package/src/icons/react/FavoritesOff.tsx +12 -0
- package/src/icons/react/GlobeSimple.tsx +12 -0
- package/src/icons/react/Import.tsx +12 -0
- package/src/icons/react/Lab.tsx +12 -0
- package/src/icons/react/Link.tsx +12 -0
- package/src/icons/react/Monitor.tsx +12 -0
- package/src/icons/react/Network.tsx +12 -0
- package/src/icons/react/Pencil.tsx +12 -0
- package/src/icons/react/People.tsx +12 -0
- package/src/icons/react/ShieldKeyhole.tsx +12 -0
- package/src/icons/react/Success.tsx +12 -0
- package/src/icons/react/Terminal.tsx +12 -0
- package/src/icons/react/WarningTriangle.tsx +12 -0
- package/src/icons/react/index.tsx +19 -4
- package/src/{Item.tsx → item.tsx} +1 -1
- package/src/loaders.tsx +19 -6
- package/src/loading-sausage.tsx +3 -1
- package/src/select/custom-select-partials/clear-indicator.tsx +22 -0
- package/src/select/custom-select-partials/drop-down-indicator.tsx +26 -0
- package/src/select/custom-select-partials/group-heading.tsx +54 -0
- package/src/select/custom-select-partials/menu.tsx +25 -0
- package/src/select/custom-select-partials/no-option-message.tsx +10 -0
- package/src/select/custom-select-partials/option.tsx +65 -0
- package/src/{Select → select}/index.tsx +54 -48
- package/src/{Select → select}/select-in-popover.tsx +5 -5
- package/src/{Select → select}/styles.ts +9 -53
- package/src/{ThemeProvider.tsx → theme-provider.tsx} +11 -1
- package/src/theme-styles.ts +2 -5
- package/src/toast/primitives.tsx +145 -0
- package/src/toast/toast-action.tsx +20 -0
- package/src/toast/toast-queue.tsx +121 -0
- package/src/toast/toast.tsx +114 -0
- package/src/toast/toaster.tsx +72 -0
- package/src/tooltip.tsx +3 -3
- package/src/BackButton.tsx +0 -3
- package/src/Button.tsx +0 -3
- package/src/Select/components.tsx +0 -90
- package/src/designSystem.ts +0 -951
- package/src/icons/ast/AppTemplatesOneColor.ts +0 -8
- package/src/icons/ast/CopyUrl.ts +0 -8
- package/src/icons/ast/FavoritesMenu.ts +0 -8
- package/src/icons/ast/Markdown.ts +0 -8
- package/src/icons/react/AppTemplatesOneColor.tsx +0 -12
- package/src/icons/react/CopyUrl.tsx +0 -12
- package/src/icons/react/FavoritesMenu.tsx +0 -12
- package/src/icons/react/Markdown.tsx +0 -12
- /package/src/{Button → button}/actions-button-compact.tsx +0 -0
- /package/src/{Button/AddButton.tsx → button/add-button.tsx} +0 -0
- /package/src/{Button/BackButton.tsx → button/back-button.tsx} +0 -0
- /package/src/icons/{generateIconFromAst.ts → generate-icon-from-ast.ts} +0 -0
- /package/src/icons/{IconAsPaths.ts → get-paths.ts} +0 -0
- /package/src/icons/{getShiftStyle.ts → get-shift-style.ts} +0 -0
- /package/src/{Pallete.ts → pallete.ts} +0 -0
- /package/src/{Select → select}/select-control-settings-context.tsx +0 -0
- /package/src/{Select → select}/select-loader.tsx +0 -0
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// This icon file is generated automatically.
|
|
3
|
-
|
|
4
|
-
import { IconDefinition } from '../types';
|
|
5
|
-
|
|
6
|
-
const AppTemplatesOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 2a2.25 2.25 0 0 0-2.25 2.25V7A2.25 2.25 0 0 0 13 9.25h2.75A2.25 2.25 0 0 0 18 7V4.25A2.25 2.25 0 0 0 15.75 2H13Zm-.75 2.25A.75.75 0 0 1 13 3.5h2.75a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H13a.75.75 0 0 1-.75-.75V4.25ZM4.25 10.75A2.25 2.25 0 0 0 2 13v2.75A2.25 2.25 0 0 0 4.25 18H7a2.25 2.25 0 0 0 2.25-2.25V13A2.25 2.25 0 0 0 7 10.75H4.25ZM3.5 13a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v2.75a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75V13ZM2 4.25A2.25 2.25 0 0 1 4.25 2H7a2.25 2.25 0 0 1 2.25 2.25V7A2.25 2.25 0 0 1 7 9.25H4.25A2.25 2.25 0 0 1 2 7V4.25Zm2.25-.75a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75H7A.75.75 0 0 0 7.75 7V4.25A.75.75 0 0 0 7 3.5H4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 18c-.483 0-.875-.367-.875-.85v-1.895H11.6a.875.875 0 1 1 0-1.75h1.905V11.65a.875.875 0 1 1 1.75 0v1.855H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]}],"metadata":""}]},"name":"app-templates-one-color"};
|
|
7
|
-
|
|
8
|
-
export default AppTemplatesOneColor;
|
package/src/icons/ast/CopyUrl.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// This icon file is generated automatically.
|
|
3
|
-
|
|
4
|
-
import { IconDefinition } from '../types';
|
|
5
|
-
|
|
6
|
-
const CopyUrl: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m10.063 10.808 2.06-.03c.55-.001 1.075-.218 1.463-.604a2.054 2.054 0 0 0 .001-2.909 2.07 2.07 0 0 0-1.461-.602L6.757 6.66c-.527 0-1.034.2-1.417.562A2.043 2.043 0 0 0 4.7 8.6l-.011.129a.839.839 0 0 1-1.433.574.829.829 0 0 1-.238-.591A2.276 2.276 0 0 1 3 8.483a3.704 3.704 0 0 1 1.18-2.457 3.739 3.739 0 0 1 2.549-.994L12.133 5c.964.04 1.875.45 2.542 1.142a3.71 3.71 0 0 1-.003 5.154 3.754 3.754 0 0 1-2.543 1.145l-2.02.024a.836.836 0 0 1-.798-.806.83.83 0 0 1 .752-.851Zm-5.024.932a3.726 3.726 0 0 1 1.1-2.628c.7-.697 1.65-1.09 2.64-1.094l2.02-.025a.836.836 0 0 1 .799.807.83.83 0 0 1-.752.85l-2.038.007c-.548 0-1.074.218-1.462.604a2.054 2.054 0 0 0-.001 2.909 2.07 2.07 0 0 0 1.461.601l5.369.004c.527 0 1.035-.201 1.417-.562.383-.361.612-.855.64-1.379l.011-.13a.83.83 0 0 1 .845-.822.837.837 0 0 1 .826.84 3.712 3.712 0 0 1-1.194 2.714 3.747 3.747 0 0 1-2.546.996l-5.375.003a3.756 3.756 0 0 1-2.646-1.075 3.72 3.72 0 0 1-1.114-2.62Z"},"children":[]}],"metadata":""}]},"name":"copy-url"};
|
|
7
|
-
|
|
8
|
-
export default CopyUrl;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// This icon file is generated automatically.
|
|
3
|
-
|
|
4
|
-
import { IconDefinition } from '../types';
|
|
5
|
-
|
|
6
|
-
const FavoritesMenu: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Zm.53 1.82-1.604 3.6-.012.029c-.044.1-.122.279-.254.425a1.195 1.195 0 0 1-.402.292c-.18.08-.375.1-.483.11-.011 0-.021.002-.03.003l-3.92.414 2.928 2.639.023.02c.08.072.227.202.326.373.083.145.136.306.153.472a1.56 1.56 0 0 1-.045.493l-.006.03-.818 3.857 3.415-1.97.026-.015c.094-.055.263-.155.456-.196.163-.034.332-.034.496 0 .193.041.362.14.455.196l.027.015 3.415 1.97-.818-3.857a1.56 1.56 0 0 1-.051-.524c.017-.165.07-.326.153-.471.098-.17.245-.3.326-.373a1.87 1.87 0 0 0 .023-.02l2.928-2.64-3.92-.413-.03-.003a1.56 1.56 0 0 1-.483-.11 1.195 1.195 0 0 1-.402-.292 1.558 1.558 0 0 1-.266-.454L10 3.352Z"},"children":[]}],"metadata":""}]},"name":"favorites-menu"};
|
|
7
|
-
|
|
8
|
-
export default FavoritesMenu;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// This icon file is generated automatically.
|
|
3
|
-
|
|
4
|
-
import { IconDefinition } from '../types';
|
|
5
|
-
|
|
6
|
-
const Markdown: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":40,"height":40,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M30.087 13.125a1.15 1.15 0 0 0-2.3 0v9.599l-2.849-2.85a1.15 1.15 0 0 0-1.626 1.627l4.812 4.812c.45.45 1.178.45 1.627 0l4.812-4.812a1.15 1.15 0 0 0-1.626-1.627l-2.85 2.85v-9.599ZM8.438 13.687a1.15 1.15 0 0 0-1.963.813v11a1.15 1.15 0 0 0 2.3 0v-8.224l3.537 3.537c.449.45 1.177.45 1.626 0l3.537-3.537V25.5a1.15 1.15 0 0 0 2.3 0v-11a1.15 1.15 0 0 0-1.963-.813l-4.687 4.687-4.687-4.687Z","fill":"#232428"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.875 6.475a3.9 3.9 0 0 0-3.9 3.9v19.25a3.9 3.9 0 0 0 3.9 3.9h30.25a3.9 3.9 0 0 0 3.9-3.9v-19.25a3.9 3.9 0 0 0-3.9-3.9H4.875ZM3.744 9.244a1.6 1.6 0 0 1 1.131-.469h30.25a1.6 1.6 0 0 1 1.6 1.6v19.25a1.6 1.6 0 0 1-1.6 1.6H4.875a1.6 1.6 0 0 1-1.6-1.6v-19.25a1.6 1.6 0 0 1 .469-1.131Z","fill":"#232428"},"children":[]}],"metadata":""}]},"name":"markdown"};
|
|
7
|
-
|
|
8
|
-
export default Markdown;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// This icon file is generated automatically.
|
|
2
|
-
|
|
3
|
-
import AppTemplatesOneColorSvg from '../ast/AppTemplatesOneColor';
|
|
4
|
-
import { Icon } from '../Icon';
|
|
5
|
-
import { IconBaseProps } from '../types';
|
|
6
|
-
|
|
7
|
-
const AppTemplatesOneColor = (
|
|
8
|
-
props: IconBaseProps,
|
|
9
|
-
): JSX.Element => <Icon {...props} icon={AppTemplatesOneColorSvg} />;
|
|
10
|
-
|
|
11
|
-
AppTemplatesOneColor.displayName = 'AppTemplatesOneColor';
|
|
12
|
-
export default AppTemplatesOneColor;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// This icon file is generated automatically.
|
|
2
|
-
|
|
3
|
-
import CopyUrlSvg from '../ast/CopyUrl';
|
|
4
|
-
import { Icon } from '../Icon';
|
|
5
|
-
import { IconBaseProps } from '../types';
|
|
6
|
-
|
|
7
|
-
const CopyUrl = (
|
|
8
|
-
props: IconBaseProps,
|
|
9
|
-
): JSX.Element => <Icon {...props} icon={CopyUrlSvg} />;
|
|
10
|
-
|
|
11
|
-
CopyUrl.displayName = 'CopyUrl';
|
|
12
|
-
export default CopyUrl;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// This icon file is generated automatically.
|
|
2
|
-
|
|
3
|
-
import FavoritesMenuSvg from '../ast/FavoritesMenu';
|
|
4
|
-
import { Icon } from '../Icon';
|
|
5
|
-
import { IconBaseProps } from '../types';
|
|
6
|
-
|
|
7
|
-
const FavoritesMenu = (
|
|
8
|
-
props: IconBaseProps,
|
|
9
|
-
): JSX.Element => <Icon {...props} icon={FavoritesMenuSvg} />;
|
|
10
|
-
|
|
11
|
-
FavoritesMenu.displayName = 'FavoritesMenu';
|
|
12
|
-
export default FavoritesMenu;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// This icon file is generated automatically.
|
|
2
|
-
|
|
3
|
-
import MarkdownSvg from '../ast/Markdown';
|
|
4
|
-
import { Icon } from '../Icon';
|
|
5
|
-
import { IconBaseProps } from '../types';
|
|
6
|
-
|
|
7
|
-
const Markdown = (
|
|
8
|
-
props: IconBaseProps,
|
|
9
|
-
): JSX.Element => <Icon {...props} icon={MarkdownSvg} />;
|
|
10
|
-
|
|
11
|
-
Markdown.displayName = 'Markdown';
|
|
12
|
-
export default Markdown;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|