@digital-ai/dot-components 2.5.4 → 2.6.0
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/CHANGE_LOG.md +29 -6
- package/index.esm.js +842 -223
- package/index.umd.js +1079 -395
- package/lib/components/index.d.ts +3 -0
- package/lib/components/input-form-fields/common.styles.d.ts +1 -0
- package/lib/components/stepper/Stepper.d.ts +60 -0
- package/lib/components/stepper/Stepper.stories.d.ts +10 -0
- package/lib/components/stepper/Stepper.stories.data.d.ts +80 -0
- package/lib/components/stepper/Stepper.styles.d.ts +11 -0
- package/lib/components/time-picker/TimePicker.d.ts +48 -0
- package/lib/components/time-picker/TimePicker.stories.d.ts +20 -0
- package/lib/components/time-picker/TimePicker.stories.styles.d.ts +6 -0
- package/lib/components/time-picker/TimePicker.styles.d.ts +7 -0
- package/lib/components/time-picker/index.d.ts +3 -0
- package/lib/components/time-picker/utils/helpers.d.ts +11 -0
- package/lib/components/time-picker/utils/models.d.ts +4 -0
- package/lib/testing-utils/intersection-observer-mock.d.ts +1 -0
- package/lib/testing-utils/scroll-into-view-mock.d.ts +1 -0
- package/package.json +1 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.6.0](https://www.npmjs.com/package/@digital-ai/dot-components) (04/05/2023)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.5.5...2.6.0)
|
|
6
|
+
|
|
7
|
+
**Features:**
|
|
8
|
+
|
|
9
|
+
- S-90954: `TimePicker` component [\#1432](https://github.com/digital-ai/dot-components/pull/1432) ([dmiletic85](https://github.com/dmiletic85))
|
|
10
|
+
- S-87859: Stepper component [\#1392](https://github.com/digital-ai/dot-components/pull/1392) ([nikolinadapic](https://github.com/nikolinadapic))
|
|
11
|
+
|
|
12
|
+
## [2.5.5](https://www.npmjs.com/package/@digital-ai/dot-components) (03/31/2023)
|
|
13
|
+
|
|
14
|
+
[Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.5.4...2.5.5)
|
|
15
|
+
|
|
16
|
+
**Fixed bugs:**
|
|
17
|
+
|
|
18
|
+
- S-82103: Update InlineEdit state [\#1430](https://github.com/digital-ai/dot-components/pull/1430) ([ryangamble](https://github.com/ryangamble))
|
|
19
|
+
- D-24591: Align icon on `ButtonToggle` [\#1427](https://github.com/digital-ai/dot-components/pull/1427) ([angel-git](https://github.com/angel-git))
|
|
20
|
+
|
|
3
21
|
## [2.5.4](https://www.npmjs.com/package/@digital-ai/dot-components) (03/29/2023)
|
|
4
22
|
|
|
5
23
|
[Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/2.5.3...2.5.4)
|
|
@@ -299,6 +317,10 @@
|
|
|
299
317
|
- S-87616 Adjust left margin for helper text [\#1262](https://github.com/digital-ai/dot-components/pull/1262) ([nikolinadapic](https://github.com/nikolinadapic))
|
|
300
318
|
- S-87599: `DotAutocomplete` Add optional `persistentLabel` prop [\#1258](https://github.com/digital-ai/dot-components/pull/1258) ([dmiletic85](https://github.com/dmiletic85))
|
|
301
319
|
|
|
320
|
+
**Fixed bugs:**
|
|
321
|
+
|
|
322
|
+
- S-85900: Optional behavior for app toolbar click away to close main menu [\#1256](https://github.com/digital-ai/dot-components/pull/1256) ([ray-jonathan](https://github.com/ray-jonathan))
|
|
323
|
+
|
|
302
324
|
## [2.0.0-rc.2](https://www.npmjs.com/package/@digital-ai/dot-components) (09/15/2022)
|
|
303
325
|
|
|
304
326
|
[Full Changelog](https://digital-ai.github.io/dot-components/?path=/story/introduction--page/digital-ai/dot-components/compare/1.21.2...2.0.0-rc.2)
|
|
@@ -313,7 +335,6 @@
|
|
|
313
335
|
|
|
314
336
|
**Fixed bugs:**
|
|
315
337
|
|
|
316
|
-
- S-85900: Optional behavior for app toolbar click away to close main menu [\#1256](https://github.com/digital-ai/dot-components/pull/1256) ([ray-jonathan](https://github.com/ray-jonathan))
|
|
317
338
|
- D-22241: `DotFileListItem`: fix focus states and expose `onKeyPress` [\#1254](https://github.com/digital-ai/dot-components/pull/1254) ([dmiletic85](https://github.com/dmiletic85))
|
|
318
339
|
|
|
319
340
|
## [2.0.0-rc.1](https://www.npmjs.com/package/@digital-ai/dot-components) (08/31/2022)
|
|
@@ -322,7 +343,6 @@
|
|
|
322
343
|
|
|
323
344
|
**Fixed bugs:**
|
|
324
345
|
|
|
325
|
-
- S-86692: component cleanup [\#1238](https://github.com/digital-ai/dot-components/pull/1238) ([CWSites](https://github.com/CWSites))
|
|
326
346
|
- S-84151: fix e2e tests for Release 2.0 [\#1146](https://github.com/digital-ai/dot-components/pull/1146) ([CWSites](https://github.com/CWSites))
|
|
327
347
|
|
|
328
348
|
**Misc:**
|
|
@@ -353,12 +373,12 @@
|
|
|
353
373
|
|
|
354
374
|
**Fixed bugs:**
|
|
355
375
|
|
|
376
|
+
- S-86692: component cleanup [\#1238](https://github.com/digital-ai/dot-components/pull/1238) ([CWSites](https://github.com/CWSites))
|
|
356
377
|
- D-20931: `DotAccordion` - display top border correctly when expanded [\#1232](https://github.com/digital-ai/dot-components/pull/1232) ([CWSites](https://github.com/CWSites))
|
|
357
378
|
- D-22087: `DotRadioGroup` / `DotCheckboxGroup` helper texts do not follow the same styles as other helper texts [\#1225](https://github.com/digital-ai/dot-components/pull/1225) ([dmiletic85](https://github.com/dmiletic85))
|
|
358
379
|
|
|
359
380
|
**Misc:**
|
|
360
381
|
|
|
361
|
-
- 28 jully 2022 icon update [\#1231](https://github.com/digital-ai/dot-components/pull/1231) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
362
382
|
- Issue \#1196: `eslint` and `tsconfig` changes [\#1221](https://github.com/digital-ai/dot-components/pull/1221) ([CWSites](https://github.com/CWSites))
|
|
363
383
|
|
|
364
384
|
## [1.20.0](https://www.npmjs.com/package/@digital-ai/dot-components) (07/23/2022)
|
|
@@ -377,6 +397,11 @@
|
|
|
377
397
|
|
|
378
398
|
- D-20378: update input margin to account for helper text [\#1212](https://github.com/digital-ai/dot-components/pull/1212) ([CWSites](https://github.com/CWSites))
|
|
379
399
|
- D-21918: Update `DotAlertBanner` to match Figma [\#1208](https://github.com/digital-ai/dot-components/pull/1208) ([CWSites](https://github.com/CWSites))
|
|
400
|
+
- D-21972: Adds props for custom tooltip position in ListItemProps [\#1207](https://github.com/digital-ai/dot-components/pull/1207) ([s-zimm](https://github.com/s-zimm))
|
|
401
|
+
|
|
402
|
+
**Misc:**
|
|
403
|
+
|
|
404
|
+
- 28 jully 2022 icon update [\#1231](https://github.com/digital-ai/dot-components/pull/1231) ([BojanKocijan](https://github.com/BojanKocijan))
|
|
380
405
|
|
|
381
406
|
## [1.19.1](https://www.npmjs.com/package/@digital-ai/dot-components) (07/18/2022)
|
|
382
407
|
|
|
@@ -388,7 +413,6 @@
|
|
|
388
413
|
- D-20693: `DotSidebar` updates to match Figma [\#1214](https://github.com/digital-ai/dot-components/pull/1214) ([CWSites](https://github.com/CWSites))
|
|
389
414
|
- D-20329: add href to application logo [\#1213](https://github.com/digital-ai/dot-components/pull/1213) ([CWSites](https://github.com/CWSites))
|
|
390
415
|
- D-20404: update table border color [\#1211](https://github.com/digital-ai/dot-components/pull/1211) ([CWSites](https://github.com/CWSites))
|
|
391
|
-
- D-21972: Adds props for custom tooltip position in ListItemProps [\#1207](https://github.com/digital-ai/dot-components/pull/1207) ([s-zimm](https://github.com/s-zimm))
|
|
392
416
|
|
|
393
417
|
## [1.19.0](https://www.npmjs.com/package/@digital-ai/dot-components) (07/11/2022)
|
|
394
418
|
|
|
@@ -414,7 +438,6 @@
|
|
|
414
438
|
**Fixed bugs:**
|
|
415
439
|
|
|
416
440
|
- D-21609: `DotAutocomplete` allow `null` as value [\#1195](https://github.com/digital-ai/dot-components/pull/1195) ([dmiletic85](https://github.com/dmiletic85))
|
|
417
|
-
- D-21606 `DotAutcomplete` loading spinner is in wrong position when `freesolo` is not enabled [\#1194](https://github.com/digital-ai/dot-components/pull/1194) ([angel-git](https://github.com/angel-git))
|
|
418
441
|
- D-21577: `DraggableList` improvements and bug fixes [\#1190](https://github.com/digital-ai/dot-components/pull/1190) ([dmiletic85](https://github.com/dmiletic85))
|
|
419
442
|
|
|
420
443
|
**Misc:**
|
|
@@ -945,7 +968,6 @@
|
|
|
945
968
|
|
|
946
969
|
- Patch release [\#780](https://github.com/digital-ai/dot-components/pull/780) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
947
970
|
- S-79985: temporarily remove react-jsonschema-form from library [\#776](https://github.com/digital-ai/dot-components/pull/776) ([TheKeithStewart](https://github.com/TheKeithStewart))
|
|
948
|
-
- Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
|
|
949
971
|
- S-76893: Webpack 4 - update peer dependencies [\#768](https://github.com/digital-ai/dot-components/pull/768) ([CWSites](https://github.com/CWSites))
|
|
950
972
|
- S-79957: improve husky [\#765](https://github.com/digital-ai/dot-components/pull/765) ([CWSites](https://github.com/CWSites))
|
|
951
973
|
|
|
@@ -965,6 +987,7 @@
|
|
|
965
987
|
|
|
966
988
|
**Misc:**
|
|
967
989
|
|
|
990
|
+
- Add submitButtonProps prop to DotJsonSchemaForm component [\#775](https://github.com/digital-ai/dot-components/pull/775) ([selsemore](https://github.com/selsemore))
|
|
968
991
|
- Next \[PATCH\] Release [\#762](https://github.com/digital-ai/dot-components/pull/762) ([CWSites](https://github.com/CWSites))
|
|
969
992
|
- S-79458: `Sidebar` apply agility specific updates to theme only [\#755](https://github.com/digital-ai/dot-components/pull/755) ([CWSites](https://github.com/CWSites))
|
|
970
993
|
|