@fluid-topics/ft-typography 1.1.69 → 1.1.71

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.
@@ -18,13 +18,14 @@ class FtTypography extends FtLitElement {
18
18
  if (this.element) {
19
19
  return html `
20
20
  <${unsafeStatic(this.element)}
21
+ part="text"
21
22
  class="ft-typography ft-typography--${this.variant}">
22
23
  <slot></slot>
23
24
  </${unsafeStatic(this.element)}>
24
25
  `;
25
26
  }
26
27
  return html `
27
- <slot class="ft-typography ft-typography--${this.variant}"></slot>
28
+ <slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
28
29
  `;
29
30
  }
30
31
  }