@vonage/vivid 3.44.0 → 3.46.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.
Files changed (86) hide show
  1. package/README.md +399 -165
  2. package/appearance-ui/index.js +1 -1
  3. package/custom-elements.json +133 -248
  4. package/fab/index.js +0 -1
  5. package/index.js +2 -1
  6. package/lib/alert/alert.d.ts +2 -0
  7. package/lib/data-grid/data-grid-cell.d.ts +1 -0
  8. package/lib/data-grid/data-grid.d.ts +2 -0
  9. package/lib/enums.d.ts +3 -0
  10. package/lib/menu/menu.d.ts +5 -5
  11. package/lib/popup/popup.d.ts +2 -2
  12. package/lib/select/select.d.ts +0 -3
  13. package/lib/tabs/tabs.d.ts +3 -1
  14. package/lib/text-area/text-area.d.ts +2 -2
  15. package/lib/toggletip/toggletip.d.ts +4 -4
  16. package/lib/tooltip/tooltip.d.ts +4 -5
  17. package/listbox/index.js +1 -1
  18. package/menu/index.js +1 -0
  19. package/menu-item/index.js +1 -0
  20. package/package.json +1 -1
  21. package/shared/anchored.js +76 -0
  22. package/shared/definition.js +1 -1
  23. package/shared/definition11.js +1 -1
  24. package/shared/definition12.js +1 -1
  25. package/shared/definition13.js +1 -1
  26. package/shared/definition14.js +1 -1
  27. package/shared/definition15.js +1 -1
  28. package/shared/definition16.js +1 -1
  29. package/shared/definition17.js +112 -49
  30. package/shared/definition2.js +1 -1
  31. package/shared/definition20.js +2 -2
  32. package/shared/definition21.js +1 -1
  33. package/shared/definition22.js +1 -1
  34. package/shared/definition23.js +1 -4
  35. package/shared/definition24.js +1 -1
  36. package/shared/definition25.js +1 -1
  37. package/shared/definition28.js +37 -46
  38. package/shared/definition29.js +2 -2
  39. package/shared/definition3.js +1 -1
  40. package/shared/definition30.js +1 -1
  41. package/shared/definition31.js +1 -1
  42. package/shared/definition33.js +1 -1
  43. package/shared/definition34.js +1 -1
  44. package/shared/definition35.js +1 -1
  45. package/shared/definition36.js +1 -1
  46. package/shared/definition37.js +1 -1
  47. package/shared/definition38.js +1 -1
  48. package/shared/definition39.js +1 -1
  49. package/shared/definition4.js +10 -6
  50. package/shared/definition40.js +1 -1
  51. package/shared/definition41.js +6 -4
  52. package/shared/definition42.js +1 -1
  53. package/shared/definition43.js +1 -1
  54. package/shared/definition44.js +1 -1
  55. package/shared/definition45.js +20 -9
  56. package/shared/definition46.js +1 -1
  57. package/shared/definition48.js +1 -1
  58. package/shared/definition49.js +8 -3
  59. package/shared/definition5.js +1 -1
  60. package/shared/definition51.js +1 -1
  61. package/shared/definition52.js +1 -1
  62. package/shared/definition54.js +37 -45
  63. package/shared/definition55.js +42 -58
  64. package/shared/definition56.js +1 -1
  65. package/shared/definition58.js +1 -1
  66. package/shared/definition6.js +1 -1
  67. package/shared/definition60.js +108 -12
  68. package/shared/definition7.js +1 -1
  69. package/shared/definition8.js +2 -3
  70. package/shared/definition9.js +1 -1
  71. package/shared/enums.js +5 -1
  72. package/shared/form-associated.js +1 -0
  73. package/shared/index2.js +1 -1
  74. package/shared/patterns/anchored.d.ts +22 -0
  75. package/shared/presentationDate.js +1 -1
  76. package/shared/text-field.js +1 -1
  77. package/style.css +162 -135
  78. package/styles/core/all.css +1 -1
  79. package/styles/core/theme.css +1 -1
  80. package/styles/core/typography.css +1 -1
  81. package/styles/tokens/theme-dark.css +4 -4
  82. package/styles/tokens/theme-light.css +4 -4
  83. package/styles/tokens/vivid-2-compat.css +1 -1
  84. package/toggletip/index.js +1 -0
  85. package/tooltip/index.js +1 -0
  86. package/vivid.api.json +38 -0
