@vonage/vivid 4.3.0 → 4.4.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 (44) hide show
  1. package/custom-elements.json +392 -41
  2. package/index.cjs +1 -0
  3. package/index.js +1 -1
  4. package/lib/dialog/dialog.d.ts +1 -0
  5. package/lib/empty-state/definition.d.ts +1 -0
  6. package/lib/empty-state/empty-state.d.ts +5 -0
  7. package/lib/enums.d.ts +4 -0
  8. package/lib/popup/popup.d.ts +5 -0
  9. package/lib/range-slider/range-slider.d.ts +2 -0
  10. package/lib/slider/slider.d.ts +5 -0
  11. package/lib/slider/slider.template.d.ts +2 -2
  12. package/package.json +1 -1
  13. package/shared/definition.cjs +1 -1
  14. package/shared/definition.js +1 -1
  15. package/shared/definition21.cjs +67 -30
  16. package/shared/definition21.js +67 -30
  17. package/shared/definition23.cjs +18 -3
  18. package/shared/definition23.js +19 -4
  19. package/shared/definition25.cjs +1 -1
  20. package/shared/definition25.js +1 -1
  21. package/shared/definition30.cjs +1 -1
  22. package/shared/definition30.js +1 -1
  23. package/shared/definition42.cjs +123 -18
  24. package/shared/definition42.js +123 -18
  25. package/shared/definition46.cjs +96 -11
  26. package/shared/definition46.js +97 -12
  27. package/shared/definition56.cjs +1 -1
  28. package/shared/definition56.js +1 -1
  29. package/shared/definition63.cjs +155 -2
  30. package/shared/definition63.js +156 -4
  31. package/shared/enums.cjs +6 -0
  32. package/shared/enums.js +6 -1
  33. package/shared/patterns/anchored.d.ts +4 -4
  34. package/shared/presentationDate.cjs +1 -1
  35. package/shared/presentationDate.js +1 -1
  36. package/shared/slider.template.cjs +27 -4
  37. package/shared/slider.template.js +27 -4
  38. package/styles/core/all.css +1 -1
  39. package/styles/core/theme.css +1 -1
  40. package/styles/core/typography.css +1 -1
  41. package/styles/tokens/theme-dark.css +4 -4
  42. package/styles/tokens/theme-light.css +4 -4
  43. package/styles/tokens/vivid-2-compat.css +1 -1
  44. package/vivid.api.json +211 -0
@@ -4364,7 +4364,9 @@
4364
4364
  {
4365
4365
  "name": "modelValue",
4366
4366
  "attributeName": "checked",
4367
- "eventName": "change",
4367
+ "eventNames": [
4368
+ "change"
4369
+ ],
4368
4370
  "valueMapping": "(event.target as HTMLInputElement).checked"
4369
4371
  }
4370
4372
  ]
@@ -4521,7 +4523,9 @@
4521
4523
  {
4522
4524
  "name": "modelValue",
4523
4525
  "attributeName": "value",
4524
- "eventName": "change",
4526
+ "eventNames": [
4527
+ "change"
4528
+ ],
4525
4529
  "valueMapping": "(event.target as HTMLInputElement).value"
4526
4530
  }
4527
4531
  ]
@@ -5598,7 +5602,9 @@
5598
5602
  {
5599
5603
  "name": "modelValue",
5600
5604
  "attributeName": "value",
5601
- "eventName": "input",
5605
+ "eventNames": [
5606
+ "input"
5607
+ ],
5602
5608
  "valueMapping": "(event.target as HTMLInputElement).value"
5603
5609
  }
5604
5610
  ]
@@ -6156,13 +6162,17 @@
6156
6162
  {
6157
6163
  "name": "start",
6158
6164
  "attributeName": "start",
6159
- "eventName": "input:start",
6165
+ "eventNames": [
6166
+ "input:start"
6167
+ ],
6160
6168
  "valueMapping": "(event.target as any).start"
6161
6169
  },
6162
6170
  {
6163
6171
  "name": "end",
6164
6172
  "attributeName": "end",
6165
- "eventName": "input:end",
6173
+ "eventNames": [
6174
+ "input:end"
6175
+ ],
6166
6176
  "valueMapping": "(event.target as any).end"
6167
6177
  }
6168
6178
  ]
@@ -6583,7 +6593,9 @@
6583
6593
  {
6584
6594
  "name": "modelValue",
6585
6595
  "attributeName": "value",
6586
- "eventName": "input",
6596
+ "eventNames": [
6597
+ "input"
6598
+ ],
6587
6599
  "valueMapping": "(event.target as any).value"
6588
6600
  }
