playbook_ui 13.33.1.pre.alpha.PLAY14143336 → 13.33.1.pre.alpha.PLAY14143340
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.tsx +7 -11
- data/app/pb_kits/playbook/pb_rich_text_editor/types.d.ts +1 -0
- data/dist/chunks/_typeahead.js +2 -2
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +3 -3
- data/dist/chunks/deduping-fix.js +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7737f489a54ecb82948c912bfcffb95bd2d0423fc082b11df327843e5aa9d6cd
|
4
|
+
data.tar.gz: 4f7a6ac4d88bc8b808e6069512638b122c3e6b8ce32a8e41bc829811ed0cd92b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 866a9a618a608e2827a06d48407c081cc285cf058ac112efc2d390bd8549edb7d769cdd8153c22c4b29b5a628817808b0aa558e7c18f6fd14d3841e253aed7bf
|
7
|
+
data.tar.gz: 00f0ec45aa14aabc8e212a07999ca513cd98522ad2d46bd6c118b37eb792b0078d9e485bd01818a35f5d2842892d1bc88b3211481b28585fd7481c1c819e06bb
|
@@ -1,22 +1,18 @@
|
|
1
1
|
import React, { useEffect, useState } from 'react'
|
2
2
|
import classnames from 'classnames'
|
3
|
-
import { TrixEditor } from
|
3
|
+
import { TrixEditor } from 'react-trix'
|
4
4
|
|
5
5
|
import inlineFocus from './inlineFocus'
|
6
6
|
import useFocus from './useFocus'
|
7
7
|
import { globalProps, GlobalProps } from '../utilities/globalProps'
|
8
8
|
import { buildAriaProps, buildDataProps, noop, buildHtmlProps } from '../utilities/props'
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
})
|
17
|
-
import('@haxtheweb/deduping-fix')
|
18
|
-
} catch (e) {
|
19
|
-
// do nothing
|
10
|
+
import Trix from 'trix'
|
11
|
+
import '@haxtheweb/deduping-fix'
|
12
|
+
|
13
|
+
Trix.config.textAttributes.inlineCode = {
|
14
|
+
tagName: 'code',
|
15
|
+
inheritable: true,
|
20
16
|
}
|
21
17
|
|
22
18
|
import EditorToolbar from './TipTap/Toolbar'
|
@@ -0,0 +1 @@
|
|
1
|
+
declare module '@haxtheweb/deduping-fix';
|