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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eeaa830ef38a4ab4feb0958e1a27ee46ffc0097c6816c5fc8d0851a75bac483b
4
- data.tar.gz: f3496b7530bc3e20655c74b238be86d2efaa5f8cda6630023fe5ed701f9209fa
3
+ metadata.gz: 7737f489a54ecb82948c912bfcffb95bd2d0423fc082b11df327843e5aa9d6cd
4
+ data.tar.gz: 4f7a6ac4d88bc8b808e6069512638b122c3e6b8ce32a8e41bc829811ed0cd92b
5
5
  SHA512:
6
- metadata.gz: 6e8d29de0604acbb05850e099a28033cd9132d4122271bd0ebcc99d98a763715870edb33faa1f8e32ab0e1e7a009ea9a73360b695a22750960272d8529c298b9
7
- data.tar.gz: fe18af331012e72d5836ce754367ef0f8b29c80b940dc547dbba64884fa00c043e29d5d32c5beac000afc9683b48c322c371c5ef86657473cfb0d1e9bac1e4be
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 "react-trix"
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
- try {
11
- import('trix').then((Trix) => {
12
- Trix.config.textAttributes.inlineCode = {
13
- tagName: 'code',
14
- inheritable: true,
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';