@@ -555,6 +555,15 @@
555
555
  "description": "alert connotation",
556
556
  "privacy": "public"
557
557
  },
558
+ {
559
+ "kind": "field",
560
+ "name": "strategy",
561
+ "type": {
562
+ "text": "AlertStrategy | undefined"
563
+ },
564
+ "description": "alert state",
565
+ "privacy": "public"
566
+ },
558
567
  {
559
568
  "kind": "field",
560
569
  "name": "open",
@@ -683,6 +692,14 @@
683
692
  "description": "alert connotation",
684
693
  "fieldName": "connotation"
685
694
  },
695
+ {
696
+ "name": "strategy",
697
+ "type": {
698
+ "text": "AlertStrategy | undefined"
699
+ },
700
+ "description": "alert state",
701
+ "fieldName": "strategy"
702
+ },
686
703
  {
687
704
  "type": {
688
705
  "text": "boolean"
@@ -4037,6 +4054,10 @@
4037
4054
  }
4038
4055
  ]
4039
4056
  },
4057
+ {
4058
+ "kind": "method",
4059
+ "name": "#getColumnDataKey"
4060
+ },
4040
4061
  {
4041
4062
  "kind": "field",
4042
4063
  "name": "updateCellStyle"
@@ -4046,6 +4067,10 @@
4046
4067
  {
4047
4068
  "description": "Event that fires when a sortable column header is clicked",
4048
4069
  "name": "sort"
4070
+ },
4071
+ {
4072
+ "description": "Event that fires when a cell is clicked",
4073
+ "name": "cell-click"
4049
4074
  }
4050
4075
  ],
4051
4076
  "attributes": [
@@ -4155,6 +4180,12 @@
4155
4180
  "privacy": "public"
4156
4181
  }
4157
4182
  ],
4183
+ "events": [
4184
+ {
4185
+ "description": "Event that fires when a cell is clicked",
4186
+ "name": "cell-click"
4187
+ }
4188
+ ],
4158
4189
  "attributes": [
4159
4190
  {
4160
4191
  "name": "aria-selected",
@@ -4381,6 +4412,15 @@
4381
4412
  "name": "#handleRowSelection",
4382
4413
  "privacy": "private"
4383
4414
  },
4415
+ {
4416
+ "kind": "field",
4417
+ "name": "#changeHandler",
4418
+ "privacy": "private",
4419
+ "type": {
4420
+ "text": "object"
4421
+ },
4422
+ "default": "{\n\t\thandleChange(dataGrid: DataGrid, propertyName: string) {\n\t\t\tif (propertyName === 'columnDefinitions') {\n\t\t\t\tif (dataGrid.$fastController.isConnected) {\n\t\t\t\t\t(dataGrid as any).toggleGeneratedHeader();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}"
4423
+ },
4384
4424
  {
4385
4425
  "kind": "field",
4386
4426
  "name": "#setSelectedState",
@@ -4408,6 +4448,16 @@
4408
4448
  }
4409
4449
  }
4410
4450
  ]
4451
+ },
4452
+ {
4453
+ "kind": "field",
4454
+ "name": "toggleGeneratedHeader"
4455
+ }
4456
+ ],
4457
+ "events": [
4458
+ {
4459
+ "description": "Event that fires when a cell is clicked",
4460
+ "name": "cell-click"
4411
4461
  }
4412
4462
  ],
4413
4463
  "attributes": [
@@ -7360,28 +7410,6 @@
7360
7410
  },
