@fibery/ui-kit 1.35.0 → 1.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (576) hide show
  1. package/.eslintignore +3 -0
  2. package/.eslintrc +14 -0
  3. package/CHANGELOG.md +594 -0
  4. package/babel.config.js +3 -0
  5. package/config/jest/testFrameworkSetup.js +1 -0
  6. package/package.json +6 -40
  7. package/scripts/generate-icons.mjs +116 -0
  8. package/src/__mocks__/createInlineTheme.js +3 -0
  9. package/src/__mocks__/styleMock.js +1 -0
  10. package/src/a11y-color.ts +1 -1
  11. package/src/action-badge.tsx +63 -0
  12. package/src/actions-panel.tsx +50 -0
  13. package/src/ai/max-tokens.tsx +42 -0
  14. package/src/ai/model.tsx +79 -0
  15. package/src/ai/temperature.tsx +75 -0
  16. package/src/animated-height-container.tsx +82 -0
  17. package/src/animated-number.tsx +38 -0
  18. package/src/animations.tsx +62 -0
  19. package/src/antd/AutoComplete.d.ts +1 -0
  20. package/src/antd/AutoComplete.js +34 -0
  21. package/src/antd/Tabs.d.ts +5 -0
  22. package/src/antd/Tabs.js +58 -0
  23. package/src/antd/ant-modal.tsx +11 -0
  24. package/src/antd/ant-upload.tsx +73 -0
  25. package/src/antd/auto-width-transparent-textarea.tsx +56 -0
  26. package/src/antd/get-wrapper.tsx +11 -0
  27. package/src/antd/index.tsx +4 -0
  28. package/src/antd/input-number.tsx +51 -0
  29. package/src/antd/input.tsx +56 -0
  30. package/src/antd/utils.tsx +43 -0
  31. package/src/app-icon-with-fallback.tsx +147 -0
  32. package/src/app-icon-wrapper.tsx +44 -0
  33. package/src/app-icon.tsx +52 -0
  34. package/src/app-mode.tsx +52 -0
  35. package/src/appIcons.json +13066 -0
  36. package/src/avatar.tsx +276 -0
  37. package/src/axis-header.tsx +160 -0
  38. package/src/badge.tsx +39 -0
  39. package/src/board-table-loader.tsx +106 -0
  40. package/src/box.tsx +444 -0
  41. package/src/breakpoints.tsx +59 -0
  42. package/src/card-container.tsx +483 -0
  43. package/src/checkbox-multi-select.tsx +71 -0
  44. package/src/checkbox.tsx +232 -0
  45. package/src/collapsible/index.tsx +43 -0
  46. package/src/collapsible-section.tsx +69 -0
  47. package/src/color-picker/ColorPickerOrLoader.js +23 -0
  48. package/src/color-picker/SliderPointer.js +14 -0
  49. package/src/color-picker/index.js +118 -0
  50. package/src/color-picker/swatch.tsx +85 -0
  51. package/src/command-menu/index.tsx +165 -0
  52. package/src/command-menu/nested-command-menu.tsx +349 -0
  53. package/src/comment.tsx +218 -0
  54. package/src/context-menu/index.tsx +134 -0
  55. package/src/copy-to-clipboard.ts +1 -0
  56. package/src/country-selector.tsx +29 -0
  57. package/src/date-picker/autocomplete.tsx +74 -0
  58. package/src/date-picker/constants.ts +3 -0
  59. package/src/date-picker/contexts.ts +7 -0
  60. package/src/date-picker/date-range-input.tsx +346 -0
  61. package/src/date-picker/date-range-picker-popup-content.tsx +190 -0
  62. package/src/date-picker/date-range-picker.tsx +124 -0
  63. package/src/date-picker/day-with-start-end-buttons.tsx +171 -0
  64. package/src/date-picker/fake-date-input.tsx +40 -0
  65. package/src/date-picker/get-weekends-for-month.ts +7 -0
  66. package/src/date-picker/rc-input-types.ts +11 -0
  67. package/src/date-picker/relative-date-picker.tsx +152 -0
  68. package/src/date-picker/single-date-input.tsx +239 -0
  69. package/src/date-picker/single-date-picker-popup-content.tsx +90 -0
  70. package/src/date-picker/single-date-picker.tsx +243 -0
  71. package/src/date-picker/styles.ts +262 -0
  72. package/src/date-picker/types.ts +56 -0
  73. package/src/date-picker/utils.ts +110 -0
  74. package/src/date-picker/with-popup-control.tsx +61 -0
  75. package/src/day-select/day-select.tsx +94 -0
  76. package/src/day-select/iso-week-day-select.tsx +15 -0
  77. package/src/day-select/mount-day-select.tsx +11 -0
  78. package/src/day-select/week-day-select.test.tsx +48 -0
  79. package/src/day-select/week-day-select.tsx +42 -0
  80. package/src/delayed.tsx +26 -0
  81. package/src/design-system.test.ts +24 -0
  82. package/src/design-system.ts +23 -9
  83. package/src/dnd.tsx +55 -0
  84. package/src/emoji.tsx +30 -0
  85. package/src/empty-state/empty-state-action.tsx +3 -0
  86. package/src/empty-state/empty-state-emoji.tsx +20 -0
  87. package/src/empty-state/empty-state.tsx +80 -0
  88. package/src/empty-value.tsx +21 -0
  89. package/src/errors.ts +29 -0
  90. package/src/favorites-icon.tsx +87 -0
  91. package/src/features.tsx +10 -0
  92. package/src/fibermoji-placeholder.tsx +180 -0
  93. package/src/field-container.tsx +213 -0
  94. package/src/file-item.tsx +151 -0
  95. package/src/form-utils.ts +7 -0
  96. package/src/format-date-from-now.ts +33 -0
  97. package/src/full-fibery-logo.tsx +26 -0
  98. package/src/get-trigger-node-popup-container.ts +7 -0
  99. package/src/guide-link.tsx +24 -0
  100. package/src/header-layout.tsx +33 -0
  101. package/src/hint.tsx +47 -0
  102. package/src/hoverable-via-display.tsx +29 -0
  103. package/src/hoverable.tsx +53 -0
  104. package/src/html-styles.ts +720 -0
  105. package/src/icons/ast/AccessTemplate.ts +8 -0
  106. package/src/icons/ast/Asterisk.ts +8 -0
  107. package/src/icons/ast/Copy.ts +1 -1
  108. package/src/icons/ast/CrossCircle.ts +8 -0
  109. package/src/icons/ast/DateRange.ts +8 -0
  110. package/src/icons/ast/Duplicate.ts +1 -1
  111. package/src/icons/ast/Gift.ts +1 -1
  112. package/src/icons/ast/LevelPlus.ts +8 -0
  113. package/src/icons/ast/ReadOnly.ts +8 -0
  114. package/src/icons/ast/ResetPassword.ts +8 -0
  115. package/src/icons/ast/ViewGantt.ts +8 -0
  116. package/src/icons/ast/index.tsx +8 -0
  117. package/src/icons/react/AccessTemplate.tsx +13 -0
  118. package/src/icons/react/Asterisk.tsx +13 -0
  119. package/src/icons/react/CrossCircle.tsx +13 -0
  120. package/src/icons/react/DateRange.tsx +13 -0
  121. package/src/icons/react/LevelPlus.tsx +13 -0
  122. package/src/icons/react/ReadOnly.tsx +13 -0
  123. package/src/icons/react/ResetPassword.tsx +13 -0
  124. package/src/icons/react/ViewGantt.tsx +13 -0
  125. package/src/icons/react/index.tsx +8 -0
  126. package/src/icons/svg/abort.svg +3 -0
  127. package/src/icons/svg/access-template.svg +4 -0
  128. package/src/icons/svg/activity-log.svg +4 -0
  129. package/src/icons/svg/activity.svg +4 -0
  130. package/src/icons/svg/add-after.svg +4 -0
  131. package/src/icons/svg/add-before.svg +4 -0
  132. package/src/icons/svg/add-compact.svg +2 -0
  133. package/src/icons/svg/add-database.svg +3 -0
  134. package/src/icons/svg/add-group.svg +4 -0
  135. package/src/icons/svg/add-integration.svg +3 -0
  136. package/src/icons/svg/add-reactions.svg +8 -0
  137. package/src/icons/svg/add.svg +2 -0
  138. package/src/icons/svg/ai-assistant.svg +3 -0
  139. package/src/icons/svg/ai-avatar.svg +3 -0
  140. package/src/icons/svg/ai-search.svg +3 -0
  141. package/src/icons/svg/alert-triangle.svg +3 -0
  142. package/src/icons/svg/app-details.svg +7 -0
  143. package/src/icons/svg/app-store-one-color.svg +4 -0
  144. package/src/icons/svg/app-store.svg +4 -0
  145. package/src/icons/svg/app-templates.svg +7 -0
  146. package/src/icons/svg/app-webhooks.svg +2 -0
  147. package/src/icons/svg/app-wiki.svg +2 -0
  148. package/src/icons/svg/app.svg +2 -0
  149. package/src/icons/svg/appearance-auto.svg +3 -0
  150. package/src/icons/svg/appearance-dark.svg +3 -0
  151. package/src/icons/svg/appearance-light.svg +3 -0
  152. package/src/icons/svg/arrow-bar-left.svg +4 -0
  153. package/src/icons/svg/arrow-bar-right.svg +4 -0
  154. package/src/icons/svg/arrow-bottom.svg +3 -0
  155. package/src/icons/svg/arrow-collapse-vertical.svg +3 -0
  156. package/src/icons/svg/arrow-collapse.svg +3 -0
  157. package/src/icons/svg/arrow-forward.svg +3 -0
  158. package/src/icons/svg/arrow-left.svg +3 -0
  159. package/src/icons/svg/arrow-right.svg +3 -0
  160. package/src/icons/svg/arrow-top.svg +3 -0
  161. package/src/icons/svg/arrow-up-circle.svg +4 -0
  162. package/src/icons/svg/arrows-right-left.svg +3 -0
  163. package/src/icons/svg/ask-for-input.svg +6 -0
  164. package/src/icons/svg/asterisk.svg +3 -0
  165. package/src/icons/svg/atom.svg +4 -0
  166. package/src/icons/svg/automations-cancelled.svg +3 -0
  167. package/src/icons/svg/automations-disabled.svg +3 -0
  168. package/src/icons/svg/automations-error.svg +3 -0
  169. package/src/icons/svg/automations-in-progress.svg +3 -0
  170. package/src/icons/svg/automations-not-started.svg +3 -0
  171. package/src/icons/svg/automations-success.svg +3 -0
  172. package/src/icons/svg/back.svg +2 -0
  173. package/src/icons/svg/backlog-icon.svg +3 -0
  174. package/src/icons/svg/batch-actions-icon.svg +4 -0
  175. package/src/icons/svg/bell-circle.svg +4 -0
  176. package/src/icons/svg/bell-filled.svg +4 -0
  177. package/src/icons/svg/bell-off.svg +4 -0
  178. package/src/icons/svg/bell-ringing.svg +5 -0
  179. package/src/icons/svg/bell-x.svg +4 -0
  180. package/src/icons/svg/bolt.svg +3 -0
  181. package/src/icons/svg/bring-forward.svg +8 -0
  182. package/src/icons/svg/bring-to-front.svg +3 -0
  183. package/src/icons/svg/cards.svg +3 -0
  184. package/src/icons/svg/chat-ai.svg +5 -0
  185. package/src/icons/svg/chat.svg +3 -0
  186. package/src/icons/svg/check-circle-filled.svg +3 -0
  187. package/src/icons/svg/check-circle.svg +4 -0
  188. package/src/icons/svg/checked.svg +3 -0
  189. package/src/icons/svg/clean.svg +6 -0
  190. package/src/icons/svg/clear-input-filled.svg +3 -0
  191. package/src/icons/svg/clear-value.svg +6 -0
  192. package/src/icons/svg/clear.svg +6 -0
  193. package/src/icons/svg/clock-alarm.svg +6 -0
  194. package/src/icons/svg/clock-forward.svg +3 -0
  195. package/src/icons/svg/clock.svg +4 -0
  196. package/src/icons/svg/close.svg +4 -0
  197. package/src/icons/svg/collapse-all.svg +3 -0
  198. package/src/icons/svg/color-coding-filled.svg +3 -0
  199. package/src/icons/svg/color-coding.svg +4 -0
  200. package/src/icons/svg/columns-2.svg +3 -0
  201. package/src/icons/svg/columns-4.svg +3 -0
  202. package/src/icons/svg/columns.svg +3 -0
  203. package/src/icons/svg/comment-bubble.svg +3 -0
  204. package/src/icons/svg/copy.svg +5 -0
  205. package/src/icons/svg/create.svg +3 -0
  206. package/src/icons/svg/credits-filled.svg +3 -0
  207. package/src/icons/svg/cross-circle.svg +4 -0
  208. package/src/icons/svg/database-off.svg +3 -0
  209. package/src/icons/svg/database-stroke.svg +4 -0
  210. package/src/icons/svg/database.svg +4 -0
  211. package/src/icons/svg/date-range.svg +4 -0
  212. package/src/icons/svg/delete.svg +6 -0
  213. package/src/icons/svg/demo.svg +2 -0
  214. package/src/icons/svg/dependency.svg +3 -0
  215. package/src/icons/svg/double-arrow-left.svg +2 -0
  216. package/src/icons/svg/double-arrow-right.svg +2 -0
  217. package/src/icons/svg/drag-block-handle-single.svg +5 -0
  218. package/src/icons/svg/drag-block-handle.svg +8 -0
  219. package/src/icons/svg/drag-handle.svg +2 -0
  220. package/src/icons/svg/duplicate.svg +5 -0
  221. package/src/icons/svg/dynamic-filter-value.svg +3 -0
  222. package/src/icons/svg/edit-value.svg +5 -0
  223. package/src/icons/svg/email.svg +3 -0
  224. package/src/icons/svg/emoji-delete.svg +5 -0
  225. package/src/icons/svg/entity-merge.svg +3 -0
  226. package/src/icons/svg/equation.svg +4 -0
  227. package/src/icons/svg/export.svg +4 -0
  228. package/src/icons/svg/extension/assignments.svg +7 -0
  229. package/src/icons/svg/extension/avatar.svg +2 -0
  230. package/src/icons/svg/extension/comments.svg +5 -0
  231. package/src/icons/svg/extension/files.svg +2 -0
  232. package/src/icons/svg/extension/references.svg +2 -0
  233. package/src/icons/svg/extension/workflow.svg +2 -0
  234. package/src/icons/svg/eye.svg +4 -0
  235. package/src/icons/svg/favorites-checked.svg +4 -0
  236. package/src/icons/svg/favorites-off.svg +4 -0
  237. package/src/icons/svg/favorites.svg +4 -0
  238. package/src/icons/svg/fibery-mono.svg +3 -0
  239. package/src/icons/svg/field-unit.svg +3 -0
  240. package/src/icons/svg/fields.svg +4 -0
  241. package/src/icons/svg/figma.svg +7 -0
  242. package/src/icons/svg/file-upload.svg +7 -0
  243. package/src/icons/svg/filter.svg +3 -0
  244. package/src/icons/svg/fit-to-screen.svg +5 -0
  245. package/src/icons/svg/focus-mode-off.svg +5 -0
  246. package/src/icons/svg/focus-mode.svg +5 -0
  247. package/src/icons/svg/folder.svg +4 -0
  248. package/src/icons/svg/form-with-cover.svg +7 -0
  249. package/src/icons/svg/form-without-cover.svg +6 -0
  250. package/src/icons/svg/fullscreen-mode-off-icon.svg +3 -0
  251. package/src/icons/svg/fullscreen-mode-on-icon.svg +3 -0
  252. package/src/icons/svg/fullscreen-mode-on.svg +4 -0
  253. package/src/icons/svg/gift.svg +3 -0
  254. package/src/icons/svg/github.svg +1 -0
  255. package/src/icons/svg/gitlab.svg +3 -0
  256. package/src/icons/svg/globe-simple.svg +3 -0
  257. package/src/icons/svg/globe.svg +3 -0
  258. package/src/icons/svg/go-to.svg +5 -0
  259. package/src/icons/svg/google-drive.svg +8 -0
  260. package/src/icons/svg/google-map.svg +7 -0
  261. package/src/icons/svg/headphones-ai.svg +4 -0
  262. package/src/icons/svg/headphones.svg +3 -0
  263. package/src/icons/svg/hide.svg +2 -0
  264. package/src/icons/svg/highlights.svg +3 -0
  265. package/src/icons/svg/hint.svg +4 -0
  266. package/src/icons/svg/home.svg +2 -0
  267. package/src/icons/svg/image-xmark.svg +2 -0
  268. package/src/icons/svg/import.svg +4 -0
  269. package/src/icons/svg/info-circle-filled.svg +3 -0
  270. package/src/icons/svg/info-circle.svg +6 -0
  271. package/src/icons/svg/integration.svg +2 -0
  272. package/src/icons/svg/integrations/integration-discourse-color.svg +8 -0
  273. package/src/icons/svg/integrations/integration-intercom-color.svg +3 -0
  274. package/src/icons/svg/integrations/integration-slack-color.svg +10 -0
  275. package/src/icons/svg/integrations/integration-zendesk-color.svg +6 -0
  276. package/src/icons/svg/invite-people.svg +6 -0
  277. package/src/icons/svg/items-timeline.svg +4 -0
  278. package/src/icons/svg/items.svg +3 -0
  279. package/src/icons/svg/jira.svg +3 -0
  280. package/src/icons/svg/key.svg +4 -0
  281. package/src/icons/svg/lab.svg +6 -0
  282. package/src/icons/svg/layout-double.svg +3 -0
  283. package/src/icons/svg/layout-single.svg +3 -0
  284. package/src/icons/svg/left-panel.svg +11 -0
  285. package/src/icons/svg/level-plus.svg +4 -0
  286. package/src/icons/svg/levels.svg +2 -0
  287. package/src/icons/svg/line-divider.svg +3 -0
  288. package/src/icons/svg/link.svg +6 -0
  289. package/src/icons/svg/lock-outline.svg +5 -0
  290. package/src/icons/svg/lock.svg +4 -0
  291. package/src/icons/svg/logout.svg +4 -0
  292. package/src/icons/svg/loom.svg +3 -0
  293. package/src/icons/svg/loupe-zoom-in.svg +3 -0
  294. package/src/icons/svg/loupe-zoom-out.svg +1 -0
  295. package/src/icons/svg/loupe-zoom.svg +3 -0
  296. package/src/icons/svg/many-people.svg +4 -0
  297. package/src/icons/svg/map-mode.svg +6 -0
  298. package/src/icons/svg/markdown.svg +3 -0
  299. package/src/icons/svg/menu-collapser.svg +2 -0
  300. package/src/icons/svg/message-plus-square.svg +4 -0
  301. package/src/icons/svg/milestones.svg +3 -0
  302. package/src/icons/svg/minus.svg +4 -0
  303. package/src/icons/svg/miro.svg +4 -0
  304. package/src/icons/svg/mirror-off.svg +8 -0
  305. package/src/icons/svg/mirror-on.svg +3 -0
  306. package/src/icons/svg/mixpanel.svg +3 -0
  307. package/src/icons/svg/monitor.svg +3 -0
  308. package/src/icons/svg/more-compact.svg +4 -0
  309. package/src/icons/svg/more.svg +4 -0
  310. package/src/icons/svg/move-bottom.svg +3 -0
  311. package/src/icons/svg/move-left.svg +3 -0
  312. package/src/icons/svg/move-right.svg +3 -0
  313. package/src/icons/svg/move-space.svg +5 -0
  314. package/src/icons/svg/move-top.svg +3 -0
  315. package/src/icons/svg/network-add.svg +5 -0
  316. package/src/icons/svg/network.svg +4 -0
  317. package/src/icons/svg/notifications.svg +2 -0
  318. package/src/icons/svg/obj-child.svg +2 -0
  319. package/src/icons/svg/obj-m2m.svg +2 -0
  320. package/src/icons/svg/obj-o2o.svg +2 -0
  321. package/src/icons/svg/obj-parent.svg +2 -0
  322. package/src/icons/svg/obj-self.svg +2 -0
  323. package/src/icons/svg/on-schedule.svg +3 -0
  324. package/src/icons/svg/open-as-page.svg +4 -0
  325. package/src/icons/svg/page-regular-mode.svg +5 -0
  326. package/src/icons/svg/page-wide-mode.svg +5 -0
  327. package/src/icons/svg/panel-add.svg +3 -0
  328. package/src/icons/svg/pencil.svg +5 -0
  329. package/src/icons/svg/people-check.svg +4 -0
  330. package/src/icons/svg/people.svg +7 -0
  331. package/src/icons/svg/photo.svg +2 -0
  332. package/src/icons/svg/pin-filled.svg +5 -0
  333. package/src/icons/svg/pin.svg +3 -0
  334. package/src/icons/svg/popup.svg +5 -0
  335. package/src/icons/svg/posts.svg +3 -0
  336. package/src/icons/svg/present-play.svg +4 -0
  337. package/src/icons/svg/present-stop.svg +3 -0
  338. package/src/icons/svg/private-items.svg +5 -0
  339. package/src/icons/svg/question.svg +4 -0
  340. package/src/icons/svg/read-only.svg +6 -0
  341. package/src/icons/svg/refresh.svg +4 -0
  342. package/src/icons/svg/remove-people.svg +6 -0
  343. package/src/icons/svg/remove.svg +2 -0
  344. package/src/icons/svg/reply.svg +2 -0
  345. package/src/icons/svg/reset-password.svg +6 -0
  346. package/src/icons/svg/restore.svg +2 -0
  347. package/src/icons/svg/richeditor/actions/more.svg +2 -0
  348. package/src/icons/svg/richeditor/block/callout.svg +4 -0
  349. package/src/icons/svg/richeditor/block/code.svg +7 -0
  350. package/src/icons/svg/richeditor/block/embed.svg +4 -0
  351. package/src/icons/svg/richeditor/block/entity.svg +2 -0
  352. package/src/icons/svg/richeditor/block/file.svg +1 -0
  353. package/src/icons/svg/richeditor/block/h1.svg +2 -0
  354. package/src/icons/svg/richeditor/block/h2.svg +2 -0
  355. package/src/icons/svg/richeditor/block/h3.svg +2 -0
  356. package/src/icons/svg/richeditor/block/h4.svg +4 -0
  357. package/src/icons/svg/richeditor/block/mention.svg +2 -0
  358. package/src/icons/svg/richeditor/block/paragraph.svg +2 -0
  359. package/src/icons/svg/richeditor/block/quote.svg +2 -0
  360. package/src/icons/svg/richeditor/checklist/create.svg +2 -0
  361. package/src/icons/svg/richeditor/comment/create.svg +5 -0
  362. package/src/icons/svg/richeditor/entity-link/create.svg +2 -0
  363. package/src/icons/svg/richeditor/history/redo.svg +2 -0
  364. package/src/icons/svg/richeditor/history/undo.svg +2 -0
  365. package/src/icons/svg/richeditor/image/align-center.svg +2 -0
  366. package/src/icons/svg/richeditor/image/align-left.svg +2 -0
  367. package/src/icons/svg/richeditor/image/align-right.svg +2 -0
  368. package/src/icons/svg/richeditor/image/upload.svg +2 -0
  369. package/src/icons/svg/richeditor/image/wrap-center.svg +2 -0
  370. package/src/icons/svg/richeditor/image/wrap-left.svg +2 -0
  371. package/src/icons/svg/richeditor/image/wrap-right.svg +2 -0
  372. package/src/icons/svg/richeditor/image/zoom.svg +5 -0
  373. package/src/icons/svg/richeditor/link/create.svg +9 -0
  374. package/src/icons/svg/richeditor/linkedhighlight/create.svg +2 -0
  375. package/src/icons/svg/richeditor/list/bullet.svg +2 -0
  376. package/src/icons/svg/richeditor/list/indent.svg +2 -0
  377. package/src/icons/svg/richeditor/list/ordered.svg +2 -0
  378. package/src/icons/svg/richeditor/list/unindent.svg +2 -0
  379. package/src/icons/svg/richeditor/mark/code.svg +6 -0
  380. package/src/icons/svg/richeditor/mark/em.svg +2 -0
  381. package/src/icons/svg/richeditor/mark/strike.svg +2 -0
  382. package/src/icons/svg/richeditor/mark/strong.svg +2 -0
  383. package/src/icons/svg/richeditor/mark/text-background-color.svg +2 -0
  384. package/src/icons/svg/richeditor/mark/underline.svg +2 -0
  385. package/src/icons/svg/richeditor/open-link.svg +4 -0
  386. package/src/icons/svg/richeditor/table/create.svg +2 -0
  387. package/src/icons/svg/richeditor/unlink.svg +10 -0
  388. package/src/icons/svg/richeditor/video/upload.svg +2 -0
  389. package/src/icons/svg/right-panel.svg +11 -0
  390. package/src/icons/svg/rows.svg +3 -0
  391. package/src/icons/svg/rule-scheduled.svg +5 -0
  392. package/src/icons/svg/search-add.svg +4 -0
  393. package/src/icons/svg/search-remove.svg +4 -0
  394. package/src/icons/svg/search.svg +2 -0
  395. package/src/icons/svg/self-reference-off.svg +2 -0
  396. package/src/icons/svg/self-reference-on.svg +2 -0
  397. package/src/icons/svg/send-arrow.svg +3 -0
  398. package/src/icons/svg/send-backward.svg +8 -0
  399. package/src/icons/svg/send-to-back.svg +4 -0
  400. package/src/icons/svg/settings-off.svg +4 -0
  401. package/src/icons/svg/settings.svg +4 -0
  402. package/src/icons/svg/share.svg +5 -0
  403. package/src/icons/svg/shared.svg +7 -0
  404. package/src/icons/svg/shield-keyhole.svg +4 -0
  405. package/src/icons/svg/show-author.svg +5 -0
  406. package/src/icons/svg/sidebar-fields-opened.svg +3 -0
  407. package/src/icons/svg/sidebar-fields.svg +6 -0
  408. package/src/icons/svg/sidebar.svg +2 -0
  409. package/src/icons/svg/simple-compass.svg +5 -0
  410. package/src/icons/svg/slack-icon.svg +3 -0
  411. package/src/icons/svg/slack.svg +10 -0
  412. package/src/icons/svg/slide-menu-close.svg +4 -0
  413. package/src/icons/svg/slide-menu-open.svg +4 -0
  414. package/src/icons/svg/slide-menu.svg +5 -0
  415. package/src/icons/svg/smart-folder.svg +5 -0
  416. package/src/icons/svg/sort-on-bottom.svg +4 -0
  417. package/src/icons/svg/sort-on-top.svg +4 -0
  418. package/src/icons/svg/sort.svg +3 -0
  419. package/src/icons/svg/spinner.svg +2 -0
  420. package/src/icons/svg/success.svg +4 -0
  421. package/src/icons/svg/template.svg +3 -0
  422. package/src/icons/svg/templates.svg +4 -0
  423. package/src/icons/svg/terminal.svg +5 -0
  424. package/src/icons/svg/text-tool-align-bottom.svg +3 -0
  425. package/src/icons/svg/text-tool-align-middle.svg +3 -0
  426. package/src/icons/svg/text-tool-align-top.svg +3 -0
  427. package/src/icons/svg/twitter.svg +4 -0
  428. package/src/icons/svg/type/boolean.svg +2 -0
  429. package/src/icons/svg/type/button.svg +4 -0
  430. package/src/icons/svg/type/checkbox.svg +2 -0
  431. package/src/icons/svg/type/date.svg +2 -0
  432. package/src/icons/svg/type/email.svg +2 -0
  433. package/src/icons/svg/type/emoji.svg +2 -0
  434. package/src/icons/svg/type/formula.svg +2 -0
  435. package/src/icons/svg/type/function.svg +2 -0
  436. package/src/icons/svg/type/location.svg +4 -0
  437. package/src/icons/svg/type/lookup.svg +2 -0
  438. package/src/icons/svg/type/money.svg +2 -0
  439. package/src/icons/svg/type/multi-select.svg +2 -0
  440. package/src/icons/svg/type/number.svg +2 -0
  441. package/src/icons/svg/type/percent.svg +2 -0
  442. package/src/icons/svg/type/phone.svg +2 -0
  443. package/src/icons/svg/type/relation.svg +2 -0
  444. package/src/icons/svg/type/rich-text.svg +2 -0
  445. package/src/icons/svg/type/rule.svg +2 -0
  446. package/src/icons/svg/type/single-select.svg +2 -0
  447. package/src/icons/svg/type/text.svg +2 -0
  448. package/src/icons/svg/type/url.svg +9 -0
  449. package/src/icons/svg/units/avatar.svg +5 -0
  450. package/src/icons/svg/units/collection.svg +5 -0
  451. package/src/icons/svg/units/counter.svg +5 -0
  452. package/src/icons/svg/units/date.svg +5 -0
  453. package/src/icons/svg/units/db-badge-abbr.svg +4 -0
  454. package/src/icons/svg/units/db-badge-full.svg +4 -0
  455. package/src/icons/svg/units/db-icon.svg +4 -0
  456. package/src/icons/svg/units/field-icon-button.svg +5 -0
  457. package/src/icons/svg/units/field.svg +4 -0
  458. package/src/icons/svg/units/input.svg +5 -0
  459. package/src/icons/svg/units/progress-bar.svg +5 -0
  460. package/src/icons/svg/units/rich-text.svg +4 -0
  461. package/src/icons/svg/units/snippet.svg +5 -0
  462. package/src/icons/svg/unlink.svg +10 -0
  463. package/src/icons/svg/unlock-filled.svg +5 -0
  464. package/src/icons/svg/unlock-outline.svg +5 -0
  465. package/src/icons/svg/upgrade.svg +2 -0
  466. package/src/icons/svg/usb-flash-drive.svg +5 -0
  467. package/src/icons/svg/user-check.svg +3 -0
  468. package/src/icons/svg/user-group-remove.svg +5 -0
  469. package/src/icons/svg/user-group.svg +4 -0
  470. package/src/icons/svg/user-role.svg +4 -0
  471. package/src/icons/svg/user-x.svg +5 -0
  472. package/src/icons/svg/view-ai.svg +3 -0
  473. package/src/icons/svg/view-board.svg +2 -0
  474. package/src/icons/svg/view-calendar.svg +2 -0
  475. package/src/icons/svg/view-canvas.svg +2 -0
  476. package/src/icons/svg/view-chart.svg +2 -0
  477. package/src/icons/svg/view-details.svg +2 -0
  478. package/src/icons/svg/view-document.svg +2 -0
  479. package/src/icons/svg/view-feed.svg +3 -0
  480. package/src/icons/svg/view-form.svg +4 -0
  481. package/src/icons/svg/view-gantt.svg +5 -0
  482. package/src/icons/svg/view-list.svg +2 -0
  483. package/src/icons/svg/view-map.svg +3 -0
  484. package/src/icons/svg/view-page.svg +3 -0
  485. package/src/icons/svg/view-table.svg +2 -0
  486. package/src/icons/svg/view-timeline.svg +2 -0
  487. package/src/icons/svg/views.svg +11 -0
  488. package/src/icons/svg/warning-triangle.svg +4 -0
  489. package/src/icons/svg/warning.svg +2 -0
  490. package/src/icons/svg/workspace-map.svg +3 -0
  491. package/src/icons/svg/youtube.svg +4 -0
  492. package/src/icons/svg/zoom-in.svg +7 -0
  493. package/src/icons/svg/zoom-out.svg +7 -0
  494. package/src/is-android.ts +3 -0
  495. package/src/is-iOS.ts +8 -0
  496. package/src/is-in-popup.ts +15 -0
  497. package/src/layout.tsx +88 -0
  498. package/src/link-input/components/AntTextAreaWithCustomReadState.js +64 -0
  499. package/src/link-input/index.js +89 -0
  500. package/src/link-input/utils.js +13 -0
  501. package/src/loaders.tsx +28 -23
  502. package/src/logo.tsx +81 -0
  503. package/src/menu-item-actions.tsx +6 -0
  504. package/src/nested-menu-item.tsx +0 -0
  505. package/src/new-badge.tsx +16 -0
  506. package/src/new-card-placeholder.tsx +231 -0
  507. package/src/not-empty.ts +3 -0
  508. package/src/notification-dot.tsx +23 -0
  509. package/src/number-input/decimal.js +59 -0
  510. package/src/number-input/decimal.test.js +71 -0
  511. package/src/number-input/edit-unit-styles.ts +18 -0
  512. package/src/number-input/index.js +191 -0
  513. package/src/number-input/index.test.js +106 -0
  514. package/src/number-input/number-inline-input-with-autosize.tsx +156 -0
  515. package/src/number-input/number-input.tsx +133 -0
  516. package/src/number-input/stack.tsx +25 -0
  517. package/src/number-input/step-button.tsx +73 -0
  518. package/src/number-input/styles.ts +50 -0
  519. package/src/number-input/text-area-with-autosize.tsx +91 -0
  520. package/src/number-input/text-inline-input-with-autosize.tsx +60 -0
  521. package/src/online-users.tsx +238 -0
  522. package/src/platform.ts +4 -0
  523. package/src/popup/index.tsx +382 -0
  524. package/src/popup/modifiers.tsx +70 -0
  525. package/src/popup/popup-modifiers-context.ts +12 -0
  526. package/src/popup/popup-stack-context.tsx +44 -0
  527. package/src/popup/reference.ts +7 -0
  528. package/src/popup/styles.ts +62 -0
  529. package/src/popup/use-click-outside.ts +22 -0
  530. package/src/progress.tsx +14 -0
  531. package/src/reactions/get-word-divider.tsx +15 -0
  532. package/src/reactions/reaction-button.tsx +254 -0
  533. package/src/reactions/reaction-picker.tsx +126 -0
  534. package/src/reactions/reactions.tsx +30 -0
  535. package/src/ready-to-scroll-context.tsx +16 -0
  536. package/src/rich-input-loader.tsx +78 -0
  537. package/src/rich-text-embed-error.tsx +44 -0
  538. package/src/select/custom-select-partials/group-heading.tsx +24 -1
  539. package/src/select/custom-select-partials/option.tsx +17 -11
  540. package/src/select/select-in-popover.tsx +4 -1
  541. package/src/select/util.ts +2 -1
  542. package/src/styles-utils.tsx +16 -0
  543. package/src/tab-nav/tab-nav.tsx +208 -0
  544. package/src/table.tsx +91 -0
  545. package/src/toast/primitives.tsx +6 -7
  546. package/src/toast/toast-action.tsx +7 -1
  547. package/src/toast/toast-queue.ts +1 -1
  548. package/src/toast/toast.tsx +78 -16
  549. package/src/toast/toaster.tsx +2 -17
  550. package/src/toast/utils/toastify-item-name.ts +16 -5
  551. package/src/tooltip.tsx +3 -0
  552. package/src/type-badge-box.tsx +42 -0
  553. package/src/type-badge.tsx +315 -0
  554. package/src/unit/as-string.tsx +1 -0
  555. package/src/unit/index.tsx +55 -0
  556. package/src/unit/loading-unit-value.tsx +13 -0
  557. package/src/unit/maybe-unit-value.tsx +9 -0
  558. package/src/unit/primitive.tsx +167 -0
  559. package/src/unit/required-indicator.svg +3 -0
  560. package/src/unit/styles.ts +165 -0
  561. package/src/unit/types.ts +31 -0
  562. package/src/unit/unit-button-group.tsx +38 -0
  563. package/src/unit/unit-content-layout.tsx +37 -0
  564. package/src/unit/unit-content.tsx +37 -0
  565. package/src/unit/unit-with-title.tsx +8 -0
  566. package/src/unit/unit-with-tooltip.tsx +60 -0
  567. package/src/use-is-support-hover.ts +5 -0
  568. package/src/use-long-press.tsx +79 -0
  569. package/src/use-me.tsx +11 -0
  570. package/src/use-navigation.tsx +11 -0
  571. package/src/use-why-did-you-update.tsx +78 -0
  572. package/src/utils-dom.ts +26 -0
  573. package/src/with-data.tsx +78 -0
  574. package/src/workflow-progress-icon.tsx +73 -0
  575. package/tsconfig.json +4 -0
  576. package/src/icons/get-icon-container-style.tsx +0 -13
