@innovaccer/design-system 2.29.0 → 2.30.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 +82 -0
- package/css/dist/index.css +56 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/calendar.css +4 -0
- package/css/src/components/grid.css +6 -0
- package/css/src/components/listbox.css +4 -0
- package/css/src/components/menu.css +27 -0
- package/css/src/variables/index.css +14 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +205 -28
- package/dist/core/components/atoms/_text/index.d.ts +2 -4
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +4 -0
- package/dist/core/components/atoms/text/Text.d.ts +3 -10
- package/dist/core/components/css-utilities/designTokens/Data.d.ts +4 -0
- package/dist/core/components/molecules/popover/Popover.d.ts +5 -0
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +8 -0
- package/dist/core/components/organisms/calendar/Calendar.d.ts +1 -0
- package/dist/core/components/organisms/list/List.d.ts +1 -0
- package/dist/core/components/organisms/listbox/listboxItem/ListBody.d.ts +4 -1
- package/dist/core/components/organisms/listbox/listboxItem/ListboxItem.d.ts +3 -3
- package/dist/core/components/organisms/menu/Menu.d.ts +49 -0
- package/dist/core/components/organisms/menu/MenuContext.d.ts +13 -0
- package/dist/core/components/organisms/menu/MenuGroup.d.ts +14 -0
- package/dist/core/components/organisms/menu/MenuItem.d.ts +17 -0
- package/dist/core/components/organisms/menu/MenuList.d.ts +19 -0
- package/dist/core/components/organisms/menu/SubMenu.d.ts +6 -0
- package/dist/core/components/organisms/menu/SubMenuContext.d.ts +10 -0
- package/dist/core/components/organisms/menu/index.d.ts +2 -0
- package/dist/core/components/organisms/menu/trigger/MenuTrigger.d.ts +6 -0
- package/dist/core/components/organisms/menu/trigger/utils.d.ts +3 -0
- package/dist/core/components/organisms/menu/utils.d.ts +2 -0
- package/dist/core/components/organisms/table/Header.d.ts +2 -0
- package/dist/core/components/organisms/table/Table.d.ts +3 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/index.esm.js +779 -191
- package/dist/index.js +654 -73
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,85 @@
|
|
|
1
|
+
## 2.30.1 (2024-04-03)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(opacity): add new tokens for opacity (460fb565)
|
|
6
|
+
|
|
7
|
+
### Breaking changes
|
|
8
|
+
|
|
9
|
+
NA
|
|
10
|
+
|
|
11
|
+
### Migration guide
|
|
12
|
+
|
|
13
|
+
NA
|
|
14
|
+
|
|
15
|
+
### Deprecations
|
|
16
|
+
|
|
17
|
+
NA
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- feat(opacity): add new tokens for opacity (460fb565)
|
|
22
|
+
|
|
23
|
+
### Fixes
|
|
24
|
+
|
|
25
|
+
- fix(table): global action button alignment (5a04afaa)
|
|
26
|
+
|
|
27
|
+
### Improvements
|
|
28
|
+
|
|
29
|
+
NA
|
|
30
|
+
|
|
31
|
+
### Documentation
|
|
32
|
+
|
|
33
|
+
- docs(docs): add menu component documentation (088a90e4)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 2.30.0 (2024-04-01)
|
|
38
|
+
|
|
39
|
+
### Highlights
|
|
40
|
+
|
|
41
|
+
- feat(menu): add new menu component (19010c36)
|
|
42
|
+
- feat(table): add global action support in table (2d1b2eb1)
|
|
43
|
+
- feat(daterangepicker): add reverse date range selection support (15a7febb)
|
|
44
|
+
- feat(tooltip): show tooltip on text overflow (04ebe60e)
|
|
45
|
+
|
|
46
|
+
### Breaking changes
|
|
47
|
+
|
|
48
|
+
NA
|
|
49
|
+
|
|
50
|
+
### Migration guide
|
|
51
|
+
|
|
52
|
+
NA
|
|
53
|
+
|
|
54
|
+
### Deprecations
|
|
55
|
+
|
|
56
|
+
NA
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
- feat(menu): add new menu component (19010c36)
|
|
61
|
+
- feat(table): add global action support in table (2d1b2eb1)
|
|
62
|
+
- feat(daterangepicker): add reverse date range selection support (15a7febb)
|
|
63
|
+
- feat(tooltip): show tooltip on text overflow (04ebe60e)
|
|
64
|
+
|
|
65
|
+
### Fixes
|
|
66
|
+
|
|
67
|
+
NA
|
|
68
|
+
|
|
69
|
+
### Improvements
|
|
70
|
+
|
|
71
|
+
- feat(select): add helptext and top label story (b0fa99f4)
|
|
72
|
+
- feat(menu): add stories for default and destructive variant (0184d311)
|
|
73
|
+
- feat(menu): update submenu context api (23473923)
|
|
74
|
+
|
|
75
|
+
### Documentation
|
|
76
|
+
|
|
77
|
+
- docs(docs): add combobox documentation (71584bf8)
|
|
78
|
+
- docs(select): add documentation of select component (4ded82a8)
|
|
79
|
+
- docs(daterangepicker): add reverse date selection documentation for daterangepicker (58836ea8)
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
1
83
|
## 2.29.0 (2024-03-13)
|
|
2
84
|
|
|
3
85
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -272,6 +272,20 @@
|
|
|
272
272
|
--duration--moderate-02: 240ms;
|
|
273
273
|
--duration--slow-01: 400ms;
|
|
274
274
|
--duration--slow-02: 720ms;
|
|
275
|
+
|
|
276
|
+
/**** Opacity ****/
|
|
277
|
+
--opacity-0: 0;
|
|
278
|
+
--opacity-4: 0.04;
|
|
279
|
+
--opacity-8: 0.08;
|
|
280
|
+
--opacity-12: 0.12;
|
|
281
|
+
--opacity-16: 0.16;
|
|
282
|
+
--opacity-24: 0.24;
|
|
283
|
+
--opacity-32: 0.32;
|
|
284
|
+
--opacity-40: 0.4;
|
|
285
|
+
--opacity-48: 0.48;
|
|
286
|
+
--opacity-64: 0.64;
|
|
287
|
+
--opacity-80: 0.8;
|
|
288
|
+
--opacity-100: 1;
|
|
275
289
|
}
|
|
276
290
|
|
|
277
291
|
/* fallback */
|
|
@@ -1757,6 +1771,10 @@ body {
|
|
|
1757
1771
|
border-radius: 0 var(--spacing-m) var(--spacing-m) 0;
|
|
1758
1772
|
}
|
|
1759
1773
|
|
|
1774
|
+
.Calendar-valueWrapper--hoverEndDate {
|
|
1775
|
+
background: linear-gradient(90deg, white 50%, var(--primary-lightest) 10%);
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1760
1778
|
.Calendar-valueWrapper--endError {
|
|
1761
1779
|
background: linear-gradient(90deg, var(--alert-lightest) 50%, white 50%);
|
|
1762
1780
|
}
|
|
@@ -4040,6 +4058,12 @@ body {
|
|
|
4040
4058
|
margin-bottom: var(--spacing-2);
|
|
4041
4059
|
}
|
|
4042
4060
|
|
|
4061
|
+
.Header-global-actions {
|
|
4062
|
+
justify-content: flex-end;
|
|
4063
|
+
margin-left: auto;
|
|
4064
|
+
margin-bottom: var(--spacing-2);
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4043
4067
|
.HorizontalNav {
|
|
4044
4068
|
display: flex;
|
|
4045
4069
|
}
|
|
@@ -4731,6 +4755,10 @@ body {
|
|
|
4731
4755
|
padding-right: var(--spacing-2);
|
|
4732
4756
|
}
|
|
4733
4757
|
|
|
4758
|
+
.Listbox-item-wrapper {
|
|
4759
|
+
width: 100%;
|
|
4760
|
+
}
|
|
4761
|
+
|
|
4734
4762
|
.Listbox-item-wrapper:last-child > .Listbox-divider,
|
|
4735
4763
|
.Listbox-item--draggable:last-child .Listbox-divider {
|
|
4736
4764
|
background: transparent;
|
|
@@ -4833,6 +4861,34 @@ body {
|
|
|
4833
4861
|
color: var(--primary);
|
|
4834
4862
|
}
|
|
4835
4863
|
|
|
4864
|
+
.Menu {
|
|
4865
|
+
overflow-y: auto !important;
|
|
4866
|
+
padding-top: var(--spacing-m);
|
|
4867
|
+
padding-bottom: var(--spacing-m);
|
|
4868
|
+
}
|
|
4869
|
+
|
|
4870
|
+
.Menu-Trigger--active {
|
|
4871
|
+
background-color: var(--secondary-dark);
|
|
4872
|
+
}
|
|
4873
|
+
|
|
4874
|
+
.Menu-Item {
|
|
4875
|
+
width: 100%;
|
|
4876
|
+
box-sizing: border-box;
|
|
4877
|
+
}
|
|
4878
|
+
|
|
4879
|
+
.Menu-Group-Label {
|
|
4880
|
+
display: flex;
|
|
4881
|
+
align-items: center;
|
|
4882
|
+
padding-bottom: 6px;
|
|
4883
|
+
padding-top: var(--spacing-l);
|
|
4884
|
+
padding-left: var(--spacing-2);
|
|
4885
|
+
padding-right: var(--spacing-l);
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4888
|
+
.Menu-Group:first-child .Menu-Group-Label {
|
|
4889
|
+
padding-top: var(--spacing);
|
|
4890
|
+
}
|
|
4891
|
+
|
|
4836
4892
|
.Message {
|
|
4837
4893
|
display: flex;
|
|
4838
4894
|
flex-direction: row;
|