@iress-oss/ids-components 6.0.0-alpha.3 → 6.0.0-alpha.5
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/dist/constants.js +1 -1
- package/dist/index.esm-BiUTGNH8.js +1080 -0
- package/dist/patterns/Form/Form.js +8 -11
- package/dist/patterns/Form/FormField/FormField.js +33 -27
- package/dist/patterns/Form/FormField/FormFieldset.js +5 -5
- package/dist/patterns/Form/HookForm/HookForm.js +54 -56
- package/dist/patterns/Form/components/LongForm.js +5 -5
- package/dist/patterns/Form/components/ShortForm.js +5 -5
- package/dist/patterns/Shadow/Shadow.js +82 -423
- package/dist/src/patterns/Form/Form.d.ts +2 -4
- package/dist/src/patterns/Form/FormField/FormField.d.ts +15 -2
- package/dist/src/patterns/Form/HookForm/HookForm.d.ts +2 -34
- package/dist/style.css +1 -1
- package/package.json +25 -9
- package/dist/index.esm-B6vzbp0e.js +0 -1215
|
@@ -1269,22 +1269,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
1269
1269
|
@layer utilities{
|
|
1270
1270
|
@layer compositions{
|
|
1271
1271
|
|
|
1272
|
-
.textStyle_typography\\.body\\.sm {
|
|
1273
|
-
font: var(--iress-typography-body-sm-regular, 400 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.textStyle_typography\\.body\\.sm strong {
|
|
1277
|
-
font: var(--iress-typography-body-sm-strong, 600 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
.textStyle_typography\\.body\\.sm em {
|
|
1281
|
-
font: var(--iress-typography-body-sm-em, italic 500 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
.textStyle_typography\\.body\\.sm code {
|
|
1285
|
-
font-size: 0.9em !important;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
1272
|
.textStyle_typography\\.body\\.md {
|
|
1289
1273
|
font: var(--iress-typography-body-md-regular, 400 var(--iress-typography-base-size, .875rem) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1290
1274
|
}
|
|
@@ -1326,6 +1310,22 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
1326
1310
|
font: var(--iress-typography-body-lg-strong, 600 calc(var(--iress-typography-base-size, .875rem) * (18 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1327
1311
|
}
|
|
1328
1312
|
|
|
1313
|
+
.textStyle_typography\\.body\\.sm {
|
|
1314
|
+
font: var(--iress-typography-body-sm-regular, 400 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.textStyle_typography\\.body\\.sm strong {
|
|
1318
|
+
font: var(--iress-typography-body-sm-strong, 600 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.textStyle_typography\\.body\\.sm em {
|
|
1322
|
+
font: var(--iress-typography-body-sm-em, italic 500 calc(var(--iress-typography-base-size, .875rem) * (12 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.textStyle_typography\\.body\\.sm code {
|
|
1326
|
+
font-size: 0.9em !important;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
1329
|
.textStyle_typography\\.heading\\.5 {
|
|
1330
1330
|
font: var(--iress-typography-heading-5, 400 calc(var(--iress-typography-base-size, .875rem) * (18 / 14)) / 1.3 var(--iress-typography-base-heading-font, Ubuntu, Helvetica, sans-serif));
|
|
1331
1331
|
}
|
|
@@ -1399,6 +1399,13 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
1399
1399
|
background: radial-gradient(circle closest-side, currentcolor 90%, transparent) 0 / calc(100% / 3) 100% space;
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
1402
|
+
.animationStyle_field-footer {
|
|
1403
|
+
animation-name: fieldFooter;
|
|
1404
|
+
animation-duration: 0.5s;
|
|
1405
|
+
animation-timing-function: ease-in-out;
|
|
1406
|
+
animation-fill-mode: forwards;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1402
1409
|
.textStyle_typography\\.body\\.lg {
|
|
1403
1410
|
font: var(--iress-typography-body-lg-regular, 400 calc(var(--iress-typography-base-size, .875rem) * (18 / 14)) / 1.5 var(--iress-typography-base-body-font, Inter, Helvetica, sans-serif));
|
|
1404
1411
|
}
|
|
@@ -1415,13 +1422,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
1415
1422
|
font-size: 0.9em !important;
|
|
1416
1423
|
}
|
|
1417
1424
|
|
|
1418
|
-
.animationStyle_field-footer {
|
|
1419
|
-
animation-name: fieldFooter;
|
|
1420
|
-
animation-duration: 0.5s;
|
|
1421
|
-
animation-timing-function: ease-in-out;
|
|
1422
|
-
animation-fill-mode: forwards;
|
|
1423
|
-
}
|
|
1424
|
-
|
|
1425
1425
|
.textStyle_typography\\.heading\\.3 {
|
|
1426
1426
|
font: var(--iress-typography-heading-3, 500 calc(var(--iress-typography-base-size, .875rem) * (26 / 14)) / 1.3 var(--iress-typography-base-heading-font, Ubuntu, Helvetica, sans-serif));
|
|
1427
1427
|
}
|
|
@@ -3246,10 +3246,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
3246
3246
|
transition: all 0.3s ease;
|
|
3247
3247
|
}
|
|
3248
3248
|
|
|
3249
|
-
.my_xs {
|
|
3250
|
-
margin-block: var(--spacing-xs);
|
|
3251
|
-
}
|
|
3252
|
-
|
|
3253
3249
|
.bd-b_\\[2px_solid_transparent\\] {
|
|
3254
3250
|
border-bottom: 2px solid transparent;
|
|
3255
3251
|
}
|
|
@@ -3258,10 +3254,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
3258
3254
|
padding-block: var(--spacing-xs);
|
|
3259
3255
|
}
|
|
3260
3256
|
|
|
3261
|
-
.my_md {
|
|
3262
|
-
margin-block: var(--spacing-md);
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
3257
|
.bdr_radius\\.075 {
|
|
3266
3258
|
border-radius: var(--radii-radius\\.075);
|
|
3267
3259
|
}
|
|
@@ -3418,10 +3410,18 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
3418
3410
|
margin-block: var(--spacing-none);
|
|
3419
3411
|
}
|
|
3420
3412
|
|
|
3413
|
+
.my_xs {
|
|
3414
|
+
margin-block: var(--spacing-xs);
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3421
3417
|
.my_sm {
|
|
3422
3418
|
margin-block: var(--spacing-sm);
|
|
3423
3419
|
}
|
|
3424
3420
|
|
|
3421
|
+
.my_md {
|
|
3422
|
+
margin-block: var(--spacing-md);
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
3425
|
.my_lg {
|
|
3426
3426
|
margin-block: var(--spacing-lg);
|
|
3427
3427
|
}
|
|
@@ -3695,10 +3695,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
3695
3695
|
row-gap: var(--col-gap);
|
|
3696
3696
|
}
|
|
3697
3697
|
|
|
3698
|
-
.c_colour\\.system\\.success\\.text {
|
|
3699
|
-
color: var(--colors-colour\\.system\\.success\\.text);
|
|
3700
|
-
}
|
|
3701
|
-
|
|
3702
3698
|
.d_flex {
|
|
3703
3699
|
display: flex;
|
|
3704
3700
|
}
|
|
@@ -3751,6 +3747,10 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
3751
3747
|
color: var(--colors-colour\\.system\\.info\\.text);
|
|
3752
3748
|
}
|
|
3753
3749
|
|
|
3750
|
+
.c_colour\\.system\\.success\\.text {
|
|
3751
|
+
color: var(--colors-colour\\.system\\.success\\.text);
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3754
3754
|
.c_colour\\.system\\.warning\\.text {
|
|
3755
3755
|
color: var(--colors-colour\\.system\\.warning\\.text);
|
|
3756
3756
|
}
|
|
@@ -4735,26 +4735,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
4735
4735
|
column-gap: var(--spacing-none);
|
|
4736
4736
|
}
|
|
4737
4737
|
|
|
4738
|
-
.key_user {
|
|
4739
|
-
key: user;
|
|
4740
|
-
}
|
|
4741
|
-
|
|
4742
|
-
.label_User {
|
|
4743
|
-
label: User;
|
|
4744
|
-
}
|
|
4745
|
-
|
|
4746
|
-
.key_investmentName {
|
|
4747
|
-
key: investmentName;
|
|
4748
|
-
}
|
|
4749
|
-
|
|
4750
|
-
.label_Investment_Name {
|
|
4751
|
-
label: Investment Name;
|
|
4752
|
-
}
|
|
4753
|
-
|
|
4754
|
-
.format_string {
|
|
4755
|
-
format: string;
|
|
4756
|
-
}
|
|
4757
|
-
|
|
4758
4738
|
.sr_false {
|
|
4759
4739
|
position: static;
|
|
4760
4740
|
width: auto;
|
|
@@ -4766,21 +4746,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
4766
4746
|
white-space: normal;
|
|
4767
4747
|
}
|
|
4768
4748
|
|
|
4769
|
-
.key_import {
|
|
4770
|
-
key: import;
|
|
4771
|
-
}
|
|
4772
|
-
|
|
4773
|
-
.label_Upload {
|
|
4774
|
-
label: Upload;
|
|
4775
|
-
}
|
|
4776
|
-
|
|
4777
|
-
.gutter_spacing\\.7 {
|
|
4778
|
-
--col-gap: var(--iress-spacing-7, calc(7 * var(--iress-spacing-100, .25rem)));
|
|
4779
|
-
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
4780
|
-
column-gap: var(--iress-spacing-0, 0rem);
|
|
4781
|
-
row-gap: var(--col-gap);
|
|
4782
|
-
}
|
|
4783
|
-
|
|
4784
4749
|
.ff_inherit {
|
|
4785
4750
|
font-family: inherit;
|
|
4786
4751
|
}
|
|
@@ -4805,14 +4770,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
4805
4770
|
align-self: auto;
|
|
4806
4771
|
}
|
|
4807
4772
|
|
|
4808
|
-
.pos_right {
|
|
4809
|
-
position: right;
|
|
4810
|
-
}
|
|
4811
|
-
|
|
4812
|
-
.pos_left {
|
|
4813
|
-
position: left;
|
|
4814
|
-
}
|
|
4815
|
-
|
|
4816
4773
|
.key_column {
|
|
4817
4774
|
key: column;
|
|
4818
4775
|
}
|
|
@@ -4833,62 +4790,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
4833
4790
|
label: Test;
|
|
4834
4791
|
}
|
|
4835
4792
|
|
|
4836
|
-
.key_investment_name {
|
|
4837
|
-
key: investment_name;
|
|
4838
|
-
}
|
|
4839
|
-
|
|
4840
|
-
.label_Investment {
|
|
4841
|
-
label: Investment;
|
|
4842
|
-
}
|
|
4843
|
-
|
|
4844
|
-
.key_string {
|
|
4845
|
-
key: string;
|
|
4846
|
-
}
|
|
4847
|
-
|
|
4848
|
-
.label_String {
|
|
4849
|
-
label: String;
|
|
4850
|
-
}
|
|
4851
|
-
|
|
4852
|
-
.key_custom {
|
|
4853
|
-
key: custom;
|
|
4854
|
-
}
|
|
4855
|
-
|
|
4856
|
-
.label_Custom {
|
|
4857
|
-
label: Custom;
|
|
4858
|
-
}
|
|
4859
|
-
|
|
4860
|
-
.key_owner {
|
|
4861
|
-
key: owner;
|
|
4862
|
-
}
|
|
4863
|
-
|
|
4864
|
-
.label_Owner {
|
|
4865
|
-
label: Owner;
|
|
4866
|
-
}
|
|
4867
|
-
|
|
4868
|
-
.key_repayment {
|
|
4869
|
-
key: repayment;
|
|
4870
|
-
}
|
|
4871
|
-
|
|
4872
|
-
.label_Repayment_\\(GBP\\) {
|
|
4873
|
-
label: Repayment (GBP);
|
|
4874
|
-
}
|
|
4875
|
-
|
|
4876
|
-
.format_currency {
|
|
4877
|
-
format: currency;
|
|
4878
|
-
}
|
|
4879
|
-
|
|
4880
|
-
.currency-code_0 {
|
|
4881
|
-
currency-code: 0;
|
|
4882
|
-
}
|
|
4883
|
-
|
|
4884
|
-
.sort_asc {
|
|
4885
|
-
sort: asc;
|
|
4886
|
-
}
|
|
4887
|
-
|
|
4888
|
-
.sort-fn_textCaseSensitive {
|
|
4889
|
-
sort-fn: textCaseSensitive;
|
|
4890
|
-
}
|
|
4891
|
-
|
|
4892
4793
|
.rg_xs {
|
|
4893
4794
|
row-gap: var(--spacing-xs);
|
|
4894
4795
|
}
|
|
@@ -4897,34 +4798,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
4897
4798
|
position: top-center;
|
|
4898
4799
|
}
|
|
4899
4800
|
|
|
4900
|
-
.pos_bottom-end {
|
|
4901
|
-
position: bottom-end;
|
|
4902
|
-
}
|
|
4903
|
-
|
|
4904
|
-
.pos_bottom-center {
|
|
4905
|
-
position: bottom-center;
|
|
4906
|
-
}
|
|
4907
|
-
|
|
4908
|
-
.pos_bottom-start {
|
|
4909
|
-
position: bottom-start;
|
|
4910
|
-
}
|
|
4911
|
-
|
|
4912
|
-
.pos_top-start {
|
|
4913
|
-
position: top-start;
|
|
4914
|
-
}
|
|
4915
|
-
|
|
4916
|
-
.pos_top-end {
|
|
4917
|
-
position: top-end;
|
|
4918
|
-
}
|
|
4919
|
-
|
|
4920
|
-
.key_name {
|
|
4921
|
-
key: name;
|
|
4922
|
-
}
|
|
4923
|
-
|
|
4924
|
-
.label_Name {
|
|
4925
|
-
label: Name;
|
|
4926
|
-
}
|
|
4927
|
-
|
|
4928
4801
|
.inset-s_\\[-100\\%\\] {
|
|
4929
4802
|
inset-inline-start: -100%;
|
|
4930
4803
|
}
|
|
@@ -5332,51 +5205,58 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
5332
5205
|
--col-gap: var(--iress-spacing-5, calc(5 * var(--iress-spacing-100, .25rem)));
|
|
5333
5206
|
}
|
|
5334
5207
|
|
|
5335
|
-
.gutter_spacing\\.5,.gutter_spacing\\.
|
|
5208
|
+
.gutter_spacing\\.5,.gutter_spacing\\.7 {
|
|
5336
5209
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
5337
5210
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
5338
5211
|
row-gap: var(--col-gap);
|
|
5339
5212
|
}
|
|
5340
5213
|
|
|
5341
|
-
.gutter_spacing\\.
|
|
5342
|
-
--col-gap: var(--iress-spacing-
|
|
5214
|
+
.gutter_spacing\\.7 {
|
|
5215
|
+
--col-gap: var(--iress-spacing-7, calc(7 * var(--iress-spacing-100, .25rem)));
|
|
5343
5216
|
}
|
|
5344
5217
|
|
|
5345
|
-
.gutter_spacing\\.
|
|
5346
|
-
--col-gap: var(--iress-spacing-
|
|
5218
|
+
.gutter_spacing\\.8 {
|
|
5219
|
+
--col-gap: var(--iress-spacing-8, calc(8 * var(--iress-spacing-100, .25rem)));
|
|
5347
5220
|
}
|
|
5348
5221
|
|
|
5349
|
-
.gutter_spacing\\.10
|
|
5222
|
+
.gutter_spacing\\.8,.gutter_spacing\\.10 {
|
|
5350
5223
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
5351
5224
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
5352
5225
|
row-gap: var(--col-gap);
|
|
5353
5226
|
}
|
|
5354
5227
|
|
|
5355
|
-
.
|
|
5356
|
-
--col-gap: var(--iress-spacing-
|
|
5228
|
+
.gutter_spacing\\.10 {
|
|
5229
|
+
--col-gap: var(--iress-spacing-10, calc(10 * var(--iress-spacing-100, .25rem)));
|
|
5357
5230
|
}
|
|
5358
5231
|
|
|
5359
|
-
.
|
|
5360
|
-
--col-gap: var(--iress-spacing-
|
|
5232
|
+
.gutter_none {
|
|
5233
|
+
--col-gap: var(--iress-spacing-0, 0rem);
|
|
5361
5234
|
}
|
|
5362
5235
|
|
|
5363
|
-
.gutter_xs
|
|
5236
|
+
.gutter_none,.gutter_xs {
|
|
5364
5237
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
5365
5238
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
5366
5239
|
row-gap: var(--col-gap);
|
|
5367
5240
|
}
|
|
5368
5241
|
|
|
5242
|
+
.gutter_xs {
|
|
5243
|
+
--col-gap: var(--iress-spacing-1, .25rem);
|
|
5244
|
+
}
|
|
5245
|
+
|
|
5369
5246
|
.gutter_sm {
|
|
5370
5247
|
--col-gap: var(--iress-spacing-2, calc(2 * var(--iress-spacing-100, .25rem)));
|
|
5371
5248
|
}
|
|
5372
5249
|
|
|
5373
|
-
.gutter_xl {
|
|
5374
|
-
--col-gap: var(--iress-spacing-10, calc(10 * var(--iress-spacing-100, .25rem)));
|
|
5250
|
+
.gutter_sm,.gutter_xl {
|
|
5375
5251
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
5376
5252
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
5377
5253
|
row-gap: var(--col-gap);
|
|
5378
5254
|
}
|
|
5379
5255
|
|
|
5256
|
+
.gutter_xl {
|
|
5257
|
+
--col-gap: var(--iress-spacing-10, calc(10 * var(--iress-spacing-100, .25rem)));
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5380
5260
|
.focusable_true:focus-visible {
|
|
5381
5261
|
outline: none;
|
|
5382
5262
|
box-shadow: var(--iress-elevation-focus-shadow, 0px 0px 0px 1.5px var(--iress-colour-neutral-10, #FFFFFF), 0px 0px 0px 3.5px #0066FF);
|
|
@@ -5938,10 +5818,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
5938
5818
|
right: 100%;
|
|
5939
5819
|
}
|
|
5940
5820
|
|
|
5941
|
-
.w_2rem {
|
|
5942
|
-
width: 2rem;
|
|
5943
|
-
}
|
|
5944
|
-
|
|
5945
5821
|
.w_2 {
|
|
5946
5822
|
width: 2px;
|
|
5947
5823
|
}
|
|
@@ -5954,18 +5830,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
5954
5830
|
margin-left: var(--spacing-spacing\\.1);
|
|
5955
5831
|
}
|
|
5956
5832
|
|
|
5957
|
-
.w_30\\% {
|
|
5958
|
-
width: 30%;
|
|
5959
|
-
}
|
|
5960
|
-
|
|
5961
|
-
.w_overlay\\.lg {
|
|
5962
|
-
width: var(--sizes-overlay\\.lg);
|
|
5963
|
-
}
|
|
5964
|
-
|
|
5965
|
-
.w_1\\% {
|
|
5966
|
-
width: 1%;
|
|
5967
|
-
}
|
|
5968
|
-
|
|
5969
5833
|
.bd-b-w_1px {
|
|
5970
5834
|
border-bottom-width: 1px;
|
|
5971
5835
|
}
|
|
@@ -5978,14 +5842,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
5978
5842
|
border-bottom-color: var(--colors-colour\\.neutral\\.70);
|
|
5979
5843
|
}
|
|
5980
5844
|
|
|
5981
|
-
.w_75\\% {
|
|
5982
|
-
width: 75%;
|
|
5983
|
-
}
|
|
5984
|
-
|
|
5985
|
-
.h_200 {
|
|
5986
|
-
height: 200px;
|
|
5987
|
-
}
|
|
5988
|
-
|
|
5989
5845
|
.w_\\[auto\\] {
|
|
5990
5846
|
width: auto;
|
|
5991
5847
|
}
|
|
@@ -6002,10 +5858,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
6002
5858
|
width: 300px;
|
|
6003
5859
|
}
|
|
6004
5860
|
|
|
6005
|
-
.w_75px {
|
|
6006
|
-
width: 75px;
|
|
6007
|
-
}
|
|
6008
|
-
|
|
6009
5861
|
.ml_xs {
|
|
6010
5862
|
margin-left: var(--spacing-xs);
|
|
6011
5863
|
}
|
|
@@ -6014,14 +5866,14 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
6014
5866
|
width: 100perc;
|
|
6015
5867
|
}
|
|
6016
5868
|
|
|
6017
|
-
.mb_-lg {
|
|
6018
|
-
margin-bottom: calc(var(--spacing-lg) * -1);
|
|
6019
|
-
}
|
|
6020
|
-
|
|
6021
5869
|
.h_250px {
|
|
6022
5870
|
height: 250px;
|
|
6023
5871
|
}
|
|
6024
5872
|
|
|
5873
|
+
.w_75\\% {
|
|
5874
|
+
width: 75%;
|
|
5875
|
+
}
|
|
5876
|
+
|
|
6025
5877
|
.h_300px {
|
|
6026
5878
|
height: 300px;
|
|
6027
5879
|
}
|
|
@@ -6486,6 +6338,10 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
6486
6338
|
margin-bottom: calc(var(--spacing-md) * -1);
|
|
6487
6339
|
}
|
|
6488
6340
|
|
|
6341
|
+
.mb_-lg {
|
|
6342
|
+
margin-bottom: calc(var(--spacing-lg) * -1);
|
|
6343
|
+
}
|
|
6344
|
+
|
|
6489
6345
|
.mb_-xl {
|
|
6490
6346
|
margin-bottom: calc(var(--spacing-xl) * -1);
|
|
6491
6347
|
}
|
|
@@ -6986,6 +6842,10 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
6986
6842
|
width: var(--sizes-container\\.xxl);
|
|
6987
6843
|
}
|
|
6988
6844
|
|
|
6845
|
+
.w_overlay\\.lg {
|
|
6846
|
+
width: var(--sizes-overlay\\.lg);
|
|
6847
|
+
}
|
|
6848
|
+
|
|
6989
6849
|
.w_chevron\\.select {
|
|
6990
6850
|
width: var(--sizes-chevron\\.select);
|
|
6991
6851
|
}
|
|
@@ -9163,48 +9023,9 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
9163
9023
|
clip: rect(0, 0, 0, 0);
|
|
9164
9024
|
white-space: nowrap;
|
|
9165
9025
|
border-width: 0;
|
|
9166
|
-
}
|
|
9167
|
-
.xs\\:key_investmentDate {
|
|
9168
|
-
key: investmentDate;
|
|
9169
|
-
}
|
|
9170
|
-
.xs\\:label_Investment_Date {
|
|
9171
|
-
label: Investment Date;
|
|
9172
|
-
}
|
|
9173
|
-
.xs\\:format_date {
|
|
9174
|
-
format: date;
|
|
9175
9026
|
}
|
|
9176
9027
|
.xs\\:key_test2 {
|
|
9177
9028
|
key: test2;
|
|
9178
|
-
}
|
|
9179
|
-
.xs\\:label_Date {
|
|
9180
|
-
label: Date;
|
|
9181
|
-
}
|
|
9182
|
-
.xs\\:key_number {
|
|
9183
|
-
key: number;
|
|
9184
|
-
}
|
|
9185
|
-
.xs\\:label_Number {
|
|
9186
|
-
label: Number;
|
|
9187
|
-
}
|
|
9188
|
-
.xs\\:format_number {
|
|
9189
|
-
format: number;
|
|
9190
|
-
}
|
|
9191
|
-
.xs\\:key_type {
|
|
9192
|
-
key: type;
|
|
9193
|
-
}
|
|
9194
|
-
.xs\\:label_Type {
|
|
9195
|
-
label: Type;
|
|
9196
|
-
}
|
|
9197
|
-
.xs\\:sort_true {
|
|
9198
|
-
sort: true;
|
|
9199
|
-
}
|
|
9200
|
-
.xs\\:sort-fn_datetime {
|
|
9201
|
-
sort-fn: datetime;
|
|
9202
|
-
}
|
|
9203
|
-
.xs\\:key_value {
|
|
9204
|
-
key: value;
|
|
9205
|
-
}
|
|
9206
|
-
.xs\\:label_Value {
|
|
9207
|
-
label: Value;
|
|
9208
9029
|
}
|
|
9209
9030
|
.xs\\:c_colour\\.primary\\.fill {
|
|
9210
9031
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -9680,12 +9501,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
9680
9501
|
}
|
|
9681
9502
|
.xs\\:max-w_container\\.xs {
|
|
9682
9503
|
max-width: var(--sizes-container\\.xs);
|
|
9683
|
-
}
|
|
9684
|
-
.xs\\:w_30\\% {
|
|
9685
|
-
width: 30%;
|
|
9686
|
-
}
|
|
9687
|
-
.xs\\:w_100px {
|
|
9688
|
-
width: 100px;
|
|
9689
9504
|
}
|
|
9690
9505
|
.xs\\:max-w_auto {
|
|
9691
9506
|
max-width: auto;
|
|
@@ -11423,45 +11238,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
11423
11238
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
11424
11239
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
11425
11240
|
row-gap: var(--col-gap);
|
|
11426
|
-
}
|
|
11427
|
-
.sm\\:key_status {
|
|
11428
|
-
key: status;
|
|
11429
|
-
}
|
|
11430
|
-
.sm\\:label_Status {
|
|
11431
|
-
label: Status;
|
|
11432
|
-
}
|
|
11433
|
-
.sm\\:key_totalPercentage {
|
|
11434
|
-
key: totalPercentage;
|
|
11435
|
-
}
|
|
11436
|
-
.sm\\:label_Total_\\% {
|
|
11437
|
-
label: Total %;
|
|
11438
|
-
}
|
|
11439
|
-
.sm\\:format_percent {
|
|
11440
|
-
format: percent;
|
|
11441
|
-
}
|
|
11442
|
-
.sm\\:key_email {
|
|
11443
|
-
key: email;
|
|
11444
|
-
}
|
|
11445
|
-
.sm\\:label_Email {
|
|
11446
|
-
label: Email;
|
|
11447
|
-
}
|
|
11448
|
-
.sm\\:label_Share {
|
|
11449
|
-
label: Share;
|
|
11450
|
-
}
|
|
11451
|
-
.sm\\:format_date {
|
|
11452
|
-
format: date;
|
|
11453
|
-
}
|
|
11454
|
-
.sm\\:key_provider {
|
|
11455
|
-
key: provider;
|
|
11456
|
-
}
|
|
11457
|
-
.sm\\:label_Provider {
|
|
11458
|
-
label: Provider;
|
|
11459
|
-
}
|
|
11460
|
-
.sm\\:sort_true {
|
|
11461
|
-
sort: true;
|
|
11462
|
-
}
|
|
11463
|
-
.sm\\:sort-fn_alphanumeric {
|
|
11464
|
-
sort-fn: alphanumeric;
|
|
11465
11241
|
}
|
|
11466
11242
|
.sm\\:c_colour\\.primary\\.fill {
|
|
11467
11243
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -11948,9 +11724,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
11948
11724
|
}
|
|
11949
11725
|
.sm\\:max-w_container\\.sm {
|
|
11950
11726
|
max-width: var(--sizes-container\\.sm);
|
|
11951
|
-
}
|
|
11952
|
-
.sm\\:w_15\\% {
|
|
11953
|
-
width: 15%;
|
|
11954
11727
|
}
|
|
11955
11728
|
.sm\\:max-w_auto {
|
|
11956
11729
|
max-width: auto;
|
|
@@ -13703,51 +13476,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
13703
13476
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
13704
13477
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
13705
13478
|
row-gap: var(--col-gap);
|
|
13706
|
-
}
|
|
13707
|
-
.md\\:key_location {
|
|
13708
|
-
key: location;
|
|
13709
|
-
}
|
|
13710
|
-
.md\\:label_Location {
|
|
13711
|
-
label: Location;
|
|
13712
|
-
}
|
|
13713
|
-
.md\\:key_amount {
|
|
13714
|
-
key: amount;
|
|
13715
|
-
}
|
|
13716
|
-
.md\\:label_Investment_Amount_\\(AUD\\) {
|
|
13717
|
-
label: Investment Amount (AUD);
|
|
13718
|
-
}
|
|
13719
|
-
.md\\:format_currency {
|
|
13720
|
-
format: currency;
|
|
13721
|
-
}
|
|
13722
|
-
.md\\:currency-code_0 {
|
|
13723
|
-
currency-code: 0;
|
|
13724
|
-
}
|
|
13725
|
-
.md\\:ta_right {
|
|
13726
|
-
text-align: right;
|
|
13727
|
-
}
|
|
13728
|
-
.md\\:key_shortDate {
|
|
13729
|
-
key: shortDate;
|
|
13730
|
-
}
|
|
13731
|
-
.md\\:label_Short_date {
|
|
13732
|
-
label: Short date;
|
|
13733
|
-
}
|
|
13734
|
-
.md\\:format_shortDate {
|
|
13735
|
-
format: shortDate;
|
|
13736
|
-
}
|
|
13737
|
-
.md\\:key_status {
|
|
13738
|
-
key: status;
|
|
13739
|
-
}
|
|
13740
|
-
.md\\:label_Status {
|
|
13741
|
-
label: Status;
|
|
13742
|
-
}
|
|
13743
|
-
.md\\:divider_true {
|
|
13744
|
-
divider: true;
|
|
13745
|
-
}
|
|
13746
|
-
.md\\:sort_true {
|
|
13747
|
-
sort: true;
|
|
13748
|
-
}
|
|
13749
|
-
.md\\:label_Cost_\\(sorts_by_net_cost_if_available\\) {
|
|
13750
|
-
label: Cost (sorts by net cost if available);
|
|
13751
13479
|
}
|
|
13752
13480
|
.md\\:c_colour\\.primary\\.fill {
|
|
13753
13481
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -14072,6 +13800,9 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
14072
13800
|
}
|
|
14073
13801
|
.md\\:ta_left {
|
|
14074
13802
|
text-align: left;
|
|
13803
|
+
}
|
|
13804
|
+
.md\\:ta_right {
|
|
13805
|
+
text-align: right;
|
|
14075
13806
|
}
|
|
14076
13807
|
.md\\:ta_justify {
|
|
14077
13808
|
text-align: justify;
|
|
@@ -14225,9 +13956,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
14225
13956
|
}
|
|
14226
13957
|
.md\\:max-w_container\\.md {
|
|
14227
13958
|
max-width: var(--sizes-container\\.md);
|
|
14228
|
-
}
|
|
14229
|
-
.md\\:w_25\\% {
|
|
14230
|
-
width: 25%;
|
|
14231
13959
|
}
|
|
14232
13960
|
.md\\:max-w_auto {
|
|
14233
13961
|
max-width: auto;
|
|
@@ -15969,27 +15697,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
15969
15697
|
overflow: visible;
|
|
15970
15698
|
clip: auto;
|
|
15971
15699
|
white-space: normal;
|
|
15972
|
-
}
|
|
15973
|
-
.lg\\:key_gender {
|
|
15974
|
-
key: gender;
|
|
15975
|
-
}
|
|
15976
|
-
.lg\\:label_Gender {
|
|
15977
|
-
label: Gender;
|
|
15978
|
-
}
|
|
15979
|
-
.lg\\:key_isoDateTime {
|
|
15980
|
-
key: isoDateTime;
|
|
15981
|
-
}
|
|
15982
|
-
.lg\\:label_ISO_Date_\\&_Time {
|
|
15983
|
-
label: ISO Date & Time;
|
|
15984
|
-
}
|
|
15985
|
-
.lg\\:format_isoDateTime {
|
|
15986
|
-
format: isoDateTime;
|
|
15987
|
-
}
|
|
15988
|
-
.lg\\:key_frequency {
|
|
15989
|
-
key: frequency;
|
|
15990
|
-
}
|
|
15991
|
-
.lg\\:label_Frequency {
|
|
15992
|
-
label: Frequency;
|
|
15993
15700
|
}
|
|
15994
15701
|
.lg\\:c_colour\\.primary\\.fill {
|
|
15995
15702
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -18185,30 +17892,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
18185
17892
|
}
|
|
18186
17893
|
.xl\\:offset_11 {
|
|
18187
17894
|
margin-left: calc(11 / 12 * 100%);
|
|
18188
|
-
}
|
|
18189
|
-
.xl\\:key_relativeTime {
|
|
18190
|
-
key: relativeTime;
|
|
18191
|
-
}
|
|
18192
|
-
.xl\\:label_Relative_time {
|
|
18193
|
-
label: Relative time;
|
|
18194
|
-
}
|
|
18195
|
-
.xl\\:format_relativeTime {
|
|
18196
|
-
format: relativeTime;
|
|
18197
|
-
}
|
|
18198
|
-
.xl\\:key_outstanding {
|
|
18199
|
-
key: outstanding;
|
|
18200
|
-
}
|
|
18201
|
-
.xl\\:label_Outstanding_\\(GBP\\) {
|
|
18202
|
-
label: Outstanding (GBP);
|
|
18203
|
-
}
|
|
18204
|
-
.xl\\:format_currency {
|
|
18205
|
-
format: currency;
|
|
18206
|
-
}
|
|
18207
|
-
.xl\\:currency-code_0 {
|
|
18208
|
-
currency-code: 0;
|
|
18209
|
-
}
|
|
18210
|
-
.xl\\:sort_true {
|
|
18211
|
-
sort: true;
|
|
18212
17895
|
}
|
|
18213
17896
|
.xl\\:c_colour\\.primary\\.fill {
|
|
18214
17897
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -20436,33 +20119,6 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
20436
20119
|
margin-inline: calc(-1 * var(--col-gap) / 2);
|
|
20437
20120
|
column-gap: var(--iress-spacing-0, 0rem);
|
|
20438
20121
|
row-gap: var(--col-gap);
|
|
20439
|
-
}
|
|
20440
|
-
.xxl\\:key_currency {
|
|
20441
|
-
key: currency;
|
|
20442
|
-
}
|
|
20443
|
-
.xxl\\:label_Currency_\\(AUD\\) {
|
|
20444
|
-
label: Currency (AUD);
|
|
20445
|
-
}
|
|
20446
|
-
.xxl\\:format_currency {
|
|
20447
|
-
format: currency;
|
|
20448
|
-
}
|
|
20449
|
-
.xxl\\:currency-code_0 {
|
|
20450
|
-
currency-code: 0;
|
|
20451
|
-
}
|
|
20452
|
-
.xxl\\:key_interestRate {
|
|
20453
|
-
key: interestRate;
|
|
20454
|
-
}
|
|
20455
|
-
.xxl\\:label_Interest_rate_p\\.a\\. {
|
|
20456
|
-
label: Interest rate p.a.;
|
|
20457
|
-
}
|
|
20458
|
-
.xxl\\:format_percent {
|
|
20459
|
-
format: percent;
|
|
20460
|
-
}
|
|
20461
|
-
.xxl\\:ta_right {
|
|
20462
|
-
text-align: right;
|
|
20463
|
-
}
|
|
20464
|
-
.xxl\\:sort_true {
|
|
20465
|
-
sort: true;
|
|
20466
20122
|
}
|
|
20467
20123
|
.xxl\\:c_colour\\.primary\\.fill {
|
|
20468
20124
|
color: var(--colors-colour\\.primary\\.fill);
|
|
@@ -20787,6 +20443,9 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
20787
20443
|
}
|
|
20788
20444
|
.xxl\\:ta_left {
|
|
20789
20445
|
text-align: left;
|
|
20446
|
+
}
|
|
20447
|
+
.xxl\\:ta_right {
|
|
20448
|
+
text-align: right;
|
|
20790
20449
|
}
|
|
20791
20450
|
.xxl\\:ta_justify {
|
|
20792
20451
|
text-align: justify;
|
|
@@ -21968,8 +21627,8 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
21968
21627
|
if (i.current.shadowRoot)
|
|
21969
21628
|
m(i.current.shadowRoot);
|
|
21970
21629
|
else {
|
|
21971
|
-
const n = i.current.attachShadow({ mode: "open" }),
|
|
21972
|
-
|
|
21630
|
+
const n = i.current.attachShadow({ mode: "open" }), s = document.createElement("style"), r = document.querySelector("meta[name='csp-nonce']")?.getAttribute("content");
|
|
21631
|
+
r && s.setAttribute("nonce", r), s.textContent = z, n.appendChild(s);
|
|
21973
21632
|
const c = document.createElement("div");
|
|
21974
21633
|
n.appendChild(c), l.current = c, m(n);
|
|
21975
21634
|
}
|
|
@@ -21977,8 +21636,8 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
21977
21636
|
e.forEach((n) => {
|
|
21978
21637
|
if (document.head.querySelector(`link[href="${n}"]`))
|
|
21979
21638
|
return;
|
|
21980
|
-
const
|
|
21981
|
-
|
|
21639
|
+
const s = document.createElement("link");
|
|
21640
|
+
s.href = n, s.rel = "stylesheet", document.head.appendChild(s);
|
|
21982
21641
|
});
|
|
21983
21642
|
}, [e]), g(() => {
|
|
21984
21643
|
if (o || !a) return;
|
|
@@ -21988,15 +21647,15 @@ const z = `@layer reset, base, tokens, recipes, utilities;
|
|
|
21988
21647
|
a && t.forEach((n) => {
|
|
21989
21648
|
if (a.querySelector(`link[href="${n}"]`))
|
|
21990
21649
|
return;
|
|
21991
|
-
const
|
|
21992
|
-
|
|
21650
|
+
const s = document.createElement("link");
|
|
21651
|
+
s.href = n, s.rel = "stylesheet", a.appendChild(s);
|
|
21993
21652
|
});
|
|
21994
21653
|
}, [a, t]), g(() => {
|
|
21995
|
-
a && Object.entries(p).forEach(([n,
|
|
21654
|
+
a && Object.entries(p).forEach(([n, s]) => {
|
|
21996
21655
|
if (a.querySelector(`style[id="${n}"]`))
|
|
21997
21656
|
return;
|
|
21998
|
-
const
|
|
21999
|
-
c &&
|
|
21657
|
+
const r = document.createElement("style"), c = document.querySelector("meta[name='csp-nonce']")?.getAttribute("content");
|
|
21658
|
+
c && r.setAttribute("nonce", c), r.setAttribute("id", n), r.textContent = s, a.appendChild(r);
|
|
22000
21659
|
});
|
|
22001
21660
|
}, [a, p]), h(
|
|
22002
21661
|
u,
|