@fibery/ui-kit 1.18.0 → 1.20.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/package.json +9 -7
- package/src/a11y-color.ts +9 -6
- package/src/antd/styles.ts +6 -6
- package/src/back-button.tsx +1 -1
- package/src/{Button → button}/button.tsx +5 -5
- package/src/button.tsx +1 -1
- package/src/design-system.ts +83 -34
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +4 -4
- package/src/emoji-picker/emoji-picker.tsx +2 -2
- package/src/emoji-picker/icon-emoji-picker.tsx +1 -1
- package/src/emoji-picker/primitives/category.tsx +3 -3
- package/src/emoji-picker/primitives/emoji.tsx +26 -3
- 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 +2 -2
- package/src/emoji-picker/primitives/search.tsx +6 -6
- package/src/emoji-picker/primitives/skin-tone.tsx +1 -1
- package/src/error-alert.tsx +4 -4
- package/src/form-field-loader.tsx +3 -3
- package/src/icons/Icon.tsx +2 -2
- package/src/icons/ast/AlertTriangle.ts +8 -0
- package/src/icons/ast/BellRinging.ts +1 -1
- 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/DragBlockHandleSingle.ts +8 -0
- package/src/icons/ast/ExtensionComments.ts +1 -1
- package/src/icons/ast/Eye.ts +8 -0
- package/src/icons/ast/Monitor.ts +8 -0
- package/src/icons/ast/NetworkAdd.ts +8 -0
- package/src/icons/ast/RemovePeople.ts +8 -0
- package/src/icons/ast/RicheditorCommentCreate.ts +1 -1
- package/src/icons/ast/RicheditorMarkTextBackgroundColor.ts +8 -0
- package/src/icons/ast/Success.ts +8 -0
- package/src/icons/ast/WarningTriangle.ts +8 -0
- package/src/icons/ast/index.tsx +11 -1
- package/src/icons/react/AlertTriangle.tsx +12 -0
- package/src/icons/react/Clock.tsx +12 -0
- package/src/icons/react/ClockAlarm.tsx +12 -0
- package/src/icons/react/DragBlockHandleSingle.tsx +12 -0
- package/src/icons/react/Eye.tsx +12 -0
- package/src/icons/react/Monitor.tsx +12 -0
- package/src/icons/react/NetworkAdd.tsx +12 -0
- package/src/icons/react/RemovePeople.tsx +12 -0
- package/src/icons/react/RicheditorMarkTextBackgroundColor.tsx +12 -0
- package/src/icons/react/Success.tsx +12 -0
- package/src/icons/react/WarningTriangle.tsx +12 -0
- package/src/icons/react/index.tsx +11 -1
- package/src/loaders.tsx +10 -10
- package/src/loading-sausage.tsx +2 -2
- package/src/media-query-utils.ts +1 -1
- package/src/{Select → select}/custom-select-partials/clear-indicator.tsx +1 -1
- package/src/{Select → select}/custom-select-partials/group-heading.tsx +2 -2
- package/src/{Select → select}/custom-select-partials/menu.tsx +9 -1
- package/src/{Select → select}/custom-select-partials/no-option-message.tsx +1 -1
- package/src/select/custom-select-partials/option.tsx +122 -0
- package/src/{Select → select}/index.tsx +40 -5
- package/src/{Select → select}/select-in-popover.tsx +14 -14
- package/src/{Select → select}/styles.ts +15 -9
- package/src/toast/primitives.tsx +46 -28
- package/src/toast/toast-action.tsx +28 -0
- package/src/toast/toast-provider.tsx +15 -0
- package/src/toast/toast-queue.ts +117 -0
- package/src/toast/toast.tsx +121 -0
- package/src/toast/toaster.tsx +35 -0
- package/src/toast/utils/toastify-item-name.ts +6 -0
- package/src/tooltip.tsx +2 -2
- package/src/Select/custom-select-partials/option.tsx +0 -92
- package/src/icons/ast/RicheditorMarkHighlight.ts +0 -8
- package/src/icons/react/RicheditorMarkHighlight.tsx +0 -12
- package/src/toast/index.tsx +0 -47
- /package/src/{Button → button}/actions-button-compact.tsx +0 -0
- /package/src/{Button → button}/actions-button.tsx +0 -0
- /package/src/{Button → button}/add-button.tsx +0 -0
- /package/src/{Button → button}/back-button.tsx +0 -0
- /package/src/{Button → button}/button-base.tsx +0 -0
- /package/src/{Button → button}/button-group.tsx +0 -0
- /package/src/{Button → button}/icon-button.tsx +0 -0
- /package/src/{Select → select}/custom-select-partials/drop-down-indicator.tsx +0 -0
- /package/src/{Select → select}/select-control-settings-context.tsx +0 -0
- /package/src/{Select → select}/select-loader.tsx +0 -0
package/src/icons/Icon.tsx
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
-
import {themeVars, iconSize as defaultIconSize,
|
|
2
|
+
import {themeVars, iconSize as defaultIconSize, viewBoxSize, border} from "../design-system";
|
|
3
3
|
import {generateIconFromAst} from "./generate-icon-from-ast";
|
|
4
4
|
import {IconProps} from "./types";
|
|
5
5
|
import {getShiftStyle} from "./get-shift-style";
|
|
@@ -8,7 +8,7 @@ import {forwardRef} from "react";
|
|
|
8
8
|
|
|
9
9
|
const iconStyle = css`
|
|
10
10
|
shape-rendering: geometricprecision;
|
|
11
|
-
border-radius: ${
|
|
11
|
+
border-radius: ${border.radius4}px;
|
|
12
12
|
`;
|
|
13
13
|
|
|
14
14
|
export const Icon = forwardRef<HTMLSpanElement, IconProps>(function Icon(
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const AlertTriangle: 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":"M18.892 14.558 12.183 2.892a2.5 2.5 0 0 0-4.366 0L1.15 14.558a2.5 2.5 0 0 0 2.133 3.775h13.434a2.5 2.5 0 0 0 2.175-3.775ZM10 6.667a.833.833 0 0 0-.833.833v3.333a.833.833 0 0 0 1.666 0V7.5A.834.834 0 0 0 10 6.667Zm-.463 6.807a.833.833 0 1 1 .926 1.385.833.833 0 0 1-.926-1.385Z"},"children":[]}],"metadata":""}]},"name":"alert-triangle"};
|
|
7
|
+
|
|
8
|
+
export default AlertTriangle;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const BellRinging: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const BellRinging: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M18.78 3.72a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 1.06-1.06l2.5 2.5ZM1.22 4.78a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514.272.445.483.76.64.994l.065.098c.077.114.154.23.21.331.028.052.064.122.093.202a.897.897 0 0 1 .051.38c-.009.104-.03.286-.134.472a1.149 1.149 0 0 1-.335.365.94.94 0 0 1-.299.145 1.497 1.497 0 0 1-.205.042 4.07 4.07 0 0 1-.404.03c-.28.01-.669.01-1.155.01H13.25v.25a3.25 3.25 0 0 1-6.5 0V15H4.606c-.486 0-.874 0-1.155-.01a4.068 4.068 0 0 1-.404-.03 1.495 1.495 0 0 1-.205-.042.939.939 0 0 1-.3-.145 1.15 1.15 0 0 1-.334-.365 1.155 1.155 0 0 1-.135-.473.897.897 0 0 1 .052-.38c.029-.08.065-.15.093-.2.056-.101.133-.218.21-.332l.065-.098c.156-.233.368-.549.64-.994.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM8.25 15v.25a1.75 1.75 0 0 0 3.5 0V15h-3.5ZM10 3.5c-1.143 0-2.23.424-3.024 1.165-.792.74-1.226 1.73-1.226 2.752 0 2.371-.599 4.088-1.337 5.296-.196.32-.363.579-.5.786l.72.001h10.733c.283 0 .521 0 .72-.002a26.199 26.199 0 0 1-.499-.785c-.738-1.208-1.337-2.925-1.337-5.296 0-1.022-.434-2.013-1.226-2.752C12.23 3.925 11.144 3.5 10 3.5Z"},"children":[]}],"metadata":""}]},"name":"bell-ringing"};
|
|
7
7
|
|
|
8
8
|
export default BellRinging;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Clock: 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":"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.75 6.375a.75.75 0 0 0-1.5 0V10c0 .199.079.39.22.53l2.265 2.266a.75.75 0 0 0 1.061-1.06L10.75 9.688V6.375Z"},"children":[]}],"metadata":""}]},"name":"clock"};
|
|
7
|
+
|
|
8
|
+
export default Clock;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ClockAlarm: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M18.78 3.72a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 1.06-1.06l2.5 2.5ZM1.22 4.78a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0ZM10.75 6.375a.75.75 0 0 0-1.5 0V10c0 .199.079.39.22.53l2.265 2.266a.75.75 0 0 0 1.061-1.06L10.75 9.688V6.375Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z"},"children":[]}],"metadata":""}]},"name":"clock-alarm"};
|
|
7
|
+
|
|
8
|
+
export default ClockAlarm;
|
package/src/icons/ast/Copy.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Copy: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
|
|
6
|
+
const Copy: 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":"M7.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
|
|
7
7
|
|
|
8
8
|
export default Copy;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const DragBlockHandleSingle: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 2 10"},"children":[{"type":"element","tagName":"circle","properties":{"r":1,"cx":1,"cy":1},"children":[]},{"type":"element","tagName":"circle","properties":{"r":1,"cx":1,"cy":5},"children":[]},{"type":"element","tagName":"circle","properties":{"r":1,"cx":1,"cy":9},"children":[]}],"metadata":""}]},"name":"drag-block-handle-single"};
|
|
7
|
+
|
|
8
|
+
export default DragBlockHandleSingle;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ExtensionComments: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"
|
|
6
|
+
const ExtensionComments: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6 7.75A.75.75 0 0 1 6.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 7.75ZM6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v7.5A2.75 2.75 0 0 1 15.25 16h-.75v1.75a.75.75 0 0 1-1.13.646L9.296 16H4.75A2.75 2.75 0 0 1 2 13.25v-7.5ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v7.5c0 .69.56 1.25 1.25 1.25H9.5c.134 0 .265.036.38.104L13 16.439V15.25a.75.75 0 0 1 .75-.75h1.5c.69 0 1.25-.56 1.25-1.25v-7.5c0-.69-.56-1.25-1.25-1.25H4.75Z"},"children":[]}],"metadata":""}]},"name":"extension-comments"};
|
|
7
7
|
|
|
8
8
|
export default ExtensionComments;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Eye: 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":"M2.839 10a7.587 7.587 0 0 0 14.323 0A7.587 7.587 0 0 0 2.84 10Zm-1.506-.225a9.087 9.087 0 0 1 17.335 0 .75.75 0 0 1 0 .45 9.087 9.087 0 0 1-17.335 0 .75.75 0 0 1 0-.45ZM10 8.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM6.75 10a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Z"},"children":[]}],"metadata":""}]},"name":"eye"};
|
|
7
|
+
|
|
8
|
+
export default Eye;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Monitor: 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":"M2 4.5a2.25 2.25 0 0 1 2.25-2.25h11.5A2.25 2.25 0 0 1 18 4.5v8.25A2.25 2.25 0 0 1 15.75 15h-5v1.75h2.75a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5h2.75V15h-5A2.25 2.25 0 0 1 2 12.75V4.5Zm2.25-.75a.75.75 0 0 0-.75.75v8.25c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V4.5a.75.75 0 0 0-.75-.75H4.25Z"},"children":[]}],"metadata":""}]},"name":"monitor"};
|
|
7
|
+
|
|
8
|
+
export default Monitor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const NetworkAdd: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20","fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M7 4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-.25v1.25h2.583a.75.75 0 0 1 0 1.5H6.667a.917.917 0 0 0-.917.917V12H6a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h.25v-.333A2.417 2.417 0 0 1 6.667 9.25H9.25V8H9a2 2 0 0 1-2-2V4Zm2-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5H9Zm-5 10a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5H4Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M15 12a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 15 12Z"},"children":[]}],"metadata":""}]},"name":"network-add"};
|
|
7
|
+
|
|
8
|
+
export default NetworkAdd;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const RemovePeople: 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":"M8.502 10.7c1.27 0 2.629.198 3.784.747 1.174.557 2.155 1.489 2.565 2.92.18.63.172 1.405.136 1.96C14.92 17.33 14.067 18 13.152 18H3.85c-.915 0-1.77-.67-1.835-1.672-.036-.556-.045-1.33.136-1.961.41-1.431 1.392-2.363 2.566-2.92 1.156-.549 2.515-.747 3.785-.747Zm3.14 2.102c.87.412 1.499 1.043 1.767 1.978.105.367.115.921.081 1.45-.008.126-.123.27-.338.27H3.85c-.215 0-.33-.144-.338-.27-.034-.529-.024-1.084.081-1.45.268-.935.898-1.565 1.768-1.978.887-.421 2.005-.602 3.141-.602 1.137 0 2.253.18 3.14.602ZM8.5 2a3.65 3.65 0 1 1 0 7.3 3.65 3.65 0 0 1 0-7.3Zm0 1.5a2.15 2.15 0 1 1 0 4.3 2.15 2.15 0 0 1 0-4.3Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M18.25 8.75h-4.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5Z"},"children":[]}],"metadata":""}]},"name":"remove-people"};
|
|
7
|
+
|
|
8
|
+
export default RemovePeople;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"
|
|
6
|
+
const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6 7.75A.75.75 0 0 1 6.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 7.75ZM6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v7.5A2.75 2.75 0 0 1 15.25 16h-.75v1.75a.75.75 0 0 1-1.13.646L9.296 16H4.75A2.75 2.75 0 0 1 2 13.25v-7.5ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v7.5c0 .69.56 1.25 1.25 1.25H9.5c.134 0 .265.036.38.104L13 16.439V15.25a.75.75 0 0 1 .75-.75h1.5c.69 0 1.25-.56 1.25-1.25v-7.5c0-.69-.56-1.25-1.25-1.25H4.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-comment-create"};
|
|
7
7
|
|
|
8
8
|
export default RicheditorCommentCreate;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const RicheditorMarkTextBackgroundColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"m5.07 16.9.898-.625h2.418c.643 0 1.197-.177 1.66-.607.15-.14.135-.377-.012-.522L5.23 10.438c-.156-.153-.408-.154-.535.023-.34.476-.509 1.087-.509 1.698v2.37l-.89.873c-.382.39-.17.154-.597.624 1.517.595 2.37.874 2.37.874ZM10.653 14.177c.255.25.51.25.764 0l5.997-7.786a1.474 1.474 0 0 0 0-1.746l-1.909-1.87a1.247 1.247 0 0 0-1.781 0l-7.61 6.313c-.255.249-.255.498 0 .748l4.54 4.341Z"},"children":[]}]}],"metadata":""}]},"name":"richeditor-mark-text-background-color"};
|
|
7
|
+
|
|
8
|
+
export default RicheditorMarkTextBackgroundColor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Success: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"fill":"none","viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m12.267 7.325-3.575 3.583-1.375-1.375a.833.833 0 1 0-1.175 1.175L8.1 12.675a.834.834 0 0 0 1.175 0l4.167-4.167a.833.833 0 1 0-1.175-1.183ZM10 1.667a8.333 8.333 0 1 0 0 16.666 8.333 8.333 0 0 0 0-16.666Zm0 15a6.667 6.667 0 1 1 0-13.334 6.667 6.667 0 0 1 0 13.334Z"},"children":[]}],"metadata":""}]},"name":"success"};
|
|
7
|
+
|
|
8
|
+
export default Success;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const WarningTriangle: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"fill":"none","viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10 13.333A.833.833 0 1 0 10 15a.833.833 0 0 0 0-1.666Zm8.892 1.225L12.183 2.892a2.5 2.5 0 0 0-4.366 0L1.15 14.558a2.5 2.5 0 0 0 2.133 3.775h13.434a2.5 2.5 0 0 0 2.175-3.775Zm-1.442 1.667a.832.832 0 0 1-.733.425H3.283a.832.832 0 0 1-.733-.425.833.833 0 0 1 0-.833L9.217 3.725a.833.833 0 0 1 1.483 0l6.708 11.667a.834.834 0 0 1 .042.85v-.017ZM10 6.667a.833.833 0 0 0-.833.833v3.333a.833.833 0 0 0 1.666 0V7.5A.834.834 0 0 0 10 6.667Z"},"children":[]}],"metadata":""}]},"name":"warning-triangle"};
|
|
7
|
+
|
|
8
|
+
export default WarningTriangle;
|
package/src/icons/ast/index.tsx
CHANGED
|
@@ -9,6 +9,7 @@ export { default as AddReactions } from './AddReactions';
|
|
|
9
9
|
export { default as Add } from './Add';
|
|
10
10
|
export { default as AiAssistant } from './AiAssistant';
|
|
11
11
|
export { default as AiAvatar } from './AiAvatar';
|
|
12
|
+
export { default as AlertTriangle } from './AlertTriangle';
|
|
12
13
|
export { default as AntdFilledCheckCircle } from './AntdFilledCheckCircle';
|
|
13
14
|
export { default as AntdFilledCloseCircle } from './AntdFilledCloseCircle';
|
|
14
15
|
export { default as AntdFilledExclamationCircle } from './AntdFilledExclamationCircle';
|
|
@@ -43,7 +44,9 @@ export { default as Cards } from './Cards';
|
|
|
43
44
|
export { default as CheckCircle } from './CheckCircle';
|
|
44
45
|
export { default as Checked } from './Checked';
|
|
45
46
|
export { default as ClearValue } from './ClearValue';
|
|
47
|
+
export { default as ClockAlarm } from './ClockAlarm';
|
|
46
48
|
export { default as ClockForward } from './ClockForward';
|
|
49
|
+
export { default as Clock } from './Clock';
|
|
47
50
|
export { default as Close } from './Close';
|
|
48
51
|
export { default as ColorCodingFilled } from './ColorCodingFilled';
|
|
49
52
|
export { default as ColorCoding } from './ColorCoding';
|
|
@@ -56,6 +59,7 @@ export { default as Delete } from './Delete';
|
|
|
56
59
|
export { default as Demo } from './Demo';
|
|
57
60
|
export { default as DoubleArrowLeft } from './DoubleArrowLeft';
|
|
58
61
|
export { default as DoubleArrowRight } from './DoubleArrowRight';
|
|
62
|
+
export { default as DragBlockHandleSingle } from './DragBlockHandleSingle';
|
|
59
63
|
export { default as DragBlockHandle } from './DragBlockHandle';
|
|
60
64
|
export { default as DragHandle } from './DragHandle';
|
|
61
65
|
export { default as DynamicFilterValue } from './DynamicFilterValue';
|
|
@@ -68,6 +72,7 @@ export { default as ExtensionComments } from './ExtensionComments';
|
|
|
68
72
|
export { default as ExtensionFiles } from './ExtensionFiles';
|
|
69
73
|
export { default as ExtensionReferences } from './ExtensionReferences';
|
|
70
74
|
export { default as ExtensionWorkflow } from './ExtensionWorkflow';
|
|
75
|
+
export { default as Eye } from './Eye';
|
|
71
76
|
export { default as FavoritesChecked } from './FavoritesChecked';
|
|
72
77
|
export { default as FavoritesOff } from './FavoritesOff';
|
|
73
78
|
export { default as Favorites } from './Favorites';
|
|
@@ -108,9 +113,11 @@ export { default as Milestones } from './Milestones';
|
|
|
108
113
|
export { default as Minus } from './Minus';
|
|
109
114
|
export { default as Miro } from './Miro';
|
|
110
115
|
export { default as Mixpanel } from './Mixpanel';
|
|
116
|
+
export { default as Monitor } from './Monitor';
|
|
111
117
|
export { default as MoreCompact } from './MoreCompact';
|
|
112
118
|
export { default as More } from './More';
|
|
113
119
|
export { default as MySpace } from './MySpace';
|
|
120
|
+
export { default as NetworkAdd } from './NetworkAdd';
|
|
114
121
|
export { default as Network } from './Network';
|
|
115
122
|
export { default as Notifications } from './Notifications';
|
|
116
123
|
export { default as ObjChild } from './ObjChild';
|
|
@@ -127,6 +134,7 @@ export { default as People } from './People';
|
|
|
127
134
|
export { default as Photo } from './Photo';
|
|
128
135
|
export { default as Popup } from './Popup';
|
|
129
136
|
export { default as Posts } from './Posts';
|
|
137
|
+
export { default as RemovePeople } from './RemovePeople';
|
|
130
138
|
export { default as Remove } from './Remove';
|
|
131
139
|
export { default as Reply } from './Reply';
|
|
132
140
|
export { default as Restore } from './Restore';
|
|
@@ -164,9 +172,9 @@ export { default as RicheditorListOrdered } from './RicheditorListOrdered';
|
|
|
164
172
|
export { default as RicheditorListUnindent } from './RicheditorListUnindent';
|
|
165
173
|
export { default as RicheditorMarkCode } from './RicheditorMarkCode';
|
|
166
174
|
export { default as RicheditorMarkEm } from './RicheditorMarkEm';
|
|
167
|
-
export { default as RicheditorMarkHighlight } from './RicheditorMarkHighlight';
|
|
168
175
|
export { default as RicheditorMarkStrike } from './RicheditorMarkStrike';
|
|
169
176
|
export { default as RicheditorMarkStrong } from './RicheditorMarkStrong';
|
|
177
|
+
export { default as RicheditorMarkTextBackgroundColor } from './RicheditorMarkTextBackgroundColor';
|
|
170
178
|
export { default as RicheditorMarkUnderline } from './RicheditorMarkUnderline';
|
|
171
179
|
export { default as RicheditorOpenLink } from './RicheditorOpenLink';
|
|
172
180
|
export { default as RicheditorTableCreate } from './RicheditorTableCreate';
|
|
@@ -194,6 +202,7 @@ export { default as SortOnBottom } from './SortOnBottom';
|
|
|
194
202
|
export { default as SortOnTop } from './SortOnTop';
|
|
195
203
|
export { default as Sort } from './Sort';
|
|
196
204
|
export { default as Spinner } from './Spinner';
|
|
205
|
+
export { default as Success } from './Success';
|
|
197
206
|
export { default as Templates } from './Templates';
|
|
198
207
|
export { default as Terminal } from './Terminal';
|
|
199
208
|
export { default as Twitter } from './Twitter';
|
|
@@ -234,5 +243,6 @@ export { default as ViewPage } from './ViewPage';
|
|
|
234
243
|
export { default as ViewTable } from './ViewTable';
|
|
235
244
|
export { default as ViewTimeline } from './ViewTimeline';
|
|
236
245
|
export { default as Views } from './Views';
|
|
246
|
+
export { default as WarningTriangle } from './WarningTriangle';
|
|
237
247
|
export { default as Warning } from './Warning';
|
|
238
248
|
export { default as Youtube } from './Youtube';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import AlertTriangleSvg from '../ast/AlertTriangle';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const AlertTriangle = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={AlertTriangleSvg} />;
|
|
10
|
+
|
|
11
|
+
AlertTriangle.displayName = 'AlertTriangle';
|
|
12
|
+
export default AlertTriangle;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import ClockSvg from '../ast/Clock';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Clock = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={ClockSvg} />;
|
|
10
|
+
|
|
11
|
+
Clock.displayName = 'Clock';
|
|
12
|
+
export default Clock;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import ClockAlarmSvg from '../ast/ClockAlarm';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const ClockAlarm = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={ClockAlarmSvg} />;
|
|
10
|
+
|
|
11
|
+
ClockAlarm.displayName = 'ClockAlarm';
|
|
12
|
+
export default ClockAlarm;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import DragBlockHandleSingleSvg from '../ast/DragBlockHandleSingle';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const DragBlockHandleSingle = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={DragBlockHandleSingleSvg} />;
|
|
10
|
+
|
|
11
|
+
DragBlockHandleSingle.displayName = 'DragBlockHandleSingle';
|
|
12
|
+
export default DragBlockHandleSingle;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import EyeSvg from '../ast/Eye';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Eye = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={EyeSvg} />;
|
|
10
|
+
|
|
11
|
+
Eye.displayName = 'Eye';
|
|
12
|
+
export default Eye;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import MonitorSvg from '../ast/Monitor';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Monitor = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={MonitorSvg} />;
|
|
10
|
+
|
|
11
|
+
Monitor.displayName = 'Monitor';
|
|
12
|
+
export default Monitor;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import NetworkAddSvg from '../ast/NetworkAdd';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const NetworkAdd = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={NetworkAddSvg} />;
|
|
10
|
+
|
|
11
|
+
NetworkAdd.displayName = 'NetworkAdd';
|
|
12
|
+
export default NetworkAdd;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import RemovePeopleSvg from '../ast/RemovePeople';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const RemovePeople = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={RemovePeopleSvg} />;
|
|
10
|
+
|
|
11
|
+
RemovePeople.displayName = 'RemovePeople';
|
|
12
|
+
export default RemovePeople;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import RicheditorMarkTextBackgroundColorSvg from '../ast/RicheditorMarkTextBackgroundColor';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const RicheditorMarkTextBackgroundColor = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={RicheditorMarkTextBackgroundColorSvg} />;
|
|
10
|
+
|
|
11
|
+
RicheditorMarkTextBackgroundColor.displayName = 'RicheditorMarkTextBackgroundColor';
|
|
12
|
+
export default RicheditorMarkTextBackgroundColor;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import SuccessSvg from '../ast/Success';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Success = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={SuccessSvg} />;
|
|
10
|
+
|
|
11
|
+
Success.displayName = 'Success';
|
|
12
|
+
export default Success;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import WarningTriangleSvg from '../ast/WarningTriangle';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const WarningTriangle = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={WarningTriangleSvg} />;
|
|
10
|
+
|
|
11
|
+
WarningTriangle.displayName = 'WarningTriangle';
|
|
12
|
+
export default WarningTriangle;
|
|
@@ -9,6 +9,7 @@ export { default as AddReactions } from './AddReactions';
|
|
|
9
9
|
export { default as Add } from './Add';
|
|
10
10
|
export { default as AiAssistant } from './AiAssistant';
|
|
11
11
|
export { default as AiAvatar } from './AiAvatar';
|
|
12
|
+
export { default as AlertTriangle } from './AlertTriangle';
|
|
12
13
|
export { default as AntdFilledCheckCircle } from './AntdFilledCheckCircle';
|
|
13
14
|
export { default as AntdFilledCloseCircle } from './AntdFilledCloseCircle';
|
|
14
15
|
export { default as AntdFilledExclamationCircle } from './AntdFilledExclamationCircle';
|
|
@@ -43,7 +44,9 @@ export { default as Cards } from './Cards';
|
|
|
43
44
|
export { default as CheckCircle } from './CheckCircle';
|
|
44
45
|
export { default as Checked } from './Checked';
|
|
45
46
|
export { default as ClearValue } from './ClearValue';
|
|
47
|
+
export { default as ClockAlarm } from './ClockAlarm';
|
|
46
48
|
export { default as ClockForward } from './ClockForward';
|
|
49
|
+
export { default as Clock } from './Clock';
|
|
47
50
|
export { default as Close } from './Close';
|
|
48
51
|
export { default as ColorCodingFilled } from './ColorCodingFilled';
|
|
49
52
|
export { default as ColorCoding } from './ColorCoding';
|
|
@@ -56,6 +59,7 @@ export { default as Delete } from './Delete';
|
|
|
56
59
|
export { default as Demo } from './Demo';
|
|
57
60
|
export { default as DoubleArrowLeft } from './DoubleArrowLeft';
|
|
58
61
|
export { default as DoubleArrowRight } from './DoubleArrowRight';
|
|
62
|
+
export { default as DragBlockHandleSingle } from './DragBlockHandleSingle';
|
|
59
63
|
export { default as DragBlockHandle } from './DragBlockHandle';
|
|
60
64
|
export { default as DragHandle } from './DragHandle';
|
|
61
65
|
export { default as DynamicFilterValue } from './DynamicFilterValue';
|
|
@@ -68,6 +72,7 @@ export { default as ExtensionComments } from './ExtensionComments';
|
|
|
68
72
|
export { default as ExtensionFiles } from './ExtensionFiles';
|
|
69
73
|
export { default as ExtensionReferences } from './ExtensionReferences';
|
|
70
74
|
export { default as ExtensionWorkflow } from './ExtensionWorkflow';
|
|
75
|
+
export { default as Eye } from './Eye';
|
|
71
76
|
export { default as FavoritesChecked } from './FavoritesChecked';
|
|
72
77
|
export { default as FavoritesOff } from './FavoritesOff';
|
|
73
78
|
export { default as Favorites } from './Favorites';
|
|
@@ -108,9 +113,11 @@ export { default as Milestones } from './Milestones';
|
|
|
108
113
|
export { default as Minus } from './Minus';
|
|
109
114
|
export { default as Miro } from './Miro';
|
|
110
115
|
export { default as Mixpanel } from './Mixpanel';
|
|
116
|
+
export { default as Monitor } from './Monitor';
|
|
111
117
|
export { default as MoreCompact } from './MoreCompact';
|
|
112
118
|
export { default as More } from './More';
|
|
113
119
|
export { default as MySpace } from './MySpace';
|
|
120
|
+
export { default as NetworkAdd } from './NetworkAdd';
|
|
114
121
|
export { default as Network } from './Network';
|
|
115
122
|
export { default as Notifications } from './Notifications';
|
|
116
123
|
export { default as ObjChild } from './ObjChild';
|
|
@@ -127,6 +134,7 @@ export { default as People } from './People';
|
|
|
127
134
|
export { default as Photo } from './Photo';
|
|
128
135
|
export { default as Popup } from './Popup';
|
|
129
136
|
export { default as Posts } from './Posts';
|
|
137
|
+
export { default as RemovePeople } from './RemovePeople';
|
|
130
138
|
export { default as Remove } from './Remove';
|
|
131
139
|
export { default as Reply } from './Reply';
|
|
132
140
|
export { default as Restore } from './Restore';
|
|
@@ -164,9 +172,9 @@ export { default as RicheditorListOrdered } from './RicheditorListOrdered';
|
|
|
164
172
|
export { default as RicheditorListUnindent } from './RicheditorListUnindent';
|
|
165
173
|
export { default as RicheditorMarkCode } from './RicheditorMarkCode';
|
|
166
174
|
export { default as RicheditorMarkEm } from './RicheditorMarkEm';
|
|
167
|
-
export { default as RicheditorMarkHighlight } from './RicheditorMarkHighlight';
|
|
168
175
|
export { default as RicheditorMarkStrike } from './RicheditorMarkStrike';
|
|
169
176
|
export { default as RicheditorMarkStrong } from './RicheditorMarkStrong';
|
|
177
|
+
export { default as RicheditorMarkTextBackgroundColor } from './RicheditorMarkTextBackgroundColor';
|
|
170
178
|
export { default as RicheditorMarkUnderline } from './RicheditorMarkUnderline';
|
|
171
179
|
export { default as RicheditorOpenLink } from './RicheditorOpenLink';
|
|
172
180
|
export { default as RicheditorTableCreate } from './RicheditorTableCreate';
|
|
@@ -194,6 +202,7 @@ export { default as SortOnBottom } from './SortOnBottom';
|
|
|
194
202
|
export { default as SortOnTop } from './SortOnTop';
|
|
195
203
|
export { default as Sort } from './Sort';
|
|
196
204
|
export { default as Spinner } from './Spinner';
|
|
205
|
+
export { default as Success } from './Success';
|
|
197
206
|
export { default as Templates } from './Templates';
|
|
198
207
|
export { default as Terminal } from './Terminal';
|
|
199
208
|
export { default as Twitter } from './Twitter';
|
|
@@ -234,5 +243,6 @@ export { default as ViewPage } from './ViewPage';
|
|
|
234
243
|
export { default as ViewTable } from './ViewTable';
|
|
235
244
|
export { default as ViewTimeline } from './ViewTimeline';
|
|
236
245
|
export { default as Views } from './Views';
|
|
246
|
+
export { default as WarningTriangle } from './WarningTriangle';
|
|
237
247
|
export { default as Warning } from './Warning';
|
|
238
248
|
export { default as Youtube } from './Youtube';
|
package/src/loaders.tsx
CHANGED
|
@@ -16,7 +16,7 @@ export const LoadingView = styled.div<{absolute: boolean; backgroundColor?: stri
|
|
|
16
16
|
left: 0,
|
|
17
17
|
bottom: 0,
|
|
18
18
|
right: 0,
|
|
19
|
-
padding: space.
|
|
19
|
+
padding: space.s24,
|
|
20
20
|
}}
|
|
21
21
|
`;
|
|
22
22
|
|
|
@@ -28,8 +28,8 @@ export const LoadingHeader = styled.div<{absolute: boolean}>`
|
|
|
28
28
|
right: 0,
|
|
29
29
|
height: layout.viewHeaderHeight,
|
|
30
30
|
backgroundColor: themeVars.mainBg,
|
|
31
|
-
paddingBottom: space.
|
|
32
|
-
paddingLeft: space.
|
|
31
|
+
paddingBottom: space.s12,
|
|
32
|
+
paddingLeft: space.s12 + space.s6,
|
|
33
33
|
display: "flex",
|
|
34
34
|
justifyContent: "flex-end",
|
|
35
35
|
flexDirection: "column",
|
|
@@ -52,7 +52,7 @@ export const SidebarLoadingPage = () => (
|
|
|
52
52
|
${{
|
|
53
53
|
width: layout.typeEditorWidth,
|
|
54
54
|
minWidth: layout.typeEditorMinWidth,
|
|
55
|
-
paddingBottom: space.
|
|
55
|
+
paddingBottom: space.s24,
|
|
56
56
|
overflowY: "scroll",
|
|
57
57
|
height: "100%",
|
|
58
58
|
}}
|
|
@@ -64,20 +64,20 @@ export const SidebarLoadingPage = () => (
|
|
|
64
64
|
|
|
65
65
|
const loaderWrapperStyle = css`
|
|
66
66
|
${{
|
|
67
|
-
padding: space.
|
|
67
|
+
padding: space.s48,
|
|
68
68
|
height: "100%",
|
|
69
69
|
display: "flex",
|
|
70
70
|
alignItems: "center",
|
|
71
71
|
justifyContent: "center",
|
|
72
72
|
flexDirection: "column",
|
|
73
|
-
marginLeft: space.
|
|
74
|
-
marginRight: space.
|
|
73
|
+
marginLeft: space.s12,
|
|
74
|
+
marginRight: space.s12,
|
|
75
75
|
borderRadius: border.radius6,
|
|
76
76
|
}}
|
|
77
77
|
`;
|
|
78
78
|
|
|
79
79
|
const loaderStyle = css`
|
|
80
|
-
${{paddingBottom: space.
|
|
80
|
+
${{paddingBottom: space.s6, ...textStyles.regular}}
|
|
81
81
|
`;
|
|
82
82
|
export const LoadingApp = ({backgroundColor = "transparent", appName}: {backgroundColor?: string; appName: string}) => (
|
|
83
83
|
<div className={loaderWrapperStyle} style={{backgroundColor}}>
|
|
@@ -158,12 +158,12 @@ export const LoadingTreeMenuItem = ({
|
|
|
158
158
|
level === 0 &&
|
|
159
159
|
css`
|
|
160
160
|
padding-left: 5px;
|
|
161
|
-
gap: ${space.
|
|
161
|
+
gap: ${space.s6}px;
|
|
162
162
|
`
|
|
163
163
|
)}
|
|
164
164
|
>
|
|
165
165
|
<Icon color={color} containerSize={layout.newMenuItemHeight} iconSize={18} />
|
|
166
|
-
{children || <LoadingSausage height={space.
|
|
166
|
+
{children || <LoadingSausage height={space.s6} inverted={theme.mode === "dark"} />}
|
|
167
167
|
</div>
|
|
168
168
|
);
|
|
169
169
|
};
|
package/src/loading-sausage.tsx
CHANGED
package/src/media-query-utils.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
const noop = () => {};
|
|
3
3
|
export function getMediaQueryList(query: string) {
|
|
4
4
|
// need for test
|
|
5
|
-
return typeof window !== undefined && window.matchMedia
|
|
5
|
+
return typeof window !== "undefined" && window.matchMedia
|
|
6
6
|
? window.matchMedia(query)
|
|
7
7
|
: ({matches: false, addEventListener: noop, removeEventListener: noop} as unknown as MediaQueryList);
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import RemoveIcon from "../../icons/react/Remove";
|
|
3
3
|
import {ClearIndicatorProps, GroupBase, MultiValueRemoveProps} from "react-select";
|
|
4
|
-
import {Button} from "../../
|
|
4
|
+
import {Button} from "../../button/button";
|
|
5
5
|
|
|
6
6
|
export function ClearIndicator<
|
|
7
7
|
TOption,
|
|
@@ -17,11 +17,11 @@ const groupHeadingClass = css`
|
|
|
17
17
|
white-space: nowrap;
|
|
18
18
|
overflow: hidden;
|
|
19
19
|
text-overflow: ellipsis;
|
|
20
|
-
padding: ${space.
|
|
20
|
+
padding: ${space.s8 + space.s4}px ${space.s8}px ${space.s12}px ${space.s8}px;
|
|
21
21
|
color: ${themeVars.disabledTextColor};
|
|
22
22
|
`;
|
|
23
23
|
const groupDividerContainerStyle = css`
|
|
24
|
-
padding: ${space.
|
|
24
|
+
padding: ${space.s12}px 0;
|
|
25
25
|
box-sizing: content-box;
|
|
26
26
|
`;
|
|
27
27
|
|