6589
6601
  ]
@@ -6749,12 +6761,12 @@
6749
6761
  },
6750
6762
  {
6751
6763
  "kind": "field",
6752
- "name": "#modal",
6753
- "privacy": "private",
6764
+ "name": "modal",
6754
6765
  "type": {
6755
6766
  "text": "boolean"
6756
6767
  },
6757
- "default": "false"
6768
+ "default": "false",
6769
+ "description": "Controls whether the dialog is modal."
6758
6770
  },
6759
6771
  {
6760
6772
  "kind": "field",
@@ -6793,26 +6805,29 @@
6793
6805
  },
6794
6806
  {
6795
6807
  "kind": "method",
6796
- "name": "#handleModal",
6797
- "parameters": [
6798
- {
6799
- "name": "show",
6800
- "type": {
6801
- "text": "boolean"
6802
- }
6803
- }
6804
- ]
6808
+ "name": "show"
6805
6809
  },
6806
6810
  {
6807
6811
  "kind": "method",
6808
- "name": "show"
6812
+ "name": "showModal"
6809
6813
  },
6810
6814
  {
6811
6815
  "kind": "method",
6812
- "name": "showModal"
6816
+ "name": "#closeDialog"
6817
+ },
6818
+ {
6819
+ "kind": "method",
6820
+ "name": "#showDialog"
6813
6821
  }
6814
6822
  ],
6815
6823
  "events": [
6824
+ {
6825
+ "type": {
6826
+ "text": "CustomEvent<undefined>"
6827
+ },
6828
+ "description": "The `open` event fires when the dialog opens.",
6829
+ "name": "open"
6830
+ },
6816
6831
  {
6817
6832
  "type": {
6818
6833
  "text": "CustomEvent<string>"
@@ -6889,6 +6904,14 @@
6889
6904
  },
6890
6905
  "default": "false",
6891
6906
  "fieldName": "noLightDismiss"
6907
+ },
6908
+ {
6909
+ "type": {
6910
+ "text": "boolean"
6911
+ },
6912
+ "default": "false",
6913
+ "description": "Controls whether the dialog is modal.",
6914
+ "fieldName": "modal"
6892
6915
  }
6893
6916
  ],
6894
6917
  "superclass": {
@@ -6897,7 +6920,18 @@
6897
6920
  },
6898
6921
  "vividComponent": {
6899
6922
  "public": true,
6900
- "name": "dialog"
6923
+ "name": "dialog",
6924
+ "vueModels": [
6925
+ {
6926
+ "name": "open",
6927
+ "attributeName": "open",
6928
+ "eventNames": [
6929
+ "open",
6930
+ "close"
6931
+ ],
6932
+ "valueMapping": "(event.target as any).open"
6933
+ }
6934
+ ]
6901
6935
  }
6902
6936
  }
6903
6937
  ],
@@ -7102,6 +7136,22 @@
7102
7136
  }
7103
7137
  ],
