@widergy/energy-ui 3.141.0 → 3.141.1
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.141.1](https://github.com/widergy/energy-ui/compare/v3.141.0...v3.141.1) (2026-03-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* markdown fix ([#770](https://github.com/widergy/energy-ui/issues/770)) ([bbb9804](https://github.com/widergy/energy-ui/commit/bbb980470af108f4472b00eb03fdc8c542c2e333))
|
|
7
|
+
|
|
1
8
|
# [3.141.0](https://github.com/widergy/energy-ui/compare/v3.140.0...v3.141.0) (2026-03-18)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -24,35 +24,94 @@ function remarkDeflist() {
|
|
|
24
24
|
return tree => {
|
|
25
25
|
(0, _unistUtilVisit.visit)(tree, _constants.NODE_TYPES.PARAGRAPH, (node, index, parent) => {
|
|
26
26
|
if (!parent || !Array.isArray(parent.children)) return;
|
|
27
|
+
|
|
28
|
+
// Check if this paragraph contains definition list items
|
|
29
|
+
// A valid definition list has lines that start with ':' at the beginning (after whitespace)
|
|
30
|
+
const hasDefinitionItems = node.children.some(child => {
|
|
31
|
+
if ('value' in child) {
|
|
32
|
+
const lines = child.value.split('\n');
|
|
33
|
+
return lines.some(l => l.trim().startsWith(':'));
|
|
34
|
+
}
|
|
35
|
+
return false;
|
|
36
|
+
});
|
|
37
|
+
if (!hasDefinitionItems) return;
|
|
38
|
+
|
|
39
|
+
// Extract text content to check structure
|
|
27
40
|
const raw = node.children.map(ch => 'value' in ch ? ch.value : '').join('');
|
|
28
41
|
const lines = raw.split('\n');
|
|
29
|
-
|
|
42
|
+
|
|
43
|
+
// Validate that this is a proper definition list structure
|
|
44
|
+
// A valid definition list should have at least one term followed by descriptions
|
|
45
|
+
let hasValidStructure = false;
|
|
46
|
+
let hasTerms = false;
|
|
47
|
+
let hasDescriptions = false;
|
|
48
|
+
for (let i = 0; i < lines.length; i += 1) {
|
|
49
|
+
const trimmed = lines[i].trim();
|
|
50
|
+
if (trimmed && !trimmed.startsWith(':')) {
|
|
51
|
+
hasTerms = true;
|
|
52
|
+
}
|
|
53
|
+
if (trimmed.startsWith(':')) {
|
|
54
|
+
hasDescriptions = true;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
hasValidStructure = hasTerms && hasDescriptions;
|
|
58
|
+
if (!hasValidStructure) return;
|
|
59
|
+
|
|
60
|
+
// Build items while preserving node structure
|
|
30
61
|
const items = [];
|
|
31
62
|
let currentTerm = null;
|
|
32
|
-
|
|
33
|
-
const line = lines[i];
|
|
34
|
-
const trimmed = line.trim();
|
|
63
|
+
const processLine = trimmed => {
|
|
35
64
|
if (trimmed && !trimmed.startsWith(':')) {
|
|
65
|
+
// This is a term
|
|
36
66
|
if (currentTerm) {
|
|
37
|
-
items.push(
|
|
67
|
+
items.push({
|
|
68
|
+
term: currentTerm,
|
|
69
|
+
desc: []
|
|
70
|
+
});
|
|
38
71
|
}
|
|
39
|
-
currentTerm =
|
|
40
|
-
term: trimmed,
|
|
41
|
-
desc: []
|
|
42
|
-
};
|
|
72
|
+
currentTerm = trimmed;
|
|
43
73
|
} else if (trimmed.startsWith(':')) {
|
|
74
|
+
// This is a description
|
|
44
75
|
if (!currentTerm) {
|
|
45
|
-
currentTerm =
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
76
|
+
currentTerm = '';
|
|
77
|
+
}
|
|
78
|
+
const itemExists = items.some(item => item.term === currentTerm);
|
|
79
|
+
if (!itemExists) {
|
|
80
|
+
// Only add if we haven't already added this term
|
|
81
|
+
if (currentTerm) {
|
|
82
|
+
items.push({
|
|
83
|
+
term: currentTerm,
|
|
84
|
+
desc: []
|
|
85
|
+
});
|
|
86
|
+
currentTerm = null;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
const descText = trimmed.replace(/^:\s*/, '');
|
|
90
|
+
if (items.length > 0) {
|
|
91
|
+
items[items.length - 1].desc.push(descText);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
for (let i = 0; i < node.children.length; i += 1) {
|
|
96
|
+
const child = node.children[i];
|
|
97
|
+
if ('value' in child) {
|
|
98
|
+
const childLines = child.value.split('\n');
|
|
99
|
+
for (let lineIdx = 0; lineIdx < childLines.length; lineIdx += 1) {
|
|
100
|
+
const line = childLines[lineIdx];
|
|
101
|
+
const trimmed = line.trim();
|
|
102
|
+
processLine(trimmed);
|
|
49
103
|
}
|
|
50
|
-
currentTerm.desc.push(trimmed.replace(/^:\s*/, ''));
|
|
51
104
|
}
|
|
52
105
|
}
|
|
53
106
|
if (currentTerm) {
|
|
54
|
-
items.push(
|
|
107
|
+
items.push({
|
|
108
|
+
term: currentTerm,
|
|
109
|
+
desc: []
|
|
110
|
+
});
|
|
55
111
|
}
|
|
112
|
+
|
|
113
|
+
// Only process if we have valid items
|
|
114
|
+
if (items.length === 0) return;
|
|
56
115
|
const dlNode = {
|
|
57
116
|
type: _constants.COMPONENTS_NAMES.DEFINITION_LIST,
|
|
58
117
|
data: {
|