@qwickapps/react-framework 1.5.9 → 1.5.10

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.
@@ -1 +1 @@
1
- {"version":3,"file":"SafeSpan.d.ts","sourceRoot":"","sources":["../../src/components/SafeSpan.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAGjE,OAAO,aAAa,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE7C,KAAK,iBAAiB,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC;AACpD,MAAM,WAAW,aAAc,SAAQ,iBAAiB,EAAE,eAAe;CAAG;AA6E5E,qBAAa,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAEpD,MAAM,CAAC,QAAQ,CAAC,OAAO,cAAc;IACrC,MAAM,CAAC,QAAQ,CAAC,OAAO,WAAW;IAGlC,SAAS,CAAC,yBAAyB,IAAI,OAAO;IAQ9C,SAAS,CAAC,UAAU,IAAI,KAAK,CAAC,YAAY;IAM1C,SAAS,CAAC,qBAAqB,IAAI,KAAK,CAAC,YAAY;IAKrD,MAAM,CAAC,uBAAuB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAevD,OAAO,CAAC,MAAM,CAAC,iBAAiB;CAWjC;AA4BD,eAAe,QAAQ,CAAC"}
1
+ {"version":3,"file":"SafeSpan.d.ts","sourceRoot":"","sources":["../../src/components/SafeSpan.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAGjE,OAAO,aAAa,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE7C,KAAK,iBAAiB,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC;AACpD,MAAM,WAAW,aAAc,SAAQ,iBAAiB,EAAE,eAAe;CAAG;AAgF5E,qBAAa,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAEpD,MAAM,CAAC,QAAQ,CAAC,OAAO,cAAc;IACrC,MAAM,CAAC,QAAQ,CAAC,OAAO,WAAW;IAGlC,SAAS,CAAC,yBAAyB,IAAI,OAAO;IAQ9C,SAAS,CAAC,UAAU,IAAI,KAAK,CAAC,YAAY;IAM1C,SAAS,CAAC,qBAAqB,IAAI,KAAK,CAAC,YAAY;IAKrD,MAAM,CAAC,uBAAuB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAevD,OAAO,CAAC,MAAM,CAAC,iBAAiB;CAWjC;AA4BD,eAAe,QAAQ,CAAC"}
package/dist/index.esm.js CHANGED
@@ -16804,7 +16804,7 @@ function SafeSpanView(props) {
16804
16804
  });
16805
16805
  // Enhanced HTML sanitization with strict security configuration
16806
16806
  const sanitizeOptions = {
16807
- allowedTags: ['p', 'br', 'strong', 'em', 'u', 'span', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img'],
16807
+ allowedTags: ['p', 'br', 'strong', 'em', 'u', 'span', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img', 'hr', 'table', 'thead', 'tbody', 'tr', 'th', 'td'],
16808
16808
  allowedAttributes: {
16809
16809
  'a': ['href', 'title', 'target'],
16810
16810
  'img': ['src', 'alt', 'title', 'width', 'height'],
@@ -16852,7 +16852,10 @@ function SafeSpanView(props) {
16852
16852
  });
16853
16853
  }
16854
16854
  // Render sanitized HTML content
16855
- return jsx("span", {
16855
+ // Use div instead of span to allow block-level elements like <hr>, <table>, etc.
16856
+ // This prevents React error #137 (invalid element nesting) when HTML contains
16857
+ // block elements from markdown (e.g., --- becomes <hr>)
16858
+ return jsx("div", {
16856
16859
  ...htmlProps,
16857
16860
  ...styleProps,
16858
16861
  dangerouslySetInnerHTML: {
package/dist/index.js CHANGED
@@ -16806,7 +16806,7 @@ function SafeSpanView(props) {
16806
16806
  });
16807
16807
  // Enhanced HTML sanitization with strict security configuration
16808
16808
  const sanitizeOptions = {
16809
- allowedTags: ['p', 'br', 'strong', 'em', 'u', 'span', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img'],
16809
+ allowedTags: ['p', 'br', 'strong', 'em', 'u', 'span', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img', 'hr', 'table', 'thead', 'tbody', 'tr', 'th', 'td'],
16810
16810
  allowedAttributes: {
16811
16811
  'a': ['href', 'title', 'target'],
16812
16812
  'img': ['src', 'alt', 'title', 'width', 'height'],
@@ -16854,7 +16854,10 @@ function SafeSpanView(props) {
16854
16854
  });
16855
16855
  }
16856
16856
  // Render sanitized HTML content
16857
- return jsxRuntime.jsx("span", {
16857
+ // Use div instead of span to allow block-level elements like <hr>, <table>, etc.
16858
+ // This prevents React error #137 (invalid element nesting) when HTML contains
16859
+ // block elements from markdown (e.g., --- becomes <hr>)
16860
+ return jsxRuntime.jsx("div", {
16858
16861
  ...htmlProps,
16859
16862
  ...styleProps,
16860
16863
  dangerouslySetInnerHTML: {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "./manifest.schema.json",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "palettes": [
5
5
  {
6
6
  "id": "default",
@@ -8,11 +8,11 @@
8
8
  "description": "Classic blue and neutral color scheme - the original QwickApps palette",
9
9
  "author": "QwickApps",
10
10
  "license": "PolyForm-Shield-1.0.0",
11
- "version": "1.5.9",
12
- "file": "palette-default.1.5.9.css",
11
+ "version": "1.5.10",
12
+ "file": "palette-default.1.5.10.css",
13
13
  "primaryColor": "#007bff",
14
14
  "inlined": true,
15
- "fileMinified": "palette-default.1.5.9.min.css",
15
+ "fileMinified": "palette-default.1.5.10.min.css",
16
16
  "fileLatest": "palette-default.latest.css",
17
17
  "fileLatestMinified": "palette-default.latest.min.css"
18
18
  },
@@ -22,11 +22,11 @@
22
22
  "description": "Warm oranges, golden yellows, and earthy browns - inspired by fall foliage",
23
23
  "author": "QwickApps",
24
24
  "license": "PolyForm-Shield-1.0.0",
25
- "version": "1.5.9",
26
- "file": "palette-autumn.1.5.9.css",
25
+ "version": "1.5.10",
26
+ "file": "palette-autumn.1.5.10.css",
27
27
  "primaryColor": "#ea580c",
28
28
  "inlined": false,
29
- "fileMinified": "palette-autumn.1.5.9.min.css",
29
+ "fileMinified": "palette-autumn.1.5.10.min.css",
30
30
  "fileLatest": "palette-autumn.latest.css",
31
31
  "fileLatestMinified": "palette-autumn.latest.min.css"
32
32
  },
@@ -36,11 +36,11 @@
36
36
  "description": "Modern purple gradient for creative and tech brands - inspired by cosmic nebulae",
37
37
  "author": "QwickApps",
38
38
  "license": "PolyForm-Shield-1.0.0",
39
- "version": "1.5.9",
40
- "file": "palette-cosmic.1.5.9.css",
39
+ "version": "1.5.10",
40
+ "file": "palette-cosmic.1.5.10.css",
41
41
  "primaryColor": "#8b5cf6",
42
42
  "inlined": false,
43
- "fileMinified": "palette-cosmic.1.5.9.min.css",
43
+ "fileMinified": "palette-cosmic.1.5.10.min.css",
44
44
  "fileLatest": "palette-cosmic.latest.css",
45
45
  "fileLatestMinified": "palette-cosmic.latest.min.css"
46
46
  },
@@ -50,11 +50,11 @@
50
50
  "description": "Deep blues, aqua teals, and seafoam greens - inspired by ocean depths",
51
51
  "author": "QwickApps",
52
52
  "license": "PolyForm-Shield-1.0.0",
53
- "version": "1.5.9",
54
- "file": "palette-ocean.1.5.9.css",
53
+ "version": "1.5.10",
54
+ "file": "palette-ocean.1.5.10.css",
55
55
  "primaryColor": "#0891b2",
56
56
  "inlined": false,
57
- "fileMinified": "palette-ocean.1.5.9.min.css",
57
+ "fileMinified": "palette-ocean.1.5.10.min.css",
58
58
  "fileLatest": "palette-ocean.latest.css",
59
59
  "fileLatestMinified": "palette-ocean.latest.min.css"
60
60
  },
@@ -64,11 +64,11 @@
64
64
  "description": "Fresh greens, soft pinks, and bright yellows - inspired by spring blooms",
65
65
  "author": "QwickApps",
66
66
  "license": "PolyForm-Shield-1.0.0",
67
- "version": "1.5.9",
68
- "file": "palette-spring.1.5.9.css",
67
+ "version": "1.5.10",
68
+ "file": "palette-spring.1.5.10.css",
69
69
  "primaryColor": "#16a34a",
70
70
  "inlined": false,
71
- "fileMinified": "palette-spring.1.5.9.min.css",
71
+ "fileMinified": "palette-spring.1.5.10.min.css",
72
72
  "fileLatest": "palette-spring.latest.css",
73
73
  "fileLatestMinified": "palette-spring.latest.min.css"
74
74
  },
@@ -78,11 +78,11 @@
78
78
  "description": "Cool blues, icy whites, and frosty grays - inspired by winter landscapes",
79
79
  "author": "QwickApps",
80
80
  "license": "PolyForm-Shield-1.0.0",
81
- "version": "1.5.9",
82
- "file": "palette-winter.1.5.9.css",
81
+ "version": "1.5.10",
82
+ "file": "palette-winter.1.5.10.css",
83
83
  "primaryColor": "#0077be",
84
84
  "inlined": false,
85
- "fileMinified": "palette-winter.1.5.9.min.css",
85
+ "fileMinified": "palette-winter.1.5.10.min.css",
86
86
  "fileLatest": "palette-winter.latest.css",
87
87
  "fileLatestMinified": "palette-winter.latest.min.css"
88
88
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwickapps/react-framework",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "description": "Complete React framework with responsive navigation, flexible layouts, theming system, and reusable components for building modern applications.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -32,7 +32,7 @@ function SafeSpanView(props: SafeSpanViewProps) {
32
32
  const sanitizeOptions = {
33
33
  allowedTags: [
34
34
  'p', 'br', 'strong', 'em', 'u', 'span', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
35
- 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img'
35
+ 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'a', 'img', 'hr', 'table', 'thead', 'tbody', 'tr', 'th', 'td'
36
36
  ],
37
37
  allowedAttributes: {
38
38
  'a': ['href', 'title', 'target'],
@@ -85,8 +85,11 @@ function SafeSpanView(props: SafeSpanViewProps) {
85
85
  }
86
86
 
87
87
  // Render sanitized HTML content
88
+ // Use div instead of span to allow block-level elements like <hr>, <table>, etc.
89
+ // This prevents React error #137 (invalid element nesting) when HTML contains
90
+ // block elements from markdown (e.g., --- becomes <hr>)
88
91
  return (
89
- <span
92
+ <div
90
93
  {...htmlProps}
91
94
  {...styleProps}
92
95
  dangerouslySetInnerHTML={{ __html: sanitizedHtml }}