7104
7138
  "exports": [
7139
+ {
7140
+ "kind": "js",
7141
+ "name": "EmptyStateConnotation",
7142
+ "declaration": {
7143
+ "name": "EmptyStateConnotation",
7144
+ "module": "./empty-state"
7145
+ }
7146
+ },
7147
+ {
7148
+ "kind": "js",
7149
+ "name": "EmptyStateIconDecoration",
7150
+ "declaration": {
7151
+ "name": "EmptyStateIconDecoration",
7152
+ "module": "./empty-state"
7153
+ }
7154
+ },
7105
7155
  {
7106
7156
  "kind": "js",
7107
7157
  "name": "emptyStateDefinition",
@@ -7128,6 +7178,92 @@
7128
7178
  "kind": "class",
7129
7179
  "description": "An empty state element. Used when there is no data to display to the user.",
7130
7180
  "name": "EmptyState",
7181
+ "cssProperties": [
7182
+ {
7183
+ "name": "--vvd-empty-state-cta-firm-all",
7184
+ "default": "var(--vvd-color-cta-600)"
7185
+ },
7186
+ {
7187
+ "name": "--vvd-empty-state-cta-dim",
7188
+ "default": "var(--vvd-color-cta-200)"
7189
+ },
7190
+ {
7191
+ "name": "--vvd-empty-state-cta-faint",
7192
+ "default": "var(--vvd-color-cta-50)"
7193
+ },
7194
+ {
7195
+ "name": "--vvd-empty-state-success-firm-all",
7196
+ "default": "var(--vvd-color-success-600)"
7197
+ },
7198
+ {
7199
+ "name": "--vvd-empty-state-success-dim",
7200
+ "default": "var(--vvd-color-success-200)"
7201
+ },
7202
+ {
7203
+ "name": "--vvd-empty-state-success-faint",
7204
+ "default": "var(--vvd-color-success-50)"
7205
+ },
7206
+ {
7207
+ "name": "--vvd-empty-state-alert-firm-all",
7208
+ "default": "var(--vvd-color-alert-600)"
7209
+ },
7210
+ {
7211
+ "name": "--vvd-empty-state-alert-dim",
7212
+ "default": "var(--vvd-color-alert-200)"
7213
+ },
7214
+ {
7215
+ "name": "--vvd-empty-state-alert-faint",
7216
+ "default": "var(--vvd-color-alert-50)"
7217
+ },
7218
+ {
7219
+ "name": "--vvd-empty-state-warning-firm-all",
7220
+ "default": "var(--vvd-color-warning-600)"
7221
+ },
7222
+ {
7223
+ "name": "--vvd-empty-state-warning-dim",
7224
+ "default": "var(--vvd-color-warning-200)"
7225
+ },
7226
+ {
7227
+ "name": "--vvd-empty-state-warning-faint",
7228
+ "default": "var(--vvd-color-warning-50)"
7229
+ },
7230
+ {
7231
+ "name": "--vvd-empty-state-information-firm-all",
7232
+ "default": "var(--vvd-color-information-600)"
7233
+ },
7234
+ {
7235
+ "name": "--vvd-empty-state-information-dim",
7236
+ "default": "var(--vvd-color-information-200)"
7237
+ },
7238
+ {
7239
+ "name": "--vvd-empty-state-information-faint",
7240
+ "default": "var(--vvd-color-information-50)"
7241
+ },
7242
+ {
7243
+ "name": "--vvd-empty-state-announcement-firm-all",
7244
+ "default": "var(--vvd-color-announcement-600)"
7245
+ },
7246
+ {
7247
+ "name": "--vvd-empty-state-announcement-dim",
7248
+ "default": "var(--vvd-color-announcement-200)"
7249
+ },
7250
+ {
7251
+ "name": "--vvd-empty-state-announcement-faint",
7252
+ "default": "var(--vvd-color-announcement-50)"
7253
+ },
7254
+ {
7255
+ "name": "--vvd-empty-state-accent-firm-all",
7256
+ "default": "var(--vvd-color-neutral-600)"
7257
+ },
7258
+ {
7259
+ "name": "--vvd-empty-state-accent-dim",
7260
+ "default": "var(--vvd-color-neutral-200)"
7261
+ },
7262
+ {
7263
+ "name": "--vvd-empty-state-accent-faint",
7264
+ "default": "var(--vvd-color-neutral-50)"
7265
+ }
7266
+ ],
7131
7267
  "slots": [
7132
7268
  {
7133
7269
  "description": "The default slot controls the body text of the empty state",
@@ -7143,6 +7279,15 @@
7143
7279
  }
7144
7280
  ],
7145
7281
  "members": [
7282
+ {
7283
+ "kind": "field",
7284
+ "name": "connotation",
7285
+ "type": {
7286
+ "text": "EmptyStateConnotation | undefined"
7287
+ },
7288
+ "description": "The connotation the empty state should have.",
7289
+ "privacy": "public"
7290
+ },
7146
7291
  {
7147
7292
  "kind": "field",
7148
7293
  "name": "headline",
@@ -7160,9 +7305,26 @@
7160
7305
  },
7161
7306
  "description": "Icon for the empty state.",
7162
7307
  "privacy": "public"
7308
+ },
7309
+ {
7310
+ "kind": "field",
7311
+ "name": "iconDecoration",
7312
+ "type": {
7313
+ "text": "EmptyStateIconDecoration | undefined"
7314
+ },
7315
+ "description": "option to a new design for the icon circle",
7316
+ "privacy": "public"
7163
7317
  }
7164
7318
  ],
7165
7319
  "attributes": [
7320
+ {
7321
+ "name": "connotation",
7322
+ "type": {
7323
+ "text": "EmptyStateConnotation | undefined"
7324
+ },
7325
+ "description": "The connotation the empty state should have.",
7326
+ "fieldName": "connotation"
7327
+ },
7166
7328
  {
7167
7329
  "name": "headline",
7168
7330
  "type": {
@@ -7178,6 +7340,14 @@
7178
7340
  },
7179
7341
  "description": "Icon for the empty state.",
7180
7342
  "fieldName": "icon"
7343
+ },
7344
+ {
7345
+ "name": "icon-decoration",
7346
+ "type": {
7347
+ "text": "EmptyStateIconDecoration | undefined"
7348
+ },
7349
+ "description": "option to a new design for the icon circle",
7350
+ "fieldName": "iconDecoration"
7181
7351
  }
7182
7352
  ],
7183
7353
  "superclass": {
@@ -9148,7 +9318,9 @@
9148
9318
  {
9149
9319
  "name": "modelValue",
9150
9320
  "attributeName": "checked",
9151
- "eventName": "change",
9321
+ "eventNames": [
9322
+ "change"
9323
+ ],
9152
9324
  "valueMapping": "(event.target as HTMLInputElement).checked"
9153
9325
  }
9154
9326
  ]
@@ -10493,7 +10665,9 @@
10493
10665
  {
10494
10666
  "name": "modelValue",
10495
10667
  "attributeName": "value",
10496
- "eventName": "input",
10668
+ "eventNames": [
10669
+ "input"
10670
+ ],
10497
10671
  "valueMapping": "(event.target as HTMLInputElement).value"
10498
10672
  }
10499
10673
  ]