package/.eslintignore ADDED
@@ -0,0 +1,3 @@
1
+ *.d.ts
2
+ src/icons/react
3
+ src/icons/ast
package/.eslintrc ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "@fibery/eslint-config",
3
+ "rules": {
4
+ "no-restricted-imports": ["error", {"patterns": ["@fibery/ui-kit/*"]}]
5
+ },
6
+ "overrides": [
7
+ {
8
+ "files": ["src/icons/*"],
9
+ "rules": {
10
+ "unicorn/filename-case": "off"
11
+ }
12
+ }
13
+ ]
14
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,594 @@
1
+ # @fibery/ui-kit
2
+
3
+ ## 1.36.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ec46f77]
8
+ - @fibery/helpers@1.3.2
9
+ - @fibery/react@1.4.3
10
+
11
+ ## 1.36.0
12
+
13
+ ### Minor Changes
14
+
15
+ - e372370: publish everything, remove whitelist of files
16
+
17
+ ### Patch Changes
18
+
19
+ - 54bba63: bump ts
20
+ - 4858fec: make urls/avatar non-dragable
21
+ - ce87e64: export guide-link
22
+ - Updated dependencies [54bba63]
23
+ - @fibery/emoji-data@2.6.1
24
+ - @fibery/helpers@1.3.1
25
+ - @fibery/react@1.4.2
26
+
27
+ ## 1.35.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 6533952: update global font-family
32
+
33
+ ### Patch Changes
34
+
35
+ - 3c7e0a8: [unit] add ability to pass custom tooltip content
36
+
37
+ ## 1.34.8
38
+
39
+ ### Patch Changes
40
+
41
+ - 56f2af3: Added collapsible section component
42
+
43
+ ## 1.34.7
44
+
45
+ ### Patch Changes
46
+
47
+ - Updated dependencies [c447b0e]
48
+ - @fibery/react@1.4.1
49
+
50
+ ## 1.34.6
51
+
52
+ ### Patch Changes
53
+
54
+ - bbcee45: fix published package. add missing files
55
+
56
+ ## 1.34.5
57
+
58
+ ### Patch Changes
59
+
60
+ - b0d04c1: add missing files to package
61
+
62
+ ## 1.34.4
63
+
64
+ ### Patch Changes
65
+
66
+ - 15b4eec: add PrivateItems icon. Remove MySpace icon
67
+
68
+ ## 1.34.3
69
+
70
+ ### Patch Changes
71
+
72
+ - 2f02c2f: add ActionBadge component
73
+
74
+ ## 1.34.2
75
+
76
+ ### Patch Changes
77
+
78
+ - d6fd15f: add UnitFieldIconButton. Allow to pass children to {Phone,Url,Email}InputLink
79
+
80
+ ## 1.34.1
81
+
82
+ ### Patch Changes
83
+
84
+ - b996e72: Fixed toggle label font size
85
+
86
+ ## 1.34.0
87
+
88
+ ### Minor Changes
89
+
90
+ - ec07331: bump version
91
+
92
+ ### Patch Changes
93
+
94
+ - d2b2356: [Button] add dynamic style calculation for 'accent' button.
95
+ [AppIconWithFallback] remove `themeVars.textColor` as default color so it uses same defaults as <Icon/>
96
+ - 148827d: Specified toggle sizes enum
97
+
98
+ ## 1.33.6
99
+
100
+ ### Patch Changes
101
+
102
+ - 3f3c763: [tooltip] fix performance. dont rerender everything on hover
103
+
104
+ ## 1.33.5
105
+
106
+ ### Patch Changes
107
+
108
+ - 61f9f95: [tab-nav] add tab nav component
109
+
110
+ ## 1.33.4
111
+
112
+ ### Patch Changes
113
+
114
+ - 4cd46b9: [button] fix dark mode outline accent color
115
+
116
+ ## 1.33.3
117
+
118
+ ### Patch Changes
119
+
120
+ - 1060073: [Button] fix accidental style reset for buttons
121
+
122
+ ## 1.33.2
123
+
124
+ ### Patch Changes
125
+
126
+ - 5b7971c: add AutoWidthTransparentTextarea
127
+
128
+ ## 1.33.1
129
+
130
+ ### Patch Changes
131
+
132
+ - 5227085: Fix destructive outline border button color and fix ItemsTimeline icon
133
+
134
+ ## 1.33.0
135
+
136
+ ### Minor Changes
137
+
138
+ - 788b210: [SelectButton] button compoent for selects with more narrow gap between text and arrow indicator
139
+ [ButtonGroup] adjust ButtonGroup to work with new buttons. Remove 'inGroup' prop from BaseButton
140
+
141
+ ## 1.32.1
142
+
143
+ ### Patch Changes
144
+
145
+ - 16f366c: bump radix packages
146
+
147
+ ## 1.32.0
148
+
149
+ ### Minor Changes
150
+
151
+ - 55e6683: [Button] rename ButtonV2 -> Button
152
+
153
+ ### Patch Changes
154
+
155
+ - df05436: [Button] add formula to calculate custom color styles for solid button
156
+ - 29b0687: [Button] add line-height
157
+ - 67d0ec0: [Button]: remove all old buttons
158
+ - 6aa1500: [button] migrate some more buttons. E.g. AddButton
159
+
160
+ ## 1.31.0
161
+
162
+ ### Minor Changes
163
+
164
+ - 1aaf078: [icon-button] replace old IconButton with new one
165
+
166
+ ### Patch Changes
167
+
168
+ - d922af5: [button] add fullWidth prop. Correact defaults for IconButton
169
+
170
+ ## 1.30.0
171
+
172
+ ### Minor Changes
173
+
174
+ - 083d640: Add ButtonV2 and IconButtonV2
175
+ - f3d1390: [ui-kit] Refactor icons so they can be customised via css from the parent. Types might have breaking changes
176
+
177
+ ## 1.29.5
178
+
179
+ ### Patch Changes
180
+
181
+ - ce1c8dc: props extended
182
+
183
+ ## 1.29.4
184
+
185
+ ### Patch Changes
186
+
187
+ - cc77174: Add database unit icons
188
+
189
+ ## 1.29.3
190
+
191
+ ### Patch Changes
192
+
193
+ - be9e805: Add icons for unit definitions
194
+
195
+ ## 1.29.2
196
+
197
+ ### Patch Changes
198
+
199
+ - f769ff7: [CommandMenu] Extract it from ActionsMenuSubCommandMenu to own component. Make it more composable
200
+ [ActionsMenu] Add ability to show confirmation modal for actions via `showConfirmation` method in context
201
+
202
+ ## 1.29.1
203
+
204
+ ### Patch Changes
205
+
206
+ - eb958d8: added container property for popups
207
+
208
+ ## 1.29.0
209
+
210
+ ### Minor Changes
211
+
212
+ - ce476cd: Bump typescript
213
+
214
+ ### Patch Changes
215
+
216
+ - Updated dependencies [ce476cd]
217
+ - @fibery/emoji-data@2.6.0
218
+ - @fibery/helpers@1.3.0
219
+ - @fibery/react@1.4.0
220
+
221
+ ## 1.28.4
222
+
223
+ ### Patch Changes
224
+
225
+ - Updated dependencies [cc9208e]
226
+ - @fibery/emoji-data@2.5.0
227
+
228
+ ## 1.28.3
229
+
230
+ ### Patch Changes
231
+
232
+ - e7e3b46: add additional weight to icon-button css selector otherwise there is an issue when using library - button classes overwrites icon button classes
233
+
234
+ ## 1.28.2
235
+
236
+ ### Patch Changes
237
+
238
+ - 6cde370: Add icon-button.tsx to fix eslint no-unresolved-import when using package
239
+
240
+ ## 1.28.1
241
+
242
+ ### Patch Changes
243
+
244
+ - f5db0ed: [popup] Make popup closeable on ESC by default
245
+
246
+ ## 1.28.0
247
+
248
+ ### Minor Changes
249
+
250
+ - 8292935: add toggle-on-off.tsx
251
+
252
+ ## 1.27.2
253
+
254
+ ### Patch Changes
255
+
256
+ - fix type togle => toggle
257
+
258
+ ## 1.27.1
259
+
260
+ ### Patch Changes
261
+
262
+ - 76afb56: fix typo toogle.tsx => togle.tsx
263
+
264
+ ## 1.27.0
265
+
266
+ ### Minor Changes
267
+
268
+ - db72b31: Add tooltip and new icons
269
+
270
+ ## 1.26.7
271
+
272
+ ### Patch Changes
273
+
274
+ - fix failed publish. Updated @fibery/react
275
+
276
+ ## 1.26.6
277
+
278
+ ### Patch Changes
279
+
280
+ - 558c3ba: Several fixes for published package. Extract Action Menu from list-row-surface so it can be still used in React16 env (vizydrop)
281
+ - Updated dependencies [01f32f5]
282
+ - @fibery/react@1.3.1
283
+
284
+ ## 1.26.5
285
+
286
+ ### Patch Changes
287
+
288
+ - c082d45: Fix publish of ui-kit
289
+
290
+ ## 1.26.4
291
+
292
+ ### Patch Changes
293
+
294
+ - 3d472e4: Add animation to popup
295
+
296
+ ## 1.26.3
297
+
298
+ ### Patch Changes
299
+
300
+ - de77cd9: Update workflow progress icon
301
+
302
+ ## 1.26.2
303
+
304
+ ### Patch Changes
305
+
306
+ - 35db5d0: Add decimalSeparator prop for number inputs
307
+
308
+ ## 1.26.1
309
+
310
+ ### Patch Changes
311
+
312
+ - a343d13: Update babel
313
+ - Updated dependencies [9a8bece]
314
+ - @fibery/emoji-data@2.4.0
315
+ - @fibery/helpers@1.2.0
316
+ - @fibery/react@1.3.0
317
+
318
+ ## 1.26.0
319
+
320
+ ### Minor Changes
321
+
322
+ - 8c97a30: [empty-state] add component for empty state
323
+
324
+ ## 1.25.1
325
+
326
+ ### Patch Changes
327
+
328
+ - 899c7bc: [ErrorAlert] update look. Add ability to pass action
329
+
330
+ ## 1.25.0
331
+
332
+ ### Minor Changes
333
+
334
+ - fec09f7: React selects using virtuoso for virtualization. Custom virtualization component for selects.
335
+ - 05b6d25: Removed react windowed select from dependencies
336
+
337
+ ## 1.24.1
338
+
339
+ ### Patch Changes
340
+
341
+ - 00b1357: [dropdown-menu] Do not stop propagation of Escape key so it can be closed
342
+
343
+ ## 1.24.0
344
+
345
+ ### Minor Changes
346
+
347
+ - 65b652b: [Emoji picker] add preview and keyboard navigation
348
+
349
+ ## 1.23.0
350
+
351
+ ### Minor Changes
352
+
353
+ - 9511c65: Allow to lazily initialize emoji-data
354
+
355
+ ### Patch Changes
356
+
357
+ - Updated dependencies [9511c65]
358
+ - @fibery/emoji-data@2.3.0
359
+
360
+ ## 1.22.0
361
+
362
+ ### Minor Changes
363
+
364
+ - 868cb19f65: Remove emoji-picker/emoji-index
365
+ - eb6035d272: Add TooltipIfOverflown
366
+
367
+ ### Patch Changes
368
+
369
+ - 4269030cda: Add linear progress bar
370
+
371
+ ## 1.21.1
372
+
373
+ ### Patch Changes
374
+
375
+ - 0cf232926a: Pass onclick to integration-compact-info
376
+
377
+ ## 1.21.0
378
+
379
+ ### Minor Changes
380
+
381
+ - 9983133265: Add integration-compact-info-button
382
+
383
+ ## 1.20.2
384
+
385
+ ### Patch Changes
386
+
387
+ - 8ab1f1aade: Bump rc-input-number
388
+
389
+ ## 1.20.1
390
+
391
+ ### Patch Changes
392
+
393
+ - 15b1c980db: Include lists/ to published package
394
+
395
+ ## 1.20.0
396
+
397
+ ### Minor Changes
398
+
399
+ - 4122a09583: Make sure that latest changes to ui-kit are published
400
+
401
+ ### Patch Changes
402
+
403
+ - Updated dependencies [0a4f78dcd2]
404
+ - @fibery/react@1.3.0
405
+
406
+ ## 1.19.0
407
+
408
+ ### Minor Changes
409
+
410
+ - 3f85a3e4d6: Introduce ToastQueue instead of redux version
411
+
412
+ ### Patch Changes
413
+
414
+ - Updated dependencies [3f85a3e4d6]
415
+ - Updated dependencies [c2558118ce]
416
+ - Updated dependencies [4729543d4c]
417
+ - @fibery/react@1.2.0
418
+ - @fibery/emoji-data@2.2.1
419
+
420
+ ## 1.18.0
421
+
422
+ ### Minor Changes
423
+
424
+ - 7669800172: Add context menus to menu items
425
+ - cc2eb5da76: Fix deprecation warnings in package json
426
+
427
+ ### Patch Changes
428
+
429
+ - 7d9710f102: Convert more components to ts
430
+ - 11220da098: Add user-select: none to menu items
431
+ - c589284f9d: Add insertSeparators utils for ActionsMenu
432
+ - Updated dependencies [cc2eb5da76]
433
+ - @fibery/emoji-data@2.2.0
434
+ - @fibery/helpers@1.2.0
435
+ - @fibery/react@1.1.0
436
+
437
+ ## 1.17.1
438
+
439
+ ### Patch Changes
440
+
441
+ - 87d5b7e159: Better handling of unknown custom emojis
442
+
443
+ ## 1.17.0
444
+
445
+ ### Minor Changes
446
+
447
+ - 732d43bb4d: Add new ActionsMenuSubCommandMenu for filterable sub menus
448
+
449
+ ### Patch Changes
450
+
451
+ - 64200ca8d4: Hide empty emoji categories in a picker
452
+
453
+ ## 1.16.0
454
+
455
+ ### Minor Changes
456
+
457
+ - 5595e62637: Re-design emoji picker. Improve animation for Collapsible
458
+
459
+ ### Patch Changes
460
+
461
+ - Updated dependencies [5595e62637]
462
+ - @fibery/emoji-data@2.1.1
463
+
464
+ ## 1.15.0
465
+
466
+ ### Minor Changes
467
+
468
+ - f6e2c6d125: Add custom emoji support
469
+
470
+ ### Patch Changes
471
+
472
+ - 8c6afb4573: Support sprite and image emojis
473
+ - 495210d95b: Fix: show twemoji if not on apple
474
+ - 6378290150: Use node-view for emoji.It allows to subscrive to emoji data store changes. Fix styles for inline emojis so they can be selected as text using cursor.
475
+ - Updated dependencies [f6e2c6d125]
476
+ - @fibery/emoji-data@2.1.0
477
+
478
+ ## 1.14.0
479
+
480
+ ### Minor Changes
481
+
482
+ - 5b5c6efc5b: Re-write emoji-picker component. Drop emoji-mart usage
483
+
484
+ ### Patch Changes
485
+
486
+ - Updated dependencies [23bfda8924]
487
+ - Updated dependencies [5b5c6efc5b]
488
+ - Updated dependencies [5b5c6efc5b]
489
+ - @fibery/emoji-data@2.0.0
490
+ - @fibery/helpers@1.1.0
491
+ - @fibery/react@1.0.3
492
+
493
+ ## 1.13.0
494
+
495
+ ### Minor Changes
496
+
497
+ - new icons
498
+
499
+ ### Patch Changes
500
+
501
+ - 93a9393483: add new icons (usbflashdrive and messageplussquare)
502
+
503
+ ## 1.12.2
504
+
505
+ ### Patch Changes
506
+
507
+ - Updated dependencies [370be94266]
508
+ - @fibery/emoji-data@1.1.2
509
+
510
+ ## 1.12.1
511
+
512
+ ### Patch Changes
513
+
514
+ - add missed a11y-colors
515
+
516
+ ## 1.11.2
517
+
518
+ ### Patch Changes
519
+
520
+ - Updated dependencies [2877dba135]
521
+ - @fibery/emoji-data@1.1.1
522
+
523
+ ## 1.11.1
524
+
525
+ ### Patch Changes
526
+
527
+ - e8db9d3280: Add methods to emoji index to search for emojis
528
+ - Updated dependencies [e8db9d3280]
529
+ - @fibery/emoji-data@1.1.0
530
+
531
+ ## 1.11.0
532
+
533
+ ### Minor Changes
534
+
535
+ - 89b14c1dad: Add 'disabled' and 'portalled' props to ActionsMenu. Add 'portalled' prop to DropdownMenu.Content
536
+
537
+ ### Patch Changes
538
+
539
+ - 2890051022: BUG#8604 adjust rich text table border colors
540
+ - 3f204a3113: F#4570 use twitter emojis for non-apple devices
541
+ - a32d00ceb1: Adjust hover color in emoji/icon/color pickers
542
+ - 91cf4f118b: Pass flipOptions to Popup. Re-structure emoji-picker for more flexible code-splitting
543
+ - def9f42448: Upgrade emoji data to v15
544
+
545
+ ## 1.10.1
546
+
547
+ ### Patch Changes
548
+
549
+ - c07a683243: Make emoji picker more compact. Move skin color close to search
550
+ - e67aebc9ef: Redesign color picker
551
+
552
+ ## 1.10.0
553
+
554
+ ### Minor Changes
555
+
556
+ - e99bb990cf: Centralize usage of Emoji-Mart's Emoji component. Add emoji picker to callout node view
557
+
558
+ ### Patch Changes
559
+
560
+ - da97d687dd: Adjust styles for icon picker in callout
561
+
562
+ ## 1.9.2
563
+
564
+ ### Patch Changes
565
+
566
+ - Updated dependencies
567
+ - @fibery/helpers@1.0.4
568
+ - @fibery/react@1.0.2
569
+
570
+ ## 1.9.1
571
+
572
+ ### Patch Changes
573
+
574
+ - 82e8e4295b: Use content-visibility:auto on emojis in emoji picker
575
+
576
+ ## 1.9.0
577
+
578
+ ### Minor Changes
579
+
580
+ - bfde6eddd4: Expose AppIconPicker, EmojiPicker
581
+
582
+ ## 1.8.0
583
+
584
+ ### Minor Changes
585
+
586
+ - 7b3ccb721c: Add callout block to text editor
587
+
588
+ ### Patch Changes
589
+
590
+ - ec819f8cdf: remove cyclic dependency from public ui-kit to private text-editor
591
+ - Updated dependencies [303e0c6b1d]
592
+ - Updated dependencies [ec819f8cdf]
593
+ - @fibery/helpers@1.0.3
594
+ - @fibery/react@1.0.1
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ presets: [["@fibery/babel-preset/typescript"], ["@wyw-in-js"]],
3
+ };
@@ -0,0 +1 @@
1
+ import "@testing-library/jest-dom/extend-expect";
package/package.json CHANGED
@@ -1,41 +1,7 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.35.0",
3
+ "version": "1.36.1",
4
4
  "private": false,