7361
7411
  "default": "null"
7362
7412
  },
7363
- {
7364
- "kind": "field",
7365
- "name": "#observer",
7366
- "privacy": "private",
7367
- "type": {
7368
- "text": "MutationObserver | undefined"
7369
- }
7370
- },
7371
- {
7372
- "kind": "field",
7373
- "name": "#anchorEl",
7374
- "privacy": "private",
7375
- "type": {
7376
- "text": "HTMLElement | null"
7377
- },
7378
- "default": "null"
7379
- },
7380
- {
7381
- "kind": "field",
7382
- "name": "#observeMissingAnchor",
7383
- "privacy": "private"
7384
- },
7385
7413
  {
7386
7414
  "kind": "field",
7387
7415
  "name": "placement",
@@ -7392,39 +7420,6 @@
7392
7420
  "description": "placement of the menu",
7393
7421
  "privacy": "public"
7394
7422
  },
7395
- {
7396
- "kind": "field",
7397
- "name": "anchor",
7398
- "type": {
7399
- "text": "AnchorType"
7400
- },
7401
- "default": "''",
7402
- "description": "id or direct reference to the menu's anchor element",
7403
- "privacy": "public"
7404
- },
7405
- {
7406
- "kind": "method",
7407
- "name": "anchorChanged",
7408
- "return": {
7409
- "type": {
7410
- "text": "void"
7411
- }
7412
- },
7413
- "parameters": [
7414
- {
7415
- "name": "_",
7416
- "type": {
7417
- "text": "AnchorType"
7418
- }
7419
- },
7420
- {
7421
- "name": "newValue",
7422
- "type": {
7423
- "text": "AnchorType"
7424
- }
7425
- }
7426
- ]
7427
- },
7428
7423
  {
7429
7424
  "kind": "field",
7430
7425
  "name": "autoDismiss",
@@ -7438,20 +7433,10 @@
7438
7433
  {
7439
7434
  "kind": "method",
7440
7435
  "name": "autoDismissChanged",
7441
- "return": {
7442
- "type": {
7443
- "text": "void"
7444
- }
7445
- },
7446
7436
  "parameters": [
7447
7437
  {
7448
7438
  "name": "oldValue",
7449
- "type": {
7450
- "text": "boolean"
7451
- }
7452
- },
7453
- {
7454
- "name": "newValue",
7439
+ "optional": true,
7455
7440
  "type": {
7456
7441
  "text": "boolean"
7457
7442
  }
@@ -7503,6 +7488,18 @@
7503
7488
  }
7504
7489
  ]
7505
7490
  },
7491
+ {
7492
+ "kind": "method",
7493
+ "name": "#updateAnchor",
7494
+ "parameters": [
7495
+ {
7496
+ "name": "a",
7497
+ "type": {
7498
+ "text": "HTMLElement"
7499
+ }
7500
+ }
7501
+ ]
7502
+ },
7506
7503
  {
7507
7504
  "kind": "method",
7508
7505
  "name": "#cleanupAnchor",
@@ -7520,6 +7517,11 @@
7520
7517
  "name": "#openIfClosed",
7521
7518
  "privacy": "private"
7522
7519
  },
7520
+ {
7521
+ "kind": "field",
7522
+ "name": "#updateClickOutsideListener",
7523
+ "privacy": "private"
7524
+ },
7523
7525
  {
7524
7526
  "kind": "field",
7525
7527
  "name": "#closeOnClickOutside",
@@ -7564,14 +7566,6 @@
7564
7566
  "description": "placement of the menu",
7565
7567
  "fieldName": "placement"
7566
7568
  },
7567
- {
7568
- "type": {
7569
- "text": "AnchorType"
7570
- },
7571
- "default": "''",
7572
- "description": "id or direct reference to the menu's anchor element",
7573
- "fieldName": "anchor"
7574
- },
7575
7569
  {
7576
7570
  "name": "auto-dismiss",
7577
7571
  "type": {
@@ -9242,11 +9236,15 @@
9242
9236
  "kind": "field",
9243
9237
  "name": "anchor",
9244
9238
  "type": {
9245
- "text": "string | HTMLElement | undefined"
9239
+ "text": "HTMLElement | undefined"
9246
9240
  },
9247
- "description": "ID reference to element in the popup’s owner document or HTMLElement.",
9241
+ "description": "The element to anchor the popup to.",
9248
9242
  "privacy": "public"
9249
9243
  },
9244
+ {
9245
+ "kind": "method",
9246
+ "name": "#updateAutoUpdate"
9247
+ },
9250
9248
  {
9251
9249
  "kind": "method",
9252
9250
  "name": "updatePosition",
@@ -9294,7 +9292,6 @@
9294
9292
  "type": {
9295
9293
  "text": "HTMLElement | null"
9296
9294
  },
9297
- "description": "Gets the anchor element by id",
9298
9295
  "readonly": true
9299
9296
  },
9300
9297
  {
@@ -9363,14 +9360,6 @@
9363
9360
  "default": "'fixed'",
9364
9361
  "description": "the strategy of the popup",
9365
9362
  "fieldName": "strategy"
9366
- },
9367
- {
9368
- "name": "anchor",
9369
- "type": {
9370
- "text": "string | HTMLElement | undefined"
9371
- },
9372
- "description": "ID reference to element in the popup’s owner document or HTMLElement.",
9373
- "fieldName": "anchor"
9374
9363
  }
9375
9364
  ],
9376
9365
  "superclass": {
@@ -10106,20 +10095,6 @@
10106
10095
  }
10107
10096
  ],