@@ -10982,8 +11156,26 @@
10982
11156
  {
10983
11157
  "kind": "javascript-module",
10984
11158
  "path": "libs/components/src/lib/popup/popup.ts",
10985
- "declarations": [],
10986
- "exports": []
11159
+ "declarations": [
11160
+ {
11161
+ "kind": "variable",
11162
+ "name": "PlacementStrategy",
11163
+ "type": {
11164
+ "text": "{\n\tFlip: 'flip',\n\tAutoPlacementHorizontal: 'auto-placement-horizontal',\n\tAutoPlacementVertical: 'auto-placement-vertical',\n}"
11165
+ },
11166
+ "default": "{\n\tFlip: 'flip',\n\tAutoPlacementHorizontal: 'auto-placement-horizontal',\n\tAutoPlacementVertical: 'auto-placement-vertical',\n}"
11167
+ }
11168
+ ],
11169
+ "exports": [
11170
+ {
11171
+ "kind": "js",
11172
+ "name": "PlacementStrategy",
11173
+ "declaration": {
11174
+ "name": "PlacementStrategy",
11175
+ "module": "libs/components/src/lib/popup/popup.ts"
11176
+ }
11177
+ }
11178
+ ]
10987
11179
  },
10988
11180
  {
10989
11181
  "kind": "javascript-module",
@@ -11596,7 +11788,9 @@
11596
11788
  {
11597
11789
  "name": "modelValue",
11598
11790
  "attributeName": "value",
11599
- "eventName": "change",
11791
+ "eventNames": [
11792
+ "change"
11793
+ ],
11600
11794
  "valueMapping": "(event.target as HTMLInputElement).value"
11601
11795
  }
11602
11796
  ]
@@ -11901,6 +12095,16 @@
11901
12095
  "description": "The connotation of the component",
11902
12096
  "privacy": "public"
11903
12097
  },
12098
+ {
12099
+ "kind": "field",
12100
+ "name": "pin",
12101
+ "type": {
12102
+ "text": "boolean"
12103
+ },
12104
+ "default": "false",
12105
+ "description": "Show current values on the thumbs.",
12106
+ "privacy": "public"
12107
+ },
11904
12108
  {
11905
12109
  "kind": "field",
11906
12110
  "name": "valueTextFormatter",
@@ -11931,13 +12135,38 @@
11931
12135
  "readonly": true
11932
12136
  },
11933
12137
  {
11934
- "kind": "field",
11935
- "name": "#draggingThumb",
11936
- "privacy": "private",
11937
- "type": {
11938
- "text": "false | 'start' | 'end'"
12138
+ "kind": "method",
12139
+ "name": "#getThumbId",
12140
+ "return": {
12141
+ "type": {
12142
+ "text": "ThumbId"
12143
+ }
11939
12144
  },
11940
- "default": "false"
12145
+ "parameters": [
12146
+ {
12147
+ "name": "thumb",
12148
+ "type": {
12149
+ "text": "HTMLElement"
12150
+ }
12151
+ }
12152
+ ]
12153
+ },
12154
+ {
12155
+ "kind": "method",
12156
+ "name": "#getThumbIdFromEvent",
12157
+ "return": {
12158
+ "type": {
12159
+ "text": "ThumbId"
12160
+ }
12161
+ },
12162
+ "parameters": [
12163
+ {
12164
+ "name": "e",
12165
+ "type": {
12166
+ "text": "Event"
12167
+ }
12168
+ }
12169
+ ]
11941
12170
  },
11942
12171
  {
11943
12172
  "kind": "method",
@@ -11974,7 +12203,7 @@
11974
12203
  {
11975
12204
  "name": "thumb",
11976
12205
  "type": {
11977
- "text": "'start' | 'end'"
12206
+ "text": "ThumbId"
11978
12207
  }
11979
12208
  },
11980
12209
  {
@@ -11985,6 +12214,27 @@
11985
12214
  }
11986
12215
  ]
11987
12216
  },
12217
+ {
12218
+ "kind": "field",
12219
+ "name": "#isNonVisibleFocus",
12220
+ "privacy": "private",
12221
+ "type": {
12222
+ "text": "boolean"
12223
+ },
12224
+ "default": "false"
12225
+ },
12226
+ {
12227
+ "kind": "method",
12228
+ "name": "#focusThumbNonVisibly",
12229
+ "parameters": [
12230
+ {
12231
+ "name": "thumb",
12232
+ "type": {
12233
+ "text": "HTMLElement"
12234
+ }
12235
+ }
12236
+ ]
12237
+ },
11988
12238
  {
11989
12239
  "kind": "method",
11990
12240
  "name": "#registerThumbListeners"
@@ -11993,6 +12243,26 @@
11993
12243
  "kind": "method",
11994
12244
  "name": "#unregisterThumbListeners"
11995
12245
  },
12246
+ {
12247
+ "kind": "field",
12248
+ "name": "#onThumbFocus",
12249
+ "privacy": "private"
12250
+ },
12251
+ {
12252
+ "kind": "field",
12253
+ "name": "#onThumbBlur",
12254
+ "privacy": "private"
12255
+ },
12256
+ {
12257
+ "kind": "field",
12258
+ "name": "#onMouseOver",
12259
+ "privacy": "private"
12260
+ },
12261
+ {
12262
+ "kind": "field",
12263
+ "name": "#onMouseOut",
12264
+ "privacy": "private"
12265
+ },
11996
12266
  {
11997
12267
  "kind": "field",
11998
12268
  "name": "#onThumbMousedown",
@@ -12158,6 +12428,14 @@
12158
12428
  },
12159
12429
  "description": "The connotation of the component",
12160
12430
  "fieldName": "connotation"
12431
+ },
12432
+ {
12433
+ "type": {
12434
+ "text": "boolean"
12435
+ },
12436
+ "default": "false",
12437
+ "description": "Show current values on the thumbs.",
12438
+ "fieldName": "pin"
12161
12439
  }
12162
12440
  ],
12163
12441
  "superclass": {
@@ -12171,13 +12449,17 @@
12171
12449
  {
12172
12450
  "name": "start",
12173
12451
  "attributeName": "start",
12174
- "eventName": "input:start",
12452
+ "eventNames": [
12453
+ "input:start"
12454
+ ],
12175
12455
  "valueMapping": "(event.target as any).start"
12176
12456
  },
12177
12457
  {
12178
12458
  "name": "end",
12179
12459
  "attributeName": "end",
12180
- "eventName": "input:end",
12460
+ "eventNames": [
12461
+ "input:end"
12462
+ ],
12181
12463
  "valueMapping": "(event.target as any).end"
12182
12464
  }
12183
12465
  ]
@@ -12451,7 +12733,9 @@
12451
12733
  {
12452
12734
  "name": "modelValue",
12453
12735
  "attributeName": "value",
12454
- "eventName": "input",
12736
+ "eventNames": [
12737
+ "input"
12738
+ ],
12455
12739
  "valueMapping": "(event.target as HTMLInputElement).value"
12456
12740
  }
12457
12741
  ]
@@ -13003,6 +13287,16 @@
13003
13287
  "description": "Display markers on/off",
13004
13288
  "privacy": "public"
13005
13289
  },
13290
+ {
13291
+ "kind": "field",
13292
+ "name": "pin",
13293
+ "type": {
13294
+ "text": "boolean"
13295
+ },
13296
+ "default": "false",
13297
+ "description": "Show current value on the thumb.",
13298
+ "privacy": "public"
13299
+ },
13006
13300
  {
13007
13301
  "kind": "field",
13008
13302
  "name": "connotation",
@@ -13020,6 +13314,45 @@
13020
13314
  },
