@innovaccer/design-system 4.7.0 → 4.9.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/CHANGELOG.md +86 -0
- package/css/dist/index.css +333 -158
- package/css/dist/index.css.map +1 -1
- package/css/src/ai-components/button.module.css +32 -47
- package/css/src/components/chatInput.module.css +83 -0
- package/css/src/components/checkbox.module.css +1 -1
- package/css/src/components/grid.module.css +175 -93
- package/css/src/components/select.module.css +0 -1
- package/css/src/components/verticalNav.module.css +1 -0
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/ai-components/AIButton/index.d.ts +2 -1
- package/dist/core/components/atoms/paragraph/Paragraph.d.ts +1 -1
- package/dist/core/components/atoms/subheading/Subheading.d.ts +1 -1
- package/dist/core/components/molecules/chat/Chat.d.ts +1 -0
- package/dist/core/components/molecules/chat/chatInput/ChatInput.d.ts +18 -0
- package/dist/core/components/molecules/chat/chatInput/index.d.ts +2 -0
- package/dist/core/components/organisms/grid/Grid.d.ts +1 -0
- package/dist/core/components/organisms/grid/rowUtility.d.ts +1 -0
- package/dist/core/components/organisms/table/Table.d.ts +2 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/core/utils/navigationHelper.d.ts +1 -1
- package/dist/esm/index.js +1022 -808
- package/dist/figma/ChatInput.figma.d.ts +1 -0
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +837 -636
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +333 -158
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +72 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,89 @@
|
|
|
1
|
+
## 4.9.0 (2025-06-16)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(chatInput): add new chatInput component (f441d91b)
|
|
6
|
+
- feat(table): update states of table component (a22f2008)
|
|
7
|
+
- feat(table): implement public data selection methods (fd4735d1)
|
|
8
|
+
|
|
9
|
+
### Breaking changes
|
|
10
|
+
|
|
11
|
+
NA
|
|
12
|
+
|
|
13
|
+
### Migration guide
|
|
14
|
+
|
|
15
|
+
NA
|
|
16
|
+
|
|
17
|
+
### Deprecations
|
|
18
|
+
|
|
19
|
+
NA
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- feat(chatInput): add new chatInput component (f441d91b)
|
|
24
|
+
- feat(table): update states of table component (a22f2008)
|
|
25
|
+
- feat(table): implement public data selection methods (fd4735d1)
|
|
26
|
+
|
|
27
|
+
### Fixes
|
|
28
|
+
|
|
29
|
+
- fix(table): update table filtering section in docs (794066c2)
|
|
30
|
+
- fix(checkbox): improve DOM structure and spacing (6f1a21d1)
|
|
31
|
+
- fix(verticalNav): add string type for pills in vertical nav component (939f67af)
|
|
32
|
+
- fix(table): fix grid head & body sync issue on scroll in virtualized table (9ed6b109)
|
|
33
|
+
- fix(table): fix grid head & body sync issue in pinned columns (04bf2b4b)
|
|
34
|
+
- fix(table): fix blank state on sorting issue for virtualized table (69e0d813)
|
|
35
|
+
- fix(table): update right padding for columns (1f00360a)
|
|
36
|
+
- fix(table): fix grid head & body alignment issue in pinned virtualized table (1e97f9a9)
|
|
37
|
+
- fix(table): update expanded state of nested row for virtualized table (ff0cc553)
|
|
38
|
+
- fix(typography): fix default props appearance issue (40872de4)
|
|
39
|
+
|
|
40
|
+
### Improvements
|
|
41
|
+
|
|
42
|
+
- feat(verticalNav): update stories structure for vertical nav (370e1954)
|
|
43
|
+
|
|
44
|
+
### Documentation
|
|
45
|
+
|
|
46
|
+
NA
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## 4.8.0 (2025-05-01)
|
|
51
|
+
|
|
52
|
+
### Highlights
|
|
53
|
+
|
|
54
|
+
- feat(aibutton): update appearance with sparkle variant in AI Button component (f8b613b4)
|
|
55
|
+
- fix(select): update disabled state for select trigger cross icon (c1dbad7f)
|
|
56
|
+
|
|
57
|
+
### Breaking changes
|
|
58
|
+
|
|
59
|
+
NA
|
|
60
|
+
|
|
61
|
+
### Migration guide
|
|
62
|
+
|
|
63
|
+
NA
|
|
64
|
+
|
|
65
|
+
### Deprecations
|
|
66
|
+
|
|
67
|
+
NA
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
- feat(aibutton): update appearance with sparkle variant in AI Button component (f8b613b4)
|
|
72
|
+
|
|
73
|
+
### Fixes
|
|
74
|
+
|
|
75
|
+
- fix(select): update disabled state for select trigger cross icon (c1dbad7f)
|
|
76
|
+
|
|
77
|
+
### Improvements
|
|
78
|
+
|
|
79
|
+
NA
|
|
80
|
+
|
|
81
|
+
### Documentation
|
|
82
|
+
|
|
83
|
+
NA
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
1
87
|
## 4.7.0 (2025-04-21)
|
|
2
88
|
|
|
3
89
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -2121,6 +2121,98 @@ body {
|
|
|
2121
2121
|
flex: 0 0 auto;
|
|
2122
2122
|
}
|
|
2123
2123
|
|
|
2124
|
+
.ChatInput {
|
|
2125
|
+
display: flex;
|
|
2126
|
+
flex-direction: row;
|
|
2127
|
+
align-items: center;
|
|
2128
|
+
border: var(--border-width-2-5) solid var(--secondary);
|
|
2129
|
+
padding: var(--spacing-20);
|
|
2130
|
+
border-radius: var(--border-radius-10);
|
|
2131
|
+
background: var(--white);
|
|
2132
|
+
max-width: 100%;
|
|
2133
|
+
min-width: var(--spacing-640);
|
|
2134
|
+
transition: all var(--duration--slow-01) var(--standard-productive-curve);
|
|
2135
|
+
max-height: var(--spacing-440);
|
|
2136
|
+
position: relative;
|
|
2137
|
+
box-sizing: border-box;
|
|
2138
|
+
line-height: var(--font-height-m);
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
.ChatInput--expanded {
|
|
2142
|
+
flex-direction: column;
|
|
2143
|
+
align-items: flex-start;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
.ChatInput--disabled {
|
|
2147
|
+
background: var(--secondary-lightest);
|
|
2148
|
+
cursor: not-allowed;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.ChatInput:hover {
|
|
2152
|
+
background: var(--secondary-lighter);
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.ChatInput:focus-within,
|
|
2156
|
+
.ChatInput:focus,
|
|
2157
|
+
.ChatInput:focus-visible {
|
|
2158
|
+
outline: none;
|
|
2159
|
+
border: var(--border-width-2-5) solid var(--primary);
|
|
2160
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
.ChatInput-textarea {
|
|
2164
|
+
flex: 1;
|
|
2165
|
+
/* height: 100%; */
|
|
2166
|
+
height: var(--spacing-60);
|
|
2167
|
+
width: 100%;
|
|
2168
|
+
resize: none;
|
|
2169
|
+
border: none;
|
|
2170
|
+
outline: none;
|
|
2171
|
+
transition-delay: var(--duration--slow-01);
|
|
2172
|
+
transition: width var(--duration--slow-01) var(--standard-productive-curve);
|
|
2173
|
+
box-sizing: border-box;
|
|
2174
|
+
cursor: auto;
|
|
2175
|
+
padding: var(--spacing-05) 0;
|
|
2176
|
+
background: none;
|
|
2177
|
+
word-break: break-all;
|
|
2178
|
+
overflow-y: scroll;
|
|
2179
|
+
font-family: var(--font-family);
|
|
2180
|
+
font-weight: var(--font-weight-normal);
|
|
2181
|
+
line-height: var(--font-height);
|
|
2182
|
+
font-size: var(--font-size);
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
.ChatInput-textarea::-moz-placeholder {
|
|
2186
|
+
color: var(--inverse-lighter);
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2189
|
+
.ChatInput-textarea::placeholder {
|
|
2190
|
+
color: var(--inverse-lighter);
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
.ChatInput textarea:disabled::-moz-placeholder {
|
|
2194
|
+
color: var(--inverse-lightest);
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.ChatInput textarea:disabled::placeholder {
|
|
2198
|
+
color: var(--inverse-lightest);
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.ChatInput-actions {
|
|
2202
|
+
display: flex;
|
|
2203
|
+
flex-shrink: 0;
|
|
2204
|
+
transition: all var(--duration--slow-01) var(--standard-productive-curve);
|
|
2205
|
+
margin-left: var(--spacing-20);
|
|
2206
|
+
align-items: center;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
.ChatInput-actions--expanded {
|
|
2210
|
+
width: 100%;
|
|
2211
|
+
justify-content: flex-end;
|
|
2212
|
+
margin-top: var(--spacing-20);
|
|
2213
|
+
margin-left: 0;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2124
2216
|
.Chat-UnreadMessage {
|
|
2125
2217
|
border-radius: var(--border-radius-40);
|
|
2126
2218
|
padding: var(--spacing-05) var(--spacing-30) var(--spacing-05) var(--spacing-20);
|
|
@@ -2167,7 +2259,6 @@ body {
|
|
|
2167
2259
|
}
|
|
2168
2260
|
|
|
2169
2261
|
.Checkbox-labelWrapper {
|
|
2170
|
-
padding-left: var(--spacing-20);
|
|
2171
2262
|
display: flex;
|
|
2172
2263
|
flex-direction: column;
|
|
2173
2264
|
min-width: 0;
|
|
@@ -2185,6 +2276,7 @@ body {
|
|
|
2185
2276
|
.Checkbox-outerWrapper {
|
|
2186
2277
|
position: relative;
|
|
2187
2278
|
margin-top: var(--spacing-05);
|
|
2279
|
+
margin-right: var(--spacing-20);
|
|
2188
2280
|
}
|
|
2189
2281
|
|
|
2190
2282
|
.Checkbox-outerWrapper--regular {
|
|
@@ -3961,15 +4053,6 @@ body {
|
|
|
3961
4053
|
padding: var(--spacing-40) var(--spacing-60);
|
|
3962
4054
|
}
|
|
3963
4055
|
|
|
3964
|
-
/** Grid **/
|
|
3965
|
-
|
|
3966
|
-
.Grid-wrapper {
|
|
3967
|
-
display: flex;
|
|
3968
|
-
position: relative;
|
|
3969
|
-
overflow: hidden;
|
|
3970
|
-
height: 100%;
|
|
3971
|
-
}
|
|
3972
|
-
|
|
3973
4056
|
.Grid {
|
|
3974
4057
|
display: flex;
|
|
3975
4058
|
flex-direction: column;
|
|
@@ -3979,20 +4062,11 @@ body {
|
|
|
3979
4062
|
background: var(--white);
|
|
3980
4063
|
}
|
|
3981
4064
|
|
|
3982
|
-
.Grid
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
.Grid--resource .Grid-row--body:active,
|
|
3989
|
-
.Grid--resource .Grid-row--body:active .Grid-cellGroup {
|
|
3990
|
-
background: var(--secondary-lighter);
|
|
3991
|
-
}
|
|
3992
|
-
|
|
3993
|
-
.Grid--resource .Grid-row--body:focus {
|
|
3994
|
-
box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
|
|
3995
|
-
outline: none;
|
|
4065
|
+
.Grid-wrapper {
|
|
4066
|
+
display: flex;
|
|
4067
|
+
position: relative;
|
|
4068
|
+
overflow: hidden;
|
|
4069
|
+
height: 100%;
|
|
3996
4070
|
}
|
|
3997
4071
|
|
|
3998
4072
|
.Grid--pinned {
|
|
@@ -4095,42 +4169,6 @@ body {
|
|
|
4095
4169
|
border-bottom: var(--border);
|
|
4096
4170
|
}
|
|
4097
4171
|
|
|
4098
|
-
.Grid-row {
|
|
4099
|
-
display: flex;
|
|
4100
|
-
flex-grow: 1;
|
|
4101
|
-
flex-shrink: 0;
|
|
4102
|
-
box-sizing: border-box;
|
|
4103
|
-
background: var(--white);
|
|
4104
|
-
transition: var(--duration--fast-02) var(--standard-productive-curve);
|
|
4105
|
-
transition-delay: var(--duration--fast-01);
|
|
4106
|
-
}
|
|
4107
|
-
|
|
4108
|
-
.Grid-row--body {
|
|
4109
|
-
border-color: var(--secondary-light);
|
|
4110
|
-
}
|
|
4111
|
-
|
|
4112
|
-
.Grid-row--selected,
|
|
4113
|
-
.Grid-row--selected .Grid-cellGroup {
|
|
4114
|
-
background: rgba(220, 236, 249, 0.48);
|
|
4115
|
-
transition: var(--duration--fast-02) var(--standard-productive-curve);
|
|
4116
|
-
}
|
|
4117
|
-
|
|
4118
|
-
.Grid-row--selected:hover,
|
|
4119
|
-
.Grid-row--selected .Grid-cellGroup:hover {
|
|
4120
|
-
background: rgba(151, 197, 240, 0.48) !important;
|
|
4121
|
-
}
|
|
4122
|
-
|
|
4123
|
-
.Grid-row--selected:active,
|
|
4124
|
-
.Grid-row--selected .Grid-cellGroup:active {
|
|
4125
|
-
background: var(--primary-lighter) !important;
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
|
-
.Grid-row--selected:focus,
|
|
4129
|
-
.Grid-row--selected .Grid-cellGroup:focus {
|
|
4130
|
-
outline: none;
|
|
4131
|
-
box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
|
|
4132
|
-
}
|
|
4133
|
-
|
|
4134
4172
|
.Grid-rowWrapper:last-child .Grid-row--body {
|
|
4135
4173
|
border-bottom: 0;
|
|
4136
4174
|
}
|
|
@@ -4167,6 +4205,7 @@ body {
|
|
|
4167
4205
|
box-sizing: border-box;
|
|
4168
4206
|
padding-left: var(--spacing-30);
|
|
4169
4207
|
padding-right: var(--spacing-30);
|
|
4208
|
+
flex-grow: 1;
|
|
4170
4209
|
}
|
|
4171
4210
|
|
|
4172
4211
|
.Grid-cell--body {
|
|
@@ -4202,15 +4241,6 @@ body {
|
|
|
4202
4241
|
border-left: none;
|
|
4203
4242
|
}
|
|
4204
4243
|
|
|
4205
|
-
/* .Grid .Grid-cellGroup--main .Grid-cell--head.Grid-cell:last-child {
|
|
4206
|
-
border-right: var(--border);
|
|
4207
|
-
} */
|
|
4208
|
-
|
|
4209
|
-
.Grid-row--disabled {
|
|
4210
|
-
opacity: var(--opacity-10);
|
|
4211
|
-
pointer-events: none;
|
|
4212
|
-
}
|
|
4213
|
-
|
|
4214
4244
|
.Grid-cell--head.Grid-cell--selected {
|
|
4215
4245
|
background: var(--primary-light);
|
|
4216
4246
|
}
|
|
@@ -4225,6 +4255,15 @@ body {
|
|
|
4225
4255
|
overflow: visible !important;
|
|
4226
4256
|
}
|
|
4227
4257
|
|
|
4258
|
+
.Grid-cell--separator {
|
|
4259
|
+
border-left: var(--border);
|
|
4260
|
+
border-color: var(--secondary-light);
|
|
4261
|
+
}
|
|
4262
|
+
|
|
4263
|
+
.Grid-cell--selected {
|
|
4264
|
+
background: var(--primary-lightest);
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4228
4267
|
.Grid-sortingIcons {
|
|
4229
4268
|
display: flex;
|
|
4230
4269
|
align-items: center;
|
|
@@ -4286,7 +4325,7 @@ body {
|
|
|
4286
4325
|
.Grid-cellGroup {
|
|
4287
4326
|
display: flex;
|
|
4288
4327
|
box-sizing: border-box;
|
|
4289
|
-
|
|
4328
|
+
height: 100%;
|
|
4290
4329
|
}
|
|
4291
4330
|
|
|
4292
4331
|
.Grid-cellGroup--pinned {
|
|
@@ -4296,48 +4335,10 @@ body {
|
|
|
4296
4335
|
|
|
4297
4336
|
.Grid-cellGroup--pinned-left {
|
|
4298
4337
|
left: 0;
|
|
4299
|
-
border-style: inset;
|
|
4300
|
-
border-right: var(--spacing-2-5) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4301
|
-
border-right-width: var(--border-width-10);
|
|
4302
|
-
-o-border-image: linear-gradient(
|
|
4303
|
-
to right,
|
|
4304
|
-
var(--secondary-light),
|
|
4305
|
-
var(--secondary-light) 25%,
|
|
4306
|
-
rgba(213, 213, 213, 0.1) 25%,
|
|
4307
|
-
rgba(213, 213, 213, 0.1)
|
|
4308
|
-
)
|
|
4309
|
-
1 100%;
|
|
4310
|
-
border-image: linear-gradient(
|
|
4311
|
-
to right,
|
|
4312
|
-
var(--secondary-light),
|
|
4313
|
-
var(--secondary-light) 25%,
|
|
4314
|
-
rgba(213, 213, 213, 0.1) 25%,
|
|
4315
|
-
rgba(213, 213, 213, 0.1)
|
|
4316
|
-
)
|
|
4317
|
-
1 100%;
|
|
4318
4338
|
}
|
|
4319
4339
|
|
|
4320
4340
|
.Grid-cellGroup--pinned-right {
|
|
4321
4341
|
right: 0;
|
|
4322
|
-
border-style: inset;
|
|
4323
|
-
border-left: var(--border-width-2-5) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4324
|
-
border-left-width: var(--border-width-10);
|
|
4325
|
-
-o-border-image: linear-gradient(
|
|
4326
|
-
to left,
|
|
4327
|
-
var(--secondary-light),
|
|
4328
|
-
var(--secondary-light) 25%,
|
|
4329
|
-
rgba(213, 213, 213, 0.1) 25%,
|
|
4330
|
-
rgba(213, 213, 213, 0.1)
|
|
4331
|
-
)
|
|
4332
|
-
1 100%;
|
|
4333
|
-
border-image: linear-gradient(
|
|
4334
|
-
to left,
|
|
4335
|
-
var(--secondary-light),
|
|
4336
|
-
var(--secondary-light) 25%,
|
|
4337
|
-
rgba(213, 213, 213, 0.1) 25%,
|
|
4338
|
-
rgba(213, 213, 213, 0.1)
|
|
4339
|
-
)
|
|
4340
|
-
1 100%;
|
|
4341
4342
|
}
|
|
4342
4343
|
|
|
4343
4344
|
.Grid .Checkbox-wrapper {
|
|
@@ -4354,13 +4355,11 @@ body {
|
|
|
4354
4355
|
}
|
|
4355
4356
|
|
|
4356
4357
|
.GridCell--align-left {
|
|
4357
|
-
/* flex-direction: row; */
|
|
4358
4358
|
justify-content: flex-start;
|
|
4359
4359
|
text-align: left;
|
|
4360
4360
|
}
|
|
4361
4361
|
|
|
4362
4362
|
.GridCell--align-right {
|
|
4363
|
-
/* flex-direction: row-reverse; */
|
|
4364
4363
|
justify-content: flex-end;
|
|
4365
4364
|
text-align: right;
|
|
4366
4365
|
}
|
|
@@ -4370,6 +4369,9 @@ body {
|
|
|
4370
4369
|
text-align: center;
|
|
4371
4370
|
}
|
|
4372
4371
|
|
|
4372
|
+
.GridCell--default {
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4373
4375
|
.GridCell--metaList {
|
|
4374
4376
|
display: flex;
|
|
4375
4377
|
flex-direction: column;
|
|
@@ -4495,6 +4497,194 @@ body {
|
|
|
4495
4497
|
margin-bottom: var(--spacing-40);
|
|
4496
4498
|
}
|
|
4497
4499
|
|
|
4500
|
+
/* Grid row */
|
|
4501
|
+
|
|
4502
|
+
.Grid-row--disabled {
|
|
4503
|
+
opacity: var(--opacity-10);
|
|
4504
|
+
pointer-events: none;
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
.Grid-row {
|
|
4508
|
+
display: flex;
|
|
4509
|
+
flex-grow: 1;
|
|
4510
|
+
flex-shrink: 0;
|
|
4511
|
+
box-sizing: border-box;
|
|
4512
|
+
background: var(--white);
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.Grid-row--body {
|
|
4516
|
+
border-color: var(--secondary-light);
|
|
4517
|
+
}
|
|
4518
|
+
|
|
4519
|
+
.Grid--resource .Grid-row--body:hover {
|
|
4520
|
+
cursor: pointer;
|
|
4521
|
+
background: var(--secondary-lightest);
|
|
4522
|
+
}
|
|
4523
|
+
|
|
4524
|
+
.Grid--resource .Grid-row--body:active {
|
|
4525
|
+
background: var(--secondary-lighter);
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4528
|
+
.Grid--resource .Grid-row--body:focus {
|
|
4529
|
+
box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
|
|
4530
|
+
outline: none;
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
/* Selected States */
|
|
4534
|
+
|
|
4535
|
+
.Grid-row--selected {
|
|
4536
|
+
background: rgba(220, 236, 249, 0.48);
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
.Grid-row--selected:hover {
|
|
4540
|
+
background: rgba(151, 197, 240, 0.48) !important;
|
|
4541
|
+
}
|
|
4542
|
+
|
|
4543
|
+
.Grid-row--selected:active {
|
|
4544
|
+
background: var(--primary-lighter) !important;
|
|
4545
|
+
}
|
|
4546
|
+
|
|
4547
|
+
.Grid-row--selected:focus {
|
|
4548
|
+
outline: none;
|
|
4549
|
+
box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4552
|
+
/* Activated States */
|
|
4553
|
+
|
|
4554
|
+
.Grid-row--activated {
|
|
4555
|
+
background: var(--primary-lightest);
|
|
4556
|
+
}
|
|
4557
|
+
|
|
4558
|
+
/* Pinned Columns Default State */
|
|
4559
|
+
|
|
4560
|
+
.Grid--resource .Grid-row--body:hover .Grid-cellWrapper--pinned {
|
|
4561
|
+
cursor: pointer;
|
|
4562
|
+
background: var(--secondary-lightest);
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
.Grid--resource .Grid-row--body:active .Grid-cellWrapper--pinned {
|
|
4566
|
+
background: var(--secondary-lighter);
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
.Grid--resource .Grid-row--body:focus .Grid-cellWrapper--pinned {
|
|
4570
|
+
box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
|
|
4571
|
+
outline: none;
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
/* Pinned Columns Selected State */
|
|
4575
|
+
|
|
4576
|
+
.Grid-row--selected .Grid-cellWrapper--pinned {
|
|
4577
|
+
background: rgba(220, 236, 249, 0.48);
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.Grid-row--selected:hover .Grid-cellWrapper--pinned {
|
|
4581
|
+
background: rgba(151, 197, 240, 0.48) !important;
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4584
|
+
.Grid-row--selected:active .Grid-cellWrapper--pinned {
|
|
4585
|
+
background: var(--primary-lighter) !important;
|
|
4586
|
+
}
|
|
4587
|
+
|
|
4588
|
+
.Grid-row--selected:focus .Grid-cellWrapper--pinned {
|
|
4589
|
+
outline: none;
|
|
4590
|
+
box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
/* Grid header */
|
|
4594
|
+
.Grid-row--head .Grid-cellGroup--pinned {
|
|
4595
|
+
background: var(--white);
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
.Grid-row--head .Grid-cellGroup--pinned-left {
|
|
4599
|
+
border-style: inset;
|
|
4600
|
+
border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4601
|
+
border-right-width: 4px;
|
|
4602
|
+
-o-border-image: linear-gradient(
|
|
4603
|
+
to right,
|
|
4604
|
+
var(--secondary-light),
|
|
4605
|
+
var(--secondary-light) 25%,
|
|
4606
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4607
|
+
rgba(213, 213, 213, 0.1)
|
|
4608
|
+
)
|
|
4609
|
+
1 100%;
|
|
4610
|
+
border-image: linear-gradient(
|
|
4611
|
+
to right,
|
|
4612
|
+
var(--secondary-light),
|
|
4613
|
+
var(--secondary-light) 25%,
|
|
4614
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4615
|
+
rgba(213, 213, 213, 0.1)
|
|
4616
|
+
)
|
|
4617
|
+
1 100%;
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4620
|
+
.Grid-row--head .Grid-cellGroup--pinned-right {
|
|
4621
|
+
border-style: inset;
|
|
4622
|
+
border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4623
|
+
border-left-width: 4px;
|
|
4624
|
+
-o-border-image: linear-gradient(
|
|
4625
|
+
to left,
|
|
4626
|
+
var(--secondary-light),
|
|
4627
|
+
var(--secondary-light) 25%,
|
|
4628
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4629
|
+
rgba(213, 213, 213, 0.1)
|
|
4630
|
+
)
|
|
4631
|
+
1 100%;
|
|
4632
|
+
border-image: linear-gradient(
|
|
4633
|
+
to left,
|
|
4634
|
+
var(--secondary-light),
|
|
4635
|
+
var(--secondary-light) 25%,
|
|
4636
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4637
|
+
rgba(213, 213, 213, 0.1)
|
|
4638
|
+
)
|
|
4639
|
+
1 100%;
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4642
|
+
/* Pinned Column Border */
|
|
4643
|
+
|
|
4644
|
+
.Grid-cellWrapper--pinned-left {
|
|
4645
|
+
border-style: inset;
|
|
4646
|
+
border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4647
|
+
border-right-width: 4px;
|
|
4648
|
+
-o-border-image: linear-gradient(
|
|
4649
|
+
to right,
|
|
4650
|
+
var(--secondary-light),
|
|
4651
|
+
var(--secondary-light) 25%,
|
|
4652
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4653
|
+
rgba(213, 213, 213, 0.1)
|
|
4654
|
+
)
|
|
4655
|
+
1 100%;
|
|
4656
|
+
border-image: linear-gradient(
|
|
4657
|
+
to right,
|
|
4658
|
+
var(--secondary-light),
|
|
4659
|
+
var(--secondary-light) 25%,
|
|
4660
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4661
|
+
rgba(213, 213, 213, 0.1)
|
|
4662
|
+
)
|
|
4663
|
+
1 100%;
|
|
4664
|
+
}
|
|
4665
|
+
|
|
4666
|
+
.Grid-cellWrapper--pinned-right {
|
|
4667
|
+
border-style: inset;
|
|
4668
|
+
border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
4669
|
+
border-left-width: 4px;
|
|
4670
|
+
-o-border-image: linear-gradient(
|
|
4671
|
+
to left,
|
|
4672
|
+
var(--secondary-light),
|
|
4673
|
+
var(--secondary-light) 25%,
|
|
4674
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4675
|
+
rgba(213, 213, 213, 0.1)
|
|
4676
|
+
)
|
|
4677
|
+
1 100%;
|
|
4678
|
+
border-image: linear-gradient(
|
|
4679
|
+
to left,
|
|
4680
|
+
var(--secondary-light),
|
|
4681
|
+
var(--secondary-light) 25%,
|
|
4682
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
4683
|
+
rgba(213, 213, 213, 0.1)
|
|
4684
|
+
)
|
|
4685
|
+
1 100%;
|
|
4686
|
+
}
|
|
4687
|
+
|
|
4498
4688
|
.HorizontalNav {
|
|
4499
4689
|
display: flex;
|
|
4500
4690
|
}
|
|
@@ -6642,7 +6832,6 @@ body {
|
|
|
6642
6832
|
-moz-user-select: none;
|
|
6643
6833
|
user-select: none;
|
|
6644
6834
|
cursor: pointer;
|
|
6645
|
-
color: var(--inverse);
|
|
6646
6835
|
border-radius: var(--border-radius-full);
|
|
6647
6836
|
padding: var(--spacing-05);
|
|
6648
6837
|
}
|
|
@@ -8056,6 +8245,7 @@ body {
|
|
|
8056
8245
|
|
|
8057
8246
|
.MenuItem-count {
|
|
8058
8247
|
margin-right: var(--spacing-10);
|
|
8248
|
+
flex-shrink: 0;
|
|
8059
8249
|
}
|
|
8060
8250
|
|
|
8061
8251
|
.MenuItem-count--disabled {
|
|
@@ -8074,62 +8264,47 @@ body {
|
|
|
8074
8264
|
line-height: var(--font-height-s);
|
|
8075
8265
|
display: flex;
|
|
8076
8266
|
align-items: center;
|
|
8077
|
-
}
|
|
8078
|
-
|
|
8079
|
-
.AIButton:disabled {
|
|
8080
|
-
cursor: not-allowed;
|
|
8081
|
-
pointer-events: none;
|
|
8082
|
-
}
|
|
8083
|
-
|
|
8084
|
-
.AIButton:focus {
|
|
8085
|
-
outline: 0;
|
|
8086
|
-
}
|
|
8087
|
-
|
|
8088
|
-
/* Primary Button */
|
|
8089
|
-
|
|
8090
|
-
.AIButton--primary {
|
|
8091
|
-
background: var(--primary);
|
|
8092
|
-
color: var(--white);
|
|
8093
|
-
}
|
|
8094
|
-
|
|
8095
|
-
.AIButton--primary:hover {
|
|
8096
|
-
background: var(--primary-dark);
|
|
8097
|
-
}
|
|
8098
|
-
|
|
8099
|
-
.AIButton--primary:active {
|
|
8100
|
-
background: var(--primary-darker);
|
|
8101
|
-
}
|
|
8102
|
-
|
|
8103
|
-
.AIButton--primary:disabled {
|
|
8104
|
-
background: var(--primary-lighter);
|
|
8105
|
-
}
|
|
8106
|
-
|
|
8107
|
-
.AIButton--primary:focus {
|
|
8108
|
-
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
8109
|
-
}
|
|
8110
|
-
|
|
8111
|
-
/* Basic Button */
|
|
8112
|
-
|
|
8113
|
-
.AIButton--basic {
|
|
8114
|
-
background: var(--secondary-light);
|
|
8115
8267
|
color: var(--inverse);
|
|
8268
|
+
background: linear-gradient(
|
|
8269
|
+
277deg,
|
|
8270
|
+
rgba(227, 28, 121, 0.15) 0%,
|
|
8271
|
+
rgba(231, 56, 79, 0.24) 28%,
|
|
8272
|
+
rgba(240, 125, 0, 0.15) 100%
|
|
8273
|
+
);
|
|
8116
8274
|
}
|
|
8117
8275
|
|
|
8118
|
-
.AIButton
|
|
8119
|
-
background:
|
|
8276
|
+
.AIButton:hover {
|
|
8277
|
+
background: linear-gradient(
|
|
8278
|
+
277deg,
|
|
8279
|
+
rgba(227, 28, 121, 0.2) 0%,
|
|
8280
|
+
rgba(231, 56, 79, 0.32) 28%,
|
|
8281
|
+
rgba(240, 125, 0, 0.2) 100%
|
|
8282
|
+
);
|
|
8120
8283
|
}
|
|
8121
8284
|
|
|
8122
|
-
.AIButton
|
|
8123
|
-
background:
|
|
8285
|
+
.AIButton:active {
|
|
8286
|
+
background: linear-gradient(
|
|
8287
|
+
277deg,
|
|
8288
|
+
rgba(227, 28, 121, 0.31) 0%,
|
|
8289
|
+
rgba(231, 56, 79, 0.48) 28%,
|
|
8290
|
+
rgba(240, 125, 0, 0.31) 100%
|
|
8291
|
+
);
|
|
8124
8292
|
}
|
|
8125
8293
|
|
|
8126
|
-
.AIButton
|
|
8127
|
-
|
|
8128
|
-
|
|
8294
|
+
.AIButton:disabled {
|
|
8295
|
+
cursor: not-allowed;
|
|
8296
|
+
opacity: var(--opacity-10);
|
|
8297
|
+
background: linear-gradient(
|
|
8298
|
+
277deg,
|
|
8299
|
+
rgba(227, 28, 121, 0.15) 0%,
|
|
8300
|
+
rgba(231, 56, 79, 0.24) 28%,
|
|
8301
|
+
rgba(240, 125, 0, 0.15) 100%
|
|
8302
|
+
);
|
|
8129
8303
|
}
|
|
8130
8304
|
|
|
8131
|
-
.AIButton
|
|
8132
|
-
|
|
8305
|
+
.AIButton:focus {
|
|
8306
|
+
outline: 0;
|
|
8307
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
8133
8308
|
}
|
|
8134
8309
|
|
|
8135
8310
|
/* Button Icon */
|