@splunk/dynamic-editors 0.36.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 +805 -0
- package/DynamicEditor.js +498 -0
- package/DynamicEditor.js.map +1 -0
- package/LICENSE.md +14 -0
- package/containers/EditorItem.js +493 -0
- package/containers/EditorItem.js.map +1 -0
- package/containers/EditorLayout.js +493 -0
- package/containers/EditorLayout.js.map +1 -0
- package/containers/EditorLayoutItem.js +493 -0
- package/containers/EditorLayoutItem.js.map +1 -0
- package/containers/EncodingItem.js +6 -0
- package/containers/EncodingItem.js.map +1 -0
- package/editors/AdvancedConfigCard.js +78 -0
- package/editors/AdvancedConfigCard.js.map +1 -0
- package/editors/ArrayOfStringsEditor.js +37 -0
- package/editors/ArrayOfStringsEditor.js.map +1 -0
- package/editors/CheckboxEditor.js +57 -0
- package/editors/CheckboxEditor.js.map +1 -0
- package/editors/ColorEditor.js +43 -0
- package/editors/ColorEditor.js.map +1 -0
- package/editors/ColumnMultiSelectionByFieldNameEditor.js +37 -0
- package/editors/ColumnMultiSelectionByFieldNameEditor.js.map +1 -0
- package/editors/ColumnMultiSelectionEditor.js +37 -0
- package/editors/ColumnMultiSelectionEditor.js.map +1 -0
- package/editors/ColumnSelectionEditor.js +37 -0
- package/editors/ColumnSelectionEditor.js.map +1 -0
- package/editors/CustomizedInSourceEditor.js +15 -0
- package/editors/CustomizedInSourceEditor.js.map +1 -0
- package/editors/DynamicColorEditor.js +193 -0
- package/editors/DynamicColorEditor.js.map +1 -0
- package/editors/DynamicColorEditorWithPrecedence.js +213 -0
- package/editors/DynamicColorEditorWithPrecedence.js.map +1 -0
- package/editors/DynamicItemEditor.js +46 -0
- package/editors/DynamicItemEditor.js.map +1 -0
- package/editors/ImageEditor.js +81 -0
- package/editors/ImageEditor.js.map +1 -0
- package/editors/MarkdownEditor.js +25 -0
- package/editors/MarkdownEditor.js.map +1 -0
- package/editors/MultiColorPickerEditor.js +76 -0
- package/editors/MultiColorPickerEditor.js.map +1 -0
- package/editors/NumberEditor.js +37 -0
- package/editors/NumberEditor.js.map +1 -0
- package/editors/PercentEditor.js +37 -0
- package/editors/PercentEditor.js.map +1 -0
- package/editors/PresetSelectorEditor.js +81 -0
- package/editors/PresetSelectorEditor.js.map +1 -0
- package/editors/RadioBarEditor.js +37 -0
- package/editors/RadioBarEditor.js.map +1 -0
- package/editors/SelectEditor.js +37 -0
- package/editors/SelectEditor.js.map +1 -0
- package/editors/SeriesColorsByFieldEditor.js +76 -0
- package/editors/SeriesColorsByFieldEditor.js.map +1 -0
- package/editors/SeriesColorsEditor.js +104 -0
- package/editors/SeriesColorsEditor.js.map +1 -0
- package/editors/SliderEditor.js +41 -0
- package/editors/SliderEditor.js.map +1 -0
- package/editors/StaticItemEditor.js +46 -0
- package/editors/StaticItemEditor.js.map +1 -0
- package/editors/TableColumnFormatterEditor.js +493 -0
- package/editors/TableColumnFormatterEditor.js.map +1 -0
- package/editors/TextAreaEditor.js +45 -0
- package/editors/TextAreaEditor.js.map +1 -0
- package/editors/TextEditor.js +37 -0
- package/editors/TextEditor.js.map +1 -0
- package/editors/ThresholdEditor.js +87 -0
- package/editors/ThresholdEditor.js.map +1 -0
- package/editors/ToggleEditor.js +57 -0
- package/editors/ToggleEditor.js.map +1 -0
- package/editors/useColumnSelectorFooterMessage.js +6 -0
- package/editors/useColumnSelectorFooterMessage.js.map +1 -0
- package/fonts/SplunkDataSans_W_Bd.woff +0 -0
- package/fonts/SplunkDataSans_W_Bd.woff2 +0 -0
- package/fonts/SplunkDataSans_W_Blk.woff +0 -0
- package/fonts/SplunkDataSans_W_Blk.woff2 +0 -0
- package/fonts/SplunkDataSans_W_Lt.woff +0 -0
- package/fonts/SplunkDataSans_W_Lt.woff2 +0 -0
- package/fonts/SplunkDataSans_W_Md.woff +0 -0
- package/fonts/SplunkDataSans_W_Md.woff2 +0 -0
- package/fonts/SplunkDataSans_W_Rg.woff +0 -0
- package/fonts/SplunkDataSans_W_Rg.woff2 +0 -0
- package/fonts/SplunkDataSans_W_XBd.woff +0 -0
- package/fonts/SplunkDataSans_W_XBd.woff2 +0 -0
- package/fonts/inconsolata-regular.woff +0 -0
- package/fonts/proxima-bold-webfont.woff +0 -0
- package/fonts/proxima-regular-webfont.woff +0 -0
- package/fonts/proxima-semibold-webfont.woff +0 -0
- package/package.json +104 -0
- package/shared/AdvancedControlGroup.js +37 -0
- package/shared/AdvancedControlGroup.js.map +1 -0
- package/shared/ArrowLayer.js +23 -0
- package/shared/ArrowLayer.js.map +1 -0
- package/shared/CSPMessage.js +6 -0
- package/shared/CSPMessage.js.map +1 -0
- package/shared/ClickableIcon.js +18 -0
- package/shared/ClickableIcon.js.map +1 -0
- package/shared/CollapsiblePanel.js +8 -0
- package/shared/CollapsiblePanel.js.map +1 -0
- package/shared/ColumnSelectorFooterMessage.js +6 -0
- package/shared/ColumnSelectorFooterMessage.js.map +1 -0
- package/shared/CustomizedInSourceMessage.js +15 -0
- package/shared/CustomizedInSourceMessage.js.map +1 -0
- package/shared/FormatFieldName.js +6 -0
- package/shared/FormatFieldName.js.map +1 -0
- package/shared/Header.js +12 -0
- package/shared/Header.js.map +1 -0
- package/shared/MessageContainer.js +8 -0
- package/shared/MessageContainer.js.map +1 -0
- package/shared/PreviewWrapper.js +12 -0
- package/shared/PreviewWrapper.js.map +1 -0
- package/shared/Separator.js +8 -0
- package/shared/Separator.js.map +1 -0
- package/shared/dimensionConstants.js +6 -0
- package/shared/dimensionConstants.js.map +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,805 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [0.36.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.36.0...v0.36.1) (2025-07-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* type errors for RangeBoundary change handler ([9ecda93](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/9ecda93b435b5041e2cab5f9e1d93551e12e54dd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.36.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.5...v0.36.0) (2025-07-16)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **DEPS:** update to visualizations 28.0.0 ([304bcf6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/304bcf6dee82a37b0d6d850aa2e9d33967457267))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [0.35.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.4...v0.35.5) (2025-07-11)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [0.35.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.3...v0.35.4) (2025-07-03)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## [0.35.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.2...v0.35.3) (2025-07-03)
|
|
45
|
+
|
|
46
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## [0.35.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.1...v0.35.2) (2025-07-01)
|
|
53
|
+
|
|
54
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
## [0.35.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.35.0...v0.35.1) (2025-06-09)
|
|
61
|
+
|
|
62
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
63
|
+
|
|
64
|
+
# [0.35.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.34.0...v0.35.0) (2025-06-09)
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
- **SCP-73990:** add showBeta and helpTextLink to checkbox editor ([a1a65c6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/a1a65c65f1991439a7769ab261984559de3ba468))
|
|
69
|
+
|
|
70
|
+
# [0.34.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.5...v0.34.0) (2025-05-20)
|
|
71
|
+
|
|
72
|
+
### Features
|
|
73
|
+
|
|
74
|
+
- **SPL-265779:** Add New Text Area Dynamic Editor ([feaf79d](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/feaf79d8032352704b552b92499bc67c4b12dd9b))
|
|
75
|
+
|
|
76
|
+
## [0.33.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.4...v0.33.5) (2025-04-23)
|
|
77
|
+
|
|
78
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
79
|
+
|
|
80
|
+
## [0.33.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.3...v0.33.4) (2025-04-23)
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
- **SCP-74719:** ThresholdEditor - update `Add threshold level` link to button ([1b9b8f6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/1b9b8f670e80fbf3145e9b04632cf93ddb6bdda2))
|
|
85
|
+
|
|
86
|
+
## [0.33.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.2...v0.33.3) (2025-03-24)
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
- **A11Y-1820:** connect error to <Threshold> inputs ([e16c87e](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e16c87e1c93fccc0a67dd6b40c2e23f59b3c7a4e))
|
|
91
|
+
|
|
92
|
+
## [0.33.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.1...v0.33.2) (2025-03-06)
|
|
93
|
+
|
|
94
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
95
|
+
|
|
96
|
+
## [0.33.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.33.0...v0.33.1) (2025-03-04)
|
|
97
|
+
|
|
98
|
+
### Bug Fixes
|
|
99
|
+
|
|
100
|
+
- **SCP-74126:** debounce color change till no more rapid fire ([d4caf66](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/d4caf66767a0ffb45c12cda6b71785941d8d8fa3))
|
|
101
|
+
|
|
102
|
+
# [0.33.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.32.1...v0.33.0) (2025-02-11)
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
- **SCP-73188:** Map - dynamic color editor - bubble ([3d77e5b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/3d77e5b8b1ba9ec5613073c41985176395af89b4))
|
|
107
|
+
|
|
108
|
+
## [0.32.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.32.0...v0.32.1) (2025-02-05)
|
|
109
|
+
|
|
110
|
+
### Bug Fixes
|
|
111
|
+
|
|
112
|
+
- rename toggle label name in dynamic color editor with precedence ([298dd1c](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/298dd1cea1e887ce83b47a7102e6e68c7651f0f4))
|
|
113
|
+
|
|
114
|
+
# [0.32.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.6...v0.32.0) (2025-02-03)
|
|
115
|
+
|
|
116
|
+
### Features
|
|
117
|
+
|
|
118
|
+
- **SCP-73444:** dynamic color editor for map ([943db15](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/943db15b568c028e057ebeda3175b278d2c7e5c0))
|
|
119
|
+
|
|
120
|
+
## [0.31.6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.5...v0.31.6) (2025-01-17)
|
|
121
|
+
|
|
122
|
+
### Bug Fixes
|
|
123
|
+
|
|
124
|
+
- pass feature flags to isDisabled ([d97d2fa](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/d97d2fa15a318e745b554ff52223f493401575fd))
|
|
125
|
+
|
|
126
|
+
## [0.31.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.4...v0.31.5) (2025-01-15)
|
|
127
|
+
|
|
128
|
+
### Bug Fixes
|
|
129
|
+
|
|
130
|
+
- **A11Y-1812:** turn collapsible DynamicEditorSection title into heading ([9790520](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/9790520e172bdb20b71fe6a22e1a56510d0489cf))
|
|
131
|
+
|
|
132
|
+
## [0.31.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.3...v0.31.4) (2025-01-13)
|
|
133
|
+
|
|
134
|
+
### Bug Fixes
|
|
135
|
+
|
|
136
|
+
- **A11Y-2975:** change visible text of data configuration editors ([0c3990e](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/0c3990e9123fa2d4c8ea35f4524ab8e60715a1e6))
|
|
137
|
+
|
|
138
|
+
## [0.31.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.2...v0.31.3) (2025-01-09)
|
|
139
|
+
|
|
140
|
+
### Bug Fixes
|
|
141
|
+
|
|
142
|
+
- incorrect inline style for tooltip ([1783fba](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/1783fba87fcd5a18fba3689f7f7421a5a1e6a3fb))
|
|
143
|
+
|
|
144
|
+
## [0.31.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.1...v0.31.2) (2025-01-09)
|
|
145
|
+
|
|
146
|
+
### Bug Fixes
|
|
147
|
+
|
|
148
|
+
- **SCP-73461:** pass featureFlags to item.showEditor ([b43b586](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/b43b5866df26a3a1283bd4bfa8bdb84af9e7400a))
|
|
149
|
+
|
|
150
|
+
## [0.31.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.31.0...v0.31.1) (2025-01-03)
|
|
151
|
+
|
|
152
|
+
### Bug Fixes
|
|
153
|
+
|
|
154
|
+
- add default override function ([7c967da](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/7c967daff8ec8916b60d37d5976deed0cb379867))
|
|
155
|
+
|
|
156
|
+
# [0.31.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.5...v0.31.0) (2024-12-19)
|
|
157
|
+
|
|
158
|
+
### Features
|
|
159
|
+
|
|
160
|
+
- **SCP-70201:** add help text underneath toggle editor ([052970b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/052970b9058a98df85cebc98e9d02259cd7a18b6))
|
|
161
|
+
|
|
162
|
+
## [0.30.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.4...v0.30.5) (2024-12-17)
|
|
163
|
+
|
|
164
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
165
|
+
|
|
166
|
+
## [0.30.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.3...v0.30.4) (2024-12-12)
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
- **A11Y-316:** add labels to <ColorEditor> ([1a6872a](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/1a6872a5f4550e700c21cde63e558e2c76dccb3f))
|
|
171
|
+
|
|
172
|
+
## [0.30.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.2...v0.30.3) (2024-11-21)
|
|
173
|
+
|
|
174
|
+
### Bug Fixes
|
|
175
|
+
|
|
176
|
+
- support false value schema default in setOption ([39f0cf1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/39f0cf1a25d1b7cb38f527870ce47c002e94e765))
|
|
177
|
+
|
|
178
|
+
## [0.30.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.1...v0.30.2) (2024-11-20)
|
|
179
|
+
|
|
180
|
+
### Bug Fixes
|
|
181
|
+
|
|
182
|
+
- **A11Y-3335:** ColumnMultiSelectionEditor - fix for reading labels ([9fa660f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/9fa660f422ca35e4571052ce653322d1e23bc66d))
|
|
183
|
+
|
|
184
|
+
## [0.30.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.30.0...v0.30.1) (2024-11-15)
|
|
185
|
+
|
|
186
|
+
### Bug Fixes
|
|
187
|
+
|
|
188
|
+
- **SCP-58825:** accept default overrides in handleOptionChange callback ([489d021](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/489d0219aefe3f6641808e7e3dc6b4fe00274608))
|
|
189
|
+
|
|
190
|
+
# [0.30.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.29.1...v0.30.0) (2024-10-16)
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
- **SCP-72622:** update TableBackgroundColorEditor label ([f271222](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/f271222578684287354a5ebdd2b4ceb506b1a587))
|
|
195
|
+
|
|
196
|
+
## [0.29.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.29.0...v0.29.1) (2024-10-16)
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
- revert to defaultValue when clearing number input ([e546f6d](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e546f6dc0644f28bc2e2971bfeef2306fc8e5130))
|
|
201
|
+
|
|
202
|
+
# [0.29.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.28.0...v0.29.0) (2024-10-11)
|
|
203
|
+
|
|
204
|
+
### Features
|
|
205
|
+
|
|
206
|
+
- **SCP-37117:** add wildcard to table match value ([b89740a](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/b89740ab75a87414efa0dd77f1c6ebcaf1b76d19))
|
|
207
|
+
|
|
208
|
+
# [0.28.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.5...v0.28.0) (2024-10-10)
|
|
209
|
+
|
|
210
|
+
### Features
|
|
211
|
+
|
|
212
|
+
- make NumberEditor, PercentEditor, SliderEditor use new hook ([9d895bb](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/9d895bbe2cfe1b3316f0e98f30f14004345dbb14))
|
|
213
|
+
|
|
214
|
+
## [0.27.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.4...v0.27.5) (2024-09-17)
|
|
215
|
+
|
|
216
|
+
### Bug Fixes
|
|
217
|
+
|
|
218
|
+
- **SCP-69956:** add data-test-open prop to DECollapsiblePanel ([075246f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/075246f1f601ef9e52e4ae67cd793820ad29e4a5))
|
|
219
|
+
|
|
220
|
+
## [0.27.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.3...v0.27.4) (2024-08-30)
|
|
221
|
+
|
|
222
|
+
### Bug Fixes
|
|
223
|
+
|
|
224
|
+
- **A11Y-2844:** improve accessibility for PresetSelectorEditor ([4558f63](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/4558f636fd45b093309f80cf73cfdc6d68e94c59))
|
|
225
|
+
|
|
226
|
+
## [0.27.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.2...v0.27.3) (2024-08-22)
|
|
227
|
+
|
|
228
|
+
### Bug Fixes
|
|
229
|
+
|
|
230
|
+
- **A11Y-396:** update ThresholdError ([1f66008](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/1f66008415f2d2911de54e3eb2b0ba32079772fd))
|
|
231
|
+
|
|
232
|
+
## [0.27.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.1...v0.27.2) (2024-08-01)
|
|
233
|
+
|
|
234
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
235
|
+
|
|
236
|
+
## [0.27.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.27.0...v0.27.1) (2024-07-30)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
239
|
+
|
|
240
|
+
# [0.27.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.42...v0.27.0) (2024-07-24)
|
|
241
|
+
|
|
242
|
+
### Features
|
|
243
|
+
|
|
244
|
+
- **SCP-70998:** add text format to table column editor ([e2a6798](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e2a67986482e87e461defd73e19d41fe4573c68e))
|
|
245
|
+
|
|
246
|
+
## [0.26.42](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.41...v0.26.42) (2024-07-15)
|
|
247
|
+
|
|
248
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
249
|
+
|
|
250
|
+
## [0.26.41](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.40...v0.26.41) (2024-07-11)
|
|
251
|
+
|
|
252
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
253
|
+
|
|
254
|
+
## [0.26.40](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.39...v0.26.40) (2024-07-04)
|
|
255
|
+
|
|
256
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
257
|
+
|
|
258
|
+
## [0.26.39](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.38...v0.26.39) (2024-07-03)
|
|
259
|
+
|
|
260
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
261
|
+
|
|
262
|
+
## [0.26.38](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.37...v0.26.38) (2024-06-20)
|
|
263
|
+
|
|
264
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
265
|
+
|
|
266
|
+
## [0.26.37](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.36...v0.26.37) (2024-06-20)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
269
|
+
|
|
270
|
+
## [0.26.36](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.35...v0.26.36) (2024-06-14)
|
|
271
|
+
|
|
272
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
273
|
+
|
|
274
|
+
## [0.26.35](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.34...v0.26.35) (2024-06-10)
|
|
275
|
+
|
|
276
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
277
|
+
|
|
278
|
+
## [0.26.34](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.33...v0.26.34) (2024-06-10)
|
|
279
|
+
|
|
280
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
281
|
+
|
|
282
|
+
## [0.26.33](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.32...v0.26.33) (2024-06-06)
|
|
283
|
+
|
|
284
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
285
|
+
|
|
286
|
+
## [0.26.32](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.31...v0.26.32) (2024-06-06)
|
|
287
|
+
|
|
288
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
289
|
+
|
|
290
|
+
## [0.26.31](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.30...v0.26.31) (2024-06-06)
|
|
291
|
+
|
|
292
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
293
|
+
|
|
294
|
+
## [0.26.30](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.29...v0.26.30) (2024-06-06)
|
|
295
|
+
|
|
296
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
297
|
+
|
|
298
|
+
## [0.26.29](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.28...v0.26.29) (2024-06-04)
|
|
299
|
+
|
|
300
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
301
|
+
|
|
302
|
+
## [0.26.28](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.27...v0.26.28) (2024-06-04)
|
|
303
|
+
|
|
304
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
305
|
+
|
|
306
|
+
## [0.26.27](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.26...v0.26.27) (2024-06-04)
|
|
307
|
+
|
|
308
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
309
|
+
|
|
310
|
+
## [0.26.26](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.25...v0.26.26) (2024-06-04)
|
|
311
|
+
|
|
312
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
313
|
+
|
|
314
|
+
## [0.26.25](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.24...v0.26.25) (2024-05-31)
|
|
315
|
+
|
|
316
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
317
|
+
|
|
318
|
+
## [0.26.24](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.23...v0.26.24) (2024-05-31)
|
|
319
|
+
|
|
320
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
321
|
+
|
|
322
|
+
## [0.26.23](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.22...v0.26.23) (2024-05-29)
|
|
323
|
+
|
|
324
|
+
### Bug Fixes
|
|
325
|
+
|
|
326
|
+
- **SCP-61828:** improve MultiColorPickerEditor focus handling ([e1cf189](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e1cf189fc14ebe08e1055067712695e770ccc5ff))
|
|
327
|
+
|
|
328
|
+
## [0.26.22](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.21...v0.26.22) (2024-05-23)
|
|
329
|
+
|
|
330
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
331
|
+
|
|
332
|
+
## [0.26.21](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.20...v0.26.21) (2024-05-23)
|
|
333
|
+
|
|
334
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
335
|
+
|
|
336
|
+
## [0.26.20](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.19...v0.26.20) (2024-05-23)
|
|
337
|
+
|
|
338
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
339
|
+
|
|
340
|
+
## [0.26.19](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.18...v0.26.19) (2024-04-29)
|
|
341
|
+
|
|
342
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
343
|
+
|
|
344
|
+
## [0.26.18](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.17...v0.26.18) (2024-04-16)
|
|
345
|
+
|
|
346
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
347
|
+
|
|
348
|
+
## [0.26.17](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.16...v0.26.17) (2024-04-12)
|
|
349
|
+
|
|
350
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
351
|
+
|
|
352
|
+
## [0.26.16](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.15...v0.26.16) (2024-03-19)
|
|
353
|
+
|
|
354
|
+
### Bug Fixes
|
|
355
|
+
|
|
356
|
+
- **SCP-69835:** match value editor - crash due to calcucation of reversed colors ([62e3f33](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/62e3f33e29cfb6d1e47b343cb89e3d805f897726))
|
|
357
|
+
|
|
358
|
+
## [0.26.15](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.14...v0.26.15) (2024-03-18)
|
|
359
|
+
|
|
360
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
361
|
+
|
|
362
|
+
## [0.26.14](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.13...v0.26.14) (2024-03-16)
|
|
363
|
+
|
|
364
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
365
|
+
|
|
366
|
+
## [0.26.13](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.12...v0.26.13) (2024-03-13)
|
|
367
|
+
|
|
368
|
+
### Bug Fixes
|
|
369
|
+
|
|
370
|
+
- **SCP-53628:** ally - dynamic color editor and series color editor keyboard access ([3bdd348](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/3bdd348a5a31fe6b7508148c06c9093e9b27ebb3))
|
|
371
|
+
|
|
372
|
+
## [0.26.12](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.11...v0.26.12) (2023-10-24)
|
|
373
|
+
|
|
374
|
+
### Bug Fixes
|
|
375
|
+
|
|
376
|
+
- **SCP-67321:** color editor modal persists after click ([e852922](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e8529225ff457c880d8ec48a92b1950236a5b70a))
|
|
377
|
+
|
|
378
|
+
## [0.26.11](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.10...v0.26.11) (2023-10-05)
|
|
379
|
+
|
|
380
|
+
### Bug Fixes
|
|
381
|
+
|
|
382
|
+
- **SCP-66843:** add vertical scrollbar to the table column format editor popover ([2ebdd53](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2ebdd53a3884ed4358dd8e1ba11d61adac1baadd))
|
|
383
|
+
|
|
384
|
+
## [0.26.10](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.9...v0.26.10) (2023-09-18)
|
|
385
|
+
|
|
386
|
+
### Bug Fixes
|
|
387
|
+
|
|
388
|
+
- **SCP-61372:** disable seriesColorByField editor with no data source ([3bbc24c](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/3bbc24c6dda372b89b75064474d7519c8f67c254))
|
|
389
|
+
|
|
390
|
+
## [0.26.9](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.8...v0.26.9) (2023-09-11)
|
|
391
|
+
|
|
392
|
+
### Bug Fixes
|
|
393
|
+
|
|
394
|
+
- **SCP-58417:** fix console warning ([2ddde98](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2ddde982e8aca52edcfa37eb312bfacfe903dfc7))
|
|
395
|
+
|
|
396
|
+
## [0.26.8](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.7...v0.26.8) (2023-09-01)
|
|
397
|
+
|
|
398
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
399
|
+
|
|
400
|
+
## [0.26.7](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.6...v0.26.7) (2023-08-21)
|
|
401
|
+
|
|
402
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
403
|
+
|
|
404
|
+
## [0.26.6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.5...v0.26.6) (2023-07-26)
|
|
405
|
+
|
|
406
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
407
|
+
|
|
408
|
+
## [0.26.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.4...v0.26.5) (2023-06-23)
|
|
409
|
+
|
|
410
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
411
|
+
|
|
412
|
+
## [0.26.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.3...v0.26.4) (2023-06-21)
|
|
413
|
+
|
|
414
|
+
### Bug Fixes
|
|
415
|
+
|
|
416
|
+
- **SCP-64250:** prevent crashing when datasource is undefined ([2412a45](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2412a4547c57e1fa14b74a69f768f05ab5699b5d))
|
|
417
|
+
|
|
418
|
+
## [0.26.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.2...v0.26.3) (2023-06-05)
|
|
419
|
+
|
|
420
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
421
|
+
|
|
422
|
+
## [0.26.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.1...v0.26.2) (2023-05-06)
|
|
423
|
+
|
|
424
|
+
### Bug Fixes
|
|
425
|
+
|
|
426
|
+
- **SCP-63893:** naming consistency catch ([eceec6a](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/eceec6a2da74a4430281365080a53caf9fe8da08))
|
|
427
|
+
|
|
428
|
+
## [0.26.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.26.0...v0.26.1) (2023-04-28)
|
|
429
|
+
|
|
430
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
431
|
+
|
|
432
|
+
# [0.26.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.25.4...v0.26.0) (2023-04-13)
|
|
433
|
+
|
|
434
|
+
### Features
|
|
435
|
+
|
|
436
|
+
- add help tooltip for checkbox/toggle editors ([dfcef29](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/dfcef29ffd2635ae3e5cfe347e5180b0018afdd8))
|
|
437
|
+
|
|
438
|
+
## [0.25.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.25.3...v0.25.4) (2023-04-06)
|
|
439
|
+
|
|
440
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
441
|
+
|
|
442
|
+
## [0.25.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.25.2...v0.25.3) (2023-03-20)
|
|
443
|
+
|
|
444
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
445
|
+
|
|
446
|
+
## [0.25.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.25.1...v0.25.2) (2023-03-14)
|
|
447
|
+
|
|
448
|
+
### Bug Fixes
|
|
449
|
+
|
|
450
|
+
- **SCP-62483:** color alignment corrected ([5582aa3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/5582aa3fa3a8995b5c03f1e3972d231ce137c021))
|
|
451
|
+
|
|
452
|
+
### Reverts
|
|
453
|
+
|
|
454
|
+
- Revert "early draft - commit before weekend" ([e30b2c8](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e30b2c826b251742c1bd97649ecd6f5cdc38fb03))
|
|
455
|
+
|
|
456
|
+
## [0.25.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.25.0...v0.25.1) (2023-03-03)
|
|
457
|
+
|
|
458
|
+
### Bug Fixes
|
|
459
|
+
|
|
460
|
+
- **SCP-62264:** fix getOptionValue to accommodate nested array values ([f23a88e](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/f23a88ecdf7384c05e4ed2ccc58af176d17dcdc7))
|
|
461
|
+
|
|
462
|
+
# [0.25.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.24.0...v0.25.0) (2023-03-02)
|
|
463
|
+
|
|
464
|
+
### Features
|
|
465
|
+
|
|
466
|
+
- **SCP-62511:** "Alternative rows" label corrected ([399e62e](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/399e62e20e0606a2d8eae387e5016ddbce4eff56))
|
|
467
|
+
|
|
468
|
+
# [0.24.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.23.2...v0.24.0) (2023-01-25)
|
|
469
|
+
|
|
470
|
+
### Features
|
|
471
|
+
|
|
472
|
+
- **SCP-55796:** create AdvancedConfigCard to show advanced configuration results ([58a97e7](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/58a97e7f2944b73fb72280fbcd12d818542f525a))
|
|
473
|
+
|
|
474
|
+
## [0.23.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.23.1...v0.23.2) (2023-01-24)
|
|
475
|
+
|
|
476
|
+
### Bug Fixes
|
|
477
|
+
|
|
478
|
+
- use optional chaining for accessing event srcElement ([01dd666](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/01dd666f21343bf7f539c06467fdc492f57008ae))
|
|
479
|
+
|
|
480
|
+
## [0.23.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.23.0...v0.23.1) (2023-01-13)
|
|
481
|
+
|
|
482
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
483
|
+
|
|
484
|
+
# [0.23.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.22.4...v0.23.0) (2023-01-09)
|
|
485
|
+
|
|
486
|
+
### Features
|
|
487
|
+
|
|
488
|
+
- **SCP-55768:** extend ControlGroup to show advanced configuration button when needed ([24c3a13](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/24c3a13ca284caeba67ca4ac9db953f8686aaa98))
|
|
489
|
+
|
|
490
|
+
## [0.22.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.22.3...v0.22.4) (2023-01-03)
|
|
491
|
+
|
|
492
|
+
### Bug Fixes
|
|
493
|
+
|
|
494
|
+
- **SCP-59647:** seriesColorsByField works by category value and not field name for bubble and scatter viz ([31d5092](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/31d5092e68a90f776573961c50e629a33838c969))
|
|
495
|
+
|
|
496
|
+
## [0.22.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.22.2...v0.22.3) (2022-12-12)
|
|
497
|
+
|
|
498
|
+
### Bug Fixes
|
|
499
|
+
|
|
500
|
+
- **SCP-60571:** dynamic editors - not selectable on windows ([2fd3308](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2fd33087eb17878adaadb27ef10c2a63e4d63ba4))
|
|
501
|
+
|
|
502
|
+
## [0.22.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.22.1...v0.22.2) (2022-12-09)
|
|
503
|
+
|
|
504
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
505
|
+
|
|
506
|
+
## [0.22.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.22.0...v0.22.1) (2022-12-09)
|
|
507
|
+
|
|
508
|
+
### Bug Fixes
|
|
509
|
+
|
|
510
|
+
- **SCP-61000:** fix labels name in table dynamic editor ([b2fb73b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/b2fb73bbd20d0cedcd8f3ace35002bde463f5c43))
|
|
511
|
+
|
|
512
|
+
# [0.22.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.6...v0.22.0) (2022-11-29)
|
|
513
|
+
|
|
514
|
+
### Features
|
|
515
|
+
|
|
516
|
+
- **SCP-58106:** create ColumnMultiSelectionByFieldNameEditor for overlayFields configuration ([3932112](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/3932112a90628b20ecb029a60e5b47083f1db0e9))
|
|
517
|
+
|
|
518
|
+
## [0.21.6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.5...v0.21.6) (2022-11-23)
|
|
519
|
+
|
|
520
|
+
### Bug Fixes
|
|
521
|
+
|
|
522
|
+
- **SCP-60784:** show default colors on nested color editors ([8c7eeab](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/8c7eeab633ea84bf6f9f6898b60654f2b3c03f8a))
|
|
523
|
+
|
|
524
|
+
## [0.21.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.4...v0.21.5) (2022-11-11)
|
|
525
|
+
|
|
526
|
+
### Bug Fixes
|
|
527
|
+
|
|
528
|
+
- **SCP-59194:** add tooltip for SelectEditor to show message when disabled ([133cf77](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/133cf776a6406eb6eda313f8e9fe8f5eddd9a3d2))
|
|
529
|
+
|
|
530
|
+
## [0.21.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.3...v0.21.4) (2022-10-10)
|
|
531
|
+
|
|
532
|
+
### Bug Fixes
|
|
533
|
+
|
|
534
|
+
- MultiColorPickerEditor color chip flexible layout ([68bfc37](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/68bfc377d25f170783839d302f111bcc40025025))
|
|
535
|
+
|
|
536
|
+
## [0.21.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.2...v0.21.3) (2022-10-07)
|
|
537
|
+
|
|
538
|
+
### Bug Fixes
|
|
539
|
+
|
|
540
|
+
- **SCP-58368:** remove collapsible context and introduce new props ([5e79f46](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/5e79f460d2f927089d0b0766311a165d2c4a0b6a))
|
|
541
|
+
|
|
542
|
+
## [0.21.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.1...v0.21.2) (2022-10-05)
|
|
543
|
+
|
|
544
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
545
|
+
|
|
546
|
+
## [0.21.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.21.0...v0.21.1) (2022-09-30)
|
|
547
|
+
|
|
548
|
+
### Bug Fixes
|
|
549
|
+
|
|
550
|
+
- **SCP-58279:** collapsible panels have no separation ([2616e42](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2616e4201b9530a7c7d93a1a8e74d2243e55cf0f))
|
|
551
|
+
|
|
552
|
+
# [0.21.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.6...v0.21.0) (2022-09-28)
|
|
553
|
+
|
|
554
|
+
### Features
|
|
555
|
+
|
|
556
|
+
- **SCP-55658:** add SeriesColorsEditor for color configurations ([b966ca1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/b966ca161ca9844466551910fb437cf7dfaaeeec))
|
|
557
|
+
|
|
558
|
+
## [0.20.6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.5...v0.20.6) (2022-09-08)
|
|
559
|
+
|
|
560
|
+
### Bug Fixes
|
|
561
|
+
|
|
562
|
+
- StaticItemEditor theming ([644316b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/644316b7502a02b260a0704e74f84a3751cac348))
|
|
563
|
+
|
|
564
|
+
## [0.20.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.4...v0.20.5) (2022-09-02)
|
|
565
|
+
|
|
566
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
567
|
+
|
|
568
|
+
## [0.20.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.3...v0.20.4) (2022-09-02)
|
|
569
|
+
|
|
570
|
+
### Bug Fixes
|
|
571
|
+
|
|
572
|
+
- **SCP-54940:** do not handle image load/error when text input is cleared ([dd1c513](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/dd1c5135ced4803d7ef5cd6f6d0faaee4a9dd767))
|
|
573
|
+
|
|
574
|
+
## [0.20.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.2...v0.20.3) (2022-08-30)
|
|
575
|
+
|
|
576
|
+
### Bug Fixes
|
|
577
|
+
|
|
578
|
+
- collapsible panel background colors contrast ([d06f30b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/d06f30bd7d484c4d294da6bcc68523a1862fa077))
|
|
579
|
+
|
|
580
|
+
## [0.20.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.1...v0.20.2) (2022-08-29)
|
|
581
|
+
|
|
582
|
+
### Bug Fixes
|
|
583
|
+
|
|
584
|
+
- **SCP-57160:** column selectors handle undefined value ([705a4c7](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/705a4c7aee8ff9fd52a2a60d8bcf4689429f89e5))
|
|
585
|
+
|
|
586
|
+
## [0.20.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.20.0...v0.20.1) (2022-08-25)
|
|
587
|
+
|
|
588
|
+
### Bug Fixes
|
|
589
|
+
|
|
590
|
+
- PresetSelectorEditor theming ([4a4a2af](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/4a4a2af261a1b4b5b1abea96523e4fa39ccc7f00))
|
|
591
|
+
|
|
592
|
+
# [0.20.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.19.0...v0.20.0) (2022-08-23)
|
|
593
|
+
|
|
594
|
+
### Features
|
|
595
|
+
|
|
596
|
+
- **SCP-55687:** add an editor for seriesColorsByField viz option ([04ab49c](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/04ab49c6c6ef3a5811d14eeb477375108dd2035d))
|
|
597
|
+
- **SPL-224250:** add CSP error messaging ([9ae9146](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/9ae9146552f7f7e427c4c5d1dff20346c7a4e55f))
|
|
598
|
+
|
|
599
|
+
# [0.19.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.18.2...v0.19.0) (2022-08-12)
|
|
600
|
+
|
|
601
|
+
### Features
|
|
602
|
+
|
|
603
|
+
- **SCP-56120:** add a MultiColor Picker Editor ([72d7848](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/72d784898ab75050fa60a4487ad8f262b0ead543))
|
|
604
|
+
|
|
605
|
+
## [0.18.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.18.1...v0.18.2) (2022-08-09)
|
|
606
|
+
|
|
607
|
+
### Bug Fixes
|
|
608
|
+
|
|
609
|
+
- **SCP-56854:** add default binding for array objects ([2cc110c](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2cc110c6eb94f19bd48ed676aa80e747e1358fc0))
|
|
610
|
+
|
|
611
|
+
## [0.18.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.18.0...v0.18.1) (2022-08-02)
|
|
612
|
+
|
|
613
|
+
### Bug Fixes
|
|
614
|
+
|
|
615
|
+
- **SCP-56006:** remove token validation from TextEditor ([91f0f30](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/91f0f30f8d1853853cd54a50568aa275a1b5786c))
|
|
616
|
+
|
|
617
|
+
# [0.18.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.17.0...v0.18.0) (2022-07-29)
|
|
618
|
+
|
|
619
|
+
### Features
|
|
620
|
+
|
|
621
|
+
- **SCP-55686:** update SliderEditor to add number input ([f944d66](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/f944d66055b10a8c9e1a8d3b1239ff10d3309d4d))
|
|
622
|
+
|
|
623
|
+
# [0.17.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.16.1...v0.17.0) (2022-07-25)
|
|
624
|
+
|
|
625
|
+
### Features
|
|
626
|
+
|
|
627
|
+
- **SCP-55688:** Removes CollapsibleGroup and uses CollapsiblePanel for editor containers ([00370fe](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/00370fe2546dcaf3044ef3be460df0836318ffbe))
|
|
628
|
+
|
|
629
|
+
### BREAKING CHANGES
|
|
630
|
+
|
|
631
|
+
- **SCP-55688:** CollapsiblePanel uses the prop title as opposed to label
|
|
632
|
+
|
|
633
|
+
## [0.16.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.16.0...v0.16.1) (2022-06-03)
|
|
634
|
+
|
|
635
|
+
### Bug Fixes
|
|
636
|
+
|
|
637
|
+
- **SCP-54593:** fix ColumnMultiSelectionEditor infinite loop ([f4f07b9](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/f4f07b9390ea75d5a0e4ab0d8f7d4bb3b2e4fbfe))
|
|
638
|
+
|
|
639
|
+
# [0.16.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.15.0...v0.16.0) (2022-05-19)
|
|
640
|
+
|
|
641
|
+
### Features
|
|
642
|
+
|
|
643
|
+
- **SPL-224249:** update CSP warning message ([ae5c97e](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/ae5c97e4f916dc3f189ec203a24351896dc7220f))
|
|
644
|
+
|
|
645
|
+
# [0.15.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.14.0...v0.15.0) (2022-05-03)
|
|
646
|
+
|
|
647
|
+
### Features
|
|
648
|
+
|
|
649
|
+
- **SCP-51430:** add ColumnMultiSelectionEditor ([659cd9f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/659cd9f7e67fe6704f49436728424c2dc2e3e49e))
|
|
650
|
+
|
|
651
|
+
# [0.14.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.7...v0.14.0) (2022-04-04)
|
|
652
|
+
|
|
653
|
+
### Features
|
|
654
|
+
|
|
655
|
+
- **SCP-52145:** add validation to text editor ([648e020](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/648e02069c756d3dad7bfa6c4f9f8664d2572a2a))
|
|
656
|
+
|
|
657
|
+
## [0.13.7](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.6...v0.13.7) (2022-03-20)
|
|
658
|
+
|
|
659
|
+
### Bug Fixes
|
|
660
|
+
|
|
661
|
+
- show nested default options ([518491f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/518491fd6793a76a5ad35924332a64bb57f08798))
|
|
662
|
+
|
|
663
|
+
## [0.13.6](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.5...v0.13.6) (2022-03-18)
|
|
664
|
+
|
|
665
|
+
### Bug Fixes
|
|
666
|
+
|
|
667
|
+
- add min-width 0 to prevent nested flex overflow in ColorEditor ([8d9604f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/8d9604fbe1d86f278eac1e57204d229874b76d2f))
|
|
668
|
+
|
|
669
|
+
## [0.13.5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.4...v0.13.5) (2022-03-16)
|
|
670
|
+
|
|
671
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
672
|
+
|
|
673
|
+
## [0.13.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.3...v0.13.4) (2022-03-11)
|
|
674
|
+
|
|
675
|
+
### Bug Fixes
|
|
676
|
+
|
|
677
|
+
- show nested default options ([4585f3d](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/4585f3d7d8f9955afbfc36ec1ede6ded618a69e0))
|
|
678
|
+
|
|
679
|
+
## [0.13.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.2...v0.13.3) (2022-03-10)
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
- allow empty arrays and objects ([2d7db2b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/2d7db2be64ce89cef0fb12f2875c1eadda30bd0b))
|
|
684
|
+
|
|
685
|
+
## [0.13.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.1...v0.13.2) (2022-03-08)
|
|
686
|
+
|
|
687
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
688
|
+
|
|
689
|
+
## [0.13.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.13.0...v0.13.1) (2022-03-01)
|
|
690
|
+
|
|
691
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
692
|
+
|
|
693
|
+
# [0.13.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.12.0...v0.13.0) (2022-02-24)
|
|
694
|
+
|
|
695
|
+
### Features
|
|
696
|
+
|
|
697
|
+
- **SCP-49964:** update editing of options ([4610474](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/4610474579645ddad31608ce3c6d9c4888bb70ca))
|
|
698
|
+
|
|
699
|
+
# [0.12.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.11.0...v0.12.0) (2022-02-17)
|
|
700
|
+
|
|
701
|
+
### Features
|
|
702
|
+
|
|
703
|
+
- **SCP-49168:** support matchvalue formatter in table editor ([0760df7](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/0760df7da232fd630c0d56e15290f4a2242a2e32))
|
|
704
|
+
|
|
705
|
+
# [0.11.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.10.1...v0.11.0) (2022-01-27)
|
|
706
|
+
|
|
707
|
+
### Features
|
|
708
|
+
|
|
709
|
+
- **SCP-47499:** add CSP error messages to image and markdown editor ([6e39752](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/6e39752452e86abe4b2105f213c827d4de369d01))
|
|
710
|
+
|
|
711
|
+
## [0.10.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.10.0...v0.10.1) (2022-01-26)
|
|
712
|
+
|
|
713
|
+
### Bug Fixes
|
|
714
|
+
|
|
715
|
+
- fix types for matchvalue text editor, remove unneeded prop ([e89bcc4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e89bcc46dfe2ca7d54d2d65dcfc72e926130f062))
|
|
716
|
+
|
|
717
|
+
# [0.10.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.9.0...v0.10.0) (2022-01-25)
|
|
718
|
+
|
|
719
|
+
### Features
|
|
720
|
+
|
|
721
|
+
- **SCP-48671:** add tooltips to editor.text ([10156eb](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/10156ebbe89b0babc08e77ddb34712f276185c79))
|
|
722
|
+
|
|
723
|
+
# [0.9.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.8.4...v0.9.0) (2022-01-21)
|
|
724
|
+
|
|
725
|
+
### Bug Fixes
|
|
726
|
+
|
|
727
|
+
- **SCP-43732:** fix color picker in compact mode ([a2563a2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/a2563a28218fd82f95588f548e6126c81f3e7426))
|
|
728
|
+
|
|
729
|
+
### Features
|
|
730
|
+
|
|
731
|
+
- **SCP-38553:** add matchvalue formatter editor to dynamic color editor ([0e652f5](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/0e652f5394150925d34846a64a307ad2c5ad6190))
|
|
732
|
+
|
|
733
|
+
## [0.8.4](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.8.3...v0.8.4) (2021-12-04)
|
|
734
|
+
|
|
735
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
736
|
+
|
|
737
|
+
## [0.8.3](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.8.2...v0.8.3) (2021-09-20)
|
|
738
|
+
|
|
739
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
740
|
+
|
|
741
|
+
## [0.8.2](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.8.1...v0.8.2) (2021-09-17)
|
|
742
|
+
|
|
743
|
+
### Bug Fixes
|
|
744
|
+
|
|
745
|
+
- **SCP-40957:** remove markdown preview ([e98b277](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e98b2777c12f715c477447de05952807b264611c))
|
|
746
|
+
|
|
747
|
+
## [0.8.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.8.0...v0.8.1) (2021-09-14)
|
|
748
|
+
|
|
749
|
+
### Bug Fixes
|
|
750
|
+
|
|
751
|
+
- **SCP-44268:** infer color reversal state in range value editor ([53ed73f](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/53ed73f34a2949905b09641fb2142e4d52d78c92))
|
|
752
|
+
|
|
753
|
+
# [0.8.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.7.1...v0.8.0) (2021-09-11)
|
|
754
|
+
|
|
755
|
+
### Features
|
|
756
|
+
|
|
757
|
+
- **SCP-43951:** Support filtering by type in ColumnSelection Editor ([cdb692d](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/cdb692da81ca54e1b5357c8989b1b1e0e7a706d5))
|
|
758
|
+
|
|
759
|
+
## [0.7.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.7.0...v0.7.1) (2021-09-08)
|
|
760
|
+
|
|
761
|
+
### Bug Fixes
|
|
762
|
+
|
|
763
|
+
- array of strings editor handles non array values ([4560114](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/45601145457c91d4d1d99024ac363fee45efd533))
|
|
764
|
+
|
|
765
|
+
# [0.7.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.6.0...v0.7.0) (2021-08-17)
|
|
766
|
+
|
|
767
|
+
### Features
|
|
768
|
+
|
|
769
|
+
- update viz dependencies to 23.1.0 ([7fe084b](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/7fe084bba50794a7f29ed6c5b2fccf4c7cebd466))
|
|
770
|
+
- **SCP-43733:** add basic editing UI for array of strings ([e0ec9fb](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/e0ec9fb4096acd145ee84c0509e2efd726fce805))
|
|
771
|
+
|
|
772
|
+
# [0.6.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.5.1...v0.6.0) (2021-08-16)
|
|
773
|
+
|
|
774
|
+
### Features
|
|
775
|
+
|
|
776
|
+
- **SCP-43447:** Prevent editor props from changing too frequently ([c4b7655](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/c4b765591e8988d04ddf097411cdcd9df0efca5a))
|
|
777
|
+
|
|
778
|
+
## [0.5.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.5.0...v0.5.1) (2021-08-16)
|
|
779
|
+
|
|
780
|
+
**Note:** Version bump only for package @splunk/dynamic-editors
|
|
781
|
+
|
|
782
|
+
# [0.5.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.4.1...v0.5.0) (2021-08-13)
|
|
783
|
+
|
|
784
|
+
### Features
|
|
785
|
+
|
|
786
|
+
- update viz dependencies to 23.0.0 ([b734b31](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/b734b31210efeffdb77b4efe32dd80f24f4789bf))
|
|
787
|
+
|
|
788
|
+
## [0.4.1](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.4.0...v0.4.1) (2021-07-09)
|
|
789
|
+
|
|
790
|
+
### Bug Fixes
|
|
791
|
+
|
|
792
|
+
- **SCP-40607:** table bg color change on alternating row off ([89440dc](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/89440dc75259d17bd983f792e39196907f37ccc7))
|
|
793
|
+
|
|
794
|
+
# [0.4.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.3.0...v0.4.0) (2021-06-14)
|
|
795
|
+
|
|
796
|
+
### Features
|
|
797
|
+
|
|
798
|
+
- **SCP-37742:** move StaticItemEditor and DynamicItemEditor into dynamic-editors ([d62ff28](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/d62ff2809a674a733808f25c42e8cfede2292afd))
|
|
799
|
+
|
|
800
|
+
# [0.3.0](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/compare/v0.2.0...v0.3.0) (2021-05-24)
|
|
801
|
+
|
|
802
|
+
### Features
|
|
803
|
+
|
|
804
|
+
- **SCP-33682:** fix image size for some svg files ([0362165](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/03621655c1e6d66dc406d3bba136de1f6d44e7fd))
|
|
805
|
+
- **SCP-39904:** add markdown editor component ([037e08d](https://cd.splunkdev.com/devplat/splunk-dynamic-editors/commits/037e08d16a2682a2d6454e2d4b270a460bda30d9))
|