@innovaccer/design-system 2.15.4 → 2.16.0-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/css/dist/index.css +126 -11
- package/css/dist/index.css.map +1 -1
- package/css/src/components/ProgressBar.css +8 -1
- package/css/src/components/button.css +6 -0
- package/css/src/components/divider.css +1 -0
- package/css/src/components/linkButton.css +97 -0
- package/css/src/components/pagination.css +2 -2
- package/css/src/components/placeholder.css +1 -1
- package/css/src/components/spinner.css +2 -2
- package/css/src/components/switch.css +3 -3
- package/css/src/components/toast.css +2 -2
- package/dist/.lib/tsconfig.type.tsbuildinfo +51 -19
- package/dist/core/components/atoms/linkButton/LinkButton.d.ts +21 -0
- package/dist/core/components/atoms/linkButton/index.d.ts +2 -0
- package/dist/core/components/atoms/progressBar/ProgressBar.d.ts +3 -0
- package/dist/core/components/molecules/pagination/Pagination.d.ts +2 -0
- package/dist/core/components/organisms/list/List.d.ts +1 -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 +181 -100
- package/dist/index.js +102 -32
- 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/css/dist/index.css
CHANGED
|
@@ -820,12 +820,19 @@ body {
|
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
.ProgressBar-indicator {
|
|
823
|
-
height: var(--spacing);
|
|
824
823
|
background-color: var(--primary);
|
|
825
824
|
border-radius: var(--spacing-m);
|
|
826
825
|
transition: var(--duration--slow-01) var(--standard-expressive-curve);
|
|
827
826
|
}
|
|
828
827
|
|
|
828
|
+
.ProgressBar-indicator--small {
|
|
829
|
+
height: var(--spacing-s);
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.ProgressBar-indicator--regular {
|
|
833
|
+
height: var(--spacing);
|
|
834
|
+
}
|
|
835
|
+
|
|
829
836
|
/* badge */
|
|
830
837
|
|
|
831
838
|
.Avatar {
|
|
@@ -1433,6 +1440,12 @@ body {
|
|
|
1433
1440
|
visibility: hidden;
|
|
1434
1441
|
}
|
|
1435
1442
|
|
|
1443
|
+
.Button-text {
|
|
1444
|
+
white-space: nowrap;
|
|
1445
|
+
overflow: hidden;
|
|
1446
|
+
text-overflow: ellipsis;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1436
1449
|
/* calendar */
|
|
1437
1450
|
|
|
1438
1451
|
.Calendar-wrapper {
|
|
@@ -2382,6 +2395,7 @@ body {
|
|
|
2382
2395
|
|
|
2383
2396
|
.Divider--vertical {
|
|
2384
2397
|
width: 1px;
|
|
2398
|
+
background: var(--secondary-light);
|
|
2385
2399
|
}
|
|
2386
2400
|
|
|
2387
2401
|
.Divider--horizontal {
|
|
@@ -4219,6 +4233,107 @@ body {
|
|
|
4219
4233
|
pointer-events: none;
|
|
4220
4234
|
}
|
|
4221
4235
|
|
|
4236
|
+
.LinkButton {
|
|
4237
|
+
display: flex;
|
|
4238
|
+
flex-direction: row;
|
|
4239
|
+
justify-content: center;
|
|
4240
|
+
align-items: center;
|
|
4241
|
+
box-sizing: border-box;
|
|
4242
|
+
position: relative;
|
|
4243
|
+
vertical-align: middle;
|
|
4244
|
+
cursor: pointer;
|
|
4245
|
+
-webkit-user-select: none;
|
|
4246
|
+
-moz-user-select: none;
|
|
4247
|
+
-ms-user-select: none;
|
|
4248
|
+
user-select: none;
|
|
4249
|
+
border: 0;
|
|
4250
|
+
text-align: center;
|
|
4251
|
+
padding: 0;
|
|
4252
|
+
background: transparent;
|
|
4253
|
+
font-weight: var(--font-weight-medium);
|
|
4254
|
+
font-family: var(--font-family);
|
|
4255
|
+
border-radius: var(--spacing-m);
|
|
4256
|
+
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
4257
|
+
}
|
|
4258
|
+
|
|
4259
|
+
.LinkButton--iconAlign-right {
|
|
4260
|
+
flex-direction: row-reverse;
|
|
4261
|
+
}
|
|
4262
|
+
|
|
4263
|
+
.LinkButton-icon {
|
|
4264
|
+
line-height: inherit;
|
|
4265
|
+
display: flex;
|
|
4266
|
+
align-items: center;
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
.LinkButton-icon--left {
|
|
4270
|
+
margin-right: var(--spacing-m);
|
|
4271
|
+
}
|
|
4272
|
+
|
|
4273
|
+
.LinkButton-icon--right {
|
|
4274
|
+
margin-left: var(--spacing-m);
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
.LinkButton--regular {
|
|
4278
|
+
line-height: var(--font-height);
|
|
4279
|
+
font-size: var(--font-size);
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.LinkButton--tiny {
|
|
4283
|
+
line-height: var(--font-height-s);
|
|
4284
|
+
font-size: var(--font-size-s);
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4287
|
+
.LinkButton--default {
|
|
4288
|
+
color: var(--primary);
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4291
|
+
.LinkButton--default:hover {
|
|
4292
|
+
color: var(--primary-dark);
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.LinkButton--default:active {
|
|
4296
|
+
color: var(--primary-darker);
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4299
|
+
.LinkButton--default:focus,
|
|
4300
|
+
.LinkButton--default:focus-visible {
|
|
4301
|
+
outline: 0;
|
|
4302
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4305
|
+
.LinkButton--default:disabled {
|
|
4306
|
+
cursor: not-allowed;
|
|
4307
|
+
pointer-events: none;
|
|
4308
|
+
color: var(--primary-lighter);
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
/* Subtle Appearance */
|
|
4312
|
+
|
|
4313
|
+
.LinkButton--subtle {
|
|
4314
|
+
color: var(--inverse-lighter);
|
|
4315
|
+
}
|
|
4316
|
+
|
|
4317
|
+
.LinkButton--subtle:hover {
|
|
4318
|
+
color: var(--inverse-light);
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
.LinkButton--subtle:active {
|
|
4322
|
+
color: var(--inverse);
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4325
|
+
.LinkButton--subtle:focus,
|
|
4326
|
+
.LinkButton--subtle:focus-visible {
|
|
4327
|
+
outline: 0;
|
|
4328
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
.LinkButton--subtle:disabled {
|
|
4332
|
+
cursor: not-allowed;
|
|
4333
|
+
pointer-events: none;
|
|
4334
|
+
color: var(--inverse-lightest);
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4222
4337
|
.List {
|
|
4223
4338
|
display: flex;
|
|
4224
4339
|
flex-grow: 1;
|
|
@@ -4872,8 +4987,8 @@ body {
|
|
|
4872
4987
|
.Pagination-MetricInput {
|
|
4873
4988
|
width: var(--spacing-4);
|
|
4874
4989
|
margin-right: var(--spacing);
|
|
4875
|
-
padding-left: var(--spacing
|
|
4876
|
-
padding-right: var(--spacing
|
|
4990
|
+
padding-left: var(--spacing);
|
|
4991
|
+
padding-right: var(--spacing);
|
|
4877
4992
|
}
|
|
4878
4993
|
|
|
4879
4994
|
.Pagination-MetricInput .MetricInput-input {
|
|
@@ -4940,7 +5055,7 @@ body {
|
|
|
4940
5055
|
}
|
|
4941
5056
|
|
|
4942
5057
|
.Placeholder--animation {
|
|
4943
|
-
border-radius: var(--spacing-
|
|
5058
|
+
border-radius: var(--spacing-s);
|
|
4944
5059
|
-webkit-animation-duration: 1.5s;
|
|
4945
5060
|
animation-duration: 1.5s;
|
|
4946
5061
|
-webkit-animation-fill-mode: forwards;
|
|
@@ -5724,11 +5839,11 @@ body {
|
|
|
5724
5839
|
}
|
|
5725
5840
|
|
|
5726
5841
|
.Circle--secondary {
|
|
5727
|
-
stroke: var(--
|
|
5842
|
+
stroke: var(--primary);
|
|
5728
5843
|
}
|
|
5729
5844
|
|
|
5730
5845
|
.Circle--white {
|
|
5731
|
-
stroke: var(--
|
|
5846
|
+
stroke: var(--primary);
|
|
5732
5847
|
}
|
|
5733
5848
|
|
|
5734
5849
|
.StatusHint {
|
|
@@ -5817,8 +5932,8 @@ body {
|
|
|
5817
5932
|
}
|
|
5818
5933
|
|
|
5819
5934
|
.Switch--large {
|
|
5820
|
-
height: var(--spacing-
|
|
5821
|
-
width: var(--spacing-
|
|
5935
|
+
height: var(--spacing-xl);
|
|
5936
|
+
width: var(--spacing-4);
|
|
5822
5937
|
}
|
|
5823
5938
|
|
|
5824
5939
|
.Switch-input {
|
|
@@ -5879,7 +5994,7 @@ body {
|
|
|
5879
5994
|
}
|
|
5880
5995
|
|
|
5881
5996
|
.Switch-wrapper--large {
|
|
5882
|
-
border-radius:
|
|
5997
|
+
border-radius: 34px;
|
|
5883
5998
|
}
|
|
5884
5999
|
|
|
5885
6000
|
.Switch-wrapper:before {
|
|
@@ -6167,7 +6282,7 @@ body {
|
|
|
6167
6282
|
width: 360px;
|
|
6168
6283
|
border-radius: var(--spacing-m);
|
|
6169
6284
|
padding-left: var(--spacing-2);
|
|
6170
|
-
padding-right: var(--spacing-
|
|
6285
|
+
padding-right: var(--spacing-l);
|
|
6171
6286
|
padding-top: var(--spacing-l);
|
|
6172
6287
|
padding-bottom: var(--spacing-l);
|
|
6173
6288
|
}
|
|
@@ -6206,7 +6321,7 @@ body {
|
|
|
6206
6321
|
|
|
6207
6322
|
.Toast-icon--right {
|
|
6208
6323
|
cursor: pointer;
|
|
6209
|
-
margin-left: var(--spacing-
|
|
6324
|
+
margin-left: var(--spacing-l);
|
|
6210
6325
|
border-radius: 50%;
|
|
6211
6326
|
display: flex;
|
|
6212
6327
|
align-items: center;
|