Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@remirror/icons

Package Overview
Dependencies
Maintainers
1
Versions
199
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remirror/icons - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

dist/core-icons-1a68a202.cjs.dev.js

247

CHANGELOG.md
# @remirror/icons
## 1.0.2
> 2021-07-21
### Patch Changes
- [#1014](https://github.com/remirror/remirror/pull/1014) [`22115ea9e`](https://github.com/remirror/remirror/commit/22115ea9ed1977d20b7019d065d6a31d39b359eb) Thanks [@ifiokjr](https://github.com/ifiokjr)! - Reduce bundle size by removing `@remirror/icons/all` and `@remirror/react-icons/all-icons` from the package `@remirror/react-tables-extension`.
## 1.0.1

@@ -18,241 +26,6 @@

### Major Changes
##### Major Changes
- [#706](https://github.com/remirror/remirror/pull/706) [`adfb12a4c`](https://github.com/remirror/remirror/commit/adfb12a4cee7031eec4baa10830b0fc0134ebdc8) Thanks [@ifiokjr](https://github.com/ifiokjr)! - Here's what's changed in the beta release.
For information on what's changed in this release see the [`v1.0.0` release](https://github.com/remirror/remirror/releases/tag/v1.0.0).
- [x] Improved `react` API
- [x] Full `markdown` support with the `@remirror/extension-markdown` package.
- [x] Full formatting support
- [x] i18n support
- [x] A11y support for react via `reakit`
- [ ] Component Library (work in progress)
- [ ] Start adding experimental react native support (mostly done)
- [ ] Todo list extension (not started)
- [ ] New math extension (not started)
- [ ] New pagination extension (not started)
- [ ] New text wrap extension (not started)
### Delayed
- ~Experimental svelte support~ - This will be added later in the year.
## Breaking
- Upgrade minimum TypeScript version to `4.1`.
- Editor selection now defaults to the `end` of the document.
- Rename all `*Parameter` interfaces to `*Props`. With the exception of \[React\]FrameworkParameter which is now \[React\]FrameworkOptions.
- Remove `Presets` completely. In their place a function that returns a list of `Extension`s should be used. They were clunky, difficult to use and provided little to no value.
- Add core exports to `remirror` package
- Add all Extensions and Preset package exports to the `remirror/extensions` subdirectory. It doesn't include framework specific exports which are made available from `@remirror/react`
- Remove `remirror/react` which has been replaced by `@remirror/react`
- `@remirror/react` includes which includes all the react exports from all the react packages which can be used with remirror.
- Remove `@remirror/showcase` - examples have been provided on how to achieve the same effect.
- Remove `@remirror/react-social`
- Remove `@remirror/react-wysiwyg`
- Rename `useRemirror` -> `useRemirrorContext`
- Replace `useManager` with better `useRemirror` which provides a lot more functionality.
- Rename `preset-table` to `extension-tables`
- Rename `preset-list` to `extension-lists`. `ListPreset` is now `BulletListExtension` and `OrderListExtension`.
- New `createDecorations` extension method for adding decorations to the prosemirror view.
- Create new decorator pattern for adding `@commands`, `@helper` functions and `@keyBindings`.
- Deprecate `tags` property on extension and encourage the use of `createTags` which is a method instead.
- Add `onApplyState` and `onInitState` lifecycle methods.
- Add `onApplyTransaction` method.
- Rename interface `CreatePluginReturn` to `CreateExtensionPlugin`.
- Rewrite the `DropCursor` to support animations and interactions with media.
- Add support updating the doc attributes.
- Deprecate top level context methods `focus` and `blur`. They should now be consumed as commands
- Remove package `@remirror/extension-auto-link`.
### `ExtensionStore`
- Rename `addOrReplacePlugins` to `updatePlugins` in `ExtensionStore`.
- Remove `reconfigureStatePlugins` and auto apply it for all plugin updating methods.
One of the big changes is a hugely improved API for `@remirror/react`.
### `@remirror/extension-positioner`
- New `Rect` interface returned by the positioner `x: number; y: number; width: number; height: number;`
- Added `visible` property which shows if the position currently visible within the editor viewport.
- Improved scrolling when using the positioner.
- Fixed a lot of bugs in the positioner API.
- This DOMRect represents an absolute position within the document. It is up to your consuming component to consume the rect.
- `@remirror/react-components` exports `PositionerComponent` which internally
- Renamed the positioners in line with the new functionality.
```tsx
import React from 'react';
import { fromHtml, toHtml } from 'remirror';
import { BoldExtension, CorePreset, ItalicExtension } from 'remirror/extension';
import { Remirror, useRemirror, useRemirrorContext } from '@remirror/react';
const Editor = () => {
const { manager, onChange, state } = useRemirror({
extensions: () => [new BoldExtension(), new ItalicExtension()],
content: 'asdfasdf',
stringHandler: '',
});
return <Remirror manager={manager} onChange={onChange} state={state} />;
};
```
When no children are provided to the
The previous `useRemirror` is now called `useRemirrorContext` since it plucks the context from the outer `Remirror` Component. The `<RemirrorProvider />` has been renamed to `<Remirror />` and automatically renders an editor.
`useManager` has been marked as `@internal` (although it is still exported) and going forward you should be using `useRemirror` as shown in the above example.
Per library expected changes.
### `@remirror/extension-tables`
With the new support for extensions which act as parents to other extensions the table extension has now become a preset extension. It is no longer needed and has been renamed to it's initial name
### UI Commands
- Add commands with UI configuration and i18n text descriptions
- `@command`, `@keyBinding`, `@helper` decorators for more typesafe configuration of extensions.
- `NameShortcut` keybindings which can be set in the keymap extension
- `overrides` property
### Accessibility as a priority
Actively test for the following
- [ ] Screen Readers
- [ ] Braille display
- [ ] Zoom functionality
- [ ] High contrast for the default theme
### Caveats around inference
- Make sure all your commands in an extension are annotated with a return type of `CommandFunction`. Failure to do so will break all type inference wherever the extension is used.
```ts
import { CommandFunction } from 'remirror';
```
- When setting the name of the extension make sure to use `as const` otherwise it will be a string and ruin autocompletion for extension names, nodes and marks.
```ts
class MyExtension extends PlainExtension {
get name() {
return 'makeItConst' as const;
}
}
```
### `@remirror/react-hooks`
- Rename `useKeymap` to `useKeymaps`. The original `useKeymap` now has a different signature.
```tsx
import { useCallback } from 'react';
import { BoldExtension } from 'remirror/extensions';
import {
Remirror,
useHelpers,
useKeymap,
useRemirror,
useRemirrorContext,
} from '@remirror/react';
const hooks = [
() => {
const active = useActive();
const { insertText } = useCommands();
const boldActive = active.bold();
const handler = useCallback(() => {
if (!boldActive) {
return false;
}
return insertText.original('\n\nWoah there!')(props);
}, [boldActive, insertText]);
useKeymap('Shift-Enter', handler); // Add the handler to the keypress pattern.
},
];
const Editor = () => {
const { manager } = useRemirror({ extensions: () => [new BoldExtension()] });
return <Remirror manager={manager} hooks={hooks} />;
};
```
- The `Remirror` component now has a convenient hooks props. The hooks prop takes an array of zero parameter hook functions which are rendered into the `RemirrorContext`. It's a shorthand to writing out your own components. You can see the pattern in use above.
### Commands
There are new hooks for working with commands.
- Each command has an `original` method attached for using the original command that was used to create the command. The original command has the same type signature as the `(...args: any[]) => CommandFunction`. So you would call it with the command arguments and then also provide the CommandProps. This is useful when composing commands together or using commands within keyBindings which need to return a boolean.
- You can see the `insertText.original` being used in the `useKeymap` example above.
- `useCommands()` provides all the commands as hook. `useChainedCommands` provides all the chainable commands.
```tsx
import { useCallback } from 'react';
import { useChainedCommands, useKeymap } from '@remirror/react';
function useLetItGo() {
const chain = useChainedCommands();
const handler = useCallback(() => {
chain.selectText('all').insertText('Let it goo 🤫').run();
}, [chain]);
// Whenever the user types `a` they let it all go
useKeymap('a', handler);
}
```
### Dependencies
- Upgrade React to require minimum versions of ^16.14.0 || ^17. This is because of the codebase now using the [new jsx transform](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html).
- Upgrade TypeScript to a minimum of `4.1`. Several of the new features make use of the new types and it is a requirement to upgrade.
- General upgrades across all dependencies to using the latest versions.
- All `prosemirror-*` packages.
### Issues addressed
- Fixes #569
- Fixes #452
- Fixes #407
- Fixes #533
- Fixes #652
- Fixes #654
- Fixes #480
- Fixes #566
- Fixes #453
- Fixes #508
- Fixes #715
- Fixes #531
- Fixes #535
- Fixes #536
- Fixes #537
- Fixes #538
- Fixes #541
- Fixes #542
- Fixes #709
- Fixes #532
- Fixes #836
- Fixes #834
- Fixes #823
- Fixes #820
- Fixes #695
- Fixes #793
- Fixes #800
- Fixes #453
- Fixes #778
- Fixes #757
- Fixes #804
- Fixes #504
- Fixes #566
- Fixes #714
- Fixes #37
### Patch Changes

@@ -259,0 +32,0 @@

@@ -9,2 +9,7 @@ /** THIS FILE IS AUTO GENERATED */

/**
* The icon for `add-fill.svg` created by [RemixIcons](https://remixicons.com).
* ![Add Fill](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/icons/System/add-fill.svg)
*/
export declare const addFill: IconTree[];
/**
* The icon for `add-line.svg` created by [RemixIcons](https://remixicons.com).

@@ -145,2 +150,7 @@ * ![Add Line](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/icons/System/add-line.svg)

/**
* The icon for `close-fill.svg` created by [RemixIcons](https://remixicons.com).
* ![Close Fill](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/icons/System/close-fill.svg)
*/
export declare const closeFill: IconTree[];
/**
* The icon for `close-line.svg` created by [RemixIcons](https://remixicons.com).

@@ -147,0 +157,0 @@ * ![Close Line](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/icons/System/close-line.svg)

@@ -5,3 +5,3 @@ 'use strict';

var coreIcons = require('./core-icons-7b08e3cf.browser.cjs.js');
var coreIcons = require('./core-icons-6d0ab15a.browser.cjs.js');

@@ -11,2 +11,3 @@

exports.ab = coreIcons.ab;
exports.addFill = coreIcons.addFill;
exports.addLine = coreIcons.addLine;

@@ -39,2 +40,3 @@ exports.alertLine = coreIcons.alertLine;

exports.closeCircleLine = coreIcons.closeCircleLine;
exports.closeFill = coreIcons.closeFill;
exports.closeLine = coreIcons.closeLine;

@@ -41,0 +43,0 @@ exports.codeLine = coreIcons.codeLine;

@@ -1,1 +0,1 @@

export { a as ab, b as addLine, c as alertLine, d as alignBottom, e as alignCenter, f as alignJustify, g as alignLeft, h as alignRight, i as alignTop, j as alignVertically, k as appsLine, l as arrowDownSFill, m as arrowGoBackFill, n as arrowGoForwardFill, o as arrowLeftSFill, p as arrowRightSFill, q as arrowUpSFill, r as asterisk, s as attachment2, t as bold, u as bracesLine, v as bringForward, w as bringToFront, x as chatNewLine, y as checkboxCircleLine, z as clipboardFill, A as clipboardLine, B as closeCircleLine, C as closeLine, D as codeLine, E as codeView, F as deleteBinFill, G as deleteBinLine, H as deleteColumn, I as deleteRow, J as doubleQuotesL, K as doubleQuotesR, L as download2Fill, M as dragDropLine, O as emphasis, N as emphasisCn, P as englishInput, Q as errorWarningLine, R as externalLinkFill, S as fileCopyLine, T as flowChart, U as fontColor, W as fontSize, V as fontSize2, X as formatClear, Y as fullscreenExitLine, Z as fullscreenLine, _ as functions, $ as galleryUploadLine, a0 as h1, a1 as h2, a2 as h3, a3 as h4, a4 as h5, a5 as h6, a6 as hashtag, a7 as heading, a8 as imageAddLine, a9 as imageEditLine, aa as imageLine, ab as indentDecrease, ac as indentIncrease, ad as informationLine, ae as inputCursorMove, af as insertColumnLeft, ag as insertColumnRight, ah as insertRowBottom, ai as insertRowTop, aj as italic, ak as layoutColumnLine, al as lineHeight, ap as link, am as linkM, ao as linkUnlink, an as linkUnlinkM, ar as listCheck, aq as listCheck2, as as listOrdered, at as listUnordered, au as markPenLine, av as markdownFill, aw as markdownLine, ax as mergeCellsHorizontal, ay as mergeCellsVertical, az as mindMap, aA as moreFill, aB as nodeTree, aC as number0, aD as number1, aE as number2, aF as number3, aG as number4, aH as number5, aI as number6, aJ as number7, aK as number8, aL as number9, aM as omega, aN as organizationChart, aO as pageSeparator, aP as paragraph, aQ as pencilFill, aR as pencilLine, aS as pinyinInput, aT as questionMark, aU as roundedCorner, aV as scissorsFill, aW as sendBackward, aX as sendToBack, aY as separator, aZ as singleQuotesL, a_ as singleQuotesR, a$ as sortAsc, b0 as sortDesc, b1 as space, b2 as spamLine, b3 as splitCellsHorizontal, b4 as splitCellsVertical, b6 as strikethrough, b5 as strikethrough2, b8 as subscript, b7 as subscript2, b9 as subtractLine, bb as superscript, ba as superscript2, bc as table2, bd as tableLine, bi as text, be as textDirectionL, bf as textDirectionR, bg as textSpacing, bh as textWrap, bk as translate, bj as translate2, bl as underline, bm as upload2Fill, bn as videoLine, bo as wubiInput } from './core-icons-066cf40b.browser.esm.js';
export { a as ab, b as addFill, c as addLine, d as alertLine, e as alignBottom, f as alignCenter, g as alignJustify, h as alignLeft, i as alignRight, j as alignTop, k as alignVertically, l as appsLine, m as arrowDownSFill, n as arrowGoBackFill, o as arrowGoForwardFill, p as arrowLeftSFill, q as arrowRightSFill, r as arrowUpSFill, s as asterisk, t as attachment2, u as bold, v as bracesLine, w as bringForward, x as bringToFront, y as chatNewLine, z as checkboxCircleLine, A as clipboardFill, B as clipboardLine, C as closeCircleLine, D as closeFill, E as closeLine, F as codeLine, G as codeView, H as deleteBinFill, I as deleteBinLine, J as deleteColumn, K as deleteRow, L as doubleQuotesL, M as doubleQuotesR, N as download2Fill, O as dragDropLine, Q as emphasis, P as emphasisCn, R as englishInput, S as errorWarningLine, T as externalLinkFill, U as fileCopyLine, V as flowChart, W as fontColor, Y as fontSize, X as fontSize2, Z as formatClear, _ as fullscreenExitLine, $ as fullscreenLine, a0 as functions, a1 as galleryUploadLine, a2 as h1, a3 as h2, a4 as h3, a5 as h4, a6 as h5, a7 as h6, a8 as hashtag, a9 as heading, aa as imageAddLine, ab as imageEditLine, ac as imageLine, ad as indentDecrease, ae as indentIncrease, af as informationLine, ag as inputCursorMove, ah as insertColumnLeft, ai as insertColumnRight, aj as insertRowBottom, ak as insertRowTop, al as italic, am as layoutColumnLine, an as lineHeight, ar as link, ao as linkM, aq as linkUnlink, ap as linkUnlinkM, at as listCheck, as as listCheck2, au as listOrdered, av as listUnordered, aw as markPenLine, ax as markdownFill, ay as markdownLine, az as mergeCellsHorizontal, aA as mergeCellsVertical, aB as mindMap, aC as moreFill, aD as nodeTree, aE as number0, aF as number1, aG as number2, aH as number3, aI as number4, aJ as number5, aK as number6, aL as number7, aM as number8, aN as number9, aO as omega, aP as organizationChart, aQ as pageSeparator, aR as paragraph, aS as pencilFill, aT as pencilLine, aU as pinyinInput, aV as questionMark, aW as roundedCorner, aX as scissorsFill, aY as sendBackward, aZ as sendToBack, a_ as separator, a$ as singleQuotesL, b0 as singleQuotesR, b1 as sortAsc, b2 as sortDesc, b3 as space, b4 as spamLine, b5 as splitCellsHorizontal, b6 as splitCellsVertical, b8 as strikethrough, b7 as strikethrough2, ba as subscript, b9 as subscript2, bb as subtractLine, bd as superscript, bc as superscript2, be as table2, bf as tableLine, bk as text, bg as textDirectionL, bh as textDirectionR, bi as textSpacing, bj as textWrap, bm as translate, bl as translate2, bn as underline, bo as upload2Fill, bp as videoLine, bq as wubiInput } from './core-icons-4bc9c567.browser.esm.js';

@@ -5,3 +5,3 @@ 'use strict';

var coreIcons = require('./core-icons-647bef39.cjs.dev.js');
var coreIcons = require('./core-icons-1a68a202.cjs.dev.js');

@@ -11,2 +11,3 @@

exports.ab = coreIcons.ab;
exports.addFill = coreIcons.addFill;
exports.addLine = coreIcons.addLine;

@@ -39,2 +40,3 @@ exports.alertLine = coreIcons.alertLine;

exports.closeCircleLine = coreIcons.closeCircleLine;
exports.closeFill = coreIcons.closeFill;
exports.closeLine = coreIcons.closeLine;

@@ -41,0 +43,0 @@ exports.codeLine = coreIcons.codeLine;

@@ -5,3 +5,3 @@ 'use strict';

var coreIcons = require('./core-icons-89b89501.cjs.prod.js');
var coreIcons = require('./core-icons-40310be2.cjs.prod.js');

@@ -11,2 +11,3 @@

exports.ab = coreIcons.ab;
exports.addFill = coreIcons.addFill;
exports.addLine = coreIcons.addLine;

@@ -39,2 +40,3 @@ exports.alertLine = coreIcons.alertLine;

exports.closeCircleLine = coreIcons.closeCircleLine;
exports.closeFill = coreIcons.closeFill;
exports.closeLine = coreIcons.closeLine;

@@ -41,0 +43,0 @@ exports.codeLine = coreIcons.codeLine;

@@ -1,1 +0,1 @@

export { a as ab, b as addLine, c as alertLine, d as alignBottom, e as alignCenter, f as alignJustify, g as alignLeft, h as alignRight, i as alignTop, j as alignVertically, k as appsLine, l as arrowDownSFill, m as arrowGoBackFill, n as arrowGoForwardFill, o as arrowLeftSFill, p as arrowRightSFill, q as arrowUpSFill, r as asterisk, s as attachment2, t as bold, u as bracesLine, v as bringForward, w as bringToFront, x as chatNewLine, y as checkboxCircleLine, z as clipboardFill, A as clipboardLine, B as closeCircleLine, C as closeLine, D as codeLine, E as codeView, F as deleteBinFill, G as deleteBinLine, H as deleteColumn, I as deleteRow, J as doubleQuotesL, K as doubleQuotesR, L as download2Fill, M as dragDropLine, O as emphasis, N as emphasisCn, P as englishInput, Q as errorWarningLine, R as externalLinkFill, S as fileCopyLine, T as flowChart, U as fontColor, W as fontSize, V as fontSize2, X as formatClear, Y as fullscreenExitLine, Z as fullscreenLine, _ as functions, $ as galleryUploadLine, a0 as h1, a1 as h2, a2 as h3, a3 as h4, a4 as h5, a5 as h6, a6 as hashtag, a7 as heading, a8 as imageAddLine, a9 as imageEditLine, aa as imageLine, ab as indentDecrease, ac as indentIncrease, ad as informationLine, ae as inputCursorMove, af as insertColumnLeft, ag as insertColumnRight, ah as insertRowBottom, ai as insertRowTop, aj as italic, ak as layoutColumnLine, al as lineHeight, ap as link, am as linkM, ao as linkUnlink, an as linkUnlinkM, ar as listCheck, aq as listCheck2, as as listOrdered, at as listUnordered, au as markPenLine, av as markdownFill, aw as markdownLine, ax as mergeCellsHorizontal, ay as mergeCellsVertical, az as mindMap, aA as moreFill, aB as nodeTree, aC as number0, aD as number1, aE as number2, aF as number3, aG as number4, aH as number5, aI as number6, aJ as number7, aK as number8, aL as number9, aM as omega, aN as organizationChart, aO as pageSeparator, aP as paragraph, aQ as pencilFill, aR as pencilLine, aS as pinyinInput, aT as questionMark, aU as roundedCorner, aV as scissorsFill, aW as sendBackward, aX as sendToBack, aY as separator, aZ as singleQuotesL, a_ as singleQuotesR, a$ as sortAsc, b0 as sortDesc, b1 as space, b2 as spamLine, b3 as splitCellsHorizontal, b4 as splitCellsVertical, b6 as strikethrough, b5 as strikethrough2, b8 as subscript, b7 as subscript2, b9 as subtractLine, bb as superscript, ba as superscript2, bc as table2, bd as tableLine, bi as text, be as textDirectionL, bf as textDirectionR, bg as textSpacing, bh as textWrap, bk as translate, bj as translate2, bl as underline, bm as upload2Fill, bn as videoLine, bo as wubiInput } from './core-icons-04924b5e.esm.js';
export { a as ab, b as addFill, c as addLine, d as alertLine, e as alignBottom, f as alignCenter, g as alignJustify, h as alignLeft, i as alignRight, j as alignTop, k as alignVertically, l as appsLine, m as arrowDownSFill, n as arrowGoBackFill, o as arrowGoForwardFill, p as arrowLeftSFill, q as arrowRightSFill, r as arrowUpSFill, s as asterisk, t as attachment2, u as bold, v as bracesLine, w as bringForward, x as bringToFront, y as chatNewLine, z as checkboxCircleLine, A as clipboardFill, B as clipboardLine, C as closeCircleLine, D as closeFill, E as closeLine, F as codeLine, G as codeView, H as deleteBinFill, I as deleteBinLine, J as deleteColumn, K as deleteRow, L as doubleQuotesL, M as doubleQuotesR, N as download2Fill, O as dragDropLine, Q as emphasis, P as emphasisCn, R as englishInput, S as errorWarningLine, T as externalLinkFill, U as fileCopyLine, V as flowChart, W as fontColor, Y as fontSize, X as fontSize2, Z as formatClear, _ as fullscreenExitLine, $ as fullscreenLine, a0 as functions, a1 as galleryUploadLine, a2 as h1, a3 as h2, a4 as h3, a5 as h4, a6 as h5, a7 as h6, a8 as hashtag, a9 as heading, aa as imageAddLine, ab as imageEditLine, ac as imageLine, ad as indentDecrease, ae as indentIncrease, af as informationLine, ag as inputCursorMove, ah as insertColumnLeft, ai as insertColumnRight, aj as insertRowBottom, ak as insertRowTop, al as italic, am as layoutColumnLine, an as lineHeight, ar as link, ao as linkM, aq as linkUnlink, ap as linkUnlinkM, at as listCheck, as as listCheck2, au as listOrdered, av as listUnordered, aw as markPenLine, ax as markdownFill, ay as markdownLine, az as mergeCellsHorizontal, aA as mergeCellsVertical, aB as mindMap, aC as moreFill, aD as nodeTree, aE as number0, aF as number1, aG as number2, aH as number3, aI as number4, aJ as number5, aK as number6, aL as number7, aM as number8, aN as number9, aO as omega, aP as organizationChart, aQ as pageSeparator, aR as paragraph, aS as pencilFill, aT as pencilLine, aU as pinyinInput, aV as questionMark, aW as roundedCorner, aX as scissorsFill, aY as sendBackward, aZ as sendToBack, a_ as separator, a$ as singleQuotesL, b0 as singleQuotesR, b1 as sortAsc, b2 as sortDesc, b3 as space, b4 as spamLine, b5 as splitCellsHorizontal, b6 as splitCellsVertical, b8 as strikethrough, b7 as strikethrough2, ba as subscript, b9 as subscript2, bb as subtractLine, bd as superscript, bc as superscript2, be as table2, bf as tableLine, bk as text, bg as textDirectionL, bh as textDirectionR, bi as textSpacing, bj as textWrap, bm as translate, bl as translate2, bn as underline, bo as upload2Fill, bp as videoLine, bq as wubiInput } from './core-icons-71920f30.esm.js';
{
"name": "@remirror/icons",
"version": "1.0.1",
"version": "1.0.2",
"description": "RemixIcons for use in your remirror editor.",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc