@iress-oss/ids-components 6.0.0-alpha.16 → 6.0.0-alpha.17

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.
@@ -391,6 +391,18 @@ const z = `@layer reset, base, tokens, recipes, utilities;
391
391
  --breakpoints-xxl: 1500px;
392
392
  }
393
393
 
394
+ @keyframes chatty {
395
+ 0%,60%,100% {
396
+ transform: translateY(0);
397
+ opacity: 0.7;
398
+ }
399
+
400
+ 30% {
401
+ transform: translateY(50%);
402
+ opacity: 1;
403
+ }
404
+ }
405
+
394
406
  @keyframes fieldFooter {
395
407
  0% {
396
408
  display: none;
@@ -2464,6 +2476,14 @@ const z = `@layer reset, base, tokens, recipes, utilities;
2464
2476
  background: var(--colors-transparent);
2465
2477
  }
2466
2478
 
2479
+ .bg_colour\\.neutral\\.50 {
2480
+ background: var(--colors-colour\\.neutral\\.50);
2481
+ }
2482
+
2483
+ .anim_chatty_1\\.4s_infinite_ease-in-out {
2484
+ animation: chatty 1.4s infinite ease-in-out;
2485
+ }
2486
+
2467
2487
  .p_spacing\\.6 {
2468
2488
  padding: var(--spacing-spacing\\.6);
2469
2489
  }
@@ -2668,10 +2688,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
2668
2688
  background: var(--colors-colour\\.primary\\.on-fill);
2669
2689
  }
2670
2690
 
2671
- .bg_colour\\.neutral\\.50 {
2672
- background: var(--colors-colour\\.neutral\\.50);
2673
- }
2674
-
2675
2691
  .bg_colour\\.neutral\\.60 {
2676
2692
  background: var(--colors-colour\\.neutral\\.60);
2677
2693
  }
@@ -4311,6 +4327,42 @@ const z = `@layer reset, base, tokens, recipes, utilities;
4311
4327
  text-align: right;
4312
4328
  }
4313
4329
 
4330
+ .resize_none {
4331
+ resize: none;
4332
+ }
4333
+
4334
+ .scrollable_y {
4335
+ overflow-y: auto;
4336
+ }
4337
+
4338
+ .scrollable_y::-webkit-scrollbar {
4339
+ width: var(--iress-typography-base-size, .875rem);
4340
+ height: var(--iress-typography-base-size, .875rem);
4341
+ }
4342
+
4343
+ .scrollable_y::-webkit-scrollbar-track {
4344
+ background: var(--iress-colour-neutral-20, #F5F6F8);
4345
+ border-radius: var(--iress-radius-100, 1rem);
4346
+ }
4347
+
4348
+ .scrollable_y::-webkit-scrollbar-thumb {
4349
+ background-color: var(--iress-colour-neutral-60, #828F9D);
4350
+ border-radius: var(--iress-radius-025, calc(0.25 * var(--iress-radius-100, 1rem)));
4351
+ }
4352
+
4353
+ .scrollable_y::-webkit-scrollbar-thumb:hover {
4354
+ background-color: var(--iress-colour-primary-fill, #1D1F4B);
4355
+ }
4356
+
4357
+ .scrollable_y::-webkit-scrollbar-corner {
4358
+ background: rgba(0, 0, 0, 0);
4359
+ }
4360
+
4361
+ .scrollable_y {
4362
+ scrollbar-width: thin;
4363
+ scrollbar-color: var(--iress-colour-neutral-60, #828F9D) var(--iress-colour-neutral-20, #F5F6F8);
4364
+ }
4365
+
4314
4366
  .ai_baseline {
4315
4367
  align-items: baseline;
4316
4368
  }
@@ -4375,38 +4427,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
4375
4427
  position: static !important;
4376
4428
  }
4377
4429
 
4378
- .scrollable_y {
4379
- overflow-y: auto;
4380
- }
4381
-
4382
- .scrollable_y::-webkit-scrollbar {
4383
- width: var(--iress-typography-base-size, .875rem);
4384
- height: var(--iress-typography-base-size, .875rem);
4385
- }
4386
-
4387
- .scrollable_y::-webkit-scrollbar-track {
4388
- background: var(--iress-colour-neutral-20, #F5F6F8);
4389
- border-radius: var(--iress-radius-100, 1rem);
4390
- }
4391
-
4392
- .scrollable_y::-webkit-scrollbar-thumb {
4393
- background-color: var(--iress-colour-neutral-60, #828F9D);
4394
- border-radius: var(--iress-radius-025, calc(0.25 * var(--iress-radius-100, 1rem)));
4395
- }
4396
-
4397
- .scrollable_y::-webkit-scrollbar-thumb:hover {
4398
- background-color: var(--iress-colour-primary-fill, #1D1F4B);
4399
- }
4400
-
4401
- .scrollable_y::-webkit-scrollbar-corner {
4402
- background: rgba(0, 0, 0, 0);
4403
- }
4404
-
4405
- .scrollable_y {
4406
- scrollbar-width: thin;
4407
- scrollbar-color: var(--iress-colour-neutral-60, #828F9D) var(--iress-colour-neutral-20, #F5F6F8);
4408
- }
4409
-
4410
4430
  .gutter_spacing\\.4 {
4411
4431
  --col-gap: var(--iress-spacing-4, calc(4 * var(--iress-spacing-100, .25rem)));
4412
4432
  margin-inline: calc(-1 * var(--col-gap) / 2);
@@ -5759,6 +5779,14 @@ const z = `@layer reset, base, tokens, recipes, utilities;
5759
5779
  width: 0;
5760
5780
  }
5761
5781
 
5782
+ .w_\\[0\\.5em\\] {
5783
+ width: 0.5em;
5784
+ }
5785
+
5786
+ .h_\\[0\\.5em\\] {
5787
+ height: 0.5em;
5788
+ }
5789
+
5762
5790
  .h_50 {
5763
5791
  height: 50px;
5764
5792
  }
@@ -7171,8 +7199,8 @@ const z = `@layer reset, base, tokens, recipes, utilities;
7171
7199
  border-width: 2px;
7172
7200
  }
7173
7201
 
7174
- .after\\:bdr_radius\\.system\\.form::after {
7175
- border-radius: var(--radii-radius\\.system\\.form);
7202
+ .after\\:bdr_radius\\.system\\.layout::after {
7203
+ border-radius: var(--radii-radius\\.system\\.layout);
7176
7204
  }
7177
7205
 
7178
7206
  .\\[\\&_a\\]\\:td_underline a {
@@ -7211,6 +7239,10 @@ const z = `@layer reset, base, tokens, recipes, utilities;
7211
7239
  flex: 1 1 0%;
7212
7240
  }
7213
7241
 
7242
+ .progressValue\\:bg-p_center::-webkit-progress-value,.progressValue\\:bg-p_center::-webkit-meter-optimum-value,.progressValue\\:bg-p_center::-webkit-meter-suboptimum-value {
7243
+ background-position: center;
7244
+ }
7245
+
7214
7246
  .progressValue\\:bdr_var\\(--iress-border-radius\\)::-webkit-progress-value,.progressValue\\:bdr_var\\(--iress-border-radius\\)::-webkit-meter-optimum-value,.progressValue\\:bdr_var\\(--iress-border-radius\\)::-webkit-meter-suboptimum-value {
7215
7247
  border-radius: var(--iress-border-radius);
7216
7248
  }
@@ -7221,6 +7253,10 @@ const z = `@layer reset, base, tokens, recipes, utilities;
7221
7253
  transition-duration: var(--transition-duration, 150ms);
7222
7254
  }
7223
7255
 
7256
+ .mozProgressValue\\:bg-p_center::-moz-progress-bar,.mozProgressValue\\:bg-p_center::-moz-meter-bar {
7257
+ background-position: center;
7258
+ }
7259
+
7224
7260
  .mozProgressValue\\:bdr_var\\(--iress-border-radius\\)::-moz-progress-bar,.mozProgressValue\\:bdr_var\\(--iress-border-radius\\)::-moz-meter-bar {
7225
7261
  border-radius: var(--iress-border-radius);
7226
7262
  }
@@ -7435,11 +7471,27 @@ const z = `@layer reset, base, tokens, recipes, utilities;
7435
7471
  -webkit-appearance: none;
7436
7472
  }
7437
7473
 
7474
+ .progressValue\\:bg-i_var\\(--iress-background-image\\)::-webkit-progress-value,.progressValue\\:bg-i_var\\(--iress-background-image\\)::-webkit-meter-optimum-value,.progressValue\\:bg-i_var\\(--iress-background-image\\)::-webkit-meter-suboptimum-value {
7475
+ background-image: var(--iress-background-image);
7476
+ }
7477
+
7478
+ .progressValue\\:bg-s_cover::-webkit-progress-value,.progressValue\\:bg-s_cover::-webkit-meter-optimum-value,.progressValue\\:bg-s_cover::-webkit-meter-suboptimum-value {
7479
+ background-size: cover;
7480
+ }
7481
+
7438
7482
  .mozProgressValue\\:ap_none::-moz-progress-bar,.mozProgressValue\\:ap_none::-moz-meter-bar {
7439
7483
  appearance: none;
7440
7484
  -webkit-appearance: none;
7441
7485
  }
7442
7486
 
7487
+ .mozProgressValue\\:bg-i_var\\(--iress-background-image\\)::-moz-progress-bar,.mozProgressValue\\:bg-i_var\\(--iress-background-image\\)::-moz-meter-bar {
7488
+ background-image: var(--iress-background-image);
7489
+ }
7490
+
7491
+ .mozProgressValue\\:bg-s_cover::-moz-progress-bar,.mozProgressValue\\:bg-s_cover::-moz-meter-bar {
7492
+ background-size: cover;
7493
+ }
7494
+
7443
7495
  .\\[\\&_circle\\]\\:fill_\\[currentColor\\] circle {
7444
7496
  fill: currentColor;
7445
7497
  }
@@ -7526,6 +7578,18 @@ const z = `@layer reset, base, tokens, recipes, utilities;
7526
7578
  transform: translate(-50%, 0);
7527
7579
  }
7528
7580
 
7581
+ .\\[\\&\\:nth-child\\(1\\)\\]\\:anim-dly_0s:nth-child(1) {
7582
+ animation-delay: 0s;
7583
+ }
7584
+
7585
+ .\\[\\&\\:nth-child\\(2\\)\\]\\:anim-dly_0\\.2s:nth-child(2) {
7586
+ animation-delay: 0.2s;
7587
+ }
7588
+
7589
+ .\\[\\&\\:nth-child\\(3\\)\\]\\:anim-dly_0\\.4s:nth-child(3) {
7590
+ animation-delay: 0.4s;
7591
+ }
7592
+
7529
7593
  .\\[\\&\\&\\]\\:ta_end.\\[\\&\\&\\]\\:ta_end {
7530
7594
  text-align: end;
7531
7595
  }