5
- "files": [
6
- "src/antd/styles.ts",
7
- "src/design-system.ts",
8
- "src/theme-styles.ts",
9
- "src/theme-settings.ts",
10
- "src/media-query-utils.ts",
11
- "src/create-inline-theme.ts",
12
- "src/form-field-loader.tsx",
13
- "src/theme-provider.tsx",
14
- "src/item.tsx",
15
- "src/loaders.tsx",
16
- "src/loading-sausage.tsx",
17
- "src/icons/**/*.ts*",
18
- "src/select",
19
- "src/error-alert",
20
- "src/actions-menu",
21
- "src/palette.ts",
22
- "src/tooltip.tsx",
23
- "src/tooltip-if-overflown.tsx",
24
- "src/button",
25
- "src/emoji-picker/**/*.ts*",
26
- "src/toast/**/*.ts*",
27
- "src/lists/**/*.ts*",
28
- "src/a11y-color.ts",
29
- "src/integration-compact-info-button.tsx",
30
- "src/dropdown-menu",
31
- "src/shortcut-badge.tsx",
32
- "src/tsfixme.ts",
33
- "src/toggle.tsx",
34
- "src/toggle-on-off.tsx",
35
- "src/use-is-support-hardware-keyboard.ts",
36
- "src/use-is-phone.ts",
37
- "src/use-is-media-query-matched.ts"
38
- ],
39
5
  "license": "UNLICENSED",