10108
10097
  "members": [
10109
- {
10110
- "kind": "field",
10111
- "name": "_popup",
10112
- "type": {
10113
- "text": "Popup"
10114
- }
10115
- },
10116
- {
10117
- "kind": "field",
10118
- "name": "_anchor",
10119
- "type": {
10120
- "text": "HTMLElement"
10121
- }
10122
- },
10123
10098
  {
10124
10099
  "kind": "field",
10125
10100
  "name": "appearance",
@@ -11150,6 +11125,16 @@
11150
11125
  "privacy": "public"
11151
11126
  }
11152
11127
  ],
11128
+ "events": [
11129
+ {
11130
+ "description": "Event emitted when the action button is clicked",
11131
+ "name": "action-click"
11132
+ },
11133
+ {
11134
+ "description": "Event emitted when the indicator button is clicked",
11135
+ "name": "indicator-click"
11136
+ }
11137
+ ],
11153
11138
  "attributes": [
11154
11139
  {
11155
11140
  "name": "connotation",
@@ -11852,6 +11837,15 @@
11852
11837
  "description": "The connotation the tabs should have.",
11853
11838
  "privacy": "public"
11854
11839
  },
11840
+ {
11841
+ "kind": "field",
11842
+ "name": "gutters",
11843
+ "type": {
11844
+ "text": "Gutters | undefined"
11845
+ },
11846
+ "description": "sets the initial preferred margin from predefined available options",
11847
+ "privacy": "public"
11848
+ },
11855
11849
  {
11856
11850
  "kind": "method",
11857
11851
  "name": "connotationChanged"
@@ -11945,6 +11939,14 @@
11945
11939
  },
11946
11940
  "description": "The connotation the tabs should have.",
11947
11941
  "fieldName": "connotation"
11942
+ },
11943
+ {
11944
+ "name": "gutters",
11945
+ "type": {
11946
+ "text": "Gutters | undefined"
11947
+ },
11948
+ "description": "sets the initial preferred margin from predefined available options",
11949
+ "fieldName": "gutters"
11948
11950
  }
11949
11951
  ],
11950
11952
  "superclass": {
@@ -12634,7 +12636,7 @@
12634
12636
  }
