@umbraco-ui/uui 1.6.0-rc.3 → 1.6.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.
@@ -240,6 +240,10 @@
240
240
  }
241
241
  ],
242
242
  "cssProperties": [
243
+ {
244
+ "name": "--uui-box-header-padding",
245
+ "description": "overwrite the header padding"
246
+ },
243
247
  {
244
248
  "name": "--uui-box-default-padding",
245
249
  "description": "overwrite the box padding"
@@ -343,6 +347,18 @@
343
347
  "description": "Label to be used for aria-label and eventually as visual label",
344
348
  "type": "string"
345
349
  },
350
+ {
351
+ "name": "href",
352
+ "description": "Set an href, this will turns the button into an anchor tag.",
353
+ "type": "string",
354
+ "default": "\"undefined\""
355
+ },
356
+ {
357
+ "name": "target",
358
+ "description": "Set an anchor tag target, only used when using href.",
359
+ "type": "string",
360
+ "default": "\"undefined\""
361
+ },
346
362
  {
347
363
  "name": "vertical",
348
364
  "description": "Place the button vertically",
@@ -357,6 +373,20 @@
357
373
  "description": "Label to be used for aria-label and eventually as visual label",
358
374
  "type": "string"
359
375
  },
376
+ {
377
+ "name": "href",
378
+ "attribute": "href",
379
+ "description": "Set an href, this will turns the button into an anchor tag.",
380
+ "type": "string",
381
+ "default": "\"undefined\""
382
+ },
383
+ {
384
+ "name": "target",
385
+ "attribute": "target",
386
+ "description": "Set an anchor tag target, only used when using href.",
387
+ "type": "string",
388
+ "default": "\"undefined\""
389
+ },
360
390
  {
361
391
  "name": "styles",
362
392
  "type": "CSSResult[]",
@@ -4767,7 +4797,7 @@
4767
4797
  {
4768
4798
  "name": "close",
4769
4799
  "type": "(event?: Event | undefined) => void",
4770
- "default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent('close', {\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
4800
+ "default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent(UUIModalCloseEvent, {\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
4771
4801
  },
4772
4802
  {
4773
4803
  "name": "styles",
@@ -4780,7 +4810,7 @@
4780
4810
  "name": "open"
4781
4811
  },
4782
4812
  {
4783
- "name": "close"
4813
+ "name": "uui:modal-close"
4784
4814
  },
4785
4815
  {
4786
4816
  "name": "close-end"
@@ -4865,7 +4895,7 @@
4865
4895
  {
4866
4896
  "name": "close",
4867
4897
  "type": "(event?: Event | undefined) => void",
4868
- "default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent('close', {\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
4898
+ "default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent(UUIModalCloseEvent, {\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
4869
4899
  },
4870
4900
  {
4871
4901
  "name": "styles",
@@ -4878,7 +4908,7 @@
4878
4908
  "name": "open"
4879
4909
  },
4880
4910
  {
4881
- "name": "close"
4911
+ "name": "uui:modal-close"
4882
4912
  },
4883
4913
  {
4884
4914
  "name": "close-end"
@@ -5602,6 +5632,18 @@
5602
5632
  "type": "string",
5603
5633
  "default": "\"''\""
5604
5634
  },
5635
+ {
5636
+ "name": "href",
5637
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
5638
+ "type": "string",
5639
+ "default": "\"undefined\""
5640
+ },
5641
+ {
5642
+ "name": "target",
5643
+ "description": "Set an anchor tag target, only used when using href.",
5644
+ "type": "string",
5645
+ "default": "\"undefined\""
5646
+ },
5605
5647
  {
5606
5648
  "name": "disabled",
5607
5649
  "description": "Set tot true to disable",
@@ -5629,6 +5671,12 @@
5629
5671
  "description": "Attribute applied when the element is selected.",
5630
5672
  "type": "boolean",
5631
5673
  "default": "false"
5674
+ },
5675
+ {
5676
+ "name": "standalone",
5677
+ "description": "Set to true to make element stand out",
5678
+ "type": "boolean",
5679
+ "default": "false"
5632
5680
  }
5633
5681
  ],
5634
5682
  "properties": [
@@ -5653,6 +5701,25 @@
5653
5701
  "type": "string",
5654
5702
  "default": "\"''\""
5655
5703
  },
5704
+ {
5705
+ "name": "href",
5706
+ "attribute": "href",
5707
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
5708
+ "type": "string",
5709
+ "default": "\"undefined\""
5710
+ },
5711
+ {
5712
+ "name": "target",
5713
+ "attribute": "target",
5714
+ "description": "Set an anchor tag target, only used when using href.",
5715
+ "type": "string",
5716
+ "default": "\"undefined\""
5717
+ },
5718
+ {
5719
+ "name": "styles",
5720
+ "type": "CSSResult[]",
5721
+ "default": "[null]"
5722
+ },
5656
5723
  {
5657
5724
  "name": "disabled",
5658
5725
  "attribute": "disabled",
@@ -5667,11 +5734,6 @@
5667
5734
  "type": "boolean",
5668
5735
  "default": "\"false\""
5669
5736
  },
5670
- {
5671
- "name": "styles",
5672
- "type": "CSSResult[]",
5673
- "default": "[null]"
5674
- },
5675
5737
  {
5676
5738
  "name": "selectOnly",
5677
5739
  "attribute": "select-only",
@@ -5747,6 +5809,18 @@
5747
5809
  "type": "string",
5748
5810
  "default": "\"''\""
5749
5811
  },
5812
+ {
5813
+ "name": "href",
5814
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
5815
+ "type": "string",
5816
+ "default": "\"undefined\""
5817
+ },
5818
+ {
5819
+ "name": "target",
5820
+ "description": "Set an anchor tag target, only used when using href.",
5821
+ "type": "string",
5822
+ "default": "\"undefined\""
5823
+ },
5750
5824
  {
5751
5825
  "name": "disabled",
5752
5826
  "description": "Set tot true to disable",
@@ -5774,6 +5848,12 @@
5774
5848
  "description": "Attribute applied when the element is selected.",
5775
5849
  "type": "boolean",
5776
5850
  "default": "false"
5851
+ },
5852
+ {
5853
+ "name": "standalone",
5854
+ "description": "Set to true to make element stand out",
5855
+ "type": "boolean",
5856
+ "default": "false"
5777
5857
  }
5778
5858
  ],
5779
5859
  "properties": [
@@ -5798,6 +5878,25 @@
5798
5878
  "type": "string",
5799
5879
  "default": "\"''\""
5800
5880
  },
5881
+ {
5882
+ "name": "href",
5883
+ "attribute": "href",
5884
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
5885
+ "type": "string",
5886
+ "default": "\"undefined\""
5887
+ },
5888
+ {
5889
+ "name": "target",
5890
+ "attribute": "target",
5891
+ "description": "Set an anchor tag target, only used when using href.",
5892
+ "type": "string",
5893
+ "default": "\"undefined\""
5894
+ },
5895
+ {
5896
+ "name": "styles",
5897
+ "type": "CSSResult[]",
5898
+ "default": "[null]"
5899
+ },
5801
5900
  {
5802
5901
  "name": "disabled",
5803
5902
  "attribute": "disabled",
@@ -5812,11 +5911,6 @@
5812
5911
  "type": "boolean",
5813
5912
  "default": "\"false\""
5814
5913
  },
5815
- {
5816
- "name": "styles",
5817
- "type": "CSSResult[]",
5818
- "default": "[null]"
5819
- },
5820
5914
  {
5821
5915
  "name": "selectOnly",
5822
5916
  "attribute": "select-only",
@@ -5886,6 +5980,18 @@
5886
5980
  "type": "string",
5887
5981
  "default": "\"''\""
5888
5982
  },
5983
+ {
5984
+ "name": "href",
5985
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
5986
+ "type": "string",
5987
+ "default": "\"undefined\""
5988
+ },
5989
+ {
5990
+ "name": "target",
5991
+ "description": "Set an anchor tag target, only used when using href.",
5992
+ "type": "string",
5993
+ "default": "\"undefined\""
5994
+ },
5889
5995
  {
5890
5996
  "name": "disabled",
5891
5997
  "description": "Set tot true to disable",
@@ -5913,6 +6019,12 @@
5913
6019
  "description": "Attribute applied when the element is selected.",
5914
6020
  "type": "boolean",
5915
6021
  "default": "false"
6022
+ },
6023
+ {
6024
+ "name": "standalone",
6025
+ "description": "Set to true to make element stand out",
6026
+ "type": "boolean",
6027
+ "default": "false"
5916
6028
  }
5917
6029
  ],
