2143b1c23fd3a0c26d2e4184ab65d9921d7b55a521c66ef26c4d0d835a5ce58d12e3c19f4e4b6482546c7d4b2566346b1f20732722837cf830c540224df23b 386 B

1234567891011
  1. import { ClassAttributor, Scope, StyleAttributor } from 'parchment';
  2. const SizeClass = new ClassAttributor('size', 'ql-size', {
  3. scope: Scope.INLINE,
  4. whitelist: ['small', 'large', 'huge']
  5. });
  6. const SizeStyle = new StyleAttributor('size', 'font-size', {
  7. scope: Scope.INLINE,
  8. whitelist: ['10px', '18px', '32px']
  9. });
  10. export { SizeClass, SizeStyle };
  11. //# sourceMappingURL=size.js.map