12635
12637
  ],
12636
12638
  "superclass": {
12637
- "name": "FoundationElement",
12639
+ "name": "FoundationTextArea",
12638
12640
  "package": "@microsoft/fast-foundation"
12639
12641
  }
12640
12642
  }
@@ -12951,28 +12953,6 @@
12951
12953
  }
12952
12954
  ],
12953
12955
  "members": [
12954
- {
12955
- "kind": "field",
12956
- "name": "#observer",
12957
- "privacy": "private",
12958
- "type": {
12959
- "text": "MutationObserver | undefined"
12960
- }
12961
- },
12962
- {
12963
- "kind": "field",
12964
- "name": "#anchorEl",
12965
- "privacy": "private",
12966
- "type": {
12967
- "text": "HTMLElement | null"
12968
- },
12969
- "default": "null"
12970
- },
12971
- {
12972
- "kind": "field",
12973
- "name": "#observeMissingAnchor",
12974
- "privacy": "private"
12975
- },
12976
12956
  {
12977
12957
  "kind": "field",
12978
12958
  "name": "#ANCHOR_ARIA_LABEL_SUFFIX",
@@ -13011,34 +12991,6 @@
13011
12991
  "description": "placement of the toggletip",
13012
12992
  "privacy": "public"
13013
12993
  },
13014
- {
13015
- "kind": "field",
13016
- "name": "anchor",
13017
- "type": {
13018
- "text": "AnchorType"
13019
- },
13020
- "default": "''",
13021
- "description": "id or direct reference to the toggletip's anchor element",
13022
- "privacy": "public"
13023
- },
13024
- {
13025
- "kind": "method",
13026
- "name": "anchorChanged",
13027
- "parameters": [
13028
- {
13029
- "name": "_",
13030
- "type": {
13031
- "text": "AnchorType"
13032
- }
13033
- },
13034
- {
13035
- "name": "newValue",
13036
- "type": {
13037
- "text": "AnchorType"
13038
- }
13039
- }
13040
- ]
13041
- },
13042
12994
  {
13043
12995
  "kind": "field",
13044
12996
  "name": "open",
@@ -13084,6 +13036,18 @@
13084
13036
  }
13085
13037
  ]
13086
13038
  },
13039
+ {
13040
+ "kind": "method",
13041
+ "name": "#updateAnchor",
13042
+ "parameters": [
13043
+ {
13044
+ "name": "a",
13045
+ "type": {
13046
+ "text": "HTMLElement"
13047
+ }
13048
+ }
13049
+ ]
13050
+ },
13087
13051
  {
13088
13052
  "kind": "method",
13089
13053
  "name": "#cleanupAnchor",
@@ -13101,6 +13065,10 @@
13101
13065
  "name": "#openIfClosed",
13102
13066
  "privacy": "private"
13103
13067
  },
13068
+ {
13069
+ "kind": "method",
13070
+ "name": "#updateListeners"
13071
+ },
13104
13072
  {
13105
13073
  "kind": "field",
13106
13074
  "name": "#closeOnClickOutside",
@@ -13137,14 +13105,6 @@
13137
13105
  "description": "placement of the toggletip",
13138
13106
  "fieldName": "placement"
13139
13107
  },
