@lotics/ui 47.12.2 → 47.13.0
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/docs/catalog.md +3 -0
- package/package.json +2 -1
package/docs/catalog.md
CHANGED
|
@@ -637,6 +637,9 @@ source (`src/<module>.tsx`/`.ts`) is the API reference.
|
|
|
637
637
|
the scale (h1→h4, h2→h5, h3+→h6): sizing alone leaves a model's `##` announcing as a PEER of
|
|
638
638
|
your own sections in heading navigation, which no visual check can see.
|
|
639
639
|
- **`markdown_types`** — `MarkdownProps`; types only.
|
|
640
|
+
- **`remark_gfm_safe`** — `remarkGfmSafe`: the GFM plugin `Markdown` uses, for a
|
|
641
|
+
`react-markdown` instance the kit's renderer cannot serve. Never `remark-gfm`: it ships a
|
|
642
|
+
regex-lookbehind literal, which WebKit older than Safari 16.4 rejects while parsing the bundle.
|
|
640
643
|
- **`markdown.css`** — import once for the web markdown styling.
|
|
641
644
|
- **`format_date`** — `formatDate` / `parseDate` / `toISODate` + `DateFormatStyle`.
|
|
642
645
|
- **`format_money`** — `formatMoney` / `formatCompactNumber`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lotics/ui",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.13.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./accordion": "./src/accordion.tsx",
|
|
@@ -187,6 +187,7 @@
|
|
|
187
187
|
"./markdown_editor.css": "./src/markdown_editor.css",
|
|
188
188
|
"./markdown_editor_props": "./src/markdown_editor_props.ts",
|
|
189
189
|
"./markdown_types": "./src/markdown_types.ts",
|
|
190
|
+
"./remark_gfm_safe": "./src/remark_gfm_safe.ts",
|
|
190
191
|
"./matrix": "./src/matrix.tsx",
|
|
191
192
|
"./matrix_totals": "./src/matrix_totals.ts",
|
|
192
193
|
"./media_player": {
|