@genesislcap/rapid-design-system 14.439.3 → 14.441.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.
@@ -10473,6 +10473,18 @@
10473
10473
  "module": "src/dialog/dialog.ts"
10474
10474
  }
10475
10475
  },
10476
+ {
10477
+ "type": {
10478
+ "text": "boolean"
10479
+ },
10480
+ "default": "false",
10481
+ "description": "Whether or not the dialog is draggable by its top region",
10482
+ "fieldName": "draggable",
10483
+ "inheritedFrom": {
10484
+ "name": "DialogElement",
10485
+ "module": "src/dialog/dialog.ts"
10486
+ }
10487
+ },
10476
10488
  {
10477
10489
  "name": "min-width",
10478
10490
  "type": {
@@ -10648,6 +10660,41 @@
10648
10660
  "module": "src/dialog/dialog.ts"
10649
10661
  }
10650
10662
  },
10663
+ {
10664
+ "kind": "field",
10665
+ "name": "draggable",
10666
+ "type": {
10667
+ "text": "boolean"
10668
+ },
10669
+ "default": "false",
10670
+ "description": "Whether or not the dialog is draggable by its top region",
10671
+ "inheritedFrom": {
10672
+ "name": "DialogElement",
10673
+ "module": "src/dialog/dialog.ts"
10674
+ }
10675
+ },
10676
+ {
10677
+ "kind": "method",
10678
+ "name": "draggableChanged",
10679
+ "parameters": [
10680
+ {
10681
+ "name": "_oldValue",
10682
+ "type": {
10683
+ "text": "boolean"
10684
+ }
10685
+ },
10686
+ {
10687
+ "name": "newValue",
10688
+ "type": {
10689
+ "text": "boolean"
10690
+ }
10691
+ }
10692
+ ],
10693
+ "inheritedFrom": {
10694
+ "name": "DialogElement",
10695
+ "module": "src/dialog/dialog.ts"
10696
+ }
10697
+ },
10651
10698
  {
10652
10699
  "kind": "field",
10653
10700
  "name": "minWidth",
@@ -10956,6 +11003,110 @@
10956
11003
  "module": "src/dialog/dialog.ts"
10957
11004
  }
10958
11005
  },
11006
+ {
11007
+ "kind": "field",
11008
+ "name": "isDragging",
11009
+ "type": {
11010
+ "text": "boolean"
11011
+ },
11012
+ "privacy": "private",
11013
+ "default": "false",
11014
+ "inheritedFrom": {
11015
+ "name": "DialogElement",
11016
+ "module": "src/dialog/dialog.ts"
11017
+ }
11018
+ },
11019
+ {
11020
+ "kind": "field",
11021
+ "name": "dragOffsetX",
11022
+ "type": {
11023
+ "text": "number"
11024
+ },
11025
+ "privacy": "private",
11026
+ "default": "0",
11027
+ "inheritedFrom": {
11028
+ "name": "DialogElement",
11029
+ "module": "src/dialog/dialog.ts"
11030
+ }
11031
+ },
11032
+ {
11033
+ "kind": "field",
11034
+ "name": "dragOffsetY",
11035
+ "type": {
11036
+ "text": "number"
11037
+ },
11038
+ "privacy": "private",
11039
+ "default": "0",
11040
+ "inheritedFrom": {
11041
+ "name": "DialogElement",
11042
+ "module": "src/dialog/dialog.ts"
11043
+ }
11044
+ },
11045
+ {
11046
+ "kind": "field",
11047
+ "name": "dragDialogWidth",
11048
+ "type": {
11049
+ "text": "number"
11050
+ },
11051
+ "privacy": "private",
11052
+ "default": "0",
11053
+ "inheritedFrom": {
11054
+ "name": "DialogElement",
11055
+ "module": "src/dialog/dialog.ts"
11056
+ }
11057
+ },
11058
+ {
11059
+ "kind": "field",
11060
+ "name": "dragDialogHeight",
11061
+ "type": {
11062
+ "text": "number"
11063
+ },
11064
+ "privacy": "private",
11065
+ "default": "0",
11066
+ "inheritedFrom": {
11067
+ "name": "DialogElement",
11068
+ "module": "src/dialog/dialog.ts"
11069
+ }
11070
+ },
11071
+ {
11072
+ "kind": "field",
11073
+ "name": "onMouseDownBound",
11074
+ "type": {
11075
+ "text": "((event: MouseEvent) => void) | null"
11076
+ },
11077
+ "privacy": "private",
11078
+ "default": "null",
11079
+ "inheritedFrom": {
11080
+ "name": "DialogElement",
11081
+ "module": "src/dialog/dialog.ts"
11082
+ }
11083
+ },
11084
+ {
11085
+ "kind": "field",
11086
+ "name": "onMouseMoveBound",
11087
+ "type": {
11088
+ "text": "((event: MouseEvent) => void) | null"
11089
+ },
11090
+ "privacy": "private",
11091
+ "default": "null",
11092
+ "inheritedFrom": {
11093
+ "name": "DialogElement",
11094
+ "module": "src/dialog/dialog.ts"
11095
+ }
11096
+ },
11097
+ {
11098
+ "kind": "field",
11099
+ "name": "onMouseUpBound",
11100
+ "type": {
11101
+ "text": "(() => void) | null"
11102
+ },
11103
+ "privacy": "private",
11104
+ "default": "null",
11105
+ "inheritedFrom": {
11106
+ "name": "DialogElement",
11107
+ "module": "src/dialog/dialog.ts"
11108
+ }
11109
+ },
10959
11110
  {
10960
11111
  "kind": "method",
10961
11112
  "name": "setupResizeHandlers",
@@ -11138,114 +11289,237 @@
11138
11289
  }
11139
11290
  },
11140
11291
  {
11141
- "kind": "field",
11142
- "name": "_presentation",
11143
- "type": {
11144
- "text": "ComponentPresentation | null | undefined"
11145
- },
11292
+ "kind": "method",
11293
+ "name": "attachDragMouseDown",
11146
11294
  "privacy": "private",
11147
- "default": "void 0",
11148
- "inheritedFrom": {
11149
- "name": "FoundationElement",
11150
- "module": "src/foundation-element/foundation-element.ts"
11151
- }
11152
- },
11153
- {
11154
- "kind": "field",
11155
- "name": "$presentation",
11156
- "type": {
11157
- "text": "ComponentPresentation | null"
11158
- },
11159
- "privacy": "public",
11160
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
11161
11295
  "inheritedFrom": {
11162
- "name": "FoundationElement",
11163
- "module": "src/foundation-element/foundation-element.ts"
11296
+ "name": "DialogElement",
11297
+ "module": "src/dialog/dialog.ts"
11164
11298
  }
11165
11299
  },