5918
6030
  "properties": [
@@ -5930,6 +6042,25 @@
5930
6042
  "type": "string",
5931
6043
  "default": "\"''\""
5932
6044
  },
6045
+ {
6046
+ "name": "href",
6047
+ "attribute": "href",
6048
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6049
+ "type": "string",
6050
+ "default": "\"undefined\""
6051
+ },
6052
+ {
6053
+ "name": "target",
6054
+ "attribute": "target",
6055
+ "description": "Set an anchor tag target, only used when using href.",
6056
+ "type": "string",
6057
+ "default": "\"undefined\""
6058
+ },
6059
+ {
6060
+ "name": "styles",
6061
+ "type": "CSSResult[]",
6062
+ "default": "[null]"
6063
+ },
5933
6064
  {
5934
6065
  "name": "disabled",
5935
6066
  "attribute": "disabled",
@@ -5944,11 +6075,6 @@
5944
6075
  "type": "boolean",
5945
6076
  "default": "\"false\""
5946
6077
  },
5947
- {
5948
- "name": "styles",
5949
- "type": "CSSResult[]",
5950
- "default": "[null]"
5951
- },
5952
6078
  {
5953
6079
  "name": "selectOnly",
5954
6080
  "attribute": "select-only",
@@ -6024,6 +6150,18 @@
6024
6150
  "type": "string",
6025
6151
  "default": "\"''\""
6026
6152
  },
6153
+ {
6154
+ "name": "href",
6155
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6156
+ "type": "string",
6157
+ "default": "\"undefined\""
6158
+ },
6159
+ {
6160
+ "name": "target",
6161
+ "description": "Set an anchor tag target, only used when using href.",
6162
+ "type": "string",
6163
+ "default": "\"undefined\""
6164
+ },
6027
6165
  {
6028
6166
  "name": "disabled",
6029
6167
  "description": "Set tot true to disable",
@@ -6051,6 +6189,12 @@
6051
6189
  "description": "Attribute applied when the element is selected.",
6052
6190
  "type": "boolean",
6053
6191
  "default": "false"
6192
+ },
6193
+ {
6194
+ "name": "standalone",
6195
+ "description": "Set to true to make element stand out",
6196
+ "type": "boolean",
6197
+ "default": "false"
6054
6198
  }
6055
6199
  ],
6056
6200
  "properties": [
@@ -6075,6 +6219,25 @@
6075
6219
  "type": "string",
6076
6220
  "default": "\"''\""
6077
6221
  },
6222
+ {
6223
+ "name": "href",
6224
+ "attribute": "href",
6225
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6226
+ "type": "string",
6227
+ "default": "\"undefined\""
6228
+ },
6229
+ {
6230
+ "name": "target",
6231
+ "attribute": "target",
6232
+ "description": "Set an anchor tag target, only used when using href.",
6233
+ "type": "string",
6234
+ "default": "\"undefined\""
6235
+ },
6236
+ {
6237
+ "name": "styles",
6238
+ "type": "CSSResult[]",
6239
+ "default": "[null]"
6240
+ },
6078
6241
  {
6079
6242
  "name": "disabled",
6080
6243
  "attribute": "disabled",
@@ -6089,11 +6252,6 @@
6089
6252
  "type": "boolean",
6090
6253
  "default": "\"false\""
6091
6254
  },
6092
- {
6093
- "name": "styles",
6094
- "type": "CSSResult[]",
6095
- "default": "[null]"
6096
- },
6097
6255
  {
6098
6256
  "name": "selectOnly",
6099
6257
  "attribute": "select-only",
@@ -6175,6 +6333,18 @@
6175
6333
  "type": "string",
6176
6334
  "default": "\"''\""
6177
6335
  },
6336
+ {
6337
+ "name": "href",
6338
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6339
+ "type": "string",
6340
+ "default": "\"undefined\""
6341
+ },
6342
+ {
6343
+ "name": "target",
6344
+ "description": "Set an anchor tag target, only used when using href.",
6345
+ "type": "string",
6346
+ "default": "\"undefined\""
6347
+ },
6178
6348
  {
6179
6349
  "name": "disabled",
6180
6350
  "description": "Set tot true to disable",
@@ -6202,6 +6372,12 @@
6202
6372
  "description": "Attribute applied when the element is selected.",
6203
6373
  "type": "boolean",
6204
6374
  "default": "false"
6375
+ },
6376
+ {
6377
+ "name": "standalone",
6378
+ "description": "Set to true to make element stand out",
6379
+ "type": "boolean",
6380
+ "default": "false"
6205
6381
  }
6206
6382
  ],
6207
6383
  "properties": [
@@ -6233,6 +6409,25 @@
6233
6409
  "type": "string",
6234
6410
  "default": "\"''\""
6235
6411
  },
6412
+ {
6413
+ "name": "href",
6414
+ "attribute": "href",
6415
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6416
+ "type": "string",
6417
+ "default": "\"undefined\""
6418
+ },
6419
+ {
6420
+ "name": "target",
6421
+ "attribute": "target",
6422
+ "description": "Set an anchor tag target, only used when using href.",
6423
+ "type": "string",
6424
+ "default": "\"undefined\""
6425
+ },
6426
+ {
6427
+ "name": "styles",
6428
+ "type": "CSSResult[]",
6429
+ "default": "[null]"
6430
+ },
6236
6431
  {
6237
6432
  "name": "disabled",
6238
6433
  "attribute": "disabled",
@@ -6247,11 +6442,6 @@
6247
6442
  "type": "boolean",
6248
6443
  "default": "\"false\""
6249
6444
  },
6250
- {
6251
- "name": "styles",
6252
- "type": "CSSResult[]",
6253
- "default": "[null]"
6254
- },
6255
6445
  {
6256
6446
  "name": "selectOnly",
6257
6447
  "attribute": "select-only",
@@ -6327,6 +6517,18 @@
6327
6517
  "type": "string",
6328
6518
  "default": "\"''\""
6329
6519
  },
6520
+ {
6521
+ "name": "href",
6522
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6523
+ "type": "string",
6524
+ "default": "\"undefined\""
6525
+ },
6526
+ {
6527
+ "name": "target",
6528
+ "description": "Set an anchor tag target, only used when using href.",
6529
+ "type": "string",
6530
+ "default": "\"undefined\""
6531
+ },
6330
6532
  {
6331
6533
  "name": "disabled",
6332
6534
  "description": "Set tot true to disable",
@@ -6354,6 +6556,12 @@
6354
6556
  "description": "Attribute applied when the element is selected.",
6355
6557
  "type": "boolean",
6356
6558
  "default": "false"
6559
+ },
6560
+ {
6561
+ "name": "standalone",
6562
+ "description": "Set to true to make element stand out",
6563
+ "type": "boolean",
6564
+ "default": "false"
6357
6565
  }
6358
6566
  ],
6359
6567
  "properties": [
@@ -6378,6 +6586,25 @@
6378
6586
  "type": "string",
6379
6587
  "default": "\"''\""
6380
6588
  },
6589
+ {
6590
+ "name": "href",
6591
+ "attribute": "href",
6592
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6593
+ "type": "string",
6594
+ "default": "\"undefined\""
6595
+ },
6596
+ {
6597
+ "name": "target",
6598
+ "attribute": "target",
6599
+ "description": "Set an anchor tag target, only used when using href.",
6600
+ "type": "string",
6601
+ "default": "\"undefined\""
6602
+ },
6603
+ {
6604
+ "name": "styles",
6605
+ "type": "CSSResult[]",
6606
+ "default": "[null]"
6607
+ },
6381
6608
  {
6382
6609
  "name": "disabled",
6383
6610
  "attribute": "disabled",
@@ -6392,11 +6619,6 @@
6392
6619
  "type": "boolean",
6393
6620
  "default": "\"false\""
6394
6621
  },
6395
- {
6396
- "name": "styles",
6397
- "type": "CSSResult[]",
6398
- "default": "[null]"
6399
- },
6400
6622
  {
6401
6623
  "name": "selectOnly",
6402
6624
  "attribute": "select-only",
@@ -6466,6 +6688,18 @@
6466
6688
  "type": "string",
6467
6689
  "default": "\"''\""
6468
6690
  },
6691
+ {
6692
+ "name": "href",
6693
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6694
+ "type": "string",
6695
+ "default": "\"undefined\""
6696
+ },
6697
+ {
6698
+ "name": "target",
6699
+ "description": "Set an anchor tag target, only used when using href.",
6700
+ "type": "string",
6701
+ "default": "\"undefined\""
6702
+ },
6469
6703
  {
6470
6704
  "name": "disabled",
6471
6705
  "description": "Set tot true to disable",
@@ -6493,6 +6727,12 @@
6493
6727
  "description": "Attribute applied when the element is selected.",
6494
6728
  "type": "boolean",
6495
6729
  "default": "false"
6730
+ },
6731
+ {
6732
+ "name": "standalone",
6733
+ "description": "Set to true to make element stand out",
6734
+ "type": "boolean",
6735
+ "default": "false"
6496
6736
  }
6497
6737
  ],
6498
6738
  "properties": [
@@ -6510,6 +6750,25 @@
6510
6750
  "type": "string",
6511
6751
  "default": "\"''\""
6512
6752
  },
6753
+ {
6754
+ "name": "href",
6755
+ "attribute": "href",
6756
+ "description": "Set an href, this will turns the name of the card into an anchor tag.",
6757
+ "type": "string",
6758
+ "default": "\"undefined\""
6759
+ },
6760
+ {
6761
+ "name": "target",
6762
+ "attribute": "target",
6763
+ "description": "Set an anchor tag target, only used when using href.",
6764
+ "type": "string",
6765
+ "default": "\"undefined\""
6766
+ },
6767
+ {
6768
+ "name": "styles",
6769
+ "type": "CSSResult[]",
6770
+ "default": "[null,null]"
6771
+ },
6513
6772
  {
6514
6773
  "name": "disabled",
6515
6774
  "attribute": "disabled",
@@ -6524,11 +6783,6 @@
6524
6783
  "type": "boolean",
6525
6784
  "default": "\"false\""
6526
6785
  },
6527
- {
6528
- "name": "styles",
6529
- "type": "CSSResult[]",
6530
- "default": "[null,null]"
6531
- },
6532
6786
  {
6533
6787
  "name": "selectOnly",
6534
6788
  "attribute": "select-only",
@@ -6613,9 +6867,20 @@
6613
6867
  "description": "Attribute applied when the element is selected.",
6614
6868
  "type": "boolean",
6615
6869
  "default": "false"
6870
+ },
6871
+ {
6872
+ "name": "standalone",
6873
+ "description": "Set to true to make element stand out",
6874
+ "type": "boolean",
6875
+ "default": "false"
6616
6876
  }
6617
6877
  ],
6618
6878
  "properties": [
6879
+ {
6880
+ "name": "styles",
6881
+ "type": "CSSResult[]",
6882
+ "default": "[null]"
6883
+ },
6619
6884
  {
6620
6885
  "name": "disabled",
6621
6886
  "attribute": "disabled",
@@ -6630,11 +6895,6 @@
6630
6895
  "type": "boolean",
6631
6896
  "default": "\"false\""
6632
6897
  },
6633
- {
6634
- "name": "styles",
6635
- "type": "CSSResult[]",
6636
- "default": "[null]"
6637
- },
6638
6898
  {
6639
6899
  "name": "selectOnly",
6640
6900
  "attribute": "select-only",
@@ -7667,6 +7927,10 @@
7667
7927
  {
7668
7928
  "name": "--uui-tab-group-dropdown-background",
7669
7929
  "description": "Define the background color of the dropdown"
7930
+ },
7931
+ {
7932
+ "name": "--uui-tab-group-gap",
7933
+ "description": "Define the gap between elements dropdown. Only pixel values are valid"
7670
7934
  }
7671
7935
  ]
7672
7936
  },