13140
- {
13141
- "type": {
13142
- "text": "AnchorType"
13143
- },
13144
- "default": "''",
13145
- "description": "id or direct reference to the toggletip's anchor element",
13146
- "fieldName": "anchor"
13147
- },
13148
13108
  {
13149
13109
  "type": {
13150
13110
  "text": "boolean"
@@ -13220,15 +13180,6 @@
13220
13180
  "description": "Base class for tooltip",
13221
13181
  "name": "Tooltip",
13222
13182
  "members": [
13223
- {
13224
- "kind": "field",
13225
- "name": "#anchorEl",
13226
- "privacy": "private",
13227
- "type": {
13228
- "text": "HTMLElement | null"
13229
- },
13230
- "default": "null"
13231
- },
13232
13183
  {
13233
13184
  "kind": "field",
13234
13185
  "name": "text",
@@ -13253,70 +13204,29 @@
13253
13204
  },
13254
13205
  "default": "false"
13255
13206
  },
13256
- {
13257
- "kind": "field",
13258
- "name": "anchor",
13259
- "type": {
13260
- "text": "anchorType | undefined"
13261
- }
13262
- },
13263
- {
13264
- "kind": "field",
13265
- "name": "#observer",
13266
- "privacy": "private",
13267
- "type": {
13268
- "text": "MutationObserver | undefined"
13269
- }
13270
- },
13271
13207
  {
13272
13208
  "kind": "method",
13273
- "name": "anchorChanged",
13209
+ "name": "#setupAnchor",
13274
13210
  "parameters": [
13275
13211
  {
13276
- "name": "_",
13277
- "type": {
13278
- "text": "anchorType"
13279
- }
13280
- },
13281
- {
13282
- "name": "newValue",
13212
+ "name": "a",
13283
13213
  "type": {
13284
- "text": "anchorType"
13214
+ "text": "HTMLElement"
13285
13215
  }
13286
13216
  }
13287
13217
  ]
13288
13218
  },
13289
- {
13290
- "kind": "field",
13291
- "name": "#observeMissingAnchor",
13292
- "privacy": "private"
13293
- },
13294
13219
  {
13295
13220
  "kind": "method",
13296
- "name": "#anchorUpdated",
13297
- "return": {
13298
- "type": {
13299
- "text": "void"
13300
- }
13301
- }
13302
- },
13303
- {
13304
- "kind": "method",
13305
- "name": "#addEventListener",
13306
- "return": {
13307
- "type": {
13308
- "text": "void"
13309
- }
13310
- }
13311
- },
13312
- {
13313
- "kind": "method",
13314
- "name": "#removeEventListener",
13315
- "return": {
13316
- "type": {
13317
- "text": "void"
13221
+ "name": "#cleanupAnchor",
13222
+ "parameters": [
13223
+ {
13224
+ "name": "a",
13225
+ "type": {
13226
+ "text": "HTMLElement"
13227
+ }
13318
13228
  }
13319
- }
13229
+ ]
13320
13230
  },
13321
13231
  {
13322
13232
  "kind": "field",
@@ -13328,33 +13238,14 @@
13328
13238
  "name": "#hide",
13329
13239
  "privacy": "private"
13330
13240
  },
13241
+ {
13242
+ "kind": "method",
13243
+ "name": "#updateListeners"
13244
+ },
13331
13245
  {
13332
13246
  "kind": "field",
13333
13247
  "name": "#closeOnEscape",
13334
13248
  "privacy": "private"
13335
- },
13336
- {
13337
- "kind": "method",
13338
- "name": "openChanged",
13339
- "return": {
13340
- "type": {
13341
- "text": "void"
13342
- }
13343
- },
13344
- "parameters": [
13345
- {
13346
- "name": "_",
13347
- "type": {
13348
- "text": "boolean"
13349
- }
13350
- },
13351
- {
13352
- "name": "newValue",
13353
- "type": {
13354
- "text": "boolean"
13355
- }
13356
- }
13357
- ]
13358
13249
  }
13359
13250
  ],
13360
13251
  "attributes": [
@@ -13378,12 +13269,6 @@
13378
13269
  },
13379
13270
  "default": "false",
13380
13271
  "fieldName": "open"
13381
- },
13382
- {
13383
- "type": {
13384
- "text": "anchorType | undefined"
13385
- },
13386
- "fieldName": "anchor"
13387
13272
  }
13388
13273
  ],