40
6
  "dependencies": {
41
7
  "@linaria/core": "6.2.0",
@@ -77,9 +43,9 @@
77
43
  "screenfull": "6.0.1",
78
44
  "tabbable": "5.2.1",
79
45
  "ua-parser-js": "1.0.39",
80
- "@fibery/helpers": "1.3.0",
81
- "@fibery/emoji-data": "2.6.0",
82
- "@fibery/react": "1.4.1"
46
+ "@fibery/emoji-data": "2.6.1",
47
+ "@fibery/helpers": "1.3.2",
48
+ "@fibery/react": "1.4.3"
83
49
  },
84
50
  "peerDependencies": {
85
51
  "react": "^18.2.0",
@@ -111,10 +77,10 @@
111
77
  "react-dom": "18.2.0",
112
78
  "svg-parser": "2.0.4",
113
79
  "svgo": "2.8.0",
114
- "typescript": "5.4.3",
80
+ "typescript": "5.8.3",
115
81
  "unist-util-reduce": "0.2.2",
116
82
  "@fibery/babel-preset": "7.4.0",
117
- "@fibery/eslint-config": "8.6.0"
83
+ "@fibery/eslint-config": "8.6.1"
118
84
  },
119
85
  "jest": {
120
86
  "testEnvironment": "jsdom",