11166
11300
  {
11167
- "kind": "field",
11168
- "name": "template",
11169
- "type": {
11170
- "text": "ElementViewTemplate | void | null"
11171
- },
11172
- "privacy": "public",
11173
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
11301
+ "kind": "method",
11302
+ "name": "detachDragMouseDown",
11303
+ "privacy": "private",
11174
11304
  "inheritedFrom": {
11175
- "name": "FoundationElement",
11176
- "module": "src/foundation-element/foundation-element.ts"
11305
+ "name": "DialogElement",
11306
+ "module": "src/dialog/dialog.ts"
11177
11307
  }
11178
11308
  },
11179
11309
  {
11180
11310
  "kind": "method",
11181
- "name": "templateChanged",
11182
- "privacy": "protected",
11311
+ "name": "isEventTargetInDraggableTarget",
11312
+ "privacy": "private",
11183
11313
  "return": {
11184
11314
  "type": {
11185
- "text": "void"
11315
+ "text": "boolean"
11186
11316
  }
11187
11317
  },
11318
+ "parameters": [
11319
+ {
11320
+ "name": "event",
11321
+ "type": {
11322
+ "text": "MouseEvent"
11323
+ }
11324
+ }
11325
+ ],
11188
11326
  "inheritedFrom": {
11189
- "name": "FoundationElement",
11190
- "module": "src/foundation-element/foundation-element.ts"
11191
- }
11192
- },
11193
- {
11194
- "kind": "field",
11195
- "name": "styles",
11196
- "type": {
11197
- "text": "ElementStyles | void | null"
11198
- },
11199
- "privacy": "public",
11200
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
11201
- "inheritedFrom": {
11202
- "name": "FoundationElement",
11203
- "module": "src/foundation-element/foundation-element.ts"
11327
+ "name": "DialogElement",
11328
+ "module": "src/dialog/dialog.ts"
11204
11329
  }
11205
11330
  },
11206
11331
  {
11207
11332
  "kind": "method",
11208
- "name": "stylesChanged",
11209
- "privacy": "protected",
11333
+ "name": "isInsideTopSlot",
11334
+ "privacy": "private",
11210
11335
  "return": {
11211
11336
  "type": {
11212
- "text": "void"
11337
+ "text": "boolean"
11213
11338
  }
11214
11339
  },
11340
+ "parameters": [
11341
+ {
11342
+ "name": "target",
11343
+ "type": {
11344
+ "text": "Node"
11345
+ }
11346
+ }
11347
+ ],
11215
11348
  "inheritedFrom": {
11216
- "name": "FoundationElement",
11217
- "module": "src/foundation-element/foundation-element.ts"
11349
+ "name": "DialogElement",
11350
+ "module": "src/dialog/dialog.ts"
11218
11351
  }
11219
11352
  },
11220
11353
  {
11221
11354
  "kind": "method",
11222
- "name": "compose",
11223
- "privacy": "public",
11224
- "static": true,
11225
- "return": {
11226
- "type": {
11227
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
11228
- }
11229
- },
11355
+ "name": "onMouseDown",
11356
+ "privacy": "private",
11230
11357
  "parameters": [
11231
11358
  {
11232
- "name": "this",
11359
+ "name": "event",
11233
11360
  "type": {
11234
- "text": "K"
11361
+ "text": "MouseEvent"
11235
11362
  }
11236
- },
11237
- {
11238
- "name": "elementDefinition",
11239
- "type": {
11240
- "text": "T"
11241
- },
11242
- "description": "The definition of the element to create the registry\nfunction for."
11243
11363
  }
11244
11364
  ],
11245
- "description": "Defines an element registry function with a set of element definition defaults.",
11246
11365
  "inheritedFrom": {
11247
- "name": "FoundationElement",
11248
- "module": "src/foundation-element/foundation-element.ts"
11366
+ "name": "DialogElement",
11367
+ "module": "src/dialog/dialog.ts"
11368
+ }
11369
+ },
11370
+ {
11371
+ "kind": "method",
11372
+ "name": "onMouseMove",
11373
+ "privacy": "private",
11374
+ "parameters": [
11375
+ {
11376
+ "name": "event",
11377
+ "type": {
11378
+ "text": "MouseEvent"
11379
+ }
11380
+ }
11381
+ ],
11382
+ "inheritedFrom": {
11383
+ "name": "DialogElement",
11384
+ "module": "src/dialog/dialog.ts"
11385
+ }
11386
+ },
11387
+ {
11388
+ "kind": "method",
11389
+ "name": "onMouseUp",
11390
+ "privacy": "private",
11391
+ "inheritedFrom": {
11392
+ "name": "DialogElement",
11393
+ "module": "src/dialog/dialog.ts"
11394
+ }
11395
+ },
11396
+ {
11397
+ "kind": "method",
11398
+ "name": "removeDraggableEventListeners",
11399
+ "privacy": "private",
11400
+ "inheritedFrom": {
11401
+ "name": "DialogElement",
11402
+ "module": "src/dialog/dialog.ts"
11403
+ }
11404
+ },
11405
+ {
11406
+ "kind": "method",
11407
+ "name": "resetDraggableStyle",
11408
+ "privacy": "private",
11409
+ "inheritedFrom": {
11410
+ "name": "DialogElement",
11411
+ "module": "src/dialog/dialog.ts"
11412
+ }
11413
+ },
11414
+ {
11415
+ "kind": "field",
11416
+ "name": "_presentation",
11417
+ "type": {
11418
+ "text": "ComponentPresentation | null | undefined"
11419
+ },
11420
+ "privacy": "private",
11421
+ "default": "void 0",
11422
+ "inheritedFrom": {
11423
+ "name": "FoundationElement",
11424
+ "module": "src/foundation-element/foundation-element.ts"
11425
+ }
11426
+ },
11427
+ {
11428
+ "kind": "field",
11429
+ "name": "$presentation",
11430
+ "type": {
11431
+ "text": "ComponentPresentation | null"
11432
+ },
11433
+ "privacy": "public",
11434
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
11435
+ "inheritedFrom": {
11436
+ "name": "FoundationElement",
11437
+ "module": "src/foundation-element/foundation-element.ts"
11438
+ }
11439
+ },
11440
+ {
11441
+ "kind": "field",
11442
+ "name": "template",
11443
+ "type": {
11444
+ "text": "ElementViewTemplate | void | null"
11445
+ },
11446
+ "privacy": "public",
11447
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
11448
+ "inheritedFrom": {
11449
+ "name": "FoundationElement",
11450
+ "module": "src/foundation-element/foundation-element.ts"
11451
+ }
11452
+ },
11453
+ {
11454
+ "kind": "method",
11455
+ "name": "templateChanged",
11456
+ "privacy": "protected",
11457
+ "return": {
11458
+ "type": {
11459
+ "text": "void"
11460
+ }
11461
+ },
11462
+ "inheritedFrom": {
11463
+ "name": "FoundationElement",
11464
+ "module": "src/foundation-element/foundation-element.ts"
11465
+ }
11466
+ },
11467
+ {
11468
+ "kind": "field",
11469
+ "name": "styles",
11470
+ "type": {
11471
+ "text": "ElementStyles | void | null"
11472
+ },
11473
+ "privacy": "public",
11474
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
11475
+ "inheritedFrom": {
11476
+ "name": "FoundationElement",
11477
+ "module": "src/foundation-element/foundation-element.ts"
11478
+ }
11479
+ },
11480
+ {
11481
+ "kind": "method",
11482
+ "name": "stylesChanged",
11483
+ "privacy": "protected",
11484
+ "return": {
11485
+ "type": {
11486
+ "text": "void"
11487
+ }
11488
+ },
11489
+ "inheritedFrom": {
11490
+ "name": "FoundationElement",
11491
+ "module": "src/foundation-element/foundation-element.ts"
11492
+ }
11493
+ },
11494
+ {
11495
+ "kind": "method",
11496
+ "name": "compose",
11497
+ "privacy": "public",
11498
+ "static": true,
11499
+ "return": {
11500
+ "type": {
11501
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
11502
+ }
11503
+ },
11504
+ "parameters": [
11505
+ {
11506
+ "name": "this",
11507
+ "type": {
11508
+ "text": "K"
11509
+ }
11510
+ },
11511
+ {
11512
+ "name": "elementDefinition",
11513
+ "type": {
11514
+ "text": "T"
11515
+ },
11516
+ "description": "The definition of the element to create the registry\nfunction for."
11517
+ }
11518
+ ],
11519
+ "description": "Defines an element registry function with a set of element definition defaults.",
11520
+ "inheritedFrom": {
11521
+ "name": "FoundationElement",
11522
+ "module": "src/foundation-element/foundation-element.ts"
11249
11523
  }
11250
11524
  }
