@weasyprint-tsx/ui 0.1.4 → 0.1.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weasyprint-tsx/ui",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "exports": {
5
5
  ".": "./src/index.ts"
6
6
  },
package/src/Equation.tsx CHANGED
@@ -80,7 +80,7 @@ function formatNumber(tex: string | undefined) {
80
80
  });
81
81
  }
82
82
 
83
- export function Eq(props: SymbolProps) {
83
+ export function LtX(props: SymbolProps) {
84
84
  return symbolFactory((_, children) => {
85
85
  return formatNumber(children);
86
86
  })(props);
package/src/index.ts CHANGED
@@ -5,8 +5,8 @@ export type { CodeBlockProps } from "./CodeBlock";
5
5
  export { DotLine } from "./DotLine";
6
6
  export type { DotLineProps } from "./DotLine";
7
7
  export {
8
- Eq, Equation,
9
- functionFactory, symbolFactory,
8
+ Equation,
9
+ functionFactory, LtX, symbolFactory,
10
10
  underscriptFactory
11
11
  } from "./Equation";
12
12
  export type { EquationProps, SymbolProps } from "./Equation";