13389
13274
  "superclass": {
package/fab/index.js CHANGED
@@ -16,6 +16,5 @@ import '../shared/key-codes.js';
16
16
  import '../shared/aria-global.js';
17
17
  import '../shared/start-end.js';
18
18
  import '../shared/ref.js';
19
- import '../shared/focus2.js';
20
19
 
21
20
  registerFab();
package/index.js CHANGED
@@ -55,7 +55,7 @@ export { r as registerToggletip, t as toggletipDefinition, a as toggletipRegistr
55
55
  export { r as registerTooltip, t as tooltipDefinition, a as tooltipRegistries } from './shared/definition55.js';
56
56
  export { r as registerTreeItem, t as treeItemDefinition, a as treeItemRegistries } from './shared/definition56.js';
57
57
  export { r as registerTreeView, t as treeViewDefinition, a as treeViewRegistries } from './shared/definition57.js';
58
- export { A as Appearance, c as AriaLive, C as Connotation, a as ConnotationDecorative, L as LayoutSize, P as Position, R as Role, S as Shape, b as Size } from './shared/enums.js';
58
+ export { A as Appearance, c as AriaLive, C as Connotation, a as ConnotationDecorative, L as LayoutSize, P as Position, R as Role, S as Shape, b as Size, T as TabsSize } from './shared/enums.js';
59
59
  export { d as designSystem, r as registerFactory } from './shared/index.js';
60
60
  export { s as setLocale } from './shared/index2.js';
61
61
  import './shared/definition58.js';
@@ -92,6 +92,7 @@ import './shared/children.js';
92
92
  import './shared/presentationDate.js';
93
93
  import './shared/aria.js';
94
94
  import './shared/direction.js';
95
+ import './shared/anchored.js';
95
96
  import './shared/dom.js';
96
97
  import './shared/text-anchor.js';
97
98
  import './shared/text-field2.js';
@@ -4,6 +4,7 @@ import { Localized } from '../../shared/patterns';
4
4
  import { AffixIcon } from '../../shared/patterns/affix';
5
5
  export type AlertConnotation = Connotation.Accent | Connotation.Information | Connotation.Success | Connotation.Warning | Connotation.Alert;
6
6
  export type AlertPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end';
7
+ export type AlertStrategy = 'fixed' | 'static';
7
8
  export declare class Alert extends FoundationElement {
8
9
  #private;
9
10
  dismissButtonAriaLabel: string | null;
@@ -14,6 +15,7 @@ export declare class Alert extends FoundationElement {
14
15
  icon?: string;
15
16
  timeoutms: number;
16
17
  connotation?: AlertConnotation;
18
+ strategy?: AlertStrategy;
17
19
  open: boolean;
18
20
  openChanged(oldValue: boolean, newValue: boolean): void;
19
21
  connectedCallback(): void;
@@ -8,6 +8,7 @@ declare interface DataGridCellExtension {
8
8
  columnDefinition: ColumnDefinitionExtended | null;
9
9
  }
10
10
  export declare class DataGridCell extends FoundationDataGridCell {
11
+ #private;
11
12
  ariaSelected: string | null;
12
13
  ariaSort: string | null;
13
14
  ariaSelectedChanged(_: string | null, selectedState: string | null): void;
@@ -13,6 +13,8 @@ export declare class DataGrid extends FoundationDataGrid {
13
13
  selectionMode?: DataGridSelectionMode;
14
14
  selectionModeChanged(oldValue: DataGridSelectionMode): void;
15
15
  constructor();
16
+ connectedCallback(): void;
17
+ disconnectedCallback(): void;
16
18
  static generateColumns(rowData: any): {
17
19
  columnDataKey: string;
18
20
  gridColumn: string;
package/lib/enums.d.ts CHANGED
@@ -44,6 +44,9 @@ export declare enum LayoutSize {
44
44
  Medium = "medium",
45
45
  Large = "large"
46
46
  }
47
+ export declare enum TabsSize {
48
+ Small = "small"
49
+ }
47
50
  export declare enum Position {
48
51
  Top = "TOP",
49
52
  Bottom = "BOTTOM",