@burdenoff/fe-libs 2026.720.1 → 2026.720.2

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.
Files changed (72) hide show
  1. package/dist/node_modules/ccount/index.js +10 -0
  2. package/dist/node_modules/hast-util-sanitize/lib/index.js +161 -0
  3. package/dist/node_modules/hast-util-sanitize/lib/schema.js +74 -0
  4. package/dist/node_modules/longest-streak/index.js +9 -0
  5. package/dist/node_modules/markdown-table/index.js +59 -0
  6. package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +61 -0
  7. package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +7 -0
  8. package/dist/node_modules/mdast-util-gfm/lib/index.js +26 -0
  9. package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +129 -0
  10. package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +97 -0
  11. package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +49 -0
  12. package/dist/node_modules/mdast-util-gfm-table/lib/index.js +137 -0
  13. package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +58 -0
  14. package/dist/node_modules/mdast-util-phrasing/lib/index.js +22 -0
  15. package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +12 -0
  16. package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +9 -0
  17. package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +36 -0
  18. package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +24 -0
  19. package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +25 -0
  20. package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +24 -0
  21. package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +10 -0
  22. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +23 -0
  23. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +28 -0
  24. package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +44 -0
  25. package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +19 -0
  26. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +23 -0
  27. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +41 -0
  28. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +18 -0
  29. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +26 -0
  30. package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +7 -0
  31. package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +9 -0
  32. package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +25 -0
  33. package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +6 -0
  34. package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +9 -0
  35. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +8 -0
  36. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +11 -0
  37. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +8 -0
  38. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +8 -0
  39. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +8 -0
  40. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +8 -0
  41. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +8 -0
  42. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +8 -0
  43. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +8 -0
  44. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +8 -0
  45. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +6 -0
  46. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +38 -0
  47. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +6 -0
  48. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +11 -0
  49. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +8 -0
  50. package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +12 -0
  51. package/dist/node_modules/micromark-extension-gfm/index.js +18 -0
  52. package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +174 -0
  53. package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +193 -0
  54. package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +96 -0
  55. package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +43 -0
  56. package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +20 -0
  57. package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +201 -0
  58. package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +34 -0
  59. package/dist/node_modules/rehype-sanitize/lib/index.js +9 -0
  60. package/dist/node_modules/remark-gfm/lib/index.js +10 -0
  61. package/dist/shared/components/Markdown.d.ts +22 -0
  62. package/dist/shared/components/Markdown.d.ts.map +1 -0
  63. package/dist/shared/components/Markdown.js +38 -0
  64. package/dist/shared/components/index.d.ts +2 -0
  65. package/dist/shared/components/index.d.ts.map +1 -1
  66. package/dist/shared/graphql/fetch.d.ts.map +1 -1
  67. package/dist/shared/pages/LegalPage.js +1 -1
  68. package/dist/shared-components.js +2 -1
  69. package/dist/shared.js +59 -58
  70. package/package.json +7 -1
  71. package/dist/shared/components/LegalPage.d.ts +0 -19
  72. package/dist/shared/components/LegalPage.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/fe-libs",
3
- "version": "2026.720.1",
3
+ "version": "2026.720.2",
4
4
  "description": "Burdenoff frontend primitives and domain libraries",
5
5
  "type": "module",
6
6
  "imports": {
@@ -86,6 +86,10 @@
86
86
  "types": "./dist/shared/components/index.d.ts",
87
87
  "import": "./dist/shared-components.js"
88
88
  },
89
+ "./shared/components/Markdown": {
90
+ "types": "./dist/shared/components/Markdown.d.ts",
91
+ "import": "./dist/shared/components/Markdown.js"
92
+ },
89
93
  "./shared/config": {
90
94
  "types": "./dist/shared/config/index.d.ts",
91
95
  "import": "./dist/shared-config.js"
@@ -303,6 +307,8 @@
303
307
  "react-error-boundary": "^6.1.1",
304
308
  "react-hook-form": "^7.69.0",
305
309
  "react-markdown": "^10.1.0",
310
+ "rehype-sanitize": "^6.0.0",
311
+ "remark-gfm": "^4.0.1",
306
312
  "sonner": "^2.0.7",
307
313
  "tailwind-merge": "^3.4.0",
308
314
  "web-vitals": "^4.2.4",
@@ -1,19 +0,0 @@
1
- /**
2
- * LegalPage Component
3
- *
4
- * Renders resolved content pages (privacy policy, terms of service, etc.)
5
- * by fetching from the global gateway's resolvedContentPage query.
6
- * Template variables are replaced server-side with product-specific values.
7
- */
8
- export interface LegalPageProps {
9
- /** Product ID for template variable resolution (e.g., "workspaces", "fluidgrids") */
10
- productId: string;
11
- /** Custom slug mapping (default: privacy→privacy-policy, terms→terms-of-service, etc.) */
12
- slugMap?: Record<string, string>;
13
- /** Home route path (default: "/") */
14
- homeRoute?: string;
15
- /** Home link label (default: "Back to Dashboard") */
16
- homeLabel?: string;
17
- }
18
- export declare function LegalPage({ productId, slugMap, homeRoute, homeLabel, }: LegalPageProps): import("react/jsx-runtime").JSX.Element;
19
- //# sourceMappingURL=LegalPage.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LegalPage.d.ts","sourceRoot":"","sources":["../../../src/shared/components/LegalPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAmDH,MAAM,WAAW,cAAc;IAC7B,qFAAqF;IACrF,SAAS,EAAE,MAAM,CAAC;IAClB,0FAA0F;IAC1F,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,qCAAqC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qDAAqD;IACrD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,SAAS,CAAC,EACxB,SAAS,EACT,OAA0B,EAC1B,SAAe,EACf,SAA+B,GAChC,EAAE,cAAc,2CAyLhB"}