@bendyline/squisq-editor-react 1.4.0 → 1.5.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.
- package/dist/DocumentSettingsDialog.d.ts +26 -0
- package/dist/DocumentSettingsDialog.d.ts.map +1 -0
- package/dist/DocumentSettingsDialog.js +115 -0
- package/dist/DocumentSettingsDialog.js.map +1 -0
- package/dist/EditorContext.d.ts +248 -4
- package/dist/EditorContext.d.ts.map +1 -1
- package/dist/EditorContext.js +248 -10
- package/dist/EditorContext.js.map +1 -1
- package/dist/EditorShell.d.ts +173 -4
- package/dist/EditorShell.d.ts.map +1 -1
- package/dist/EditorShell.js +110 -10
- package/dist/EditorShell.js.map +1 -1
- package/dist/EmojiPicker.d.ts +50 -0
- package/dist/EmojiPicker.d.ts.map +1 -0
- package/dist/EmojiPicker.js +182 -0
- package/dist/EmojiPicker.js.map +1 -0
- package/dist/ImageEditor.d.ts +68 -0
- package/dist/ImageEditor.d.ts.map +1 -0
- package/dist/ImageEditor.js +166 -0
- package/dist/ImageEditor.js.map +1 -0
- package/dist/ImageNodeView.d.ts +13 -1
- package/dist/ImageNodeView.d.ts.map +1 -1
- package/dist/ImageNodeView.js +172 -19
- package/dist/ImageNodeView.js.map +1 -1
- package/dist/ImageViewer.d.ts +26 -0
- package/dist/ImageViewer.d.ts.map +1 -0
- package/dist/ImageViewer.js +119 -0
- package/dist/ImageViewer.js.map +1 -0
- package/dist/InlineIcon.d.ts +17 -0
- package/dist/InlineIcon.d.ts.map +1 -0
- package/dist/InlineIcon.js +72 -0
- package/dist/InlineIcon.js.map +1 -0
- package/dist/InlinePreviewGutter.d.ts +52 -0
- package/dist/InlinePreviewGutter.d.ts.map +1 -0
- package/dist/InlinePreviewGutter.js +397 -0
- package/dist/InlinePreviewGutter.js.map +1 -0
- package/dist/LinkDialog.d.ts +43 -0
- package/dist/LinkDialog.d.ts.map +1 -0
- package/dist/LinkDialog.js +102 -0
- package/dist/LinkDialog.js.map +1 -0
- package/dist/MentionExtension.js +10 -7
- package/dist/MentionExtension.js.map +1 -1
- package/dist/OutlinePanel.d.ts +17 -0
- package/dist/OutlinePanel.d.ts.map +1 -0
- package/dist/OutlinePanel.js +167 -0
- package/dist/OutlinePanel.js.map +1 -0
- package/dist/PlainHtmlPreview.d.ts +50 -0
- package/dist/PlainHtmlPreview.d.ts.map +1 -0
- package/dist/PlainHtmlPreview.js +155 -0
- package/dist/PlainHtmlPreview.js.map +1 -0
- package/dist/PreviewControls.d.ts +15 -1
- package/dist/PreviewControls.d.ts.map +1 -1
- package/dist/PreviewControls.js +75 -18
- package/dist/PreviewControls.js.map +1 -1
- package/dist/PreviewPanel.d.ts +11 -10
- package/dist/PreviewPanel.d.ts.map +1 -1
- package/dist/PreviewPanel.js +20 -17
- package/dist/PreviewPanel.js.map +1 -1
- package/dist/RawEditor.d.ts.map +1 -1
- package/dist/RawEditor.js +198 -4
- package/dist/RawEditor.js.map +1 -1
- package/dist/RecorderEntry.d.ts +24 -0
- package/dist/RecorderEntry.d.ts.map +1 -0
- package/dist/RecorderEntry.js +139 -0
- package/dist/RecorderEntry.js.map +1 -0
- package/dist/TemplateAnnotation.d.ts.map +1 -1
- package/dist/TemplateAnnotation.js +32 -6
- package/dist/TemplateAnnotation.js.map +1 -1
- package/dist/TemplatePicker.d.ts +53 -0
- package/dist/TemplatePicker.d.ts.map +1 -0
- package/dist/TemplatePicker.js +388 -0
- package/dist/TemplatePicker.js.map +1 -0
- package/dist/ThemeCustomizerPanel.d.ts +32 -0
- package/dist/ThemeCustomizerPanel.d.ts.map +1 -0
- package/dist/ThemeCustomizerPanel.js +256 -0
- package/dist/ThemeCustomizerPanel.js.map +1 -0
- package/dist/ThemePicker.d.ts +33 -0
- package/dist/ThemePicker.d.ts.map +1 -0
- package/dist/ThemePicker.js +148 -0
- package/dist/ThemePicker.js.map +1 -0
- package/dist/Toolbar.d.ts.map +1 -1
- package/dist/Toolbar.js +508 -33
- package/dist/Toolbar.js.map +1 -1
- package/dist/VersionHistoryPanel.d.ts +14 -0
- package/dist/VersionHistoryPanel.d.ts.map +1 -0
- package/dist/VersionHistoryPanel.js +147 -0
- package/dist/VersionHistoryPanel.js.map +1 -0
- package/dist/ViewMenuPanel.d.ts +13 -0
- package/dist/ViewMenuPanel.d.ts.map +1 -0
- package/dist/ViewMenuPanel.js +58 -0
- package/dist/ViewMenuPanel.js.map +1 -0
- package/dist/WysiwygEditor.d.ts.map +1 -1
- package/dist/WysiwygEditor.js +198 -9
- package/dist/WysiwygEditor.js.map +1 -1
- package/dist/__tests__/detectMarkdown.test.js +0 -14
- package/dist/__tests__/detectMarkdown.test.js.map +1 -1
- package/dist/__tests__/documentSettingsDialog.test.d.ts +2 -0
- package/dist/__tests__/documentSettingsDialog.test.d.ts.map +1 -0
- package/dist/__tests__/documentSettingsDialog.test.js +132 -0
- package/dist/__tests__/documentSettingsDialog.test.js.map +1 -0
- package/dist/__tests__/emojiPicker.test.d.ts +2 -0
- package/dist/__tests__/emojiPicker.test.d.ts.map +1 -0
- package/dist/__tests__/emojiPicker.test.js +111 -0
- package/dist/__tests__/emojiPicker.test.js.map +1 -0
- package/dist/__tests__/fileKind.test.js +13 -0
- package/dist/__tests__/fileKind.test.js.map +1 -1
- package/dist/__tests__/imageEditAffordance.test.d.ts +2 -0
- package/dist/__tests__/imageEditAffordance.test.d.ts.map +1 -0
- package/dist/__tests__/imageEditAffordance.test.js +188 -0
- package/dist/__tests__/imageEditAffordance.test.js.map +1 -0
- package/dist/__tests__/imageEditorShell.test.d.ts +2 -0
- package/dist/__tests__/imageEditorShell.test.d.ts.map +1 -0
- package/dist/__tests__/imageEditorShell.test.js +52 -0
- package/dist/__tests__/imageEditorShell.test.js.map +1 -0
- package/dist/__tests__/imageEditorState.test.d.ts +3 -0
- package/dist/__tests__/imageEditorState.test.d.ts.map +1 -0
- package/dist/__tests__/imageEditorState.test.js +148 -0
- package/dist/__tests__/imageEditorState.test.js.map +1 -0
- package/dist/__tests__/inlinePreviewGutter.test.d.ts +2 -0
- package/dist/__tests__/inlinePreviewGutter.test.d.ts.map +1 -0
- package/dist/__tests__/inlinePreviewGutter.test.js +51 -0
- package/dist/__tests__/inlinePreviewGutter.test.js.map +1 -0
- package/dist/__tests__/inlinePreviewGutterAllBlocks.test.d.ts +2 -0
- package/dist/__tests__/inlinePreviewGutterAllBlocks.test.d.ts.map +1 -0
- package/dist/__tests__/inlinePreviewGutterAllBlocks.test.js +63 -0
- package/dist/__tests__/inlinePreviewGutterAllBlocks.test.js.map +1 -0
- package/dist/__tests__/jsonEditor.test.d.ts +2 -0
- package/dist/__tests__/jsonEditor.test.d.ts.map +1 -0
- package/dist/__tests__/jsonEditor.test.js +134 -0
- package/dist/__tests__/jsonEditor.test.js.map +1 -0
- package/dist/__tests__/layersPanel.test.d.ts +2 -0
- package/dist/__tests__/layersPanel.test.d.ts.map +1 -0
- package/dist/__tests__/layersPanel.test.js +84 -0
- package/dist/__tests__/layersPanel.test.js.map +1 -0
- package/dist/__tests__/linkDialogDocPicker.test.d.ts +7 -0
- package/dist/__tests__/linkDialogDocPicker.test.d.ts.map +1 -0
- package/dist/__tests__/linkDialogDocPicker.test.js +75 -0
- package/dist/__tests__/linkDialogDocPicker.test.js.map +1 -0
- package/dist/__tests__/outlinePanel.test.d.ts +2 -0
- package/dist/__tests__/outlinePanel.test.d.ts.map +1 -0
- package/dist/__tests__/outlinePanel.test.js +68 -0
- package/dist/__tests__/outlinePanel.test.js.map +1 -0
- package/dist/__tests__/plainHtmlPreview.test.d.ts +2 -0
- package/dist/__tests__/plainHtmlPreview.test.d.ts.map +1 -0
- package/dist/__tests__/plainHtmlPreview.test.js +87 -0
- package/dist/__tests__/plainHtmlPreview.test.js.map +1 -0
- package/dist/__tests__/propertiesPanel.test.d.ts +2 -0
- package/dist/__tests__/propertiesPanel.test.d.ts.map +1 -0
- package/dist/__tests__/propertiesPanel.test.js +64 -0
- package/dist/__tests__/propertiesPanel.test.js.map +1 -0
- package/dist/__tests__/recorderFormats.test.d.ts +2 -0
- package/dist/__tests__/recorderFormats.test.d.ts.map +1 -0
- package/dist/__tests__/recorderFormats.test.js +121 -0
- package/dist/__tests__/recorderFormats.test.js.map +1 -0
- package/dist/__tests__/recorderTimingJson.test.d.ts +2 -0
- package/dist/__tests__/recorderTimingJson.test.d.ts.map +1 -0
- package/dist/__tests__/recorderTimingJson.test.js +37 -0
- package/dist/__tests__/recorderTimingJson.test.js.map +1 -0
- package/dist/__tests__/templateAnnotationRoundTrip.test.d.ts +2 -0
- package/dist/__tests__/templateAnnotationRoundTrip.test.d.ts.map +1 -0
- package/dist/__tests__/templateAnnotationRoundTrip.test.js +31 -0
- package/dist/__tests__/templateAnnotationRoundTrip.test.js.map +1 -0
- package/dist/__tests__/tiptapBridge.test.js +13 -0
- package/dist/__tests__/tiptapBridge.test.js.map +1 -1
- package/dist/__tests__/useImageEditor.test.d.ts +2 -0
- package/dist/__tests__/useImageEditor.test.d.ts.map +1 -0
- package/dist/__tests__/useImageEditor.test.js +131 -0
- package/dist/__tests__/useImageEditor.test.js.map +1 -0
- package/dist/__tests__/useMediaRecorder.test.d.ts +2 -0
- package/dist/__tests__/useMediaRecorder.test.d.ts.map +1 -0
- package/dist/__tests__/useMediaRecorder.test.js +153 -0
- package/dist/__tests__/useMediaRecorder.test.js.map +1 -0
- package/dist/__tests__/versionHistory.test.d.ts +2 -0
- package/dist/__tests__/versionHistory.test.d.ts.map +1 -0
- package/dist/__tests__/versionHistory.test.js +124 -0
- package/dist/__tests__/versionHistory.test.js.map +1 -0
- package/dist/blockSlice.d.ts +24 -0
- package/dist/blockSlice.d.ts.map +1 -0
- package/dist/blockSlice.js +63 -0
- package/dist/blockSlice.js.map +1 -0
- package/dist/buildPreviewDoc.d.ts.map +1 -1
- package/dist/buildPreviewDoc.js +52 -2
- package/dist/buildPreviewDoc.js.map +1 -1
- package/dist/emojiData.d.ts +81 -0
- package/dist/emojiData.d.ts.map +1 -0
- package/dist/emojiData.js +1283 -0
- package/dist/emojiData.js.map +1 -0
- package/dist/fileKind.d.ts +6 -2
- package/dist/fileKind.d.ts.map +1 -1
- package/dist/fileKind.js +25 -4
- package/dist/fileKind.js.map +1 -1
- package/dist/hooks/useFileDrop.d.ts.map +1 -1
- package/dist/hooks/useFileDrop.js +40 -4
- package/dist/hooks/useFileDrop.js.map +1 -1
- package/dist/imageEditor/CanvasSurface.d.ts +31 -0
- package/dist/imageEditor/CanvasSurface.d.ts.map +1 -0
- package/dist/imageEditor/CanvasSurface.js +264 -0
- package/dist/imageEditor/CanvasSurface.js.map +1 -0
- package/dist/imageEditor/ImageVersionHistoryDropdown.d.ts +39 -0
- package/dist/imageEditor/ImageVersionHistoryDropdown.d.ts.map +1 -0
- package/dist/imageEditor/ImageVersionHistoryDropdown.js +283 -0
- package/dist/imageEditor/ImageVersionHistoryDropdown.js.map +1 -0
- package/dist/imageEditor/LayersPanel.d.ts +14 -0
- package/dist/imageEditor/LayersPanel.d.ts.map +1 -0
- package/dist/imageEditor/LayersPanel.js +43 -0
- package/dist/imageEditor/LayersPanel.js.map +1 -0
- package/dist/imageEditor/PropertiesPanel.d.ts +14 -0
- package/dist/imageEditor/PropertiesPanel.d.ts.map +1 -0
- package/dist/imageEditor/PropertiesPanel.js +97 -0
- package/dist/imageEditor/PropertiesPanel.js.map +1 -0
- package/dist/imageEditor/Toolbar.d.ts +30 -0
- package/dist/imageEditor/Toolbar.d.ts.map +1 -0
- package/dist/imageEditor/Toolbar.js +108 -0
- package/dist/imageEditor/Toolbar.js.map +1 -0
- package/dist/imageEditor/icons.d.ts +24 -0
- package/dist/imageEditor/icons.d.ts.map +1 -0
- package/dist/imageEditor/icons.js +45 -0
- package/dist/imageEditor/icons.js.map +1 -0
- package/dist/imageEditor/layers/EditorImageLayer.d.ts +16 -0
- package/dist/imageEditor/layers/EditorImageLayer.d.ts.map +1 -0
- package/dist/imageEditor/layers/EditorImageLayer.js +37 -0
- package/dist/imageEditor/layers/EditorImageLayer.js.map +1 -0
- package/dist/imageEditor/layers/EditorShapeLayer.d.ts +15 -0
- package/dist/imageEditor/layers/EditorShapeLayer.d.ts.map +1 -0
- package/dist/imageEditor/layers/EditorShapeLayer.js +20 -0
- package/dist/imageEditor/layers/EditorShapeLayer.js.map +1 -0
- package/dist/imageEditor/layers/EditorTextLayer.d.ts +18 -0
- package/dist/imageEditor/layers/EditorTextLayer.d.ts.map +1 -0
- package/dist/imageEditor/layers/EditorTextLayer.js +13 -0
- package/dist/imageEditor/layers/EditorTextLayer.js.map +1 -0
- package/dist/imageEditor/layers/SelectionHandles.d.ts +17 -0
- package/dist/imageEditor/layers/SelectionHandles.d.ts.map +1 -0
- package/dist/imageEditor/layers/SelectionHandles.js +19 -0
- package/dist/imageEditor/layers/SelectionHandles.js.map +1 -0
- package/dist/imageEditor/state.d.ts +76 -0
- package/dist/imageEditor/state.d.ts.map +1 -0
- package/dist/imageEditor/state.js +87 -0
- package/dist/imageEditor/state.js.map +1 -0
- package/dist/imageEditor/useImageEditor.d.ts +53 -0
- package/dist/imageEditor/useImageEditor.d.ts.map +1 -0
- package/dist/imageEditor/useImageEditor.js +244 -0
- package/dist/imageEditor/useImageEditor.js.map +1 -0
- package/dist/imageEditor/useImageEditorTokens.d.ts +16 -0
- package/dist/imageEditor/useImageEditorTokens.d.ts.map +1 -0
- package/dist/imageEditor/useImageEditorTokens.js +45 -0
- package/dist/imageEditor/useImageEditorTokens.js.map +1 -0
- package/dist/index.d.ts +48 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +36 -0
- package/dist/index.js.map +1 -1
- package/dist/jsonEditor/EmbeddedRichTextField.d.ts +15 -0
- package/dist/jsonEditor/EmbeddedRichTextField.d.ts.map +1 -0
- package/dist/jsonEditor/EmbeddedRichTextField.js +74 -0
- package/dist/jsonEditor/EmbeddedRichTextField.js.map +1 -0
- package/dist/jsonEditor/JsonEditor.d.ts +36 -0
- package/dist/jsonEditor/JsonEditor.d.ts.map +1 -0
- package/dist/jsonEditor/JsonEditor.js +15 -0
- package/dist/jsonEditor/JsonEditor.js.map +1 -0
- package/dist/jsonEditor/JsonEditorContext.d.ts +28 -0
- package/dist/jsonEditor/JsonEditorContext.d.ts.map +1 -0
- package/dist/jsonEditor/JsonEditorContext.js +41 -0
- package/dist/jsonEditor/JsonEditorContext.js.map +1 -0
- package/dist/jsonEditor/RenderNode.d.ts +16 -0
- package/dist/jsonEditor/RenderNode.d.ts.map +1 -0
- package/dist/jsonEditor/RenderNode.js +32 -0
- package/dist/jsonEditor/RenderNode.js.map +1 -0
- package/dist/jsonEditor/editors.d.ts +36 -0
- package/dist/jsonEditor/editors.d.ts.map +1 -0
- package/dist/jsonEditor/editors.js +347 -0
- package/dist/jsonEditor/editors.js.map +1 -0
- package/dist/jsonEditor/index.d.ts +3 -0
- package/dist/jsonEditor/index.d.ts.map +1 -0
- package/dist/jsonEditor/index.js +2 -0
- package/dist/jsonEditor/index.js.map +1 -0
- package/dist/jsonEditor/useJsonEditorTokens.d.ts +13 -0
- package/dist/jsonEditor/useJsonEditorTokens.d.ts.map +1 -0
- package/dist/jsonEditor/useJsonEditorTokens.js +38 -0
- package/dist/jsonEditor/useJsonEditorTokens.js.map +1 -0
- package/dist/recorder/RecorderButton.d.ts +31 -0
- package/dist/recorder/RecorderButton.d.ts.map +1 -0
- package/dist/recorder/RecorderButton.js +24 -0
- package/dist/recorder/RecorderButton.js.map +1 -0
- package/dist/recorder/RecorderModal.d.ts +59 -0
- package/dist/recorder/RecorderModal.d.ts.map +1 -0
- package/dist/recorder/RecorderModal.js +333 -0
- package/dist/recorder/RecorderModal.js.map +1 -0
- package/dist/recorder/RecorderPanel.d.ts +25 -0
- package/dist/recorder/RecorderPanel.d.ts.map +1 -0
- package/dist/recorder/RecorderPanel.js +30 -0
- package/dist/recorder/RecorderPanel.js.map +1 -0
- package/dist/recorder/formats.d.ts +51 -0
- package/dist/recorder/formats.d.ts.map +1 -0
- package/dist/recorder/formats.js +144 -0
- package/dist/recorder/formats.js.map +1 -0
- package/dist/recorder/hooks/useMediaRecorder.d.ts +90 -0
- package/dist/recorder/hooks/useMediaRecorder.d.ts.map +1 -0
- package/dist/recorder/hooks/useMediaRecorder.js +277 -0
- package/dist/recorder/hooks/useMediaRecorder.js.map +1 -0
- package/dist/recorder/hooks/useStreamPreview.d.ts +22 -0
- package/dist/recorder/hooks/useStreamPreview.d.ts.map +1 -0
- package/dist/recorder/hooks/useStreamPreview.js +44 -0
- package/dist/recorder/hooks/useStreamPreview.js.map +1 -0
- package/dist/recorder/sources/cameraStream.d.ts +22 -0
- package/dist/recorder/sources/cameraStream.d.ts.map +1 -0
- package/dist/recorder/sources/cameraStream.js +24 -0
- package/dist/recorder/sources/cameraStream.js.map +1 -0
- package/dist/recorder/sources/micStream.d.ts +15 -0
- package/dist/recorder/sources/micStream.d.ts.map +1 -0
- package/dist/recorder/sources/micStream.js +24 -0
- package/dist/recorder/sources/micStream.js.map +1 -0
- package/dist/recorder/sources/screenStream.d.ts +53 -0
- package/dist/recorder/sources/screenStream.d.ts.map +1 -0
- package/dist/recorder/sources/screenStream.js +114 -0
- package/dist/recorder/sources/screenStream.js.map +1 -0
- package/dist/recorder/timingJson.d.ts +51 -0
- package/dist/recorder/timingJson.d.ts.map +1 -0
- package/dist/recorder/timingJson.js +42 -0
- package/dist/recorder/timingJson.js.map +1 -0
- package/dist/tiptap/TiptapAudio.d.ts +26 -0
- package/dist/tiptap/TiptapAudio.d.ts.map +1 -0
- package/dist/tiptap/TiptapAudio.js +58 -0
- package/dist/tiptap/TiptapAudio.js.map +1 -0
- package/dist/tiptap/TiptapVideo.d.ts +30 -0
- package/dist/tiptap/TiptapVideo.d.ts.map +1 -0
- package/dist/tiptap/TiptapVideo.js +66 -0
- package/dist/tiptap/TiptapVideo.js.map +1 -0
- package/dist/tiptap/useResolvedMediaSrc.d.ts +2 -0
- package/dist/tiptap/useResolvedMediaSrc.d.ts.map +1 -0
- package/dist/tiptap/useResolvedMediaSrc.js +42 -0
- package/dist/tiptap/useResolvedMediaSrc.js.map +1 -0
- package/dist/tiptapBridge.d.ts.map +1 -1
- package/dist/tiptapBridge.js +171 -14
- package/dist/tiptapBridge.js.map +1 -1
- package/dist/useHeadingLayout.d.ts +54 -0
- package/dist/useHeadingLayout.d.ts.map +1 -0
- package/dist/useHeadingLayout.js +260 -0
- package/dist/useHeadingLayout.js.map +1 -0
- package/dist/utils/collectInlineFontAwesomeCss.d.ts +21 -0
- package/dist/utils/collectInlineFontAwesomeCss.d.ts.map +1 -0
- package/dist/utils/collectInlineFontAwesomeCss.js +68 -0
- package/dist/utils/collectInlineFontAwesomeCss.js.map +1 -0
- package/dist/utils/dropUtils.d.ts +21 -2
- package/dist/utils/dropUtils.d.ts.map +1 -1
- package/dist/utils/dropUtils.js +43 -4
- package/dist/utils/dropUtils.js.map +1 -1
- package/dist/utils/normalizeMalformedAssetUrl.d.ts +15 -0
- package/dist/utils/normalizeMalformedAssetUrl.d.ts.map +1 -0
- package/dist/utils/normalizeMalformedAssetUrl.js +27 -0
- package/dist/utils/normalizeMalformedAssetUrl.js.map +1 -0
- package/package.json +8 -5
- package/src/DocumentSettingsDialog.tsx +266 -0
- package/src/EditorContext.tsx +534 -10
- package/src/EditorShell.tsx +571 -55
- package/src/EmojiPicker.tsx +332 -0
- package/src/ImageEditor.tsx +327 -0
- package/src/ImageNodeView.tsx +222 -21
- package/src/ImageViewer.tsx +221 -0
- package/src/InlineIcon.ts +84 -0
- package/src/InlinePreviewGutter.tsx +582 -0
- package/src/LinkDialog.tsx +276 -0
- package/src/MentionExtension.tsx +10 -7
- package/src/OutlinePanel.tsx +295 -0
- package/src/PlainHtmlPreview.tsx +211 -0
- package/src/PreviewControls.tsx +130 -24
- package/src/PreviewPanel.tsx +38 -21
- package/src/RawEditor.tsx +215 -4
- package/src/RecorderEntry.tsx +164 -0
- package/src/TemplateAnnotation.ts +32 -6
- package/src/TemplatePicker.tsx +818 -0
- package/src/ThemeCustomizerPanel.tsx +595 -0
- package/src/ThemePicker.tsx +319 -0
- package/src/Toolbar.tsx +708 -111
- package/src/VersionHistoryPanel.tsx +329 -0
- package/src/ViewMenuPanel.tsx +188 -0
- package/src/WysiwygEditor.tsx +229 -9
- package/src/__tests__/detectMarkdown.test.ts +0 -15
- package/src/__tests__/documentSettingsDialog.test.tsx +147 -0
- package/src/__tests__/emojiPicker.test.tsx +133 -0
- package/src/__tests__/fileKind.test.ts +16 -0
- package/src/__tests__/imageEditAffordance.test.tsx +268 -0
- package/src/__tests__/imageEditorShell.test.tsx +57 -0
- package/src/__tests__/imageEditorState.test.ts +171 -0
- package/src/__tests__/inlinePreviewGutter.test.tsx +62 -0
- package/src/__tests__/inlinePreviewGutterAllBlocks.test.tsx +103 -0
- package/src/__tests__/jsonEditor.test.tsx +168 -0
- package/src/__tests__/layersPanel.test.tsx +97 -0
- package/src/__tests__/linkDialogDocPicker.test.tsx +137 -0
- package/src/__tests__/outlinePanel.test.tsx +79 -0
- package/src/__tests__/plainHtmlPreview.test.tsx +107 -0
- package/src/__tests__/propertiesPanel.test.tsx +69 -0
- package/src/__tests__/recorderFormats.test.ts +146 -0
- package/src/__tests__/recorderTimingJson.test.ts +41 -0
- package/src/__tests__/templateAnnotationRoundTrip.test.ts +34 -0
- package/src/__tests__/tiptapBridge.test.ts +15 -0
- package/src/__tests__/useImageEditor.test.tsx +159 -0
- package/src/__tests__/useMediaRecorder.test.ts +186 -0
- package/src/__tests__/versionHistory.test.tsx +197 -0
- package/src/blockSlice.ts +75 -0
- package/src/buildPreviewDoc.ts +61 -6
- package/src/emojiData.ts +1337 -0
- package/src/fileKind.ts +30 -6
- package/src/hooks/useFileDrop.ts +40 -4
- package/src/imageEditor/CanvasSurface.tsx +402 -0
- package/src/imageEditor/ImageVersionHistoryDropdown.tsx +396 -0
- package/src/imageEditor/LayersPanel.tsx +143 -0
- package/src/imageEditor/PropertiesPanel.tsx +428 -0
- package/src/imageEditor/Toolbar.tsx +242 -0
- package/src/imageEditor/icons.tsx +144 -0
- package/src/imageEditor/image-editor.css +450 -0
- package/src/imageEditor/layers/EditorImageLayer.tsx +45 -0
- package/src/imageEditor/layers/EditorShapeLayer.tsx +62 -0
- package/src/imageEditor/layers/EditorTextLayer.tsx +45 -0
- package/src/imageEditor/layers/SelectionHandles.tsx +86 -0
- package/src/imageEditor/state.ts +153 -0
- package/src/imageEditor/useImageEditor.ts +328 -0
- package/src/imageEditor/useImageEditorTokens.ts +70 -0
- package/src/index.ts +82 -0
- package/src/jsonEditor/EmbeddedRichTextField.tsx +81 -0
- package/src/jsonEditor/JsonEditor.tsx +81 -0
- package/src/jsonEditor/JsonEditorContext.tsx +75 -0
- package/src/jsonEditor/RenderNode.tsx +66 -0
- package/src/jsonEditor/editors.tsx +678 -0
- package/src/jsonEditor/index.ts +2 -0
- package/src/jsonEditor/json-editor.css +463 -0
- package/src/jsonEditor/useJsonEditorTokens.ts +63 -0
- package/src/recorder/RecorderButton.tsx +72 -0
- package/src/recorder/RecorderModal.tsx +596 -0
- package/src/recorder/RecorderPanel.tsx +93 -0
- package/src/recorder/formats.ts +159 -0
- package/src/recorder/hooks/useMediaRecorder.ts +378 -0
- package/src/recorder/hooks/useStreamPreview.ts +47 -0
- package/src/recorder/sources/cameraStream.ts +32 -0
- package/src/recorder/sources/micStream.ts +25 -0
- package/src/recorder/sources/screenStream.ts +162 -0
- package/src/recorder/timingJson.ts +66 -0
- package/src/styles/editor.css +2490 -51
- package/src/styles/image-edit-affordance.css +201 -0
- package/src/styles/index.css +10 -0
- package/src/tiptap/TiptapAudio.tsx +86 -0
- package/src/tiptap/TiptapVideo.tsx +119 -0
- package/src/tiptap/useResolvedMediaSrc.ts +47 -0
- package/src/tiptapBridge.ts +188 -20
- package/src/useHeadingLayout.ts +294 -0
- package/src/utils/collectInlineFontAwesomeCss.ts +69 -0
- package/src/utils/dropUtils.ts +54 -6
- package/src/utils/normalizeMalformedAssetUrl.ts +22 -0
package/src/emojiData.ts
ADDED
|
@@ -0,0 +1,1337 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emoji Dataset
|
|
3
|
+
*
|
|
4
|
+
* Curated set of common emoji grouped by Unicode CLDR category. Used by
|
|
5
|
+
* `EmojiPicker` for both the category tabs and the search index.
|
|
6
|
+
*
|
|
7
|
+
* Each entry is a flat tuple `[char, name, ...keywords]` so the data
|
|
8
|
+
* stays compact in source and is cheap to scan for the typeahead
|
|
9
|
+
* search. Categories follow the official Unicode buckets in display
|
|
10
|
+
* order (CLDR v44 grouping), trimmed to common picks per category —
|
|
11
|
+
* we deliberately don't ship the whole Unicode emoji set (thousands)
|
|
12
|
+
* because the picker is meant for quick insertion, not exhaustive
|
|
13
|
+
* lookup; the user can paste anything we don't have.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
export interface EmojiEntry {
|
|
17
|
+
/** The actual emoji glyph (may be multi-codepoint, e.g. ZWJ sequences). */
|
|
18
|
+
char: string;
|
|
19
|
+
/** Display name shown in the tooltip. */
|
|
20
|
+
name: string;
|
|
21
|
+
/** Lowercase keywords for the search index — name words plus aliases. */
|
|
22
|
+
keywords: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface EmojiCategory {
|
|
26
|
+
id: string;
|
|
27
|
+
label: string;
|
|
28
|
+
/** Single-glyph icon shown on the tab. */
|
|
29
|
+
icon: string;
|
|
30
|
+
emojis: EmojiEntry[];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function e(char: string, name: string, ...kw: string[]): EmojiEntry {
|
|
34
|
+
return { char, name, keywords: [name, ...kw].join(' ').toLowerCase() };
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const EMOJI_CATEGORIES: EmojiCategory[] = [
|
|
38
|
+
{
|
|
39
|
+
id: 'smileys',
|
|
40
|
+
label: 'Smileys',
|
|
41
|
+
icon: '😀',
|
|
42
|
+
emojis: [
|
|
43
|
+
e('😀', 'grinning'),
|
|
44
|
+
e('😃', 'smiley'),
|
|
45
|
+
e('😄', 'smile', 'happy'),
|
|
46
|
+
e('😁', 'grin', 'beaming'),
|
|
47
|
+
e('😆', 'laughing'),
|
|
48
|
+
e('😅', 'sweat smile'),
|
|
49
|
+
e('🤣', 'rofl', 'rolling laughing'),
|
|
50
|
+
e('😂', 'joy', 'laughing tears'),
|
|
51
|
+
e('🙂', 'slight smile'),
|
|
52
|
+
e('🙃', 'upside down'),
|
|
53
|
+
e('😉', 'wink'),
|
|
54
|
+
e('😊', 'blush'),
|
|
55
|
+
e('😇', 'innocent', 'halo'),
|
|
56
|
+
e('🥰', 'smiling hearts'),
|
|
57
|
+
e('😍', 'heart eyes'),
|
|
58
|
+
e('🤩', 'star struck'),
|
|
59
|
+
e('😘', 'kiss', 'blow kiss'),
|
|
60
|
+
e('😗', 'kissing'),
|
|
61
|
+
e('😚', 'kissing closed eyes'),
|
|
62
|
+
e('😙', 'kissing smile'),
|
|
63
|
+
e('🥲', 'smiling tear'),
|
|
64
|
+
e('😋', 'yum', 'tongue'),
|
|
65
|
+
e('😛', 'tongue out'),
|
|
66
|
+
e('😜', 'wink tongue'),
|
|
67
|
+
e('🤪', 'zany', 'crazy'),
|
|
68
|
+
e('😝', 'squint tongue'),
|
|
69
|
+
e('🤑', 'money face'),
|
|
70
|
+
e('🤗', 'hugging'),
|
|
71
|
+
e('🤭', 'hand over mouth'),
|
|
72
|
+
e('🤫', 'shushing'),
|
|
73
|
+
e('🤔', 'thinking'),
|
|
74
|
+
e('🤐', 'zipper mouth'),
|
|
75
|
+
e('🤨', 'raised eyebrow'),
|
|
76
|
+
e('😐', 'neutral'),
|
|
77
|
+
e('😑', 'expressionless'),
|
|
78
|
+
e('😶', 'no mouth'),
|
|
79
|
+
e('😏', 'smirk'),
|
|
80
|
+
e('😒', 'unamused'),
|
|
81
|
+
e('🙄', 'eye roll'),
|
|
82
|
+
e('😬', 'grimace'),
|
|
83
|
+
e('🤥', 'lying', 'pinocchio'),
|
|
84
|
+
e('😌', 'relieved'),
|
|
85
|
+
e('😔', 'pensive'),
|
|
86
|
+
e('😪', 'sleepy'),
|
|
87
|
+
e('🤤', 'drool'),
|
|
88
|
+
e('😴', 'sleeping', 'zzz'),
|
|
89
|
+
e('😷', 'mask'),
|
|
90
|
+
e('🤒', 'thermometer face'),
|
|
91
|
+
e('🤕', 'head bandage'),
|
|
92
|
+
e('🤢', 'nauseated'),
|
|
93
|
+
e('🤮', 'vomiting'),
|
|
94
|
+
e('🤧', 'sneeze'),
|
|
95
|
+
e('🥵', 'hot face'),
|
|
96
|
+
e('🥶', 'cold face'),
|
|
97
|
+
e('🥴', 'woozy'),
|
|
98
|
+
e('😵', 'dizzy'),
|
|
99
|
+
e('🤯', 'mind blown', 'exploding head'),
|
|
100
|
+
e('🤠', 'cowboy'),
|
|
101
|
+
e('🥳', 'partying'),
|
|
102
|
+
e('🥸', 'disguised'),
|
|
103
|
+
e('😎', 'sunglasses', 'cool'),
|
|
104
|
+
e('🤓', 'nerd', 'glasses'),
|
|
105
|
+
e('🧐', 'monocle'),
|
|
106
|
+
e('😕', 'confused'),
|
|
107
|
+
e('😟', 'worried'),
|
|
108
|
+
e('🙁', 'slight frown'),
|
|
109
|
+
e('☹️', 'frown'),
|
|
110
|
+
e('😮', 'open mouth'),
|
|
111
|
+
e('😯', 'hushed'),
|
|
112
|
+
e('😲', 'astonished'),
|
|
113
|
+
e('😳', 'flushed'),
|
|
114
|
+
e('🥺', 'pleading'),
|
|
115
|
+
e('😦', 'frowning open mouth'),
|
|
116
|
+
e('😧', 'anguished'),
|
|
117
|
+
e('😨', 'fearful'),
|
|
118
|
+
e('😰', 'anxious sweat'),
|
|
119
|
+
e('😥', 'sad relieved'),
|
|
120
|
+
e('😢', 'cry'),
|
|
121
|
+
e('😭', 'sobbing', 'loud cry'),
|
|
122
|
+
e('😱', 'screaming', 'shocked'),
|
|
123
|
+
e('😖', 'confounded'),
|
|
124
|
+
e('😣', 'persevering'),
|
|
125
|
+
e('😞', 'disappointed'),
|
|
126
|
+
e('😓', 'downcast sweat'),
|
|
127
|
+
e('😩', 'weary'),
|
|
128
|
+
e('😫', 'tired'),
|
|
129
|
+
e('😤', 'triumph'),
|
|
130
|
+
e('😡', 'pout', 'red angry'),
|
|
131
|
+
e('😠', 'angry'),
|
|
132
|
+
e('🤬', 'cursing', 'symbols'),
|
|
133
|
+
e('😈', 'smiling devil'),
|
|
134
|
+
e('👿', 'angry devil'),
|
|
135
|
+
e('💀', 'skull'),
|
|
136
|
+
e('💩', 'poop', 'pile'),
|
|
137
|
+
e('🤡', 'clown'),
|
|
138
|
+
e('👻', 'ghost'),
|
|
139
|
+
e('👽', 'alien'),
|
|
140
|
+
e('🤖', 'robot'),
|
|
141
|
+
e('🎃', 'jack o lantern', 'pumpkin'),
|
|
142
|
+
],
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
id: 'people',
|
|
146
|
+
label: 'People',
|
|
147
|
+
icon: '👋',
|
|
148
|
+
emojis: [
|
|
149
|
+
e('👋', 'wave', 'hello'),
|
|
150
|
+
e('🤚', 'raised back hand'),
|
|
151
|
+
e('🖐️', 'raised hand fingers'),
|
|
152
|
+
e('✋', 'raised hand', 'stop'),
|
|
153
|
+
e('🖖', 'vulcan'),
|
|
154
|
+
e('👌', 'ok hand'),
|
|
155
|
+
e('🤌', 'pinched fingers'),
|
|
156
|
+
e('🤏', 'pinching'),
|
|
157
|
+
e('✌️', 'peace'),
|
|
158
|
+
e('🤞', 'crossed fingers', 'luck'),
|
|
159
|
+
e('🤟', 'love you gesture'),
|
|
160
|
+
e('🤘', 'rock on', 'horns'),
|
|
161
|
+
e('🤙', 'call me'),
|
|
162
|
+
e('👈', 'point left'),
|
|
163
|
+
e('👉', 'point right'),
|
|
164
|
+
e('👆', 'point up'),
|
|
165
|
+
e('👇', 'point down'),
|
|
166
|
+
e('☝️', 'index up'),
|
|
167
|
+
e('👍', 'thumbs up', 'like'),
|
|
168
|
+
e('👎', 'thumbs down', 'dislike'),
|
|
169
|
+
e('✊', 'raised fist'),
|
|
170
|
+
e('👊', 'oncoming fist', 'punch'),
|
|
171
|
+
e('🤛', 'left fist', 'bump'),
|
|
172
|
+
e('🤜', 'right fist'),
|
|
173
|
+
e('👏', 'clap'),
|
|
174
|
+
e('🙌', 'raised hands', 'praise'),
|
|
175
|
+
e('👐', 'open hands'),
|
|
176
|
+
e('🤲', 'palms up'),
|
|
177
|
+
e('🤝', 'handshake'),
|
|
178
|
+
e('🙏', 'pray', 'thanks'),
|
|
179
|
+
e('💪', 'muscle', 'strong'),
|
|
180
|
+
e('🦵', 'leg'),
|
|
181
|
+
e('🦶', 'foot'),
|
|
182
|
+
e('👂', 'ear'),
|
|
183
|
+
e('🦻', 'ear hearing aid'),
|
|
184
|
+
e('👃', 'nose'),
|
|
185
|
+
e('🧠', 'brain'),
|
|
186
|
+
e('🫀', 'heart anatomy'),
|
|
187
|
+
e('🫁', 'lungs'),
|
|
188
|
+
e('🦷', 'tooth'),
|
|
189
|
+
e('🦴', 'bone'),
|
|
190
|
+
e('👀', 'eyes'),
|
|
191
|
+
e('👁️', 'eye'),
|
|
192
|
+
e('👅', 'tongue'),
|
|
193
|
+
e('👄', 'mouth'),
|
|
194
|
+
e('💋', 'lipstick kiss'),
|
|
195
|
+
e('👶', 'baby'),
|
|
196
|
+
e('🧒', 'child'),
|
|
197
|
+
e('👦', 'boy'),
|
|
198
|
+
e('👧', 'girl'),
|
|
199
|
+
e('🧑', 'person'),
|
|
200
|
+
e('👨', 'man'),
|
|
201
|
+
e('👩', 'woman'),
|
|
202
|
+
e('🧓', 'older person'),
|
|
203
|
+
e('👴', 'old man'),
|
|
204
|
+
e('👵', 'old woman'),
|
|
205
|
+
e('👮', 'police'),
|
|
206
|
+
e('🕵️', 'detective'),
|
|
207
|
+
e('💂', 'guard'),
|
|
208
|
+
e('🧑⚕️', 'health worker'),
|
|
209
|
+
e('🧑🎓', 'student'),
|
|
210
|
+
e('🧑🏫', 'teacher'),
|
|
211
|
+
e('🧑🔧', 'mechanic'),
|
|
212
|
+
e('🧑💻', 'technologist', 'developer'),
|
|
213
|
+
e('🧑🎨', 'artist'),
|
|
214
|
+
e('🧑🚀', 'astronaut'),
|
|
215
|
+
e('🧑🚒', 'firefighter'),
|
|
216
|
+
e('👷', 'construction worker'),
|
|
217
|
+
e('🤴', 'prince'),
|
|
218
|
+
e('👸', 'princess'),
|
|
219
|
+
e('🦸', 'superhero'),
|
|
220
|
+
e('🦹', 'supervillain'),
|
|
221
|
+
e('🧙', 'mage', 'wizard'),
|
|
222
|
+
e('🧚', 'fairy'),
|
|
223
|
+
e('🧛', 'vampire'),
|
|
224
|
+
e('🧜', 'merperson'),
|
|
225
|
+
e('🧝', 'elf'),
|
|
226
|
+
e('🧞', 'genie'),
|
|
227
|
+
e('🧟', 'zombie'),
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
id: 'nature',
|
|
232
|
+
label: 'Nature',
|
|
233
|
+
icon: '🌿',
|
|
234
|
+
emojis: [
|
|
235
|
+
e('🐶', 'dog face'),
|
|
236
|
+
e('🐱', 'cat face'),
|
|
237
|
+
e('🐭', 'mouse'),
|
|
238
|
+
e('🐹', 'hamster'),
|
|
239
|
+
e('🐰', 'rabbit face'),
|
|
240
|
+
e('🦊', 'fox'),
|
|
241
|
+
e('🐻', 'bear'),
|
|
242
|
+
e('🐼', 'panda'),
|
|
243
|
+
e('🐻❄️', 'polar bear'),
|
|
244
|
+
e('🐨', 'koala'),
|
|
245
|
+
e('🐯', 'tiger face'),
|
|
246
|
+
e('🦁', 'lion'),
|
|
247
|
+
e('🐮', 'cow face'),
|
|
248
|
+
e('🐷', 'pig face'),
|
|
249
|
+
e('🐽', 'pig nose'),
|
|
250
|
+
e('🐸', 'frog'),
|
|
251
|
+
e('🐵', 'monkey face'),
|
|
252
|
+
e('🙈', 'see no evil'),
|
|
253
|
+
e('🙉', 'hear no evil'),
|
|
254
|
+
e('🙊', 'speak no evil'),
|
|
255
|
+
e('🐒', 'monkey'),
|
|
256
|
+
e('🐔', 'chicken'),
|
|
257
|
+
e('🐧', 'penguin'),
|
|
258
|
+
e('🐦', 'bird'),
|
|
259
|
+
e('🐤', 'baby chick'),
|
|
260
|
+
e('🐣', 'hatching chick'),
|
|
261
|
+
e('🦆', 'duck'),
|
|
262
|
+
e('🦅', 'eagle'),
|
|
263
|
+
e('🦉', 'owl'),
|
|
264
|
+
e('🦇', 'bat'),
|
|
265
|
+
e('🐺', 'wolf'),
|
|
266
|
+
e('🐗', 'boar'),
|
|
267
|
+
e('🐴', 'horse face'),
|
|
268
|
+
e('🦄', 'unicorn'),
|
|
269
|
+
e('🐝', 'bee'),
|
|
270
|
+
e('🐛', 'bug'),
|
|
271
|
+
e('🦋', 'butterfly'),
|
|
272
|
+
e('🐌', 'snail'),
|
|
273
|
+
e('🐞', 'lady beetle'),
|
|
274
|
+
e('🐜', 'ant'),
|
|
275
|
+
e('🦂', 'scorpion'),
|
|
276
|
+
e('🕷️', 'spider'),
|
|
277
|
+
e('🐢', 'turtle'),
|
|
278
|
+
e('🐍', 'snake'),
|
|
279
|
+
e('🦖', 'trex'),
|
|
280
|
+
e('🦕', 'sauropod'),
|
|
281
|
+
e('🐙', 'octopus'),
|
|
282
|
+
e('🦑', 'squid'),
|
|
283
|
+
e('🦐', 'shrimp'),
|
|
284
|
+
e('🦞', 'lobster'),
|
|
285
|
+
e('🦀', 'crab'),
|
|
286
|
+
e('🐡', 'blowfish'),
|
|
287
|
+
e('🐠', 'tropical fish'),
|
|
288
|
+
e('🐟', 'fish'),
|
|
289
|
+
e('🐬', 'dolphin'),
|
|
290
|
+
e('🐳', 'spouting whale'),
|
|
291
|
+
e('🐋', 'whale'),
|
|
292
|
+
e('🦈', 'shark'),
|
|
293
|
+
e('🐊', 'crocodile'),
|
|
294
|
+
e('🐅', 'tiger'),
|
|
295
|
+
e('🐆', 'leopard'),
|
|
296
|
+
e('🦓', 'zebra'),
|
|
297
|
+
e('🦍', 'gorilla'),
|
|
298
|
+
e('🦧', 'orangutan'),
|
|
299
|
+
e('🐘', 'elephant'),
|
|
300
|
+
e('🦛', 'hippopotamus'),
|
|
301
|
+
e('🦏', 'rhinoceros'),
|
|
302
|
+
e('🐪', 'camel'),
|
|
303
|
+
e('🐫', 'two hump camel'),
|
|
304
|
+
e('🦒', 'giraffe'),
|
|
305
|
+
e('🦘', 'kangaroo'),
|
|
306
|
+
e('🐃', 'water buffalo'),
|
|
307
|
+
e('🐂', 'ox'),
|
|
308
|
+
e('🐄', 'cow'),
|
|
309
|
+
e('🐎', 'horse'),
|
|
310
|
+
e('🐖', 'pig'),
|
|
311
|
+
e('🐏', 'ram'),
|
|
312
|
+
e('🐑', 'ewe'),
|
|
313
|
+
e('🦙', 'llama'),
|
|
314
|
+
e('🐐', 'goat'),
|
|
315
|
+
e('🦌', 'deer'),
|
|
316
|
+
e('🐕', 'dog'),
|
|
317
|
+
e('🐩', 'poodle'),
|
|
318
|
+
e('🦮', 'guide dog'),
|
|
319
|
+
e('🐕🦺', 'service dog'),
|
|
320
|
+
e('🐈', 'cat'),
|
|
321
|
+
e('🐈⬛', 'black cat'),
|
|
322
|
+
e('🐓', 'rooster'),
|
|
323
|
+
e('🦃', 'turkey'),
|
|
324
|
+
e('🦚', 'peacock'),
|
|
325
|
+
e('🦜', 'parrot'),
|
|
326
|
+
e('🦢', 'swan'),
|
|
327
|
+
e('🌲', 'evergreen tree'),
|
|
328
|
+
e('🌳', 'deciduous tree'),
|
|
329
|
+
e('🌴', 'palm tree'),
|
|
330
|
+
e('🌵', 'cactus'),
|
|
331
|
+
e('🌷', 'tulip'),
|
|
332
|
+
e('🌸', 'cherry blossom'),
|
|
333
|
+
e('🌹', 'rose'),
|
|
334
|
+
e('🥀', 'wilted flower'),
|
|
335
|
+
e('🌺', 'hibiscus'),
|
|
336
|
+
e('🌻', 'sunflower'),
|
|
337
|
+
e('🌼', 'blossom'),
|
|
338
|
+
e('🌱', 'seedling'),
|
|
339
|
+
e('🪴', 'potted plant'),
|
|
340
|
+
e('🌿', 'herb'),
|
|
341
|
+
e('☘️', 'shamrock'),
|
|
342
|
+
e('🍀', 'four leaf clover'),
|
|
343
|
+
e('🍁', 'maple leaf'),
|
|
344
|
+
e('🍂', 'fallen leaf'),
|
|
345
|
+
e('🍃', 'leaf wind'),
|
|
346
|
+
e('🌞', 'sun face'),
|
|
347
|
+
e('☀️', 'sun'),
|
|
348
|
+
e('🌝', 'full moon face'),
|
|
349
|
+
e('🌚', 'new moon face'),
|
|
350
|
+
e('🌛', 'first quarter moon face'),
|
|
351
|
+
e('🌜', 'last quarter moon face'),
|
|
352
|
+
e('🌙', 'crescent moon'),
|
|
353
|
+
e('🌎', 'earth americas'),
|
|
354
|
+
e('🌍', 'earth europe africa'),
|
|
355
|
+
e('🌏', 'earth asia australia'),
|
|
356
|
+
e('🪐', 'ringed planet'),
|
|
357
|
+
e('⭐', 'star'),
|
|
358
|
+
e('🌟', 'glowing star'),
|
|
359
|
+
e('✨', 'sparkles'),
|
|
360
|
+
e('⚡', 'lightning', 'bolt'),
|
|
361
|
+
e('☄️', 'comet'),
|
|
362
|
+
e('🔥', 'fire'),
|
|
363
|
+
e('💥', 'collision', 'boom'),
|
|
364
|
+
e('🌈', 'rainbow'),
|
|
365
|
+
e('☁️', 'cloud'),
|
|
366
|
+
e('⛅', 'sun behind cloud'),
|
|
367
|
+
e('🌧️', 'rain cloud'),
|
|
368
|
+
e('⛈️', 'thunder cloud'),
|
|
369
|
+
e('🌩️', 'lightning cloud'),
|
|
370
|
+
e('🌨️', 'snow cloud'),
|
|
371
|
+
e('❄️', 'snowflake'),
|
|
372
|
+
e('⛄', 'snowman'),
|
|
373
|
+
e('🌪️', 'tornado'),
|
|
374
|
+
e('🌫️', 'fog'),
|
|
375
|
+
e('🌊', 'wave'),
|
|
376
|
+
e('💧', 'droplet'),
|
|
377
|
+
e('💦', 'sweat drops'),
|
|
378
|
+
],
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: 'food',
|
|
382
|
+
label: 'Food',
|
|
383
|
+
icon: '🍎',
|
|
384
|
+
emojis: [
|
|
385
|
+
e('🍏', 'green apple'),
|
|
386
|
+
e('🍎', 'red apple'),
|
|
387
|
+
e('🍐', 'pear'),
|
|
388
|
+
e('🍊', 'tangerine', 'orange'),
|
|
389
|
+
e('🍋', 'lemon'),
|
|
390
|
+
e('🍌', 'banana'),
|
|
391
|
+
e('🍉', 'watermelon'),
|
|
392
|
+
e('🍇', 'grapes'),
|
|
393
|
+
e('🍓', 'strawberry'),
|
|
394
|
+
e('🫐', 'blueberries'),
|
|
395
|
+
e('🍈', 'melon'),
|
|
396
|
+
e('🍒', 'cherries'),
|
|
397
|
+
e('🍑', 'peach'),
|
|
398
|
+
e('🥭', 'mango'),
|
|
399
|
+
e('🍍', 'pineapple'),
|
|
400
|
+
e('🥥', 'coconut'),
|
|
401
|
+
e('🥝', 'kiwi'),
|
|
402
|
+
e('🍅', 'tomato'),
|
|
403
|
+
e('🍆', 'eggplant'),
|
|
404
|
+
e('🥑', 'avocado'),
|
|
405
|
+
e('🥦', 'broccoli'),
|
|
406
|
+
e('🥬', 'leafy green'),
|
|
407
|
+
e('🥒', 'cucumber'),
|
|
408
|
+
e('🌶️', 'pepper'),
|
|
409
|
+
e('🫑', 'bell pepper'),
|
|
410
|
+
e('🌽', 'corn'),
|
|
411
|
+
e('🥕', 'carrot'),
|
|
412
|
+
e('🫒', 'olive'),
|
|
413
|
+
e('🧄', 'garlic'),
|
|
414
|
+
e('🧅', 'onion'),
|
|
415
|
+
e('🥔', 'potato'),
|
|
416
|
+
e('🍠', 'sweet potato'),
|
|
417
|
+
e('🥐', 'croissant'),
|
|
418
|
+
e('🥯', 'bagel'),
|
|
419
|
+
e('🍞', 'bread'),
|
|
420
|
+
e('🥖', 'baguette'),
|
|
421
|
+
e('🥨', 'pretzel'),
|
|
422
|
+
e('🧀', 'cheese'),
|
|
423
|
+
e('🥚', 'egg'),
|
|
424
|
+
e('🍳', 'cooking', 'frying'),
|
|
425
|
+
e('🧈', 'butter'),
|
|
426
|
+
e('🥞', 'pancakes'),
|
|
427
|
+
e('🧇', 'waffle'),
|
|
428
|
+
e('🥓', 'bacon'),
|
|
429
|
+
e('🥩', 'cut of meat'),
|
|
430
|
+
e('🍗', 'poultry leg'),
|
|
431
|
+
e('🍖', 'meat on bone'),
|
|
432
|
+
e('🌭', 'hot dog'),
|
|
433
|
+
e('🍔', 'hamburger'),
|
|
434
|
+
e('🍟', 'fries'),
|
|
435
|
+
e('🍕', 'pizza'),
|
|
436
|
+
e('🥪', 'sandwich'),
|
|
437
|
+
e('🌮', 'taco'),
|
|
438
|
+
e('🌯', 'burrito'),
|
|
439
|
+
e('🥙', 'stuffed flatbread'),
|
|
440
|
+
e('🧆', 'falafel'),
|
|
441
|
+
e('🥗', 'salad'),
|
|
442
|
+
e('🥘', 'shallow pan of food'),
|
|
443
|
+
e('🍝', 'spaghetti'),
|
|
444
|
+
e('🍜', 'steaming bowl'),
|
|
445
|
+
e('🍲', 'pot of food'),
|
|
446
|
+
e('🍛', 'curry'),
|
|
447
|
+
e('🍣', 'sushi'),
|
|
448
|
+
e('🍱', 'bento'),
|
|
449
|
+
e('🥟', 'dumpling'),
|
|
450
|
+
e('🍤', 'shrimp tempura'),
|
|
451
|
+
e('🍙', 'rice ball'),
|
|
452
|
+
e('🍚', 'rice'),
|
|
453
|
+
e('🍘', 'rice cracker'),
|
|
454
|
+
e('🥠', 'fortune cookie'),
|
|
455
|
+
e('🥮', 'moon cake'),
|
|
456
|
+
e('🍢', 'oden'),
|
|
457
|
+
e('🍡', 'dango'),
|
|
458
|
+
e('🦪', 'oyster'),
|
|
459
|
+
e('🍦', 'soft serve'),
|
|
460
|
+
e('🍧', 'shaved ice'),
|
|
461
|
+
e('🍨', 'ice cream'),
|
|
462
|
+
e('🍩', 'doughnut'),
|
|
463
|
+
e('🍪', 'cookie'),
|
|
464
|
+
e('🎂', 'birthday cake'),
|
|
465
|
+
e('🍰', 'shortcake'),
|
|
466
|
+
e('🧁', 'cupcake'),
|
|
467
|
+
e('🥧', 'pie'),
|
|
468
|
+
e('🍫', 'chocolate bar'),
|
|
469
|
+
e('🍬', 'candy'),
|
|
470
|
+
e('🍭', 'lollipop'),
|
|
471
|
+
e('🍮', 'custard'),
|
|
472
|
+
e('🍯', 'honey'),
|
|
473
|
+
e('🍼', 'baby bottle'),
|
|
474
|
+
e('🥛', 'milk'),
|
|
475
|
+
e('☕', 'coffee'),
|
|
476
|
+
e('🫖', 'teapot'),
|
|
477
|
+
e('🍵', 'tea'),
|
|
478
|
+
e('🍶', 'sake'),
|
|
479
|
+
e('🍾', 'champagne'),
|
|
480
|
+
e('🍷', 'wine glass'),
|
|
481
|
+
e('🍸', 'cocktail'),
|
|
482
|
+
e('🍹', 'tropical drink'),
|
|
483
|
+
e('🍺', 'beer'),
|
|
484
|
+
e('🍻', 'clink beers'),
|
|
485
|
+
e('🥂', 'clink champagne'),
|
|
486
|
+
e('🥃', 'tumbler'),
|
|
487
|
+
e('🥤', 'cup straw'),
|
|
488
|
+
e('🧋', 'bubble tea'),
|
|
489
|
+
e('🧃', 'juice box'),
|
|
490
|
+
e('🧉', 'mate'),
|
|
491
|
+
e('🧊', 'ice cube'),
|
|
492
|
+
],
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
id: 'travel',
|
|
496
|
+
label: 'Travel',
|
|
497
|
+
icon: '✈️',
|
|
498
|
+
emojis: [
|
|
499
|
+
e('🚗', 'car'),
|
|
500
|
+
e('🚕', 'taxi'),
|
|
501
|
+
e('🚙', 'suv'),
|
|
502
|
+
e('🚌', 'bus'),
|
|
503
|
+
e('🚎', 'trolleybus'),
|
|
504
|
+
e('🏎️', 'racing car'),
|
|
505
|
+
e('🚓', 'police car'),
|
|
506
|
+
e('🚑', 'ambulance'),
|
|
507
|
+
e('🚒', 'fire engine'),
|
|
508
|
+
e('🚐', 'minibus'),
|
|
509
|
+
e('🛻', 'pickup truck'),
|
|
510
|
+
e('🚚', 'delivery truck'),
|
|
511
|
+
e('🚛', 'semi truck'),
|
|
512
|
+
e('🚜', 'tractor'),
|
|
513
|
+
e('🛵', 'motor scooter'),
|
|
514
|
+
e('🏍️', 'motorcycle'),
|
|
515
|
+
e('🚲', 'bicycle'),
|
|
516
|
+
e('🛴', 'kick scooter'),
|
|
517
|
+
e('🛹', 'skateboard'),
|
|
518
|
+
e('🛼', 'roller skate'),
|
|
519
|
+
e('🚂', 'locomotive'),
|
|
520
|
+
e('🚃', 'railway car'),
|
|
521
|
+
e('🚄', 'high speed train'),
|
|
522
|
+
e('🚅', 'bullet train'),
|
|
523
|
+
e('🚆', 'train'),
|
|
524
|
+
e('🚇', 'metro'),
|
|
525
|
+
e('🚈', 'light rail'),
|
|
526
|
+
e('🚉', 'station'),
|
|
527
|
+
e('🚝', 'monorail'),
|
|
528
|
+
e('🚞', 'mountain railway'),
|
|
529
|
+
e('🚋', 'tram'),
|
|
530
|
+
e('🚊', 'tram car'),
|
|
531
|
+
e('🚟', 'suspension railway'),
|
|
532
|
+
e('🚠', 'mountain cableway'),
|
|
533
|
+
e('🚡', 'aerial tramway'),
|
|
534
|
+
e('✈️', 'airplane'),
|
|
535
|
+
e('🛫', 'departing'),
|
|
536
|
+
e('🛬', 'arriving'),
|
|
537
|
+
e('🛩️', 'small airplane'),
|
|
538
|
+
e('🚁', 'helicopter'),
|
|
539
|
+
e('🛸', 'flying saucer'),
|
|
540
|
+
e('🚀', 'rocket'),
|
|
541
|
+
e('🛰️', 'satellite'),
|
|
542
|
+
e('🛶', 'canoe'),
|
|
543
|
+
e('⛵', 'sailboat'),
|
|
544
|
+
e('🚤', 'speedboat'),
|
|
545
|
+
e('🛥️', 'motor boat'),
|
|
546
|
+
e('🛳️', 'passenger ship'),
|
|
547
|
+
e('⛴️', 'ferry'),
|
|
548
|
+
e('🚢', 'ship'),
|
|
549
|
+
e('⚓', 'anchor'),
|
|
550
|
+
e('🪝', 'hook'),
|
|
551
|
+
e('⛽', 'fuel pump'),
|
|
552
|
+
e('🚧', 'construction'),
|
|
553
|
+
e('🚦', 'traffic light'),
|
|
554
|
+
e('🚥', 'horizontal traffic light'),
|
|
555
|
+
e('🗺️', 'map'),
|
|
556
|
+
e('🗿', 'moai'),
|
|
557
|
+
e('🗽', 'statue of liberty'),
|
|
558
|
+
e('🗼', 'tokyo tower'),
|
|
559
|
+
e('🏰', 'castle'),
|
|
560
|
+
e('🏯', 'japanese castle'),
|
|
561
|
+
e('🏟️', 'stadium'),
|
|
562
|
+
e('🎡', 'ferris wheel'),
|
|
563
|
+
e('🎢', 'roller coaster'),
|
|
564
|
+
e('🎠', 'carousel'),
|
|
565
|
+
e('⛲', 'fountain'),
|
|
566
|
+
e('⛱️', 'umbrella ground'),
|
|
567
|
+
e('🏖️', 'beach umbrella'),
|
|
568
|
+
e('🏝️', 'desert island'),
|
|
569
|
+
e('🏜️', 'desert'),
|
|
570
|
+
e('🌋', 'volcano'),
|
|
571
|
+
e('⛰️', 'mountain'),
|
|
572
|
+
e('🏔️', 'snow mountain'),
|
|
573
|
+
e('🗻', 'mount fuji'),
|
|
574
|
+
e('🏕️', 'camping'),
|
|
575
|
+
e('⛺', 'tent'),
|
|
576
|
+
e('🛖', 'hut'),
|
|
577
|
+
e('🏠', 'house'),
|
|
578
|
+
e('🏡', 'house with garden'),
|
|
579
|
+
e('🏘️', 'houses'),
|
|
580
|
+
e('🏚️', 'derelict house'),
|
|
581
|
+
e('🏗️', 'construction site'),
|
|
582
|
+
e('🏭', 'factory'),
|
|
583
|
+
e('🏢', 'office building'),
|
|
584
|
+
e('🏬', 'department store'),
|
|
585
|
+
e('🏣', 'japanese post office'),
|
|
586
|
+
e('🏤', 'post office'),
|
|
587
|
+
e('🏥', 'hospital'),
|
|
588
|
+
e('🏦', 'bank'),
|
|
589
|
+
e('🏨', 'hotel'),
|
|
590
|
+
e('🏪', 'convenience store'),
|
|
591
|
+
e('🏫', 'school'),
|
|
592
|
+
e('🏩', 'love hotel'),
|
|
593
|
+
e('💒', 'wedding'),
|
|
594
|
+
e('🏛️', 'classical building'),
|
|
595
|
+
e('⛪', 'church'),
|
|
596
|
+
e('🕌', 'mosque'),
|
|
597
|
+
e('🛕', 'hindu temple'),
|
|
598
|
+
e('🕍', 'synagogue'),
|
|
599
|
+
e('⛩️', 'shrine'),
|
|
600
|
+
e('🌁', 'foggy city'),
|
|
601
|
+
e('🌃', 'night stars'),
|
|
602
|
+
e('🌄', 'sunrise mountains'),
|
|
603
|
+
e('🌅', 'sunrise'),
|
|
604
|
+
e('🌆', 'cityscape dusk'),
|
|
605
|
+
e('🌇', 'sunset'),
|
|
606
|
+
e('🌉', 'bridge night'),
|
|
607
|
+
e('♨️', 'hot springs'),
|
|
608
|
+
e('🎑', 'moon viewing'),
|
|
609
|
+
e('🏞️', 'national park'),
|
|
610
|
+
],
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
id: 'activities',
|
|
614
|
+
label: 'Activities',
|
|
615
|
+
icon: '⚽',
|
|
616
|
+
emojis: [
|
|
617
|
+
e('⚽', 'soccer'),
|
|
618
|
+
e('🏀', 'basketball'),
|
|
619
|
+
e('🏈', 'football'),
|
|
620
|
+
e('⚾', 'baseball'),
|
|
621
|
+
e('🥎', 'softball'),
|
|
622
|
+
e('🎾', 'tennis'),
|
|
623
|
+
e('🏐', 'volleyball'),
|
|
624
|
+
e('🏉', 'rugby'),
|
|
625
|
+
e('🥏', 'flying disc', 'frisbee'),
|
|
626
|
+
e('🎱', 'pool', 'eight ball'),
|
|
627
|
+
e('🪀', 'yoyo'),
|
|
628
|
+
e('🏓', 'ping pong'),
|
|
629
|
+
e('🏸', 'badminton'),
|
|
630
|
+
e('🏒', 'ice hockey'),
|
|
631
|
+
e('🏑', 'field hockey'),
|
|
632
|
+
e('🥍', 'lacrosse'),
|
|
633
|
+
e('🏏', 'cricket'),
|
|
634
|
+
e('🪃', 'boomerang'),
|
|
635
|
+
e('🥅', 'goal net'),
|
|
636
|
+
e('⛳', 'flag in hole', 'golf'),
|
|
637
|
+
e('🪁', 'kite'),
|
|
638
|
+
e('🏹', 'bow and arrow'),
|
|
639
|
+
e('🎣', 'fishing'),
|
|
640
|
+
e('🤿', 'diving mask'),
|
|
641
|
+
e('🥊', 'boxing glove'),
|
|
642
|
+
e('🥋', 'martial arts'),
|
|
643
|
+
e('🎽', 'running shirt'),
|
|
644
|
+
e('🛹', 'skateboard'),
|
|
645
|
+
e('🛼', 'roller skate'),
|
|
646
|
+
e('🛷', 'sled'),
|
|
647
|
+
e('⛸️', 'ice skate'),
|
|
648
|
+
e('🥌', 'curling stone'),
|
|
649
|
+
e('🎿', 'skis'),
|
|
650
|
+
e('⛷️', 'skier'),
|
|
651
|
+
e('🏂', 'snowboarder'),
|
|
652
|
+
e('🪂', 'parachute'),
|
|
653
|
+
e('🏋️', 'weight lifting'),
|
|
654
|
+
e('🤼', 'wrestling'),
|
|
655
|
+
e('🤸', 'cartwheel'),
|
|
656
|
+
e('⛹️', 'bouncing ball'),
|
|
657
|
+
e('🤺', 'fencing'),
|
|
658
|
+
e('🤾', 'handball'),
|
|
659
|
+
e('🏌️', 'golfing'),
|
|
660
|
+
e('🏇', 'horse racing'),
|
|
661
|
+
e('🧘', 'meditation', 'yoga'),
|
|
662
|
+
e('🏄', 'surfing'),
|
|
663
|
+
e('🏊', 'swimming'),
|
|
664
|
+
e('🤽', 'water polo'),
|
|
665
|
+
e('🚣', 'rowing'),
|
|
666
|
+
e('🧗', 'climbing'),
|
|
667
|
+
e('🚵', 'mountain biker'),
|
|
668
|
+
e('🚴', 'biker'),
|
|
669
|
+
e('🏆', 'trophy'),
|
|
670
|
+
e('🥇', 'gold medal'),
|
|
671
|
+
e('🥈', 'silver medal'),
|
|
672
|
+
e('🥉', 'bronze medal'),
|
|
673
|
+
e('🏅', 'sports medal'),
|
|
674
|
+
e('🎖️', 'military medal'),
|
|
675
|
+
e('🏵️', 'rosette'),
|
|
676
|
+
e('🎗️', 'reminder ribbon'),
|
|
677
|
+
e('🎫', 'ticket'),
|
|
678
|
+
e('🎟️', 'admission tickets'),
|
|
679
|
+
e('🎪', 'circus tent'),
|
|
680
|
+
e('🎭', 'theatre masks'),
|
|
681
|
+
e('🎨', 'art palette'),
|
|
682
|
+
e('🎬', 'clapper board'),
|
|
683
|
+
e('🎤', 'microphone'),
|
|
684
|
+
e('🎧', 'headphone'),
|
|
685
|
+
e('🎼', 'musical score'),
|
|
686
|
+
e('🎹', 'piano'),
|
|
687
|
+
e('🥁', 'drum'),
|
|
688
|
+
e('🪘', 'long drum'),
|
|
689
|
+
e('🎷', 'saxophone'),
|
|
690
|
+
e('🎺', 'trumpet'),
|
|
691
|
+
e('🎸', 'guitar'),
|
|
692
|
+
e('🪕', 'banjo'),
|
|
693
|
+
e('🎻', 'violin'),
|
|
694
|
+
e('🪗', 'accordion'),
|
|
695
|
+
e('🎲', 'game die'),
|
|
696
|
+
e('♟️', 'chess pawn'),
|
|
697
|
+
e('🎯', 'bullseye', 'dart'),
|
|
698
|
+
e('🎳', 'bowling'),
|
|
699
|
+
e('🎮', 'video game'),
|
|
700
|
+
e('🎰', 'slot machine'),
|
|
701
|
+
e('🧩', 'jigsaw'),
|
|
702
|
+
],
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
id: 'objects',
|
|
706
|
+
label: 'Objects',
|
|
707
|
+
icon: '💡',
|
|
708
|
+
emojis: [
|
|
709
|
+
e('💡', 'light bulb', 'idea'),
|
|
710
|
+
e('🔦', 'flashlight'),
|
|
711
|
+
e('🕯️', 'candle'),
|
|
712
|
+
e('🪔', 'diya lamp'),
|
|
713
|
+
e('🧯', 'fire extinguisher'),
|
|
714
|
+
e('🛢️', 'oil drum'),
|
|
715
|
+
e('💸', 'money wings'),
|
|
716
|
+
e('💵', 'dollar'),
|
|
717
|
+
e('💴', 'yen banknote'),
|
|
718
|
+
e('💶', 'euro banknote'),
|
|
719
|
+
e('💷', 'pound banknote'),
|
|
720
|
+
e('💰', 'money bag'),
|
|
721
|
+
e('💳', 'credit card'),
|
|
722
|
+
e('💎', 'gem'),
|
|
723
|
+
e('⚖️', 'balance scale'),
|
|
724
|
+
e('🪜', 'ladder'),
|
|
725
|
+
e('🧰', 'toolbox'),
|
|
726
|
+
e('🔧', 'wrench'),
|
|
727
|
+
e('🪛', 'screwdriver'),
|
|
728
|
+
e('🔨', 'hammer'),
|
|
729
|
+
e('⚒️', 'hammer and pick'),
|
|
730
|
+
e('🛠️', 'hammer and wrench'),
|
|
731
|
+
e('⛏️', 'pick'),
|
|
732
|
+
e('🪚', 'saw'),
|
|
733
|
+
e('🔩', 'nut and bolt'),
|
|
734
|
+
e('⚙️', 'gear'),
|
|
735
|
+
e('🧱', 'brick'),
|
|
736
|
+
e('⛓️', 'chains'),
|
|
737
|
+
e('🧲', 'magnet'),
|
|
738
|
+
e('🔫', 'water pistol'),
|
|
739
|
+
e('💣', 'bomb'),
|
|
740
|
+
e('🧨', 'firecracker'),
|
|
741
|
+
e('🪓', 'axe'),
|
|
742
|
+
e('🔪', 'kitchen knife'),
|
|
743
|
+
e('🗡️', 'dagger'),
|
|
744
|
+
e('⚔️', 'crossed swords'),
|
|
745
|
+
e('🛡️', 'shield'),
|
|
746
|
+
e('🚬', 'cigarette'),
|
|
747
|
+
e('⚰️', 'coffin'),
|
|
748
|
+
e('🪦', 'headstone'),
|
|
749
|
+
e('⚱️', 'urn'),
|
|
750
|
+
e('🏺', 'amphora'),
|
|
751
|
+
e('🔮', 'crystal ball'),
|
|
752
|
+
e('📿', 'prayer beads'),
|
|
753
|
+
e('🧿', 'nazar amulet'),
|
|
754
|
+
e('💈', 'barber pole'),
|
|
755
|
+
e('⚗️', 'alembic'),
|
|
756
|
+
e('🔭', 'telescope'),
|
|
757
|
+
e('🔬', 'microscope'),
|
|
758
|
+
e('🕳️', 'hole'),
|
|
759
|
+
e('🩹', 'bandage'),
|
|
760
|
+
e('🩺', 'stethoscope'),
|
|
761
|
+
e('💊', 'pill'),
|
|
762
|
+
e('💉', 'syringe'),
|
|
763
|
+
e('🩸', 'blood drop'),
|
|
764
|
+
e('🧬', 'dna'),
|
|
765
|
+
e('🦠', 'microbe'),
|
|
766
|
+
e('🧫', 'petri dish'),
|
|
767
|
+
e('🧪', 'test tube'),
|
|
768
|
+
e('🌡️', 'thermometer'),
|
|
769
|
+
e('🧹', 'broom'),
|
|
770
|
+
e('🪠', 'plunger'),
|
|
771
|
+
e('🧺', 'basket'),
|
|
772
|
+
e('🧻', 'roll of paper'),
|
|
773
|
+
e('🚽', 'toilet'),
|
|
774
|
+
e('🚰', 'tap water'),
|
|
775
|
+
e('🚿', 'shower'),
|
|
776
|
+
e('🛁', 'bathtub'),
|
|
777
|
+
e('🛀', 'person bathing'),
|
|
778
|
+
e('🧼', 'soap'),
|
|
779
|
+
e('🪥', 'toothbrush'),
|
|
780
|
+
e('🪒', 'razor'),
|
|
781
|
+
e('🧽', 'sponge'),
|
|
782
|
+
e('🪣', 'bucket'),
|
|
783
|
+
e('🧴', 'lotion'),
|
|
784
|
+
e('🛎️', 'bellhop bell'),
|
|
785
|
+
e('🔑', 'key'),
|
|
786
|
+
e('🗝️', 'old key'),
|
|
787
|
+
e('🚪', 'door'),
|
|
788
|
+
e('🪑', 'chair'),
|
|
789
|
+
e('🛋️', 'couch'),
|
|
790
|
+
e('🛏️', 'bed'),
|
|
791
|
+
e('🛌', 'person in bed'),
|
|
792
|
+
e('🧸', 'teddy bear'),
|
|
793
|
+
e('🖼️', 'framed picture'),
|
|
794
|
+
e('🪞', 'mirror'),
|
|
795
|
+
e('🪟', 'window'),
|
|
796
|
+
e('🛍️', 'shopping bags'),
|
|
797
|
+
e('🛒', 'cart'),
|
|
798
|
+
e('🎁', 'gift'),
|
|
799
|
+
e('🎀', 'ribbon'),
|
|
800
|
+
e('🎊', 'confetti ball'),
|
|
801
|
+
e('🎉', 'party popper', 'celebration'),
|
|
802
|
+
e('🎈', 'balloon'),
|
|
803
|
+
e('🪄', 'magic wand'),
|
|
804
|
+
e('📱', 'mobile'),
|
|
805
|
+
e('📲', 'incoming phone'),
|
|
806
|
+
e('☎️', 'phone'),
|
|
807
|
+
e('📞', 'phone receiver'),
|
|
808
|
+
e('📟', 'pager'),
|
|
809
|
+
e('📠', 'fax'),
|
|
810
|
+
e('🔋', 'battery'),
|
|
811
|
+
e('🔌', 'plug'),
|
|
812
|
+
e('💻', 'laptop'),
|
|
813
|
+
e('🖥️', 'desktop'),
|
|
814
|
+
e('🖨️', 'printer'),
|
|
815
|
+
e('⌨️', 'keyboard'),
|
|
816
|
+
e('🖱️', 'mouse'),
|
|
817
|
+
e('🖲️', 'trackball'),
|
|
818
|
+
e('💽', 'minidisc'),
|
|
819
|
+
e('💾', 'floppy', 'save'),
|
|
820
|
+
e('💿', 'cd'),
|
|
821
|
+
e('📀', 'dvd'),
|
|
822
|
+
e('🧮', 'abacus'),
|
|
823
|
+
e('🎥', 'movie camera'),
|
|
824
|
+
e('🎞️', 'film frames'),
|
|
825
|
+
e('📽️', 'film projector'),
|
|
826
|
+
e('📺', 'television'),
|
|
827
|
+
e('📷', 'camera'),
|
|
828
|
+
e('📸', 'camera flash'),
|
|
829
|
+
e('📹', 'video camera'),
|
|
830
|
+
e('📼', 'videocassette'),
|
|
831
|
+
e('🔍', 'magnifying left'),
|
|
832
|
+
e('🔎', 'magnifying right'),
|
|
833
|
+
e('🕰️', 'mantelpiece clock'),
|
|
834
|
+
e('⏰', 'alarm clock'),
|
|
835
|
+
e('⏱️', 'stopwatch'),
|
|
836
|
+
e('⏲️', 'timer'),
|
|
837
|
+
e('⏳', 'hourglass flowing'),
|
|
838
|
+
e('⌛', 'hourglass done'),
|
|
839
|
+
e('📡', 'satellite antenna'),
|
|
840
|
+
e('📚', 'books'),
|
|
841
|
+
e('📖', 'open book'),
|
|
842
|
+
e('🔖', 'bookmark'),
|
|
843
|
+
e('🏷️', 'tag'),
|
|
844
|
+
e('📰', 'newspaper'),
|
|
845
|
+
e('🗞️', 'rolled newspaper'),
|
|
846
|
+
e('📄', 'page'),
|
|
847
|
+
e('📃', 'page curl'),
|
|
848
|
+
e('📑', 'bookmark tabs'),
|
|
849
|
+
e('📜', 'scroll'),
|
|
850
|
+
e('📋', 'clipboard'),
|
|
851
|
+
e('📅', 'calendar'),
|
|
852
|
+
e('📆', 'tear off calendar'),
|
|
853
|
+
e('🗓️', 'spiral calendar'),
|
|
854
|
+
e('📇', 'card index'),
|
|
855
|
+
e('🗃️', 'card file box'),
|
|
856
|
+
e('🗳️', 'ballot box'),
|
|
857
|
+
e('🗄️', 'file cabinet'),
|
|
858
|
+
e('📂', 'open folder'),
|
|
859
|
+
e('📁', 'folder'),
|
|
860
|
+
e('📊', 'bar chart'),
|
|
861
|
+
e('📈', 'chart up'),
|
|
862
|
+
e('📉', 'chart down'),
|
|
863
|
+
e('📌', 'pushpin'),
|
|
864
|
+
e('📍', 'round pushpin'),
|
|
865
|
+
e('📎', 'paperclip'),
|
|
866
|
+
e('🖇️', 'linked paperclips'),
|
|
867
|
+
e('📏', 'straight ruler'),
|
|
868
|
+
e('📐', 'triangular ruler'),
|
|
869
|
+
e('✂️', 'scissors'),
|
|
870
|
+
e('🖊️', 'pen'),
|
|
871
|
+
e('🖋️', 'fountain pen'),
|
|
872
|
+
e('✒️', 'black nib'),
|
|
873
|
+
e('🖌️', 'paintbrush'),
|
|
874
|
+
e('🖍️', 'crayon'),
|
|
875
|
+
e('📝', 'memo', 'note'),
|
|
876
|
+
e('✏️', 'pencil'),
|
|
877
|
+
e('🔏', 'locked with pen'),
|
|
878
|
+
e('🔐', 'locked with key'),
|
|
879
|
+
e('🔒', 'locked'),
|
|
880
|
+
e('🔓', 'unlocked'),
|
|
881
|
+
e('🧿', 'amulet'),
|
|
882
|
+
e('🪬', 'hamsa'),
|
|
883
|
+
],
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
id: 'symbols',
|
|
887
|
+
label: 'Symbols',
|
|
888
|
+
icon: '❤️',
|
|
889
|
+
emojis: [
|
|
890
|
+
e('❤️', 'red heart'),
|
|
891
|
+
e('🧡', 'orange heart'),
|
|
892
|
+
e('💛', 'yellow heart'),
|
|
893
|
+
e('💚', 'green heart'),
|
|
894
|
+
e('💙', 'blue heart'),
|
|
895
|
+
e('💜', 'purple heart'),
|
|
896
|
+
e('🖤', 'black heart'),
|
|
897
|
+
e('🤍', 'white heart'),
|
|
898
|
+
e('🤎', 'brown heart'),
|
|
899
|
+
e('💔', 'broken heart'),
|
|
900
|
+
e('❣️', 'heart exclamation'),
|
|
901
|
+
e('💕', 'two hearts'),
|
|
902
|
+
e('💞', 'revolving hearts'),
|
|
903
|
+
e('💓', 'beating heart'),
|
|
904
|
+
e('💗', 'growing heart'),
|
|
905
|
+
e('💖', 'sparkling heart'),
|
|
906
|
+
e('💘', 'heart arrow'),
|
|
907
|
+
e('💝', 'heart with ribbon'),
|
|
908
|
+
e('💟', 'heart decoration'),
|
|
909
|
+
e('☮️', 'peace'),
|
|
910
|
+
e('✝️', 'cross'),
|
|
911
|
+
e('☪️', 'star and crescent'),
|
|
912
|
+
e('🕉️', 'om'),
|
|
913
|
+
e('☸️', 'wheel of dharma'),
|
|
914
|
+
e('✡️', 'star of david'),
|
|
915
|
+
e('🔯', 'six pointed star'),
|
|
916
|
+
e('🕎', 'menorah'),
|
|
917
|
+
e('☯️', 'yin yang'),
|
|
918
|
+
e('☦️', 'orthodox cross'),
|
|
919
|
+
e('🛐', 'place of worship'),
|
|
920
|
+
e('⛎', 'ophiuchus'),
|
|
921
|
+
e('♈', 'aries'),
|
|
922
|
+
e('♉', 'taurus'),
|
|
923
|
+
e('♊', 'gemini'),
|
|
924
|
+
e('♋', 'cancer'),
|
|
925
|
+
e('♌', 'leo'),
|
|
926
|
+
e('♍', 'virgo'),
|
|
927
|
+
e('♎', 'libra'),
|
|
928
|
+
e('♏', 'scorpio'),
|
|
929
|
+
e('♐', 'sagittarius'),
|
|
930
|
+
e('♑', 'capricorn'),
|
|
931
|
+
e('♒', 'aquarius'),
|
|
932
|
+
e('♓', 'pisces'),
|
|
933
|
+
e('🆔', 'id'),
|
|
934
|
+
e('⚛️', 'atom'),
|
|
935
|
+
e('🉑', 'accept'),
|
|
936
|
+
e('☢️', 'radioactive'),
|
|
937
|
+
e('☣️', 'biohazard'),
|
|
938
|
+
e('📴', 'phone off'),
|
|
939
|
+
e('📳', 'vibration'),
|
|
940
|
+
e('🈶', 'not free'),
|
|
941
|
+
e('🈚', 'free'),
|
|
942
|
+
e('🈸', 'application'),
|
|
943
|
+
e('🈺', 'open for business'),
|
|
944
|
+
e('🈷️', 'monthly amount'),
|
|
945
|
+
e('✴️', 'eight pointed star'),
|
|
946
|
+
e('🆚', 'vs'),
|
|
947
|
+
e('💮', 'white flower'),
|
|
948
|
+
e('🉐', 'bargain'),
|
|
949
|
+
e('㊙️', 'secret'),
|
|
950
|
+
e('㊗️', 'congratulations'),
|
|
951
|
+
e('🈴', 'passing grade'),
|
|
952
|
+
e('🈵', 'no vacancy'),
|
|
953
|
+
e('🈹', 'discount'),
|
|
954
|
+
e('🈲', 'prohibited'),
|
|
955
|
+
e('🅰️', 'a button'),
|
|
956
|
+
e('🅱️', 'b button'),
|
|
957
|
+
e('🆎', 'ab button'),
|
|
958
|
+
e('🆑', 'cl button'),
|
|
959
|
+
e('🅾️', 'o button'),
|
|
960
|
+
e('🆘', 'sos'),
|
|
961
|
+
e('❌', 'cross mark'),
|
|
962
|
+
e('⭕', 'circle'),
|
|
963
|
+
e('🛑', 'stop sign'),
|
|
964
|
+
e('⛔', 'no entry'),
|
|
965
|
+
e('📛', 'name badge'),
|
|
966
|
+
e('🚫', 'prohibited sign'),
|
|
967
|
+
e('💯', '100', 'hundred'),
|
|
968
|
+
e('💢', 'anger'),
|
|
969
|
+
e('♨️', 'hot springs'),
|
|
970
|
+
e('🚷', 'no pedestrians'),
|
|
971
|
+
e('🚯', 'no littering'),
|
|
972
|
+
e('🚳', 'no bicycles'),
|
|
973
|
+
e('🚱', 'non potable'),
|
|
974
|
+
e('🔞', 'no minors'),
|
|
975
|
+
e('📵', 'no phones'),
|
|
976
|
+
e('🚭', 'no smoking'),
|
|
977
|
+
e('❗', 'exclamation'),
|
|
978
|
+
e('❕', 'white exclamation'),
|
|
979
|
+
e('❓', 'question'),
|
|
980
|
+
e('❔', 'white question'),
|
|
981
|
+
e('‼️', 'double exclamation'),
|
|
982
|
+
e('⁉️', 'exclamation question'),
|
|
983
|
+
e('🔅', 'dim'),
|
|
984
|
+
e('🔆', 'bright'),
|
|
985
|
+
e('〽️', 'part alternation'),
|
|
986
|
+
e('⚠️', 'warning'),
|
|
987
|
+
e('🚸', 'children crossing'),
|
|
988
|
+
e('🔱', 'trident'),
|
|
989
|
+
e('⚜️', 'fleur de lis'),
|
|
990
|
+
e('🔰', 'beginner'),
|
|
991
|
+
e('♻️', 'recycle'),
|
|
992
|
+
e('✅', 'check mark'),
|
|
993
|
+
e('🈯', 'reserved'),
|
|
994
|
+
e('💹', 'chart with yen'),
|
|
995
|
+
e('❇️', 'sparkle'),
|
|
996
|
+
e('✳️', 'eight spoked asterisk'),
|
|
997
|
+
e('❎', 'cross box'),
|
|
998
|
+
e('🌐', 'globe meridians'),
|
|
999
|
+
e('💠', 'diamond'),
|
|
1000
|
+
e('Ⓜ️', 'circled m'),
|
|
1001
|
+
e('🌀', 'cyclone'),
|
|
1002
|
+
e('💤', 'zzz', 'sleep'),
|
|
1003
|
+
e('🏧', 'atm'),
|
|
1004
|
+
e('🚾', 'water closet'),
|
|
1005
|
+
e('♿', 'wheelchair'),
|
|
1006
|
+
e('🅿️', 'parking'),
|
|
1007
|
+
e('🛗', 'elevator'),
|
|
1008
|
+
e('🈳', 'vacancy'),
|
|
1009
|
+
e('🈂️', 'service'),
|
|
1010
|
+
e('🛂', 'passport control'),
|
|
1011
|
+
e('🛃', 'customs'),
|
|
1012
|
+
e('🛄', 'baggage claim'),
|
|
1013
|
+
e('🛅', 'left luggage'),
|
|
1014
|
+
e('🚹', 'mens'),
|
|
1015
|
+
e('🚺', 'womens'),
|
|
1016
|
+
e('🚼', 'baby symbol'),
|
|
1017
|
+
e('🚻', 'restroom'),
|
|
1018
|
+
e('🚮', 'litter bin'),
|
|
1019
|
+
e('🎦', 'cinema'),
|
|
1020
|
+
e('📶', 'antenna bars'),
|
|
1021
|
+
e('🈁', 'here'),
|
|
1022
|
+
e('🔣', 'input symbols'),
|
|
1023
|
+
e('ℹ️', 'info'),
|
|
1024
|
+
e('🔤', 'input latin'),
|
|
1025
|
+
e('🔡', 'input lowercase'),
|
|
1026
|
+
e('🔠', 'input uppercase'),
|
|
1027
|
+
e('🆖', 'ng'),
|
|
1028
|
+
e('🆗', 'ok'),
|
|
1029
|
+
e('🆙', 'up'),
|
|
1030
|
+
e('🆒', 'cool'),
|
|
1031
|
+
e('🆕', 'new'),
|
|
1032
|
+
e('🆓', 'free'),
|
|
1033
|
+
e('0️⃣', 'keycap 0'),
|
|
1034
|
+
e('1️⃣', 'keycap 1'),
|
|
1035
|
+
e('2️⃣', 'keycap 2'),
|
|
1036
|
+
e('3️⃣', 'keycap 3'),
|
|
1037
|
+
e('4️⃣', 'keycap 4'),
|
|
1038
|
+
e('5️⃣', 'keycap 5'),
|
|
1039
|
+
e('6️⃣', 'keycap 6'),
|
|
1040
|
+
e('7️⃣', 'keycap 7'),
|
|
1041
|
+
e('8️⃣', 'keycap 8'),
|
|
1042
|
+
e('9️⃣', 'keycap 9'),
|
|
1043
|
+
e('🔟', 'keycap 10'),
|
|
1044
|
+
e('🔢', 'input numbers'),
|
|
1045
|
+
e('#️⃣', 'keycap hash'),
|
|
1046
|
+
e('*️⃣', 'keycap asterisk'),
|
|
1047
|
+
e('▶️', 'play'),
|
|
1048
|
+
e('⏸️', 'pause'),
|
|
1049
|
+
e('⏯️', 'play or pause'),
|
|
1050
|
+
e('⏹️', 'stop button'),
|
|
1051
|
+
e('⏺️', 'record'),
|
|
1052
|
+
e('⏭️', 'next track'),
|
|
1053
|
+
e('⏮️', 'last track'),
|
|
1054
|
+
e('⏩', 'fast forward'),
|
|
1055
|
+
e('⏪', 'fast reverse'),
|
|
1056
|
+
e('⏫', 'fast up'),
|
|
1057
|
+
e('⏬', 'fast down'),
|
|
1058
|
+
e('◀️', 'reverse'),
|
|
1059
|
+
e('🔼', 'up button'),
|
|
1060
|
+
e('🔽', 'down button'),
|
|
1061
|
+
e('➡️', 'right arrow'),
|
|
1062
|
+
e('⬅️', 'left arrow'),
|
|
1063
|
+
e('⬆️', 'up arrow'),
|
|
1064
|
+
e('⬇️', 'down arrow'),
|
|
1065
|
+
e('↗️', 'up right arrow'),
|
|
1066
|
+
e('↘️', 'down right arrow'),
|
|
1067
|
+
e('↙️', 'down left arrow'),
|
|
1068
|
+
e('↖️', 'up left arrow'),
|
|
1069
|
+
e('↕️', 'up down arrow'),
|
|
1070
|
+
e('↔️', 'left right arrow'),
|
|
1071
|
+
e('↪️', 'right arrow curving'),
|
|
1072
|
+
e('↩️', 'left arrow curving'),
|
|
1073
|
+
e('⤴️', 'arrow up curve'),
|
|
1074
|
+
e('⤵️', 'arrow down curve'),
|
|
1075
|
+
e('🔀', 'shuffle'),
|
|
1076
|
+
e('🔁', 'repeat'),
|
|
1077
|
+
e('🔂', 'repeat single'),
|
|
1078
|
+
e('🔄', 'arrows ccw'),
|
|
1079
|
+
e('🔃', 'arrows cw'),
|
|
1080
|
+
e('🎵', 'note'),
|
|
1081
|
+
e('🎶', 'notes'),
|
|
1082
|
+
e('➕', 'plus'),
|
|
1083
|
+
e('➖', 'minus'),
|
|
1084
|
+
e('➗', 'divide'),
|
|
1085
|
+
e('✖️', 'multiply'),
|
|
1086
|
+
e('🟰', 'equals'),
|
|
1087
|
+
e('♾️', 'infinity'),
|
|
1088
|
+
e('💲', 'dollar'),
|
|
1089
|
+
e('💱', 'currency exchange'),
|
|
1090
|
+
e('™️', 'tm'),
|
|
1091
|
+
e('©️', 'copyright'),
|
|
1092
|
+
e('®️', 'registered'),
|
|
1093
|
+
e('〰️', 'wavy'),
|
|
1094
|
+
e('➰', 'curly loop'),
|
|
1095
|
+
e('➿', 'double curly loop'),
|
|
1096
|
+
e('🔚', 'end'),
|
|
1097
|
+
e('🔙', 'back'),
|
|
1098
|
+
e('🔛', 'on'),
|
|
1099
|
+
e('🔝', 'top'),
|
|
1100
|
+
e('🔜', 'soon'),
|
|
1101
|
+
e('✔️', 'check'),
|
|
1102
|
+
e('☑️', 'ballot box check'),
|
|
1103
|
+
e('🔘', 'radio button'),
|
|
1104
|
+
e('🔴', 'red circle'),
|
|
1105
|
+
e('🟠', 'orange circle'),
|
|
1106
|
+
e('🟡', 'yellow circle'),
|
|
1107
|
+
e('🟢', 'green circle'),
|
|
1108
|
+
e('🔵', 'blue circle'),
|
|
1109
|
+
e('🟣', 'purple circle'),
|
|
1110
|
+
e('🟤', 'brown circle'),
|
|
1111
|
+
e('⚫', 'black circle'),
|
|
1112
|
+
e('⚪', 'white circle'),
|
|
1113
|
+
e('🟥', 'red square'),
|
|
1114
|
+
e('🟧', 'orange square'),
|
|
1115
|
+
e('🟨', 'yellow square'),
|
|
1116
|
+
e('🟩', 'green square'),
|
|
1117
|
+
e('🟦', 'blue square'),
|
|
1118
|
+
e('🟪', 'purple square'),
|
|
1119
|
+
e('🟫', 'brown square'),
|
|
1120
|
+
e('⬛', 'black square'),
|
|
1121
|
+
e('⬜', 'white square'),
|
|
1122
|
+
e('◼️', 'medium black square'),
|
|
1123
|
+
e('◻️', 'medium white square'),
|
|
1124
|
+
e('◾', 'small black square'),
|
|
1125
|
+
e('◽', 'small white square'),
|
|
1126
|
+
e('▪️', 'tiny black square'),
|
|
1127
|
+
e('▫️', 'tiny white square'),
|
|
1128
|
+
e('🔶', 'large orange diamond'),
|
|
1129
|
+
e('🔷', 'large blue diamond'),
|
|
1130
|
+
e('🔸', 'small orange diamond'),
|
|
1131
|
+
e('🔹', 'small blue diamond'),
|
|
1132
|
+
e('🔺', 'red triangle up'),
|
|
1133
|
+
e('🔻', 'red triangle down'),
|
|
1134
|
+
e('🔳', 'white square button'),
|
|
1135
|
+
e('🔲', 'black square button'),
|
|
1136
|
+
],
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
id: 'flags',
|
|
1140
|
+
label: 'Flags',
|
|
1141
|
+
icon: '🏳️',
|
|
1142
|
+
emojis: [
|
|
1143
|
+
e('🏁', 'checkered flag'),
|
|
1144
|
+
e('🚩', 'triangular flag'),
|
|
1145
|
+
e('🎌', 'crossed flags'),
|
|
1146
|
+
e('🏴', 'black flag'),
|
|
1147
|
+
e('🏳️', 'white flag'),
|
|
1148
|
+
e('🏳️🌈', 'rainbow flag'),
|
|
1149
|
+
e('🏳️⚧️', 'transgender flag'),
|
|
1150
|
+
e('🏴☠️', 'pirate flag'),
|
|
1151
|
+
e('🇺🇸', 'united states', 'us', 'usa'),
|
|
1152
|
+
e('🇨🇦', 'canada'),
|
|
1153
|
+
e('🇲🇽', 'mexico'),
|
|
1154
|
+
e('🇬🇧', 'united kingdom', 'uk'),
|
|
1155
|
+
e('🇮🇪', 'ireland'),
|
|
1156
|
+
e('🇫🇷', 'france'),
|
|
1157
|
+
e('🇩🇪', 'germany'),
|
|
1158
|
+
e('🇮🇹', 'italy'),
|
|
1159
|
+
e('🇪🇸', 'spain'),
|
|
1160
|
+
e('🇵🇹', 'portugal'),
|
|
1161
|
+
e('🇳🇱', 'netherlands'),
|
|
1162
|
+
e('🇧🇪', 'belgium'),
|
|
1163
|
+
e('🇨🇭', 'switzerland'),
|
|
1164
|
+
e('🇦🇹', 'austria'),
|
|
1165
|
+
e('🇸🇪', 'sweden'),
|
|
1166
|
+
e('🇳🇴', 'norway'),
|
|
1167
|
+
e('🇩🇰', 'denmark'),
|
|
1168
|
+
e('🇫🇮', 'finland'),
|
|
1169
|
+
e('🇮🇸', 'iceland'),
|
|
1170
|
+
e('🇵🇱', 'poland'),
|
|
1171
|
+
e('🇨🇿', 'czech republic'),
|
|
1172
|
+
e('🇸🇰', 'slovakia'),
|
|
1173
|
+
e('🇭🇺', 'hungary'),
|
|
1174
|
+
e('🇷🇴', 'romania'),
|
|
1175
|
+
e('🇧🇬', 'bulgaria'),
|
|
1176
|
+
e('🇬🇷', 'greece'),
|
|
1177
|
+
e('🇹🇷', 'turkey'),
|
|
1178
|
+
e('🇷🇺', 'russia'),
|
|
1179
|
+
e('🇺🇦', 'ukraine'),
|
|
1180
|
+
e('🇨🇳', 'china'),
|
|
1181
|
+
e('🇯🇵', 'japan'),
|
|
1182
|
+
e('🇰🇷', 'south korea', 'korea'),
|
|
1183
|
+
e('🇮🇳', 'india'),
|
|
1184
|
+
e('🇵🇰', 'pakistan'),
|
|
1185
|
+
e('🇧🇩', 'bangladesh'),
|
|
1186
|
+
e('🇹🇭', 'thailand'),
|
|
1187
|
+
e('🇻🇳', 'vietnam'),
|
|
1188
|
+
e('🇮🇩', 'indonesia'),
|
|
1189
|
+
e('🇵🇭', 'philippines'),
|
|
1190
|
+
e('🇲🇾', 'malaysia'),
|
|
1191
|
+
e('🇸🇬', 'singapore'),
|
|
1192
|
+
e('🇦🇺', 'australia'),
|
|
1193
|
+
e('🇳🇿', 'new zealand'),
|
|
1194
|
+
e('🇧🇷', 'brazil'),
|
|
1195
|
+
e('🇦🇷', 'argentina'),
|
|
1196
|
+
e('🇨🇱', 'chile'),
|
|
1197
|
+
e('🇨🇴', 'colombia'),
|
|
1198
|
+
e('🇵🇪', 'peru'),
|
|
1199
|
+
e('🇻🇪', 'venezuela'),
|
|
1200
|
+
e('🇿🇦', 'south africa'),
|
|
1201
|
+
e('🇪🇬', 'egypt'),
|
|
1202
|
+
e('🇲🇦', 'morocco'),
|
|
1203
|
+
e('🇰🇪', 'kenya'),
|
|
1204
|
+
e('🇳🇬', 'nigeria'),
|
|
1205
|
+
e('🇸🇦', 'saudi arabia'),
|
|
1206
|
+
e('🇦🇪', 'uae'),
|
|
1207
|
+
e('🇮🇱', 'israel'),
|
|
1208
|
+
e('🇮🇷', 'iran'),
|
|
1209
|
+
e('🇮🇶', 'iraq'),
|
|
1210
|
+
e('🇸🇾', 'syria'),
|
|
1211
|
+
e('🇱🇧', 'lebanon'),
|
|
1212
|
+
e('🇯🇴', 'jordan'),
|
|
1213
|
+
e('🇪🇺', 'european union', 'eu'),
|
|
1214
|
+
e('🇺🇳', 'united nations', 'un'),
|
|
1215
|
+
],
|
|
1216
|
+
},
|
|
1217
|
+
];
|
|
1218
|
+
|
|
1219
|
+
/**
|
|
1220
|
+
* Flat list of every emoji across all categories — used as the search
|
|
1221
|
+
* corpus and to expose a `getEmojiByChar` lookup.
|
|
1222
|
+
*/
|
|
1223
|
+
export const ALL_EMOJIS: EmojiEntry[] = EMOJI_CATEGORIES.flatMap((c) => c.emojis);
|
|
1224
|
+
|
|
1225
|
+
/** Search for emoji whose name or keywords contain the query (case-insensitive). */
|
|
1226
|
+
export function searchEmojis(query: string, limit = 80): EmojiEntry[] {
|
|
1227
|
+
const q = query.trim().toLowerCase();
|
|
1228
|
+
if (!q) return [];
|
|
1229
|
+
const out: EmojiEntry[] = [];
|
|
1230
|
+
for (const entry of ALL_EMOJIS) {
|
|
1231
|
+
if (entry.keywords.includes(q)) {
|
|
1232
|
+
out.push(entry);
|
|
1233
|
+
if (out.length >= limit) break;
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
return out;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
// ── Unified picker entries (emoji + FontAwesome icons) ─────────────
|
|
1240
|
+
|
|
1241
|
+
import { ICONS } from '@bendyline/squisq/icons';
|
|
1242
|
+
import { canonicalIconToken } from '@bendyline/squisq/icons';
|
|
1243
|
+
import type { IconEntry, IconFamily } from '@bendyline/squisq/icons';
|
|
1244
|
+
|
|
1245
|
+
/**
|
|
1246
|
+
* Discriminated picker entry. The picker UI dispatches on `kind` to
|
|
1247
|
+
* render either an emoji glyph or a FontAwesome `<i>` element. The
|
|
1248
|
+
* Toolbar consumes the selected entry to insert into the editor.
|
|
1249
|
+
*/
|
|
1250
|
+
export type PickerEntry =
|
|
1251
|
+
| { kind: 'emoji'; char: string; name: string; keywords: string }
|
|
1252
|
+
| {
|
|
1253
|
+
kind: 'icon';
|
|
1254
|
+
family: IconFamily;
|
|
1255
|
+
name: string;
|
|
1256
|
+
label: string;
|
|
1257
|
+
keywords: string;
|
|
1258
|
+
/** Canonical token used in the markdown source (bare or qualified). */
|
|
1259
|
+
token: string;
|
|
1260
|
+
};
|
|
1261
|
+
|
|
1262
|
+
export interface PickerCategory {
|
|
1263
|
+
id: string;
|
|
1264
|
+
label: string;
|
|
1265
|
+
/** What to render on the category tab. Emoji glyph or FA class. */
|
|
1266
|
+
tab: { kind: 'emoji'; char: string } | { kind: 'icon'; family: IconFamily; name: string };
|
|
1267
|
+
entries: PickerEntry[];
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
function buildIconCategory(family: IconFamily, label: string): PickerCategory {
|
|
1271
|
+
// Pick a representative icon for the tab — `github` for brands, `house` for solid,
|
|
1272
|
+
// `face-smile` for regular. We fall back to the family's first entry if the
|
|
1273
|
+
// representative is missing in a future FA version.
|
|
1274
|
+
const repName = family === 'brands' ? 'github' : family === 'solid' ? 'house' : 'face-smile';
|
|
1275
|
+
const familyIcons = ICONS.filter((i) => i.family === family);
|
|
1276
|
+
const rep = familyIcons.find((i) => i.name === repName) ?? familyIcons[0];
|
|
1277
|
+
const tabIcon = rep
|
|
1278
|
+
? { kind: 'icon' as const, family, name: rep.name }
|
|
1279
|
+
: { kind: 'emoji' as const, char: '◆' };
|
|
1280
|
+
return {
|
|
1281
|
+
id: `fa-${family}`,
|
|
1282
|
+
label,
|
|
1283
|
+
tab: tabIcon,
|
|
1284
|
+
entries: familyIcons.map(
|
|
1285
|
+
(i: IconEntry): PickerEntry => ({
|
|
1286
|
+
kind: 'icon',
|
|
1287
|
+
family: i.family,
|
|
1288
|
+
name: i.name,
|
|
1289
|
+
label: i.label,
|
|
1290
|
+
keywords: i.keywords,
|
|
1291
|
+
token: canonicalIconToken(i),
|
|
1292
|
+
}),
|
|
1293
|
+
),
|
|
1294
|
+
};
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* The full picker category list — emoji buckets followed by the three
|
|
1299
|
+
* FontAwesome families. Drives the EmojiPicker tabs.
|
|
1300
|
+
*/
|
|
1301
|
+
export const PICKER_CATEGORIES: PickerCategory[] = [
|
|
1302
|
+
...EMOJI_CATEGORIES.map(
|
|
1303
|
+
(c): PickerCategory => ({
|
|
1304
|
+
id: c.id,
|
|
1305
|
+
label: c.label,
|
|
1306
|
+
tab: { kind: 'emoji', char: c.icon },
|
|
1307
|
+
entries: c.emojis.map(
|
|
1308
|
+
(e): PickerEntry => ({
|
|
1309
|
+
kind: 'emoji',
|
|
1310
|
+
char: e.char,
|
|
1311
|
+
name: e.name,
|
|
1312
|
+
keywords: e.keywords,
|
|
1313
|
+
}),
|
|
1314
|
+
),
|
|
1315
|
+
}),
|
|
1316
|
+
),
|
|
1317
|
+
buildIconCategory('brands', 'Brands'),
|
|
1318
|
+
buildIconCategory('solid', 'Solid'),
|
|
1319
|
+
buildIconCategory('regular', 'Regular'),
|
|
1320
|
+
];
|
|
1321
|
+
|
|
1322
|
+
/** Flat corpus for the picker search index. */
|
|
1323
|
+
export const ALL_PICKER_ENTRIES: PickerEntry[] = PICKER_CATEGORIES.flatMap((c) => c.entries);
|
|
1324
|
+
|
|
1325
|
+
/** Lowercase substring search across emoji + icon entries. */
|
|
1326
|
+
export function searchPickerEntries(query: string, limit = 80): PickerEntry[] {
|
|
1327
|
+
const q = query.trim().toLowerCase();
|
|
1328
|
+
if (!q) return [];
|
|
1329
|
+
const out: PickerEntry[] = [];
|
|
1330
|
+
for (const entry of ALL_PICKER_ENTRIES) {
|
|
1331
|
+
if (entry.keywords.includes(q)) {
|
|
1332
|
+
out.push(entry);
|
|
1333
|
+
if (out.length >= limit) break;
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
return out;
|
|
1337
|
+
}
|