@telus-uds/theme-allium 3.20.0 → 3.21.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/build/android/schema.json +1368 -872
- package/build/android/theme.json +195 -5
- package/build/ios/schema.json +1368 -872
- package/build/ios/theme.json +195 -5
- package/build/rn/schema.json +1368 -872
- package/build/rn/theme.js +82 -6
- package/package.json +5 -5
- package/theme.json +87 -4
package/build/android/theme.json
CHANGED
|
@@ -3509,6 +3509,13 @@
|
|
|
3509
3509
|
"shadow": null
|
|
3510
3510
|
}
|
|
3511
3511
|
},
|
|
3512
|
+
"Image": {
|
|
3513
|
+
"appearances": {},
|
|
3514
|
+
"rules": [],
|
|
3515
|
+
"tokens": {
|
|
3516
|
+
"borderRadius": 4
|
|
3517
|
+
}
|
|
3518
|
+
},
|
|
3512
3519
|
"InputLabel": {
|
|
3513
3520
|
"appearances": {},
|
|
3514
3521
|
"rules": [],
|
|
@@ -3854,7 +3861,11 @@
|
|
|
3854
3861
|
"viewport": ["xs", "sm"]
|
|
3855
3862
|
},
|
|
3856
3863
|
"tokens": {
|
|
3857
|
-
"height": "100%"
|
|
3864
|
+
"height": "100%",
|
|
3865
|
+
"paddingBottom": 24,
|
|
3866
|
+
"paddingLeft": 24,
|
|
3867
|
+
"paddingRight": 24,
|
|
3868
|
+
"paddingTop": 24
|
|
3858
3869
|
}
|
|
3859
3870
|
},
|
|
3860
3871
|
{
|
|
@@ -3959,7 +3970,19 @@
|
|
|
3959
3970
|
"blue": 1,
|
|
3960
3971
|
"alpha": 1
|
|
3961
3972
|
},
|
|
3973
|
+
"borderColor": {
|
|
3974
|
+
"red": 0.8902,
|
|
3975
|
+
"green": 0.90196,
|
|
3976
|
+
"blue": 0.9098,
|
|
3977
|
+
"alpha": 1
|
|
3978
|
+
},
|
|
3962
3979
|
"borderRadius": 4,
|
|
3980
|
+
"cancelButtonColor": {
|
|
3981
|
+
"red": 0.16863,
|
|
3982
|
+
"green": 0.50196,
|
|
3983
|
+
"blue": 0,
|
|
3984
|
+
"alpha": 1
|
|
3985
|
+
},
|
|
3963
3986
|
"closeIcon": "PaletteIconClose",
|
|
3964
3987
|
"closeIconColor": {
|
|
3965
3988
|
"red": 0.2549,
|
|
@@ -3973,11 +3996,21 @@
|
|
|
3973
3996
|
"containerPaddingLeft": 0,
|
|
3974
3997
|
"containerPaddingRight": 0,
|
|
3975
3998
|
"containerPaddingTop": 0,
|
|
3999
|
+
"gap": 16,
|
|
4000
|
+
"headingColor": {
|
|
4001
|
+
"red": 0.2549,
|
|
4002
|
+
"green": 0.27059,
|
|
4003
|
+
"blue": 0.27843,
|
|
4004
|
+
"alpha": 1
|
|
4005
|
+
},
|
|
4006
|
+
"headingPaddingRight": 24,
|
|
3976
4007
|
"height": null,
|
|
4008
|
+
"marginLeft": 24,
|
|
4009
|
+
"marginRight": 24,
|
|
3977
4010
|
"maxWidth": "100%",
|
|
3978
4011
|
"paddingBottom": 24,
|
|
3979
|
-
"paddingLeft":
|
|
3980
|
-
"paddingRight":
|
|
4012
|
+
"paddingLeft": 32,
|
|
4013
|
+
"paddingRight": 32,
|
|
3981
4014
|
"paddingTop": 24,
|
|
3982
4015
|
"shadow": {
|
|
3983
4016
|
"inset": false,
|
|
@@ -3991,7 +4024,8 @@
|
|
|
3991
4024
|
"blue": 0,
|
|
3992
4025
|
"alpha": 0.1
|
|
3993
4026
|
}
|
|
3994
|
-
}
|
|
4027
|
+
},
|
|
4028
|
+
"subHeadingMarginTop": 8
|
|
3995
4029
|
}
|
|
3996
4030
|
},
|
|
3997
4031
|
"Notification": {
|
|
@@ -6342,6 +6376,81 @@
|
|
|
6342
6376
|
"showStepTrackerLabel": true
|
|
6343
6377
|
}
|
|
6344
6378
|
},
|
|
6379
|
+
"Table": {
|
|
6380
|
+
"appearances": {
|
|
6381
|
+
"spacing": {
|
|
6382
|
+
"type": "variant",
|
|
6383
|
+
"values": ["compact"]
|
|
6384
|
+
}
|
|
6385
|
+
},
|
|
6386
|
+
"rules": [
|
|
6387
|
+
{
|
|
6388
|
+
"if": {
|
|
6389
|
+
"spacing": "compact"
|
|
6390
|
+
},
|
|
6391
|
+
"tokens": {
|
|
6392
|
+
"cellPaddingBottom": 8,
|
|
6393
|
+
"cellPaddingTop": 8
|
|
6394
|
+
}
|
|
6395
|
+
}
|
|
6396
|
+
],
|
|
6397
|
+
"tokens": {
|
|
6398
|
+
"cellBackground": {
|
|
6399
|
+
"red": 1,
|
|
6400
|
+
"green": 1,
|
|
6401
|
+
"blue": 1,
|
|
6402
|
+
"alpha": 1
|
|
6403
|
+
},
|
|
6404
|
+
"cellBoxShadowColor": {
|
|
6405
|
+
"red": 0.8902,
|
|
6406
|
+
"green": 0.90196,
|
|
6407
|
+
"blue": 0.9098,
|
|
6408
|
+
"alpha": 1
|
|
6409
|
+
},
|
|
6410
|
+
"cellHeadingBackground": {
|
|
6411
|
+
"red": 0.95686,
|
|
6412
|
+
"green": 0.95686,
|
|
6413
|
+
"blue": 0.96863,
|
|
6414
|
+
"alpha": 1
|
|
6415
|
+
},
|
|
6416
|
+
"cellHeadingBoxShadowColor": {
|
|
6417
|
+
"red": 0.69804,
|
|
6418
|
+
"green": 0.72549,
|
|
6419
|
+
"blue": 0.74902,
|
|
6420
|
+
"alpha": 1
|
|
6421
|
+
},
|
|
6422
|
+
"cellPaddingBottom": 16,
|
|
6423
|
+
"cellPaddingLeft": 16,
|
|
6424
|
+
"cellPaddingRight": 16,
|
|
6425
|
+
"cellPaddingTop": 16,
|
|
6426
|
+
"cellRowHeadingBackground": {
|
|
6427
|
+
"red": 1,
|
|
6428
|
+
"green": 1,
|
|
6429
|
+
"blue": 1,
|
|
6430
|
+
"alpha": 1
|
|
6431
|
+
},
|
|
6432
|
+
"cellStickyShadow": {
|
|
6433
|
+
"inset": false,
|
|
6434
|
+
"offsetX": 0,
|
|
6435
|
+
"offsetY": 4,
|
|
6436
|
+
"blur": 8,
|
|
6437
|
+
"spread": 0,
|
|
6438
|
+
"color": {
|
|
6439
|
+
"red": 0,
|
|
6440
|
+
"green": 0,
|
|
6441
|
+
"blue": 0,
|
|
6442
|
+
"alpha": 0.1
|
|
6443
|
+
}
|
|
6444
|
+
},
|
|
6445
|
+
"cellSubheadingBackground": {
|
|
6446
|
+
"red": 0.98039,
|
|
6447
|
+
"green": 0.98039,
|
|
6448
|
+
"blue": 0.98039,
|
|
6449
|
+
"alpha": 1
|
|
6450
|
+
},
|
|
6451
|
+
"tablePaddingBottom": 24
|
|
6452
|
+
}
|
|
6453
|
+
},
|
|
6345
6454
|
"Tabs": {
|
|
6346
6455
|
"appearances": {
|
|
6347
6456
|
"inverse": {
|
|
@@ -7124,6 +7233,73 @@
|
|
|
7124
7233
|
"timelineContainerDirection": "column"
|
|
7125
7234
|
}
|
|
7126
7235
|
},
|
|
7236
|
+
"Toast": {
|
|
7237
|
+
"appearances": {},
|
|
7238
|
+
"rules": [],
|
|
7239
|
+
"tokens": {
|
|
7240
|
+
"animationBackgroundColorAfter": {
|
|
7241
|
+
"red": 0.95686,
|
|
7242
|
+
"green": 0.95686,
|
|
7243
|
+
"blue": 0.96863,
|
|
7244
|
+
"alpha": 1
|
|
7245
|
+
},
|
|
7246
|
+
"animationBackgroundColorBefore": {
|
|
7247
|
+
"red": 0.29412,
|
|
7248
|
+
"green": 0.15686,
|
|
7249
|
+
"blue": 0.42745,
|
|
7250
|
+
"alpha": 1
|
|
7251
|
+
},
|
|
7252
|
+
"animationColorAfter": {
|
|
7253
|
+
"red": 0.2549,
|
|
7254
|
+
"green": 0.27059,
|
|
7255
|
+
"blue": 0.27843,
|
|
7256
|
+
"alpha": 1
|
|
7257
|
+
},
|
|
7258
|
+
"animationColorBefore": {
|
|
7259
|
+
"red": 1,
|
|
7260
|
+
"green": 1,
|
|
7261
|
+
"blue": 1,
|
|
7262
|
+
"alpha": 1
|
|
7263
|
+
},
|
|
7264
|
+
"animationDivColorAfter": {
|
|
7265
|
+
"red": 0.16863,
|
|
7266
|
+
"green": 0.50196,
|
|
7267
|
+
"blue": 0,
|
|
7268
|
+
"alpha": 1
|
|
7269
|
+
},
|
|
7270
|
+
"animationDivColorBefore": {
|
|
7271
|
+
"red": 1,
|
|
7272
|
+
"green": 1,
|
|
7273
|
+
"blue": 1,
|
|
7274
|
+
"alpha": 1
|
|
7275
|
+
},
|
|
7276
|
+
"animationFillColorAfter": {
|
|
7277
|
+
"red": 0.16863,
|
|
7278
|
+
"green": 0.50196,
|
|
7279
|
+
"blue": 0,
|
|
7280
|
+
"alpha": 1
|
|
7281
|
+
},
|
|
7282
|
+
"animationFillColorBefore": {
|
|
7283
|
+
"red": 1,
|
|
7284
|
+
"green": 1,
|
|
7285
|
+
"blue": 1,
|
|
7286
|
+
"alpha": 1
|
|
7287
|
+
},
|
|
7288
|
+
"animationHeightAfter": 24,
|
|
7289
|
+
"animationHeightBefore": 0,
|
|
7290
|
+
"animationPaddingBottomAfter": 16,
|
|
7291
|
+
"animationPaddingBottomBefore": 0,
|
|
7292
|
+
"animationPaddingTopAfter": 16,
|
|
7293
|
+
"animationPaddingTopBefore": 0,
|
|
7294
|
+
"containerBackgroundColor": {
|
|
7295
|
+
"red": 0.29412,
|
|
7296
|
+
"green": 0.15686,
|
|
7297
|
+
"blue": 0.42745,
|
|
7298
|
+
"alpha": 1
|
|
7299
|
+
},
|
|
7300
|
+
"containerGap": 10
|
|
7301
|
+
}
|
|
7302
|
+
},
|
|
7127
7303
|
"ToggleSwitch": {
|
|
7128
7304
|
"appearances": {
|
|
7129
7305
|
"inactive": {
|
|
@@ -8007,6 +8183,20 @@
|
|
|
8007
8183
|
"textTransform": "none"
|
|
8008
8184
|
}
|
|
8009
8185
|
},
|
|
8186
|
+
"WaffleGrid": {
|
|
8187
|
+
"appearances": {},
|
|
8188
|
+
"rules": [],
|
|
8189
|
+
"tokens": {
|
|
8190
|
+
"itemBorderColor": {
|
|
8191
|
+
"red": 0.69804,
|
|
8192
|
+
"green": 0.72549,
|
|
8193
|
+
"blue": 0.74902,
|
|
8194
|
+
"alpha": 1
|
|
8195
|
+
},
|
|
8196
|
+
"itemPadding": 16,
|
|
8197
|
+
"rowBorderWidth": 1
|
|
8198
|
+
}
|
|
8199
|
+
},
|
|
8010
8200
|
"spacingScale": {
|
|
8011
8201
|
"appearances": {
|
|
8012
8202
|
"space": {
|
|
@@ -8194,7 +8384,7 @@
|
|
|
8194
8384
|
}
|
|
8195
8385
|
},
|
|
8196
8386
|
"metadata": {
|
|
8197
|
-
"themeTokensVersion": "2.
|
|
8387
|
+
"themeTokensVersion": "2.19.0",
|
|
8198
8388
|
"name": "theme-allium"
|
|
8199
8389
|
}
|
|
8200
8390
|
}
|