13021
13315
  "description": "Custom function that generates a string for the component's \"aria-valuetext\" attribute based on the current value.",
13022
13316
  "privacy": "public"
13317
+ },
13318
+ {
13319
+ "kind": "field",
13320
+ "name": "#isNonVisibleFocus",
13321
+ "privacy": "private",
13322
+ "type": {
13323
+ "text": "boolean"
13324
+ },
13325
+ "default": "false"
13326
+ },
13327
+ {
13328
+ "kind": "method",
13329
+ "name": "#registerThumbListeners"
13330
+ },
13331
+ {
13332
+ "kind": "method",
13333
+ "name": "#unregisterThumbListeners"
13334
+ },
13335
+ {
13336
+ "kind": "field",
13337
+ "name": "#onMouseOver",
13338
+ "privacy": "private"
13339
+ },
13340
+ {
13341
+ "kind": "field",
13342
+ "name": "#onMouseOut",
13343
+ "privacy": "private"
13344
+ },
13345
+ {
13346
+ "kind": "field",
13347
+ "name": "handleMouseDown"
13348
+ },
13349
+ {
13350
+ "kind": "field",
13351
+ "name": "handleThumbMouseDown"
13352
+ },
13353
+ {
13354
+ "kind": "field",
13355
+ "name": "keypressHandler"
13023
13356
  }
13024
13357
  ],
13025
13358
  "events": [
@@ -13056,6 +13389,14 @@
13056
13389
  "description": "Display markers on/off",
13057
13390
  "fieldName": "markers"
13058
13391
  },
13392
+ {
13393
+ "type": {
13394
+ "text": "boolean"
13395
+ },
13396
+ "default": "false",
13397
+ "description": "Show current value on the thumb.",
13398
+ "fieldName": "pin"
13399
+ },
13059
13400
  {
13060
13401
  "name": "connotation",
13061
13402
  "type": {
@@ -13076,7 +13417,9 @@
13076
13417
  {
13077
13418
  "name": "modelValue",
13078
13419
  "attributeName": "value",
13079
- "eventName": "change",
13420
+ "eventNames": [
13421
+ "change"
13422
+ ],
13080
13423
  "valueMapping": "(event.target as HTMLInputElement).value"
13081
13424
  }
13082
13425
  ]
@@ -13841,7 +14184,9 @@
13841
14184
  {
13842
14185
  "name": "modelValue",
13843
14186
  "attributeName": "checked",
13844
- "eventName": "change",
14187
+ "eventNames": [
14188
+ "change"
14189
+ ],
13845
14190
  "valueMapping": "(event.target as HTMLInputElement).checked"
13846
14191
  }
13847
14192
  ]
@@ -15219,7 +15564,9 @@
15219
15564
  {
15220
15565
  "name": "modelValue",
15221
15566
  "attributeName": "value",
15222
- "eventName": "input",
15567
+ "eventNames": [
15568
+ "input"
15569
+ ],
15223
15570
  "valueMapping": "(event.target as HTMLInputElement).value"
15224
15571
  }
15225
15572
  ]
@@ -15470,7 +15817,9 @@
15470
15817
  {
15471
15818
  "name": "modelValue",
15472
15819
  "attributeName": "value",
15473
- "eventName": "input",
15820
+ "eventNames": [
15821
+ "input"
15822
+ ],
15474
15823
  "valueMapping": "(event.target as HTMLInputElement).value"
15475
15824
  }
15476
15825
  ]
@@ -15843,7 +16192,9 @@
15843
16192
  {
15844
16193
  "name": "modelValue",
15845
16194
  "attributeName": "value",
15846
- "eventName": "input",
16195
+ "eventNames": [
16196
+ "input"
16197
+ ],
15847
16198
  "valueMapping": "(event.target as HTMLInputElement).value"
15848
16199
  }
15849
16200
  ]
package/index.cjs CHANGED
@@ -257,6 +257,7 @@ exports.Appearance = enums.Appearance;
257
257
  exports.AriaLive = enums.AriaLive;
258
258
  exports.Connotation = enums.Connotation;
259
259
  exports.ConnotationDecorative = enums.ConnotationDecorative;
260
+ exports.IconDecoration = enums.IconDecoration;
260
261
  exports.LayoutSize = enums.LayoutSize;
261
262
  exports.MediaSkipBy = enums.MediaSkipBy;
262
263
  exports.Position = enums.Position;