@cloud-ru/ds-markdown 1.0.2-preview-cd0cd6fb.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud-ru/ds-markdown",
3
- "version": "1.0.2-preview-cd0cd6fb.0",
3
+ "version": "1.0.2",
4
4
  "description": "Просмотр и редактирование markdown — рендер GFM и WYSIWYG-редактор на TipTap.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -62,20 +62,20 @@
62
62
  "rehype-highlight": "^7.0.2",
63
63
  "remark-gfm": "^4.0.1",
64
64
  "unified": "^11.0.5",
65
- "@cloud-ru/ds-button": "1.0.0",
66
- "@cloud-ru/ds-divider": "1.0.0",
67
- "@cloud-ru/ds-fields": "1.0.2-preview-cd0cd6fb.0",
68
- "@cloud-ru/ds-icons": "1.0.0",
69
- "@cloud-ru/ds-locale": "1.0.0",
70
- "@cloud-ru/ds-list": "1.1.1-preview-cd0cd6fb.0",
71
- "@cloud-ru/ds-materials": "1.0.0",
72
- "@cloud-ru/ds-modal": "1.0.0",
73
- "@cloud-ru/ds-portal-context": "1.0.0",
74
- "@cloud-ru/ds-scroll": "1.0.0",
75
- "@cloud-ru/ds-toggles": "1.0.1-preview-cd0cd6fb.0",
76
- "@cloud-ru/ds-tooltip": "1.0.0",
77
- "@cloud-ru/ds-typography": "1.0.0",
78
- "@cloud-ru/ds-utils": "1.0.0"
65
+ "@cloud-ru/ds-button": "^1.0.0",
66
+ "@cloud-ru/ds-fields": "^1.0.2",
67
+ "@cloud-ru/ds-icons": "^1.0.0",
68
+ "@cloud-ru/ds-locale": "^1.0.0",
69
+ "@cloud-ru/ds-list": "^1.1.0",
70
+ "@cloud-ru/ds-materials": "^1.0.0",
71
+ "@cloud-ru/ds-divider": "^1.0.0",
72
+ "@cloud-ru/ds-modal": "^1.0.0",
73
+ "@cloud-ru/ds-portal-context": "^1.0.0",
74
+ "@cloud-ru/ds-toggles": "^1.0.0",
75
+ "@cloud-ru/ds-scroll": "^1.0.0",
76
+ "@cloud-ru/ds-tooltip": "^1.0.0",
77
+ "@cloud-ru/ds-utils": "^1.0.0",
78
+ "@cloud-ru/ds-typography": "^1.0.0"
79
79
  },
80
80
  "devDependencies": {
81
81
  "sass": "1.102.0",
@@ -1,6 +1,6 @@
1
1
  import { Button } from '@cloud-ru/ds-button';
2
2
  import { FieldShell } from '@cloud-ru/ds-fields';
3
- import { CrossSVG } from '@cloud-ru/ds-icons/interface/system';
3
+ import { CrossCircleSVG } from '@cloud-ru/ds-icons/interface/system';
4
4
  import { Scroll } from '@cloud-ru/ds-scroll';
5
5
  import { Switch } from '@cloud-ru/ds-toggles';
6
6
  import { extractSupportProps, isBrowser, useDebounce, useValueControl } from '@cloud-ru/ds-utils';
@@ -308,7 +308,7 @@ export function MarkdownEditor({
308
308
  view='function'
309
309
  appearance='neutral'
310
310
  size='m'
311
- icon={<CrossSVG />}
311
+ icon={<CrossCircleSVG />}
312
312
  data-test-id={TEST_IDS.editorClear}
313
313
  aria-label={t('clear')}
314
314
  onClick={handleClearButtonClick}