@fibery/ui-kit 1.34.7 → 1.35.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.
Files changed (67) hide show
  1. package/package.json +2 -2
  2. package/src/actions-menu/actions-menu-sub-menu.tsx +3 -0
  3. package/src/antd/styles.ts +6 -6
  4. package/src/button/base-button.tsx +1 -1
  5. package/src/button/icon-button.tsx +2 -2
  6. package/src/design-system.ts +88 -31
  7. package/src/dropdown-menu/index.tsx +2 -3
  8. package/src/emoji-picker/app-icon-picker.tsx +1 -0
  9. package/src/emoji-picker/emoji-picker-content-with-color.tsx +1 -1
  10. package/src/emoji-picker/primitives/emoji.tsx +4 -2
  11. package/src/emoji-picker/primitives/render-config-provider.tsx +12 -0
  12. package/src/icons/ast/AddDatabase.ts +8 -0
  13. package/src/icons/ast/AddIntegration.ts +8 -0
  14. package/src/icons/ast/AiSearch.ts +8 -0
  15. package/src/icons/ast/Clean.ts +8 -0
  16. package/src/icons/ast/CollapseAll.ts +8 -0
  17. package/src/icons/ast/CreditsFilled.ts +8 -0
  18. package/src/icons/ast/DatabaseOff.ts +8 -0
  19. package/src/icons/ast/Dependency.ts +8 -0
  20. package/src/icons/ast/Gift.ts +8 -0
  21. package/src/icons/ast/ManyPeople.ts +8 -0
  22. package/src/icons/ast/Markdown.ts +8 -0
  23. package/src/icons/ast/PeopleCheck.ts +8 -0
  24. package/src/icons/ast/PresentPlay.ts +8 -0
  25. package/src/icons/ast/PresentStop.ts +8 -0
  26. package/src/icons/ast/SendArrow.ts +1 -1
  27. package/src/icons/ast/SettingsOff.ts +8 -0
  28. package/src/icons/ast/Template.ts +8 -0
  29. package/src/icons/ast/UserCheck.ts +8 -0
  30. package/src/icons/ast/UserGroupRemove.ts +8 -0
  31. package/src/icons/ast/UserX.ts +8 -0
  32. package/src/icons/ast/ViewAi.ts +8 -0
  33. package/src/icons/ast/Views.ts +1 -1
  34. package/src/icons/ast/index.tsx +20 -0
  35. package/src/icons/react/AddDatabase.tsx +13 -0
  36. package/src/icons/react/AddIntegration.tsx +13 -0
  37. package/src/icons/react/AiSearch.tsx +13 -0
  38. package/src/icons/react/Clean.tsx +13 -0
  39. package/src/icons/react/CollapseAll.tsx +13 -0
  40. package/src/icons/react/CreditsFilled.tsx +13 -0
  41. package/src/icons/react/DatabaseOff.tsx +13 -0
  42. package/src/icons/react/Dependency.tsx +13 -0
  43. package/src/icons/react/Gift.tsx +13 -0
  44. package/src/icons/react/ManyPeople.tsx +13 -0
  45. package/src/icons/react/Markdown.tsx +13 -0
  46. package/src/icons/react/PeopleCheck.tsx +13 -0
  47. package/src/icons/react/PresentPlay.tsx +13 -0
  48. package/src/icons/react/PresentStop.tsx +13 -0
  49. package/src/icons/react/SettingsOff.tsx +13 -0
  50. package/src/icons/react/Template.tsx +13 -0
  51. package/src/icons/react/UserCheck.tsx +13 -0
  52. package/src/icons/react/UserGroupRemove.tsx +13 -0
  53. package/src/icons/react/UserX.tsx +13 -0
  54. package/src/icons/react/ViewAi.tsx +13 -0
  55. package/src/icons/react/index.tsx +20 -0
  56. package/src/palette.ts +2 -30
  57. package/src/select/custom-select-partials/clear-indicator.tsx +4 -0
  58. package/src/select/custom-select-partials/group-heading.tsx +7 -5
  59. package/src/select/custom-select-partials/menu-list-virtualized.tsx +22 -4
  60. package/src/select/custom-select-partials/menu.tsx +5 -6
  61. package/src/select/index.tsx +39 -28
  62. package/src/select/select-in-popover.tsx +32 -19
  63. package/src/select/styles.ts +10 -2
  64. package/src/toast/primitives.tsx +3 -1
  65. package/src/toast/toast-queue.ts +22 -0
  66. package/src/toast/toaster.tsx +2 -1
  67. package/src/tooltip.tsx +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.34.7",
3
+ "version": "1.35.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "src/antd/styles.ts",
@@ -77,8 +77,8 @@
77
77
  "screenfull": "6.0.1",
78
78
  "tabbable": "5.2.1",
79
79
  "ua-parser-js": "1.0.39",
80
- "@fibery/emoji-data": "2.6.0",
81
80
  "@fibery/helpers": "1.3.0",
81
+ "@fibery/emoji-data": "2.6.0",
82
82
  "@fibery/react": "1.4.1"
83
83
  },
84
84
  "peerDependencies": {
@@ -27,6 +27,7 @@ type Props = React.PropsWithChildren<{
27
27
  contentClassName?: string;
28
28
  container?: HTMLElement | null;
29
29
  Icon?: FunctionComponent<IconBaseProps>;
30
+ onMouseEnter?: () => void;
30
31
  }>;
31
32
 
32
33
  const cornerCss = css`
@@ -56,6 +57,7 @@ export const ActionsMenuSubMenu: React.FC<Props> = ({
56
57
  disabled = false,
57
58
  contentClassName,
58
59
  Icon,
60
+ onMouseEnter,
59
61
  }) => {
60
62
  const {MenuPrimitive, container} = useActionsMenuContext();
61
63
 
@@ -66,6 +68,7 @@ export const ActionsMenuSubMenu: React.FC<Props> = ({
66
68
  className={subTriggerClass}
67
69
  disabled={disabled}
68
70
  onClick={stopPropagation}
71
+ onMouseEnter={onMouseEnter}
69
72
  >
70
73
  <LeftCorner Icon={Icon} />
71
74
  <div className={contentStyle}>{trigger}</div>
@@ -1,5 +1,5 @@
1
1
  import {css} from "@linaria/core";
2
- import {colors, layout, border, shadows, space, textStyles, themeVars, transition} from "../design-system";
2
+ import {border, colors, layout, shadows, space, textStyles, themeVars, transition} from "../design-system";
3
3
 
4
4
  const inputVariables = {
5
5
  default: {
@@ -9,10 +9,10 @@ const inputVariables = {
9
9
  "--input-focus-shadow": `0 0 0 3px ${themeVars.focus}`,
10
10
  },
11
11
  error: {
12
- "--input-border": themeVars.inputErrorBorderColor,
13
- "--input-hover-border": themeVars.inputErrorBorderHoverColor,
14
- "--input-focus-border": themeVars.inputErrorBorderFocusColor,
15
- "--input-focus-shadow": themeVars.inputErrorBorderFocusShadow,
12
+ "--input-border": `0 0 0 1px ${themeVars.warning}`,
13
+ "--input-hover-border": `0 0 0 1px ${themeVars.warning}`,
14
+ "--input-focus-border": `0 0 0 1px ${themeVars.warning}`,
15
+ "--input-focus-shadow": `0 0 0 1px ${themeVars.warning}`,
16
16
  },
17
17
  };
18
18
 
@@ -43,7 +43,7 @@ export const inputOverrides = {
43
43
  transition: `box-shadow ${transition}`,
44
44
  },
45
45
  focus: {
46
- boxShadow: `var(--input-focus-border, 0 0 0 1px ${themeVars.opacity.opacity25}), var(--input-focus-shadow, 0 0 0 3px ${themeVars.focus}) !important`,
46
+ boxShadow: `var(--input-focus-border, 0 0 0 1px ${themeVars.opacity.opacity25}) !important`,
47
47
  transition: `box-shadow ${transition}`,
48
48
  },
49
49
  disabled: {
@@ -29,7 +29,7 @@ export const baseButton = css`
29
29
 
30
30
  background-color: var(--fibery-button-color);
31
31
 
32
- box-shadow: inset 0 0 0 1px var(--fibery-button-border-color);
32
+ box-shadow: inset 0 0 0 0.5px var(--fibery-button-border-color);
33
33
 
34
34
  &:hover:not(:disabled) {
35
35
  background-color: var(--fibery-button-hover-color);
@@ -10,14 +10,14 @@ export type IconButtonProps = {
10
10
  pending?: boolean;
11
11
  } & BaseButtonProps;
12
12
 
13
- const iconButton = css`
13
+ export const iconButton = css`
14
14
  display: flex;
15
15
  align-items: center;
16
16
  justify-content: center;
17
17
  gap: ${space.s2}px;
18
18
  `;
19
19
 
20
- const iconButtonSizes = {
20
+ export const iconButtonSizes = {
21
21
  tiny: css`
22
22
  padding: ${space.s2}px;
23
23
  min-width: 20px;
@@ -22,7 +22,7 @@ import {
22
22
  } from "./palette";
23
23
  import {ThemeMode} from "./theme-settings";
24
24
 
25
- export const typeSizes = [28, 24, 18, 16, 14, 12, 10, 8] as const;
25
+ export const typeSizes = [32, 24, 18, 16, 14, 12, 10, 8] as const;
26
26
 
27
27
  export const fontWeight = {
28
28
  light: 300,
@@ -106,15 +106,15 @@ const shades = getOpacities("#000000");
106
106
  const lights = getOpacities("#FFFFFF");
107
107
 
108
108
  export const separators = {
109
- ..._.mapValues(shades, (shade) => `1px solid ${shade}`),
109
+ ..._.mapValues(shades, (shade) => `0.5px solid ${shade}`),
110
110
  } as const;
111
111
 
112
112
  export const inversedSeparators = {
113
- ..._.mapValues(lights, (light) => `1px solid ${light}`),
113
+ ..._.mapValues(lights, (light) => `0.5px solid ${light}`),
114
114
  } as const;
115
115
 
116
116
  export const fontFamily =
117
- "ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'";
117
+ '"Inter Variable", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif';
118
118
 
119
119
  const stateColors = {
120
120
  success: "rgba(8, 189, 159, 1)",
@@ -143,6 +143,12 @@ export const themeColors = {
143
143
  colorSubtleBgAI: ["hsla(271, 57%, 61%, 0.05)", "hsla(272, 43%, 50%, 0.1)"],
144
144
 
145
145
  // Shadows and effects / Elevation
146
+ shadow50: [
147
+ `
148
+ 0px 0px 0px 0.5px ${getOpacities(slate.slate12).opacity5}
149
+ `,
150
+ `0px 0px 0px 0.5px ${getOpacities(slateDark.slate12).opacity15}`,
151
+ ],
146
152
  shadow100: [
147
153
  `
148
154
  0px 1px 4px 0px ${getOpacities(slate.slate12).opacity5}
@@ -165,6 +171,30 @@ export const themeColors = {
165
171
  getOpacities(slate.slate12).opacity15
166
172
  }`,
167
173
  ],
174
+ shadow400: [
175
+ `
176
+ 0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 16px 40px 0px ${getOpacities(slate.slate12).opacity15}
177
+ `,
178
+ `0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 16px 40px 0px ${
179
+ getOpacities(slate.slate12).opacity15
180
+ }`,
181
+ ],
182
+ shadow500: [
183
+ `
184
+ 0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 20px 50px 0px ${getOpacities(slate.slate12).opacity15}
185
+ `,
186
+ `0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 20px 50px 0px ${
187
+ getOpacities(slate.slate12).opacity15
188
+ }`,
189
+ ],
190
+ shadow600: [
191
+ `
192
+ 0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 26px 80px 0px ${getOpacities(slate.slate12).opacity20}
193
+ `,
194
+ `0px 0px 1px 0px ${getOpacities(slate.slate12).opacity20}, 0px 26px 80px 0px ${
195
+ getOpacities(slate.slate12).opacity20
196
+ }`,
197
+ ],
168
198
  actionMenuShadow: [
169
199
  `0px 0px 2px 0px ${getOpacities(slate.slate11).opacity30}, 0px 4px 6px 0px ${
170
200
  getOpacities(slate.slate11).opacity5
@@ -202,15 +232,15 @@ export const themeColors = {
202
232
  primaryBlue: [indigo.indigo9, indigoDark.indigo9],
203
233
  whiteColor: [whiteA.whiteA0, whiteA.whiteA0],
204
234
  blackColor: [blackA.blackA0, blackA.blackA0],
205
- mainBg: [slate.slate3, slateDark.slate1],
206
- panelBg: [whiteA.whiteA0, slateDark.slate2],
207
- panelContentBg: [slate.slate2, slateDark.slate2],
235
+ mainBg: [slate.slate3, slateDark.slateBase],
236
+ panelBg: [whiteA.whiteA0, slateDark.slate1],
237
+ panelContentBg: [slate.slate2, slateDark.slate1],
208
238
  colorBgRelationContainer: [slate.slate2, slateDark.slate1],
209
239
  pageBg: [whiteA.whiteA0, slateDark.slate1],
210
240
  pageContentBg: [whiteA.whiteA0, slateDark.slate2],
211
241
  colorBgPopup: [whiteA.whiteA0, slateDark.slate4],
212
242
  colorBgSidebar: [whiteA.whiteA0, slateDark.slate3],
213
- menuBg: [slate.slate3, slateDark.slate1],
243
+ menuBg: [slate.slate3, slateDark.slateBase],
214
244
  menuTextColor: [slateDark.slate5, slate.slate8],
215
245
  menuItemHoverColor: [slate.slate5, slateDark.slate6],
216
246
  menuSelectedTextColor: [slate.slate2, slate.slate2],
@@ -298,7 +328,7 @@ export const themeColors = {
298
328
  colorBorderBlockQuote: [slate.slate11, slateDark.slate11],
299
329
 
300
330
  // Actions menu
301
- colorBgActionsMenu: [getOpacities(whiteA.whiteA0).opacity85, getOpacities(slateDark.slate4).opacity85],
331
+ colorBgActionsMenu: [whiteA.whiteA0, slateDark.slate3],
302
332
  colorBgActionsMenuItemHover: [getOpacities(slate.slate11).opacity10, getOpacities(slateDark.slate11).opacity10],
303
333
  colorBgActionsMenuItemSelected: [getOpacities(indigo.indigo4).opacity80, getOpacities(indigoDark.indigo4).opacity80],
304
334
  colorBgActionsMenuItemSelectedHover: [
@@ -308,10 +338,10 @@ export const themeColors = {
308
338
  colorBgActionsMenuItemDangerHover: [getOpacities(red.red9).opacity10, getOpacities(redDark.red10).opacity10],
309
339
 
310
340
  colorBgActionsMenuItemDangerActive: [getOpacities(red.red9).opacity80, getOpacities(redDark.red10).opacity80],
311
- actionMenuBg: [whiteA.whiteA0, slateDark.slate4],
312
- actionMenuInnerBg: [whiteA.whiteA0, slateDark.slate5],
313
- actionMenuHover: [slate.slate4, slateDark.slate6],
314
- actionMenuInnerHover: [slate.slate4, getOpacities(slateDark.slate7).opacity50],
341
+ actionMenuBg: [whiteA.whiteA0, slateDark.slate3],
342
+ actionMenuInnerBg: [whiteA.whiteA0, slateDark.slate4],
343
+ actionMenuHover: [slate.slate4, slateDark.slate5],
344
+ actionMenuInnerHover: [slate.slate4, getOpacities(slateDark.slate6).opacity50],
315
345
  actionMenuButtonColor: [whiteA.whiteA0, slateDark.slate2],
316
346
  actionMenuButtonHoverColor: [slate.slate1, slateDark.slate3],
317
347
  actionMenuButtonShadow: [
@@ -322,7 +352,8 @@ export const themeColors = {
322
352
  `0 0 0 1px ${getOpacities(slate.slate10).opacity10}, 0 6px 8px -4px ${getOpacities(slate.slate10).opacity30}`,
323
353
  `0 0 0 1px ${getOpacities(slateDark.slate2).opacity10}, 0 6px 8px -4px ${getOpacities(slateDark.slate2).opacity30}`,
324
354
  ],
325
- separatorColor: [getOpacities(blackA.blackA0).opacity5, getOpacities(whiteA.whiteA0).opacity5],
355
+ actionMenuSeparatorColor: [getOpacities(blackA.blackA0).opacity10, getOpacities(whiteA.whiteA0).opacity15],
356
+ separatorColor: [getOpacities(blackA.blackA0).opacity10, getOpacities(whiteA.whiteA0).opacity10],
326
357
  separatorBreadcrumbsColor: [slate.slate8, slateDark.slate8],
327
358
  iconColor: [slate.slate10, slateDark.slate10],
328
359
  appIconColor: [getOpacities(slate.slate2).opacity90, getOpacities(slate.slate2).opacity70],
@@ -439,17 +470,17 @@ export const themeColors = {
439
470
  colorTextMenuItem: [slateDark.slate5, getOpacities(slateDark.slate12).opacity90],
440
471
  colorBgMenuItem: [transparent, transparent],
441
472
  // :hover
442
- colorBgMenuItemHover: [slate.slate5, slateDark.slate4],
473
+ colorBgMenuItemHover: [slate.slate5, slateDark.slate2],
443
474
  // :focus
444
- colorBgMenuItemFocus: [slate.slate6, slateDark.slate6],
475
+ colorBgMenuItemFocus: [slate.slate6, slateDark.slate5],
445
476
  // Selected
446
- colorBgMenuItemSelected: [indigo.indigo5, indigoDark.indigo4],
477
+ colorBgMenuItemSelected: [indigo.indigo5, indigoDark.indigo3],
447
478
  // :hover
448
- colorBgMenuItemSelectedHover: [indigo.indigo6, indigoDark.indigo6],
479
+ colorBgMenuItemSelectedHover: [indigo.indigo6, indigoDark.indigo5],
449
480
  // :focus, :focus:hover
450
481
  colorBgPinnedFieldsLabel: [slate.slate11, slateDark.slate11],
451
482
  colorBgObjectEditorSeparator: [slate.slate12, slateDark.slate12],
452
- colorBgMenuItemSelectedFocused: [indigo.indigo6, indigoDark.indigo6],
483
+ colorBgMenuItemSelectedFocused: [indigo.indigo6, indigoDark.indigo5],
453
484
  colorBgFieldEditorContainer: [slate.slate2, slateDark.slate3],
454
485
  colorBgFieldEditorLinkEqualSign: [slate.slate6, slateDark.slate2],
455
486
  allowedDropColor: [getOpacities(slate.slate3).opacity80, getOpacities(slateDark.slate3).opacity80],
@@ -516,7 +547,7 @@ export const themeColors = {
516
547
  success: [teal.teal9, tealDark.teal9],
517
548
  danger: [red.red9, redDark.red10],
518
549
  active: [red.red9, redDark.red10],
519
- warning: ["#FFD41E", "#FFD41E"],
550
+ warning: [yellow.yellow9, yellowDark.yellow8],
520
551
  cardBg: ["#FFFFFF", slateDark.slate6],
521
552
  cardSelected: ["#FFFB8F", slateDark.slate5],
522
553
  cardSelectedHover: ["rgba(240, 244, 247, 0.6)", slateDark.slate5],
@@ -544,7 +575,6 @@ export const themeColors = {
544
575
  gridHeaderTextColor: [slate.slate10, slateDark.slate11],
545
576
  gridCellBgColor: [whiteA.whiteA0, slateDark.slate2],
546
577
  gridCellBorderColor: [slate.slate5, slateDark.slate6],
547
- gridPinnedCellBorderColor: [slate.slate8, slateDark.slate8],
548
578
  gridDisabledCellBgColor: [slate.slate2, slateDark.slate3],
549
579
  gridSelectedCellBgColor: [indigo.indigo3, indigoDark.indigo3],
550
580
  gridHighlightedCellBgColor: [indigo.indigo4, indigoDark.indigo5],
@@ -553,6 +583,12 @@ export const themeColors = {
553
583
  gridDisabledSelectedCellBgColor: [indigo.indigo4, indigoDark.indigo5],
554
584
  gridActiveCellBorderColor: [indigo.indigo8, indigoDark.indigo9],
555
585
 
586
+ //timeline
587
+ timelineEntityHandleColor: [indigo.indigo7, indigoDark.indigo7],
588
+ timelineDependencyHoverBgColor: [indigo.indigo8, indigoDark.indigo8],
589
+ timelineDependencyOverlapBgColor: [red.red9, redDark.red9],
590
+ timelineDependencyOverlapHoverBgColor: [red.red11, redDark.red11],
591
+
556
592
  // #region buttons
557
593
  // solid
558
594
  colorBgButtonSolidAccentDefault: [indigo.indigo9, indigoDark.indigo9],
@@ -570,9 +606,12 @@ export const themeColors = {
570
606
  getOpacities(whiteA.whiteA0).opacity80,
571
607
  getOpacities(whiteA.whiteA0).opacity80,
572
608
  ],
609
+ colorIconButtonSolidAccent: [whiteA.whiteA0, whiteA.whiteA0],
610
+ colorIconButtonSolidNeutral: [whiteA.whiteA0, slateDark.slate8],
611
+ colorIconButtonSolidDestructive: [whiteA.whiteA0, whiteA.whiteA0],
573
612
  // outline
574
613
  colorBorderButtonOutlineAccentDefault: [indigo.indigo8, indigoDark.indigo8],
575
- colorBorderButtonOutlineNeutralDefault: [slate.slate8, slateDark.slate8],
614
+ colorBorderButtonOutlineNeutralDefault: [slate.slate8, slateDark.slate7],
576
615
  colorBorderButtonOutlineDestructiveDefault: [red.red7, redDark.red7],
577
616
  colorBgButtonOutlineAccentDefault: [whiteA.whiteA0, slateDark.slate1],
578
617
  colorBgButtonOutlineAccentHover: [indigo.indigo3, indigoDark.indigo3],
@@ -592,6 +631,9 @@ export const themeColors = {
592
631
  ],
593
632
  colorTextButtonOutlineDestructive: [red.red11, redDark.red11],
594
633
  colorTextButtonOutlineDestructiveActive: [getOpacities(red.red11).opacity80, getOpacities(redDark.red11).opacity80],
634
+ colorIconButtonOutlineAccent: [indigo.indigo11, indigoDark.indigo11],
635
+ colorIconButtonOutlineNeutral: [slate.slate11, slateDark.slate11],
636
+ colorIconButtonOutlineDestructive: [red.red11, redDark.red11],
595
637
  // soft
596
638
  colorBgButtonSoftAccentDefault: [indigo.indigo3, indigoDark.indigo4],
597
639
  colorBgButtonSoftAccentHover: [indigo.indigo5, indigoDark.indigo6],
@@ -608,11 +650,14 @@ export const themeColors = {
608
650
  colorTextButtonSoftNeutralActive: [getOpacities(slate.slate12).opacity80, getOpacities(slateDark.slate12).opacity80],
609
651
  colorTextButtonSoftDestructive: [red.red11, redDark.red11],
610
652
  colorTextButtonSoftDestructiveActive: [getOpacities(red.red11).opacity80, getOpacities(redDark.red11).opacity80],
653
+ colorIconButtonSoftAccent: [indigo.indigo11, indigoDark.indigo11],
654
+ colorIconButtonSoftNeutral: [slate.slate11, slateDark.slate11],
655
+ colorIconButtonSoftDestructive: [red.red11, redDark.red11],
611
656
  // ghost
612
657
  colorBgButtonGhostAccentDefault: [transparent, transparent],
613
- colorBgButtonGhostAccentHover: [indigo.indigo3, indigoDark.indigo3],
658
+ colorBgButtonGhostAccentHover: [getOpacities(indigo.indigo4).opacity80, getOpacities(indigoDark.indigo4).opacity80],
614
659
  colorBgButtonGhostNeutralDefault: [transparent, transparent],
615
- colorBgButtonGhostNeutralHover: [getOpacities(slate.slate6).opacity60, getOpacities(slateDark.slate6).opacity80],
660
+ colorBgButtonGhostNeutralHover: [getOpacities(slate.slate7).opacity50, getOpacities(slateDark.slate6).opacity80],
616
661
  colorBgButtonGhostDestructiveDefault: [transparent, transparent],
617
662
  colorBgButtonGhostDestructiveHover: [red.red4, redDark.red4],
618
663
  colorTextButtonGhostAccent: [indigo.indigo11, indigoDark.indigo11],
@@ -624,6 +669,9 @@ export const themeColors = {
624
669
  colorTextButtonGhostNeutralActive: [getOpacities(slate.slate11).opacity80, getOpacities(slateDark.slate11).opacity80],
625
670
  colorTextButtonGhostDestructive: [red.red11, redDark.red11],
626
671
  colorTextButtonGhostDestructiveActive: [getOpacities(red.red11).opacity80, getOpacities(redDark.red11).opacity80],
672
+ colorIconButtonGhostAccent: [indigo.indigo11, indigoDark.indigo11],
673
+ colorIconButtonGhostNeutral: [slate.slate11, slateDark.slate11],
674
+ colorIconButtonGhostDestructive: [red.red11, redDark.red11],
627
675
  // #endregion
628
676
 
629
677
  colorBorderAccentFocusRing: [getOpacities(indigo.indigo9).opacity30, getOpacities(indigo.indigo9).opacity30],
@@ -655,20 +703,29 @@ export const themeColors = {
655
703
  colorBgEditorImageZoomed: [getOpacities(slate.slate3).opacity90, getOpacities(slateDark.slate6).opacity90],
656
704
 
657
705
  //Whiteboard
658
- instrumentsMenuBg: [getOpacities(whiteA.whiteA0).opacity95, getOpacities(slateDark.slate4).opacity95],
706
+ instrumentsMenuBg: [getOpacities(whiteA.whiteA0).opacity100, getOpacities(slateDark.slate4).opacity100],
659
707
  instrumentsMenuShadow: [
660
- `0 0 0 1px ${getOpacities(slate.slate10).opacity10}, 0 2px 12px -2px ${getOpacities(slate.slate10).opacity15}`,
661
- `0 0 0 1px ${getOpacities(slateDark.slate1).opacity10}, 0 2px 12px -6px ${
662
- getOpacities(slateDark.slate1).opacity15
663
- }`,
708
+ `0px 0px 1px 0px ${getOpacities(slate.slate11).opacity20}, 0px 4px 6px 0px ${
709
+ getOpacities(slate.slate11).opacity5
710
+ }, 0px 3px 12px 0px ${getOpacities(slate.slate11).opacity10}`,
711
+ `0px 0px 1px 0px ${getOpacities(slateDark.slate6).opacity100}, 0px 4px 6px 0px ${
712
+ getOpacities(slateDark.slate1).opacity5
713
+ }, 0px 3px 12px 0px ${getOpacities(slateDark.slate1).opacity15}`,
664
714
  ],
665
715
  commentBubbleBg: [whiteA.whiteA0, slateDark.slate6],
716
+ commentsPanelShadow: [
717
+ `0 0 0 1px ${getOpacities(slate.slate10).opacity10}, 0 2px 4px -4px ${getOpacities(slate.slate10).opacity20}`,
718
+ `0 0 0 1px ${getOpacities(slateDark.slate2).opacity10}, 0 2px 4px -4px ${getOpacities(slateDark.slate2).opacity20}`,
719
+ ],
666
720
 
667
721
  // SegmentedControl
668
722
  colorBgSegmentedControlDefault: [slate.slate3, slateDark.slate1],
669
723
  colorBgSegmentedControlActive: [slate.slate1, slateDark.slate6],
670
724
  colorBgSegmentedControlHover: [slate.slate5, slateDark.slate4],
671
725
  colorBorderSegmentedControlDefault: [slate.slate6, slateDark.slate7],
726
+
727
+ // Chargebee info
728
+ colorBgChargebeeInfoBox: [slate.slate3, slateDark.slate1],
672
729
  } as const;
673
730
 
674
731
  type ThemeDefs = typeof themeColors;
@@ -914,7 +971,7 @@ export const layout = {
914
971
  desktopToolbarHeight: 32,
915
972
  desktopMenuMinWidth: 240,
916
973
  collapsedMenuMinWidth: 47,
917
- menuMinWidth: 240, //TODO: make dependency to itemHeight
974
+ menuMinWidth: 284,
918
975
  menuMaxWidth: 480,
919
976
  menuItemMinWidth: 80,
920
977
  menuGroupHeaderIndent: 28, // I'm ok
@@ -1081,7 +1138,7 @@ export const textStyles = {
1081
1138
  fontSize: typeSizes[0],
1082
1139
  letterSpacing: "-0.01em",
1083
1140
  lineHeight: lineHeight.heading,
1084
- fontWeight: fontWeight.bold,
1141
+ fontWeight: fontWeight.semibold,
1085
1142
  color: themeVars.textColor,
1086
1143
  },
1087
1144
  heading2: {
@@ -76,7 +76,6 @@ const dropdownMenuContentStyles = css`
76
76
  min-width: 200px;
77
77
  box-shadow: ${themeVars.actionMenuShadow};
78
78
  border-radius: ${border.radius8}px;
79
- backdrop-filter: ${themeVars.effectBgActionsMenu};
80
79
  background-color: ${themeVars.colorBgActionsMenu};
81
80
 
82
81
  @media (prefers-reduced-motion: no-preference) {
@@ -159,8 +158,8 @@ export const Item = styled(DropdownMenuPrimitive.Item)`
159
158
 
160
159
  export const Separator = styled(DropdownMenuPrimitive.Separator)`
161
160
  ${{
162
- backgroundColor: themeVars.separatorColor,
163
- height: 1,
161
+ backgroundColor: themeVars.actionMenuSeparatorColor,
162
+ height: 0.5,
164
163
  margin: `${space.s4}px 0`,
165
164
  }}
166
165
  `;
@@ -18,6 +18,7 @@ export type AppIconPickerProps = {
18
18
 
19
19
  onSelect: (emoji: EmojiItem) => void;
20
20
  autoFocus?: boolean;
21
+ showColorPicker?: boolean;
21
22
  };
22
23
  export const AppIconPicker: React.FC<AppIconPickerProps> = ({
23
24
  onSelect,
@@ -23,7 +23,7 @@ const ColorPickerCollapsibleTrigger: React.FC<ColorPickerCollapsibleTrigger> = (
23
23
  const themeMode = useThemeMode();
24
24
  const iconColor = color ? getIconColor(themeMode, color) : undefined;
25
25
 
26
- const Icon = opened ? ColorCodingFilled : ColorCoding;
26
+ const Icon = opened ? ColorCoding : ColorCodingFilled;
27
27
 
28
28
  const label = opened ? "Hide color picker" : "Show color picker";
29
29
 
@@ -3,6 +3,7 @@ import {EmojiItem, EmojiSkin, NativeEmoji} from "@fibery/emoji-data";
3
3
  import {css, cx} from "@linaria/core";
4
4
  import {themeVars} from "../../design-system";
5
5
  import {useEmojiDataStoreSelector} from "../stores/emoji-data-store";
6
+ import {useEmojiRenderConfig} from "./render-config-provider";
6
7
 
7
8
  const emojiWrapperCss = css`
8
9
  color: ${themeVars.textColor};
@@ -67,7 +68,7 @@ export const Emoji: FC<EmojiProps> = ({
67
68
  showTitle = false,
68
69
  }) => {
69
70
  const emoji = useEmojiDataStoreSelector((store) => store.get(idOrColons, {skin}));
70
-
71
+ const config = useEmojiRenderConfig();
71
72
  if (!emoji) {
72
73
  return fallback === "shortcode" ? <>{idOrColons}</> : null;
73
74
  }
@@ -95,7 +96,8 @@ export const Emoji: FC<EmojiProps> = ({
95
96
  emojiNode = (
96
97
  <img
97
98
  alt={emoji.name}
98
- loading="lazy"
99
+ loading={config.loading}
100
+ draggable={config.draggable}
99
101
  className={cx(size ? emojiSizedImgCss : emojiInlineImgCss)}
100
102
  src={emoji.imageUrl}
101
103
  />
@@ -0,0 +1,12 @@
1
+ import {createContext} from "@fibery/react/src/create-context";
2
+
3
+ type RenderConfig = {loading: "lazy" | "eager"; draggable: "false" | "true"};
4
+
5
+ const [ValueProvider, useValueCtx] = createContext<RenderConfig>("EmojiRenderConfigProvider", {
6
+ loading: "lazy",
7
+ draggable: "false",
8
+ });
9
+
10
+ export {ValueProvider as EmojiRenderConfigProvider};
11
+
12
+ export const useEmojiRenderConfig = useValueCtx;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AddDatabase: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M5.835 8.738c-.35-.17-.66-.37-.92-.603C4.454 7.725 4 7.045 4 6.401 4 4.002 6.686 3 10 3s6 .972 6 3.4c0 .65-.448 1.332-.91 1.746-.262.233-.572.433-.925.603-1.079.52-2.547.751-4.165.751-1.618 0-3.086-.239-4.165-.762ZM2.5 13.599c0 1.904 1.127 3.202 2.58 3.938 1.46.74 3.347.991 5.215.96a.723.723 0 0 0 .705-.73.78.78 0 0 0-.797-.768c-1.94.023-4.927-.181-5.93-2.187a2.783 2.783 0 0 1-.257-1.528c.017-.16.046-.313.088-.46.406.396.89.703 1.405.939 1.498.688 3.213.837 4.844.804a.666.666 0 0 0 .647-.673.715.715 0 0 0-.733-.705c-1.499.024-3.105-.103-4.468-.778a3.92 3.92 0 0 1-.93-.626c-.264-.244-.71-.72-.795-1.083A2.868 2.868 0 0 1 4 10.044c0-.276.036-.535.104-.775.394.384.871.694 1.405.939 1.256.577 2.85.808 4.491.808 1.638 0 3.232-.224 4.49-.797a4.934 4.934 0 0 0 1.41-.94c.034.122.06.25.076.382.025.196.024.392.024.589a.75.75 0 0 0 1.5 0V6.4c0-1.914-1.122-3.215-2.583-3.95-1.385-.697-3.153-.95-4.917-.95-1.77 0-3.538.262-4.92.963C3.626 3.199 2.5 4.497 2.5 6.4v7.198Zm13.25-.849a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 1 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]}],"metadata":""}]},"name":"add-database"};
7
+
8
+ export default AddDatabase;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AddIntegration: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"m8.435 6.627-.7-.7a.803.803 0 0 1 0-1.136l.634-.634a5.283 5.283 0 0 1 6.861-.523l1.376-1.375a.804.804 0 1 1 1.135 1.135L16.366 4.77c1.022 1.394 1.296 3.324.709 4.983-.148.419-.674.592-1.075.348-.358-.218-.48-.672-.375-1.077.375-1.45.044-2.77-.918-3.731a3.655 3.655 0 0 0-5.203 0l-.066.066L13.076 9A.81.81 0 0 1 12 10.21L9.57 7.761l-.699.7a.803.803 0 1 1-1.135-1.136l.699-.7Zm1.272 10.451a5.305 5.305 0 0 1-4.952-.698l-1.377 1.378a.805.805 0 0 1-1.318-.256.803.803 0 0 1 .182-.88l1.378-1.377a5.283 5.283 0 0 1 .523-6.862l.634-.634a.803.803 0 0 1 1.135 0l4.182 4.17A.804.804 0 0 1 9 13.095L5.344 9.452l-.066.067a3.658 3.658 0 0 0 0 5.203c.922.922 2.407 1.14 3.667.84.486-.114 1.029.111 1.18.587.12.377-.046.793-.418.93Zm6.043-4.328a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 1 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]}],"metadata":""}]},"name":"add-integration"};
7
+
8
+ export default AddIntegration;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const AiSearch: 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.128 14.32a7.085 7.085 0 1 1 1.182-1.18l3.78 3.769a.835.835 0 1 1-1.18 1.182l-3.782-3.77ZM8.75 3.335a5.415 5.415 0 1 0 0 10.83 5.415 5.415 0 0 0 0-10.83Zm0 2.415c.117 0 .221.072.263.181l.57 1.498a.844.844 0 0 0 .488.488l1.498.57a.281.281 0 0 1 0 .526l-1.498.57a.844.844 0 0 0-.488.488l-.57 1.498a.281.281 0 0 1-.526 0l-.57-1.498a.844.844 0 0 0-.488-.488l-1.498-.57a.281.281 0 0 1 0-.526l1.498-.57a.844.844 0 0 0 .488-.488l.57-1.498a.281.281 0 0 1 .263-.181Z"},"children":[]}],"metadata":""}]},"name":"ai-search"};
7
+
8
+ export default AiSearch;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Clean: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M2.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM6 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM4.5 7.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"m14.64 8.422 3.89-3.892a.75.75 0 0 0-1.06-1.06l-3.892 3.89-.604-.603a2.25 2.25 0 0 0-2.846-.277l-6.546 4.397a.75.75 0 0 0 .002 1.247c1.099.733 1.733 1.586 2.423 2.515.17.228.342.46.526.697.934 1.2 2.064 2.336 4.285 2.892a.75.75 0 0 0 .82-.333l3.834-6.186a2.25 2.25 0 0 0-.322-2.777l-.51-.51Zm-3.675-.697a.75.75 0 0 1 .948.092l2.176 2.176a.75.75 0 0 1 .107.926l-.465.751L10.259 8.2l.706-.474ZM8.99 9.05l3.928 3.929-2.257 3.642c-1.438-.474-2.213-1.266-2.945-2.207a20.49 20.49 0 0 1-.25-.329.748.748 0 0 0 .063-.056l1-1a.75.75 0 1 0-1.06-1.06l-.914.913c-.363-.45-.775-.909-1.272-1.342l3.707-2.49Z"},"children":[]}],"metadata":""}]},"name":"clean"};
7
+
8
+ export default Clean;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const CollapseAll: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7 3.5a.8.8 0 1 0-1.131 1.131l3.565 3.335a.8.8 0 0 0 1.132 0L14.13 4.63A.8.8 0 0 0 13 3.5l-3 2.769L7 3.5Zm6 13.237a.8.8 0 1 0 1.131-1.131l-3.565-3.572a.8.8 0 0 0-1.132 0L5.87 15.606A.8.8 0 1 0 7 16.737l3-3.006 3 3.006Z"},"children":[]}],"metadata":""}]},"name":"collapse-all"};
7
+
8
+ export default CollapseAll;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const CreditsFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.536.976 3.577 3.284c-.918.535-1.377.803-1.71 1.177a3.208 3.208 0 0 0-.656 1.147c-.154.479-.154 1.014-.154 2.084v4.616c0 1.07 0 1.605.154 2.084.137.426.36.816.656 1.147.333.374.792.642 1.71 1.177l3.96 2.308c.918.535 1.376.803 1.866.907a3.14 3.14 0 0 0 1.31 0c.487-.104.947-.372 1.865-.907l3.96-2.308c.918-.535 1.376-.803 1.71-1.178.295-.331.519-.722.656-1.146.153-.479.153-1.014.153-2.084V7.692c0-1.07 0-1.605-.153-2.085a3.207 3.207 0 0 0-.656-1.146c-.334-.374-.792-.642-1.71-1.177L12.578.976C11.66.441 11.201.173 10.712.07a3.14 3.14 0 0 0-1.31 0c-.488.104-.947.372-1.866.907Zm1.517 8.066c-.297-.033-.473-.244-.473-.544 0-.3.177-.511.473-.545 1.31-.184 1.958-.276 2.32-.65.357-.368.438-1.01.595-2.282.045-.3.254-.489.55-.489.298 0 .496.19.54.489.158 1.272.237 1.914.594 2.282.364.374 1.012.466 2.322.65.135.008.262.07.352.172.091.102.138.236.131.373 0 .3-.187.51-.483.544-1.31.185-1.958.276-2.322.65-.357.369-.436 1.01-.594 2.282-.044.3-.242.49-.54.49-.296 0-.504-.19-.549-.49-.158-1.272-.238-1.913-.594-2.281-.364-.375-1.012-.466-2.322-.651Z","fill":"#EBBC00"},"children":[]}],"metadata":""}]},"name":"credits-filled"};
7
+
8
+ export default CreditsFilled;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const DatabaseOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"m5.198 4.138 5.353 5.353c1.4-.048 2.66-.282 3.614-.742.353-.17.663-.37.924-.603.463-.414.911-1.097.911-1.745C16 3.97 13.314 3 10 3c-1.964 0-3.707.352-4.802 1.138Zm6.76 6.758 1.74 1.742c.176-.066.344-.137.503-.216.358-.176.672-.384.934-.627.263-.244.706-.72.79-1.082a3.081 3.081 0 0 0 .051-1.052 2.735 2.735 0 0 0-.075-.383 4.934 4.934 0 0 1-1.41.941c-.747.34-1.612.557-2.534.677Zm2.765 2.766 1.053 1.054c.146-.332.224-.703.224-1.117a2.763 2.763 0 0 0-.1-.766 4.78 4.78 0 0 1-1.177.83Zm2.162 2.162.895.896a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 1.06-1.06l.849.848a5.58 5.58 0 0 1 .95-.605C6.462 1.762 8.23 1.5 10 1.5c1.764 0 3.532.253 4.917.95 1.46.735 2.583 2.036 2.583 3.95v7.2c0 .865-.23 1.605-.615 2.224ZM2.5 6.4c0-.328.384-.456.616-.224L6.11 9.17c.534.535.085 1.353-.601 1.038a4.973 4.973 0 0 1-1.405-.939 2.676 2.676 0 0 0-.078.38 2.993 2.993 0 0 0 .048 1.053c.085.362.531.84.795 1.083.26.242.574.45.93.626 1.23.609 2.662.77 4.026.78a.744.744 0 0 1 .521.216l.076.076c.407.407.154 1.088-.422 1.088-1.64 0-3.235-.231-4.491-.808a4.978 4.978 0 0 1-1.405-.939A2.703 2.703 0 0 0 4 13.6c0 .454.096.857.274 1.213C5.038 16.341 7.312 17 10 17c1.093 0 2.117-.106 3-.334a.845.845 0 0 1 .812.207c.393.392.265 1.05-.27 1.2-1.097.306-2.32.427-3.542.427-1.77 0-3.538-.262-4.92-.963-1.453-.736-2.58-2.034-2.58-3.938V6.401Z"},"children":[]}],"metadata":""}]},"name":"database-off"};
7
+
8
+ export default DatabaseOff;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Dependency: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9 3.75A.75.75 0 0 1 9.75 3h7.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-7.5A.75.75 0 0 1 9 5.25v-1.5Zm-7 11a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-7.5a.75.75 0 0 1-.75-.75v-1.5ZM14.75 8V7h-1.5v1c0 .69-.56 1.25-1.25 1.25H8A2.75 2.75 0 0 0 5.25 12v1h1.5v-1c0-.69.56-1.25 1.25-1.25h4A2.75 2.75 0 0 0 14.75 8Z"},"children":[]}],"metadata":""}]},"name":"dependency"};
7
+
8
+ export default Dependency;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Gift: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.03 2.972a1.027 1.027 0 0 0-.001 2.054h2.47a5.925 5.925 0 0 0-.341-.627C7.65 3.593 6.959 2.972 6.03 2.972Zm2.803 3.554v1.546H3.237a.265.265 0 0 1-.265-.266V6.791c0-.146.119-.265.265-.265h5.596Zm-5.113-1.5a2.527 2.527 0 0 1 2.31-3.554c1.699 0 2.785 1.156 3.397 2.127.055.088.107.175.156.261a6.95 6.95 0 0 1 .157-.26c.611-.972 1.698-2.128 3.397-2.128a2.527 2.527 0 0 1 2.31 3.554h.482c.975 0 1.765.79 1.765 1.765v1.015c0 .975-.79 1.766-1.765 1.766h-.265v5.342a2.78 2.78 0 0 1-2.78 2.78h-6.6a2.78 2.78 0 0 1-2.781-2.78V9.572h-.266c-.974 0-1.765-.79-1.765-1.766V6.791c0-.975.79-1.765 1.765-1.765h.483Zm1.283 4.546v5.342c0 .707.573 1.28 1.28 1.28h2.55V9.572h-3.83Zm5.33 0v6.622h2.55a1.28 1.28 0 0 0 1.28-1.28V9.572h-3.83Zm5.596-1.5a.265.265 0 0 0 .265-.266V6.791a.265.265 0 0 0-.265-.265h-5.596v1.546h5.596Zm-2.791-3.046h-2.471c.094-.2.208-.415.342-.627.508-.806 1.199-1.427 2.128-1.427a1.027 1.027 0 0 1 0 2.054Z"},"children":[]}],"metadata":""}]},"name":"gift"};
7
+
8
+ export default Gift;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ManyPeople: 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":"M5.25 2a1.583 1.583 0 1 0 0 3.167A1.583 1.583 0 0 0 5.25 2ZM3.478 8.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 0 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 0 0 1.456.362ZM14.75 2a1.583 1.583 0 1 0 0 3.167 1.583 1.583 0 0 0 0-3.167Zm-1.772 6.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 0 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 0 0 1.456.362Zm.189 2.82a1.583 1.583 0 1 1 3.167 0 1.583 1.583 0 0 1-3.167 0Zm1.583 4.083c-.982 0-1.64.563-1.772 1.097a.75.75 0 1 1-1.456-.362c.34-1.367 1.742-2.235 3.228-2.235 1.486 0 2.888.868 3.228 2.235a.75.75 0 1 1-1.456.362c-.132-.534-.79-1.097-1.772-1.097ZM5.25 10a1.583 1.583 0 1 0 0 3.167 1.583 1.583 0 0 0 0-3.167Zm-1.772 6.764c.133-.534.79-1.097 1.772-1.097s1.64.563 1.772 1.097a.75.75 0 1 0 1.456-.362c-.34-1.367-1.742-2.235-3.228-2.235-1.486 0-2.888.868-3.228 2.235a.75.75 0 1 0 1.456.362Z"},"children":[]}],"metadata":""}]},"name":"many-people"};
7
+
8
+ export default ManyPeople;
@@ -0,0 +1,8 @@
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":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2.5 5.25a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75H3.25a.75.75 0 0 1-.75-.75v-9.5ZM3.25 3A2.25 2.25 0 0 0 1 5.25v9.5A2.25 2.25 0 0 0 3.25 17h13.5A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3H3.25Zm1.17 4.052a.682.682 0 0 1 .744.148L6.5 8.536 7.836 7.2A.682.682 0 0 1 9 7.682v4.636a.682.682 0 0 1-1.364 0v-2.99l-.654.654a.682.682 0 0 1-.964 0l-.654-.654v2.99a.682.682 0 0 1-1.364 0V7.682c0-.276.166-.525.42-.63ZM13.5 7c.377 0 .682.305.682.682v2.99l.654-.654a.682.682 0 1 1 .964.964L13.982 12.8a.682.682 0 0 1-.964 0L11.2 10.982a.682.682 0 1 1 .964-.964l.654.654v-2.99c0-.377.305-.682.682-.682Z"},"children":[]}],"metadata":""}]},"name":"markdown"};
7
+
8
+ export default Markdown;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PeopleCheck: 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.156 5.65a3.65 3.65 0 1 0-7.3 0 3.65 3.65 0 0 0 7.3 0Zm-1.5 0a2.15 2.15 0 1 0-4.3 0 2.15 2.15 0 0 0 4.3 0Zm-6.8 10.85c-.215 0-.33-.144-.338-.27-.035-.529-.024-1.083.08-1.45.269-.935.899-1.565 1.768-1.978.691-.328 1.522-.51 2.392-.575.414-.03.75-.363.75-.777a.714.714 0 0 0-.75-.726c-1.041.066-2.104.28-3.035.723-1.175.557-2.156 1.489-2.566 2.92-.18.63-.172 1.405-.136 1.96C3.086 17.33 3.941 18 4.856 18h3.9a.75.75 0 0 0 0-1.5h-3.9Zm10.69-5.5a.868.868 0 0 0-.72.356l-2.238 2.95-1.075-1.125-.001-.001a.882.882 0 0 0-.646-.265c-.447 0-.86.33-.86.83 0 .204.08.424.214.564l1.756 1.824c.18.195.456.267.667.267.278 0 .547-.105.706-.307l2.876-3.779.001-.001a.839.839 0 0 0 .18-.492c0-.482-.414-.821-.86-.821Z"},"children":[]}],"metadata":""}]},"name":"people-check"};
7
+
8
+ export default PeopleCheck;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PresentPlay: 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.699 6.484a1.31 1.31 0 0 0-1.97 1.131v4.77a1.31 1.31 0 0 0 1.97 1.132l4.089-2.384a1.31 1.31 0 0 0 0-2.265l-4.09-2.384ZM11.752 10 8.23 7.946v4.109l3.523-2.054Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.24 2.25a2.99 2.99 0 0 0-2.99 2.99v9.52a2.99 2.99 0 0 0 2.99 2.99h9.52a2.99 2.99 0 0 0 2.99-2.99V5.24a2.99 2.99 0 0 0-2.99-2.99H5.24ZM3.75 5.24c0-.823.667-1.49 1.49-1.49h9.52c.823 0 1.49.667 1.49 1.49v9.52a1.49 1.49 0 0 1-1.49 1.49H5.24a1.49 1.49 0 0 1-1.49-1.49V5.24Z"},"children":[]}],"metadata":""}]},"name":"present-play"};
7
+
8
+ export default PresentPlay;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const PresentStop: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M14.25 3h-8.5A2.75 2.75 0 0 0 3 5.75v8.5A2.75 2.75 0 0 0 5.75 17h8.5A2.75 2.75 0 0 0 17 14.25v-8.5A2.75 2.75 0 0 0 14.25 3Z"},"children":[]}],"metadata":""}]},"name":"present-stop"};
7
+
8
+ export default PresentStop;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const SendArrow: 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":"M10 3.85c.307 0 .6.123.816.34l4.25 4.286a1.15 1.15 0 1 1-1.633 1.62L11.15 7.793V15a1.15 1.15 0 0 1-2.3 0V7.793l-2.283 2.303a1.15 1.15 0 1 1-1.634-1.62l4.25-4.286c.216-.217.51-.34.817-.34Z"},"children":[]}],"metadata":""}]},"name":"send-arrow"};
6
+ const SendArrow: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.707 3.293a1 1 0 0 0-1.415 0L4.57 8.015A1 1 0 1 0 5.984 9.43l3.014-3.013V16a1 1 0 1 0 2 0V6.413l3.017 3.016a1 1 0 1 0 1.414-1.414l-4.722-4.722Z"},"children":[]}],"metadata":""}]},"name":"send-arrow"};
7
7
 
8
8
  export default SendArrow;