size.js 358 B

123456789101112
  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 };