11251
11525
  ],
@@ -20219,7 +20493,7 @@
20219
20493
  {
20220
20494
  "kind": "variable",
20221
20495
  "name": "rapidModalStyles",
20222
- "default": "css`\n ${rapidDialogStyles}\n\n :host([draggable])::part(top) {\n cursor: move;\n }\n`"
20496
+ "default": "css`\n ${rapidDialogStyles}\n`"
20223
20497
  }
20224
20498
  ],
20225
20499
  "exports": [
@@ -20263,17 +20537,6 @@
20263
20537
  "tagName": "%%prefix%%-modal",
20264
20538
  "customElement": true,
20265
20539
  "attributes": [
20266
- {
20267
- "type": {
20268
- "text": "boolean"
20269
- },
20270
- "default": "false",
20271
- "fieldName": "draggable",
20272
- "inheritedFrom": {
20273
- "name": "Modal",
20274
- "module": "src/modal/modal.ts"
20275
- }
20276
- },
20277
20540
  {
20278
20541
  "name": "type",
20279
20542
  "type": {
@@ -20324,6 +20587,18 @@
20324
20587
  "module": "src/dialog/dialog.ts"
20325
20588
  }
20326
20589
  },
20590
+ {
20591
+ "type": {
20592
+ "text": "boolean"
20593
+ },
20594
+ "default": "false",
20595
+ "description": "Whether or not the dialog is draggable by its top region",
20596
+ "fieldName": "draggable",
20597
+ "inheritedFrom": {
20598
+ "name": "DialogElement",
20599
+ "module": "src/dialog/dialog.ts"
20600
+ }
20601
+ },
20327
20602
  {
20328
20603
  "name": "min-width",
20329
20604
  "type": {
@@ -20383,149 +20658,117 @@
20383
20658
  ],
20384
20659
  "members": [
20385
20660
  {
20386
- "kind": "field",
20387
- "name": "isDragging",
20388
- "type": {
20389
- "text": "boolean"
20661
+ "kind": "method",
20662
+ "name": "show",
20663
+ "return": {
20664
+ "type": {
20665
+ "text": "void"
20666
+ }
20390
20667
  },
20391
- "privacy": "private",
20392
- "default": "false",
20668
+ "description": "Show the HTMLDialogElement and its contents",
20393
20669
  "inheritedFrom": {
20394
- "name": "Modal",
20395
- "module": "src/modal/modal.ts"
20670
+ "name": "DialogElement",
20671
+ "module": "src/dialog/dialog.ts"
20396
20672
  }
20397
20673
  },
20398
20674
  {
20399
20675
  "kind": "field",
20400
- "name": "offsetX",
20676
+ "name": "mainElement",
20401
20677
  "type": {
20402
- "text": "number"
20678
+ "text": "HTMLDialogElement"
20403
20679
  },
20404
- "privacy": "private",
20405
- "default": "0",
20680
+ "description": "A reference to the dialog element\nin the component Shadow DOM.",
20406
20681
  "inheritedFrom": {
20407
- "name": "Modal",
20408
- "module": "src/modal/modal.ts"
20682
+ "name": "DialogElement",
20683
+ "module": "src/dialog/dialog.ts"
20409
20684
  }
20410
20685
  },
20411
20686
  {
20412
20687
  "kind": "field",
20413
- "name": "offsetY",
20688
+ "name": "topElement",
20414
20689
  "type": {
20415
- "text": "number"
20690
+ "text": "HTMLElement"
20416
20691
  },
20417
- "privacy": "private",
20418
- "default": "0",
20419
20692
  "inheritedFrom": {
20420
- "name": "Modal",
20421
- "module": "src/modal/modal.ts"
20693
+ "name": "DialogElement",
20694
+ "module": "src/dialog/dialog.ts"
20422
20695
  }
20423
20696
  },
20424
20697
  {
20425
20698
  "kind": "field",
20426
- "name": "modalWidth",
20699
+ "name": "topElementSlot",
20427
20700
  "type": {
20428
- "text": "number"
20701
+ "text": "HTMLSlotElement"
20429
20702
  },
20430
- "privacy": "private",
20431
- "default": "0",
20432
20703
  "inheritedFrom": {
20433
- "name": "Modal",
20434
- "module": "src/modal/modal.ts"
20704
+ "name": "DialogElement",
20705
+ "module": "src/dialog/dialog.ts"
20435
20706
  }
20436
20707
  },
20437
20708
  {
20438
20709
  "kind": "field",
20439
- "name": "modalHeight",
20710
+ "name": "notification",
20440
20711
  "type": {
20441
- "text": "number"
20712
+ "text": "NotificationStructure"
20442
20713
  },
20443
- "privacy": "private",
20444
- "default": "0",
20445
20714
  "inheritedFrom": {
20446
- "name": "Modal",
20447
- "module": "src/modal/modal.ts"
20715
+ "name": "DialogElement",
20716
+ "module": "src/dialog/dialog.ts"
20448
20717
  }
20449
20718
  },
20450
20719
  {
20451
- "kind": "field",
20452
- "name": "onMouseDownBound",
20453
- "type": {
20454
- "text": "((event: MouseEvent) => void) | null"
20455
- },
20456
- "privacy": "private",
20457
- "default": "null",
20720
+ "kind": "method",
20721
+ "name": "notificationChanged",
20458
20722
  "inheritedFrom": {
20459
- "name": "Modal",
20460
- "module": "src/modal/modal.ts"
20723
+ "name": "DialogElement",
20724
+ "module": "src/dialog/dialog.ts"
20461
20725
  }
20462
20726
  },
20463
20727
  {
20464
20728
  "kind": "field",
20465
- "name": "onMouseMoveBound",
20729
+ "name": "type",
20466
20730
  "type": {
20467
- "text": "((event: MouseEvent) => void) | null"
20731
+ "text": "DialogType"
20468
20732
  },
20469
- "privacy": "private",
20470
- "default": "null",
20733
+ "default": "'default'",
20471
20734
  "inheritedFrom": {
20472
- "name": "Modal",
20473
- "module": "src/modal/modal.ts"
20735
+ "name": "DialogElement",
20736
+ "module": "src/dialog/dialog.ts"
20474
20737
  }
20475
20738
  },
20476
20739
  {
20477
20740
  "kind": "field",
20478
- "name": "onMouseUpBound",
20741
+ "name": "position",
20479
20742
  "type": {
20480
- "text": "(() => void) | null"
20743
+ "text": "DialogPosition"
20481
20744
  },
20482
- "privacy": "private",
20483
- "default": "null",
20745
+ "default": "'center'",
20484
20746
  "inheritedFrom": {
20485
- "name": "Modal",
20486
- "module": "src/modal/modal.ts"
20747
+ "name": "DialogElement",
20748
+ "module": "src/dialog/dialog.ts"
20487
20749
  }
20488
20750
  },
20489
20751
  {
20490
20752
  "kind": "field",
20491
- "name": "draggable",
20753
+ "name": "showCloseIcon",
20492
20754
  "type": {
20493
20755
  "text": "boolean"
20494
20756
  },
20495
- "default": "false",
20757
+ "default": "true",
20758
+ "description": "Whether or not to show the close icon",
20496
20759
  "inheritedFrom": {
20497
- "name": "Modal",
20498
- "module": "src/modal/modal.ts"
20760
+ "name": "DialogElement",
20761
+ "module": "src/dialog/dialog.ts"
20499
20762
  }
20500
20763
  },
20501
20764
  {
20502
- "kind": "method",
20503
- "name": "draggableChanged",
20504
- "parameters": [
20505
- {
20506
- "name": "ignore"
20507
- },
20508
- {
20509
- "name": "newValue",
20510
- "type": {
20511
- "text": "boolean"
20512
- }
20513
- }
20514
- ],
20515
- "inheritedFrom": {
20516
- "name": "Modal",
20517
- "module": "src/modal/modal.ts"
20518
- }
20519
- },
20520
- {
20521
- "kind": "method",
20522
- "name": "show",
20523
- "return": {
20524
- "type": {
20525
- "text": "void"
20526
- }
20765
+ "kind": "field",
20766
+ "name": "resizable",
20767
+ "type": {
20768
+ "text": "boolean"
20527
20769
  },
20528
- "description": "Show the HTMLDialogElement and its contents",
20770
+ "default": "false",
20771
+ "description": "Whether or not the dialog is resizable",
20529
20772
  "inheritedFrom": {
20530
20773
  "name": "DialogElement",
20531
20774
  "module": "src/dialog/dialog.ts"
@@ -20533,11 +20776,12 @@
20533
20776
  },
20534
20777
  {
20535
20778
  "kind": "field",
20536
- "name": "onCloseCallback",
20779
+ "name": "draggable",
20537
20780
  "type": {
20538
- "text": "() => void"
20781
+ "text": "boolean"
20539
20782
  },
20540
- "description": "Callback to run *after* HTMLDialogElement is closed",
20783
+ "default": "false",
20784
+ "description": "Whether or not the dialog is draggable by its top region",
20541
20785
  "inheritedFrom": {
20542
20786
  "name": "DialogElement",
20543
20787
  "module": "src/dialog/dialog.ts"
@@ -20545,107 +20789,34 @@
20545
20789
  },
20546
20790
  {
20547
20791
  "kind": "method",
20548
- "name": "isEventTargetInDraggableTarget",
20549
- "privacy": "private",
20550
- "return": {
20551
- "type": {
20552
- "text": "boolean"
20553
- }
20554
- },
20555
- "parameters": [
20556
- {
20557
- "name": "event",
20558
- "type": {
20559
- "text": "MouseEvent"
20560
- }
20561
- }
20562
- ],
20563
- "inheritedFrom": {
20564
- "name": "Modal",
20565
- "module": "src/modal/modal.ts"
20566
- }
20567
- },
20568
- {
20569
- "kind": "method",
20570
- "name": "isInsideTopSlot",
20571
- "privacy": "private",
20572
- "return": {
20573
- "type": {
20574
- "text": "boolean"
20575
- }
20576
- },
20577
- "parameters": [
20578
- {
20579
- "name": "target",
20580
- "type": {
20581
- "text": "Node"
20582
- }
20583
- }
20584
- ],
20585
- "inheritedFrom": {
20586
- "name": "Modal",
20587
- "module": "src/modal/modal.ts"
20588
- }
20589
- },
20590
- {
20591
- "kind": "method",
20592
- "name": "onMouseDown",
20593
- "privacy": "private",
20792
+ "name": "draggableChanged",
20594
20793
  "parameters": [
20595
20794
  {
20596
- "name": "event",
20795
+ "name": "_oldValue",
20597
20796
  "type": {
20598
- "text": "MouseEvent"
20797
+ "text": "boolean"
20599
20798
  }
20600
- }
20601
- ],
20602
- "inheritedFrom": {
20603
- "name": "Modal",
20604
- "module": "src/modal/modal.ts"
20605
- }
20606
- },
20607
- {
20608
- "kind": "method",
20609
- "name": "onMouseMove",
20610
- "privacy": "private",
20611
- "parameters": [
20799
+ },
20612
20800
  {
20613
- "name": "event",
20801
+ "name": "newValue",
20614
20802
  "type": {
20615
- "text": "MouseEvent"
20803
+ "text": "boolean"
20616
20804
  }
20617
20805
  }
20618
20806
  ],
20619
20807
  "inheritedFrom": {
20620
- "name": "Modal",
20621
- "module": "src/modal/modal.ts"
20622
- }
20623
- },
20624
- {
20625
- "kind": "method",
20626
- "name": "onMouseUp",
20627
- "privacy": "private",
20628
- "inheritedFrom": {
20629
- "name": "Modal",
20630
- "module": "src/modal/modal.ts"
20631
- }
20632
- },
20633
- {
20634
- "kind": "method",
20635
- "name": "removeDraggableEventListeners",
20636
- "privacy": "private",
20637
- "inheritedFrom": {
20638
- "name": "Modal",
20639
- "module": "src/modal/modal.ts"
20808
+ "name": "DialogElement",
20809
+ "module": "src/dialog/dialog.ts"
20640
20810
  }
20641
20811
  },
20642
20812
  {
20643
20813
  "kind": "field",
20644
- "name": "mainElement",
20814
+ "name": "minWidth",
20645
20815
  "type": {
20646
- "text": "HTMLDialogElement"
20816
+ "text": "number"
20647
20817
  },
20648
- "description": "A reference to the dialog element\nin the component Shadow DOM.",
20818
+ "default": "300",
20819
+ "description": "Minimum width for the dialog",
20649
20820
  "inheritedFrom": {
20650
20821
  "name": "DialogElement",
20651
20822
  "module": "src/dialog/dialog.ts"
@@ -20653,10 +20824,12 @@
20653
20824
  },
20654
20825
  {
20655
20826
  "kind": "field",
20656
- "name": "topElement",
20827
+ "name": "minHeight",
20657
20828
  "type": {
20658
- "text": "HTMLElement"
20829
+ "text": "number"
20659
20830
  },
20831
+ "default": "200",
20832
+ "description": "Minimum height for the dialog",
20660
20833
  "inheritedFrom": {
20661
20834
  "name": "DialogElement",
20662
20835
  "module": "src/dialog/dialog.ts"
@@ -20664,10 +20837,11 @@
20664
20837
  },
20665
20838
  {
20666
20839
  "kind": "field",
20667
- "name": "topElementSlot",
20840
+ "name": "initialWidth",
20668
20841
  "type": {
20669
- "text": "HTMLSlotElement"
20842
+ "text": "number | undefined"
20670
20843
  },
20844
+ "description": "Initial width for the dialog (cannot exceed viewport width)",
20671
20845
  "inheritedFrom": {
20672
20846
  "name": "DialogElement",
20673
20847
  "module": "src/dialog/dialog.ts"
@@ -20675,18 +20849,23 @@
20675
20849
  },
20676
20850
  {
20677
20851
  "kind": "field",
20678
- "name": "notification",
20852
+ "name": "initialHeight",
20679
20853
  "type": {
20680
- "text": "NotificationStructure"
20854
+ "text": "number | undefined"
20681
20855
  },
20856
+ "description": "Initial height for the dialog (cannot exceed viewport height)",
20682
20857
  "inheritedFrom": {
20683
20858
  "name": "DialogElement",
20684
20859
  "module": "src/dialog/dialog.ts"
20685
20860
  }
20686
20861
  },
20687
20862
  {
20688
- "kind": "method",
20689
- "name": "notificationChanged",
20863
+ "kind": "field",
20864
+ "name": "onShowCallback",
20865
+ "type": {
20866
+ "text": "() => void"
20867
+ },
20868
+ "description": "Callback to run *before* HTMLDialogElement is shown",
20690
20869
  "inheritedFrom": {
20691
20870
  "name": "DialogElement",
20692
20871
  "module": "src/dialog/dialog.ts"
@@ -20694,11 +20873,11 @@
20694
20873
  },
20695
20874
  {
20696
20875
  "kind": "field",
20697
- "name": "type",
20876
+ "name": "onCloseCallback",
20698
20877
  "type": {
20699
- "text": "DialogType"
20878
+ "text": "() => void"
20700
20879
  },
20701
- "default": "'default'",
20880
+ "description": "Callback to run *after* HTMLDialogElement is closed",
20702
20881
  "inheritedFrom": {
20703
20882
  "name": "DialogElement",
20704
20883
  "module": "src/dialog/dialog.ts"
@@ -20706,11 +20885,12 @@
20706
20885
  },
20707
20886
  {
20708
20887
  "kind": "field",
20709
- "name": "position",
20888
+ "name": "isResizing",
20710
20889
  "type": {
20711
- "text": "DialogPosition"
20890
+ "text": "boolean"
20712
20891
  },
20713
- "default": "'center'",
20892
+ "privacy": "private",
20893
+ "default": "false",
20714
20894
  "inheritedFrom": {
20715
20895
  "name": "DialogElement",
20716
20896
  "module": "src/dialog/dialog.ts"
@@ -20718,12 +20898,12 @@
20718
20898
  },
20719
20899
  {
20720
20900
  "kind": "field",
20721
- "name": "showCloseIcon",
20901
+ "name": "currentResizeHandle",
20722
20902
  "type": {
20723
- "text": "boolean"
20903
+ "text": "string"
20724
20904
  },
20725
- "default": "true",
20726
- "description": "Whether or not to show the close icon",
20905
+ "privacy": "private",
20906
+ "default": "null",
20727
20907
  "inheritedFrom": {
20728
20908
  "name": "DialogElement",
20729
20909
  "module": "src/dialog/dialog.ts"
@@ -20731,12 +20911,12 @@
20731
20911
  },
20732
20912
  {
20733
20913
  "kind": "field",
20734
- "name": "resizable",
20914
+ "name": "startX",
20735
20915
  "type": {
20736
- "text": "boolean"
20916
+ "text": "number"
20737
20917
  },
20738
- "default": "false",
20739
- "description": "Whether or not the dialog is resizable",
20918
+ "privacy": "private",
20919
+ "default": "0",
20740
20920
  "inheritedFrom": {
20741
20921
  "name": "DialogElement",
20742
20922
  "module": "src/dialog/dialog.ts"
@@ -20744,12 +20924,12 @@
20744
20924
  },
20745
20925
  {
20746
20926
  "kind": "field",
20747
- "name": "minWidth",
20927
+ "name": "startY",
20748
20928
  "type": {
20749
20929
  "text": "number"
20750
20930
  },
20751
- "default": "300",
20752
- "description": "Minimum width for the dialog",
20931
+ "privacy": "private",
20932
+ "default": "0",
20753
20933
  "inheritedFrom": {
20754
20934
  "name": "DialogElement",
20755
20935
  "module": "src/dialog/dialog.ts"
@@ -20757,12 +20937,12 @@
20757
20937
  },
20758
20938
  {
20759
20939
  "kind": "field",
20760
- "name": "minHeight",
20940
+ "name": "startWidth",
20761
20941
  "type": {
20762
20942
  "text": "number"
20763
20943
  },
20764
- "default": "200",
20765
- "description": "Minimum height for the dialog",
20944
+ "privacy": "private",
20945
+ "default": "0",
20766
20946
  "inheritedFrom": {
20767
20947
  "name": "DialogElement",
20768
20948
  "module": "src/dialog/dialog.ts"
@@ -20770,11 +20950,12 @@
20770
20950
  },
20771
20951
  {
20772
20952
  "kind": "field",
20773
- "name": "initialWidth",
20953
+ "name": "startHeight",
20774
20954
  "type": {
20775
- "text": "number | undefined"
20955
+ "text": "number"
20776
20956
  },
20777
- "description": "Initial width for the dialog (cannot exceed viewport width)",
20957
+ "privacy": "private",
20958
+ "default": "0",
20778
20959
  "inheritedFrom": {
20779
20960
  "name": "DialogElement",
20780
20961
  "module": "src/dialog/dialog.ts"
@@ -20782,11 +20963,12 @@
20782
20963
  },
20783
20964
  {
20784
20965
  "kind": "field",
20785
- "name": "initialHeight",
20966
+ "name": "startLeft",
20786
20967
  "type": {
20787
- "text": "number | undefined"
20968
+ "text": "number"
20788
20969
  },
20789
- "description": "Initial height for the dialog (cannot exceed viewport height)",
20970
+ "privacy": "private",
20971
+ "default": "0",
20790
20972
  "inheritedFrom": {
20791
20973
  "name": "DialogElement",
20792
20974
  "module": "src/dialog/dialog.ts"
@@ -20794,11 +20976,12 @@
20794
20976
  },
20795
20977
  {
20796
20978
  "kind": "field",
20797
- "name": "onShowCallback",
20979
+ "name": "startTop",
20798
20980
  "type": {
20799
- "text": "() => void"
20981
+ "text": "number"
20800
20982
  },
20801
- "description": "Callback to run *before* HTMLDialogElement is shown",
20983
+ "privacy": "private",
20984
+ "default": "0",
20802
20985
  "inheritedFrom": {
20803
20986
  "name": "DialogElement",
20804
20987
  "module": "src/dialog/dialog.ts"
@@ -20806,12 +20989,12 @@
20806
20989
  },
20807
20990
  {
20808
20991
  "kind": "field",
20809
- "name": "isResizing",
20992
+ "name": "resizeOffsetX",
20810
20993
  "type": {
20811
- "text": "boolean"
20994
+ "text": "number"
20812
20995
  },
20813
20996
  "privacy": "private",
20814
- "default": "false",
20997
+ "default": "0",
20815
20998
  "inheritedFrom": {
20816
20999
  "name": "DialogElement",
20817
21000
  "module": "src/dialog/dialog.ts"
@@ -20819,12 +21002,12 @@
20819
21002
  },
20820
21003
  {
20821
21004
  "kind": "field",
20822
- "name": "currentResizeHandle",
21005
+ "name": "resizeOffsetY",
20823
21006
  "type": {
20824
- "text": "string"
21007
+ "text": "number"
20825
21008
  },
20826
21009
  "privacy": "private",
20827
- "default": "null",
21010
+ "default": "0",
20828
21011
  "inheritedFrom": {
20829
21012
  "name": "DialogElement",
20830
21013
  "module": "src/dialog/dialog.ts"
@@ -20832,12 +21015,12 @@
20832
21015
  },
20833
21016
  {
20834
21017
  "kind": "field",
20835
- "name": "startX",
21018
+ "name": "originalWidth",
20836
21019
  "type": {
20837
- "text": "number"
21020
+ "text": "string"
20838
21021
  },
20839
21022
  "privacy": "private",
20840
- "default": "0",
21023
+ "default": "''",
20841
21024
  "inheritedFrom": {
20842
21025
  "name": "DialogElement",
20843
21026
  "module": "src/dialog/dialog.ts"
@@ -20845,12 +21028,12 @@
20845
21028
  },
20846
21029
  {
20847
21030
  "kind": "field",
20848
- "name": "startY",
21031
+ "name": "originalHeight",
20849
21032
  "type": {
20850
- "text": "number"
21033
+ "text": "string"
20851
21034
  },
20852
21035
  "privacy": "private",
20853
- "default": "0",
21036
+ "default": "''",
20854
21037
  "inheritedFrom": {
20855
21038
  "name": "DialogElement",
20856
21039
  "module": "src/dialog/dialog.ts"
@@ -20858,12 +21041,12 @@
20858
21041
  },
20859
21042
  {
20860
21043
  "kind": "field",
20861
- "name": "startWidth",
21044
+ "name": "originalPosition",
20862
21045
  "type": {
20863
- "text": "number"
21046
+ "text": "string"
20864
21047
  },
20865
21048
  "privacy": "private",
20866
- "default": "0",
21049
+ "default": "''",
20867
21050
  "inheritedFrom": {
20868
21051
  "name": "DialogElement",
20869
21052
  "module": "src/dialog/dialog.ts"
@@ -20871,12 +21054,12 @@
20871
21054
  },
20872
21055
  {
20873
21056
  "kind": "field",
20874
- "name": "startHeight",
21057
+ "name": "originalLeft",
20875
21058
  "type": {
20876
- "text": "number"
21059
+ "text": "string"
20877
21060
  },
20878
21061
  "privacy": "private",
20879
- "default": "0",
21062
+ "default": "''",
20880
21063
  "inheritedFrom": {
20881
21064
  "name": "DialogElement",
20882
21065
  "module": "src/dialog/dialog.ts"
@@ -20884,12 +21067,12 @@
20884
21067
  },
20885
21068
  {
20886
21069
  "kind": "field",
20887
- "name": "startLeft",
21070
+ "name": "originalTop",
20888
21071
  "type": {
20889
- "text": "number"
21072
+ "text": "string"
20890
21073
  },
20891
21074
  "privacy": "private",
20892
- "default": "0",
21075
+ "default": "''",
20893
21076
  "inheritedFrom": {
20894
21077
  "name": "DialogElement",
20895
21078
  "module": "src/dialog/dialog.ts"
@@ -20897,12 +21080,12 @@
20897
21080
  },
20898
21081
  {
20899
21082
  "kind": "field",
20900
- "name": "startTop",
21083
+ "name": "originalMargin",
20901
21084
  "type": {
20902
- "text": "number"
21085
+ "text": "string"
20903
21086
  },
20904
21087
  "privacy": "private",
20905
- "default": "0",
21088
+ "default": "''",
20906
21089
  "inheritedFrom": {
20907
21090
  "name": "DialogElement",
20908
21091
  "module": "src/dialog/dialog.ts"
@@ -20910,12 +21093,12 @@
20910
21093
  },
20911
21094
  {
20912
21095
  "kind": "field",
20913
- "name": "resizeOffsetX",
21096
+ "name": "isMaximized",
20914
21097
  "type": {
20915
- "text": "number"
21098
+ "text": "boolean"
20916
21099
  },
20917
21100
  "privacy": "private",
20918
- "default": "0",
21101
+ "default": "false",
20919
21102
  "inheritedFrom": {
20920
21103
  "name": "DialogElement",
20921
21104
  "module": "src/dialog/dialog.ts"
@@ -20923,12 +21106,12 @@
20923
21106
  },
20924
21107
  {
20925
21108
  "kind": "field",
20926
- "name": "resizeOffsetY",
21109
+ "name": "hasBeenResized",
20927
21110
  "type": {
20928
- "text": "number"
21111
+ "text": "boolean"
20929
21112
  },
20930
21113
  "privacy": "private",
20931
- "default": "0",
21114
+ "default": "false",
20932
21115
  "inheritedFrom": {
20933
21116
  "name": "DialogElement",
20934
21117
  "module": "src/dialog/dialog.ts"
@@ -20936,12 +21119,12 @@
20936
21119
  },
20937
21120
  {
20938
21121
  "kind": "field",
20939
- "name": "originalWidth",
21122
+ "name": "isDragging",
20940
21123
  "type": {
20941
- "text": "string"
21124
+ "text": "boolean"
20942
21125
  },
20943
21126
  "privacy": "private",
20944
- "default": "''",
21127
+ "default": "false",
20945
21128
  "inheritedFrom": {
20946
21129
  "name": "DialogElement",
20947
21130
  "module": "src/dialog/dialog.ts"
@@ -20949,12 +21132,12 @@
20949
21132
  },
20950
21133
  {
20951
21134
  "kind": "field",
20952
- "name": "originalHeight",
21135
+ "name": "dragOffsetX",
20953
21136
  "type": {
20954
- "text": "string"
21137
+ "text": "number"
20955
21138
  },
20956
21139
  "privacy": "private",
20957
- "default": "''",
21140
+ "default": "0",
20958
21141
  "inheritedFrom": {
20959
21142
  "name": "DialogElement",
20960
21143
  "module": "src/dialog/dialog.ts"
@@ -20962,12 +21145,12 @@
20962
21145
  },
20963
21146
  {
20964
21147
  "kind": "field",
20965
- "name": "originalPosition",
21148
+ "name": "dragOffsetY",
20966
21149
  "type": {
20967
- "text": "string"
21150
+ "text": "number"
20968
21151
  },
20969
21152
  "privacy": "private",
20970
- "default": "''",
21153
+ "default": "0",
20971
21154
  "inheritedFrom": {
20972
21155
  "name": "DialogElement",
20973
21156
  "module": "src/dialog/dialog.ts"
@@ -20975,12 +21158,12 @@
20975
21158
  },
20976
21159
  {
20977
21160
  "kind": "field",
20978
- "name": "originalLeft",
21161
+ "name": "dragDialogWidth",
20979
21162
  "type": {
20980
- "text": "string"
21163
+ "text": "number"
20981
21164
  },
20982
21165
  "privacy": "private",
20983
- "default": "''",
21166
+ "default": "0",
20984
21167
  "inheritedFrom": {
20985
21168
  "name": "DialogElement",
20986
21169
  "module": "src/dialog/dialog.ts"
@@ -20988,12 +21171,12 @@
20988
21171
  },
20989
21172
  {
20990
21173
  "kind": "field",
20991
- "name": "originalTop",
21174
+ "name": "dragDialogHeight",
20992
21175
  "type": {
20993
- "text": "string"
21176
+ "text": "number"
20994
21177
  },
20995
21178
  "privacy": "private",
20996
- "default": "''",
21179
+ "default": "0",
20997
21180
  "inheritedFrom": {
20998
21181
  "name": "DialogElement",
20999
21182
  "module": "src/dialog/dialog.ts"
@@ -21001,12 +21184,12 @@
21001
21184
  },
21002
21185
  {
21003
21186
  "kind": "field",
21004
- "name": "originalMargin",
21187
+ "name": "onMouseDownBound",
21005
21188
  "type": {
21006
- "text": "string"
21189
+ "text": "((event: MouseEvent) => void) | null"
21007
21190
  },
21008
21191
  "privacy": "private",
21009
- "default": "''",
21192
+ "default": "null",
21010
21193
  "inheritedFrom": {
21011
21194
  "name": "DialogElement",
21012
21195
  "module": "src/dialog/dialog.ts"
@@ -21014,12 +21197,12 @@
21014
21197
  },
21015
21198
  {
21016
21199
  "kind": "field",
21017
- "name": "isMaximized",
21200
+ "name": "onMouseMoveBound",
21018
21201
  "type": {
21019
- "text": "boolean"
21202
+ "text": "((event: MouseEvent) => void) | null"
21020
21203
  },
21021
21204
  "privacy": "private",
21022
- "default": "false",
21205
+ "default": "null",
21023
21206
  "inheritedFrom": {
21024
21207
  "name": "DialogElement",
21025
21208
  "module": "src/dialog/dialog.ts"
@@ -21027,12 +21210,12 @@
21027
21210
  },
21028
21211
  {
21029
21212
  "kind": "field",
21030
- "name": "hasBeenResized",
21213
+ "name": "onMouseUpBound",
21031
21214
  "type": {
21032
- "text": "boolean"
21215
+ "text": "(() => void) | null"
21033
21216
  },
21034
21217
  "privacy": "private",
21035
- "default": "false",
21218
+ "default": "null",
21036
21219
  "inheritedFrom": {
21037
21220
  "name": "DialogElement",
21038
21221
  "module": "src/dialog/dialog.ts"
@@ -21219,6 +21402,129 @@
21219
21402
  "module": "src/dialog/dialog.ts"
21220
21403
  }
21221
21404
  },
21405
+ {
21406
+ "kind": "method",
21407
+ "name": "attachDragMouseDown",
21408
+ "privacy": "private",
21409
+ "inheritedFrom": {
21410
+ "name": "DialogElement",
21411
+ "module": "src/dialog/dialog.ts"
21412
+ }
21413
+ },
21414
+ {
21415
+ "kind": "method",
21416
+ "name": "detachDragMouseDown",
21417
+ "privacy": "private",
21418
+ "inheritedFrom": {
21419
+ "name": "DialogElement",
21420
+ "module": "src/dialog/dialog.ts"
21421
+ }
21422
+ },
21423
+ {
21424
+ "kind": "method",
21425
+ "name": "isEventTargetInDraggableTarget",
21426
+ "privacy": "private",
21427
+ "return": {
21428
+ "type": {
21429
+ "text": "boolean"
21430
+ }
21431
+ },
21432
+ "parameters": [
21433
+ {
21434
+ "name": "event",
21435
+ "type": {
21436
+ "text": "MouseEvent"
21437
+ }
21438
+ }
21439
+ ],
21440
+ "inheritedFrom": {
21441
+ "name": "DialogElement",
21442
+ "module": "src/dialog/dialog.ts"
21443
+ }
21444
+ },
21445
+ {
21446
+ "kind": "method",
21447
+ "name": "isInsideTopSlot",
21448
+ "privacy": "private",
21449
+ "return": {
21450
+ "type": {
21451
+ "text": "boolean"
21452
+ }
21453
+ },
21454
+ "parameters": [
21455
+ {
21456
+ "name": "target",
21457
+ "type": {
21458
+ "text": "Node"
21459
+ }
21460
+ }
21461
+ ],
21462
+ "inheritedFrom": {
21463
+ "name": "DialogElement",
21464
+ "module": "src/dialog/dialog.ts"
21465
+ }
21466
+ },
21467
+ {
21468
+ "kind": "method",
21469
+ "name": "onMouseDown",
21470
+ "privacy": "private",
21471
+ "parameters": [
21472
+ {
21473
+ "name": "event",
21474
+ "type": {
21475
+ "text": "MouseEvent"
21476
+ }
21477
+ }
21478
+ ],
21479
+ "inheritedFrom": {
21480
+ "name": "DialogElement",
21481
+ "module": "src/dialog/dialog.ts"
21482
+ }
21483
+ },
21484
+ {
21485
+ "kind": "method",
21486
+ "name": "onMouseMove",
21487
+ "privacy": "private",
21488
+ "parameters": [
21489
+ {
21490
+ "name": "event",
21491
+ "type": {
21492
+ "text": "MouseEvent"
21493
+ }
21494
+ }
21495
+ ],
21496
+ "inheritedFrom": {
21497
+ "name": "DialogElement",
21498
+ "module": "src/dialog/dialog.ts"
21499
+ }
21500
+ },
21501
+ {
21502
+ "kind": "method",
21503
+ "name": "onMouseUp",
21504
+ "privacy": "private",
21505
+ "inheritedFrom": {
21506
+ "name": "DialogElement",
21507
+ "module": "src/dialog/dialog.ts"
21508
+ }
21509
+ },
21510
+ {
21511
+ "kind": "method",
21512
+ "name": "removeDraggableEventListeners",
21513
+ "privacy": "private",
21514
+ "inheritedFrom": {
21515
+ "name": "DialogElement",
21516
+ "module": "src/dialog/dialog.ts"
21517
+ }
21518
+ },
21519
+ {
21520
+ "kind": "method",
21521
+ "name": "resetDraggableStyle",
21522
+ "privacy": "private",
21523
+ "inheritedFrom": {
21524
+ "name": "DialogElement",
21525
+ "module": "src/dialog/dialog.ts"
21526
+ }
21527
+ },
21222
21528
  {
21223
21529
  "kind": "field",
21224
21530
  "name": "_presentation",