@spaced-out/ui-design-system 0.4.8 → 0.4.9
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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.4.9](https://github.com/spaced-out/ui-design-system/compare/v0.4.8...v0.4.9) (2025-07-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* menu virtualization ([#378](https://github.com/spaced-out/ui-design-system/issues/378)) ([8ba2f75](https://github.com/spaced-out/ui-design-system/commit/8ba2f754f60f1bd9635d37c4320da033d5257037))
|
|
11
|
+
|
|
5
12
|
### [0.4.8](https://github.com/spaced-out/ui-design-system/compare/v0.4.7...v0.4.8) (2025-07-24)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -215,6 +215,9 @@ const DateRangeWrapper = exports.DateRangeWrapper = /*#__PURE__*/React.forwardRe
|
|
|
215
215
|
selectedKeys: [timezone],
|
|
216
216
|
options: (0, _utils.getTimezones)(t),
|
|
217
217
|
allowSearch: true,
|
|
218
|
+
virtualization: {
|
|
219
|
+
enable: true
|
|
220
|
+
},
|
|
218
221
|
staticLabels: {
|
|
219
222
|
SEARCH_PLACEHOLDER: `${(0, _dateRangePicker.getTranslation)(t, 'Search')}...`,
|
|
220
223
|
RESULT: (0, _dateRangePicker.getTranslation)(t, 'result'),
|
|
@@ -227,10 +230,7 @@ const DateRangeWrapper = exports.DateRangeWrapper = /*#__PURE__*/React.forwardRe
|
|
|
227
230
|
box: _DateRangeWrapperModule.default.timezoneDropdown
|
|
228
231
|
},
|
|
229
232
|
onChange: event => setTimezone(event.key),
|
|
230
|
-
size: "small"
|
|
231
|
-
menuVirtualization: {
|
|
232
|
-
enable: true
|
|
233
|
-
}
|
|
233
|
+
size: "small"
|
|
234
234
|
})), /*#__PURE__*/React.createElement(_Card.CardActions, null, /*#__PURE__*/React.createElement(_Button.Button, {
|
|
235
235
|
type: "ghost",
|
|
236
236
|
onClick: onCancel,
|
|
@@ -345,6 +345,9 @@ export const DateRangeWrapper: React$AbstractComponent<
|
|
|
345
345
|
selectedKeys: [timezone],
|
|
346
346
|
options: getTimezones(t),
|
|
347
347
|
allowSearch: true,
|
|
348
|
+
virtualization: {
|
|
349
|
+
enable: true,
|
|
350
|
+
},
|
|
348
351
|
staticLabels: {
|
|
349
352
|
SEARCH_PLACEHOLDER: `${getTranslation(t, 'Search')}...`,
|
|
350
353
|
RESULT: getTranslation(t, 'result'),
|
|
@@ -358,9 +361,6 @@ export const DateRangeWrapper: React$AbstractComponent<
|
|
|
358
361
|
}}
|
|
359
362
|
onChange={(event) => setTimezone(event.key)}
|
|
360
363
|
size="small"
|
|
361
|
-
menuVirtualization={{
|
|
362
|
-
enable: true,
|
|
363
|
-
}}
|
|
364
364
|
/>
|
|
365
365
|
)}
|
|
366
366
|
</CardTitle>
|