@kubex/zinc 1.1.89 → 1.1.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +629 -502
- package/dist/vscode.html-custom-data.json +82 -57
- package/dist/web-types.json +197 -147
- package/dist/zn.d.ts +17 -1
- package/dist/zn.min.js +59 -56
- package/docs/pages/components/editor.md +0 -1
- package/package.json +1 -1
- package/src/components/absolute-container/absolute-container.component.ts +23 -4
- package/src/components/inline-edit/inline-edit.component.ts +5 -0
- package/src/components/input/input.component.ts +4 -1
- package/src/components/scroll-container/scroll-container.component.ts +31 -6
- package/src/components/slash-menu/slash-menu.component.ts +4 -1
- package/src/components/textarea/textarea.component.ts +4 -1
- package/src/components/translations/translations.component.ts +4 -0
|
@@ -17,6 +17,15 @@
|
|
|
17
17
|
}
|
|
18
18
|
],
|
|
19
19
|
"members": [
|
|
20
|
+
{
|
|
21
|
+
"kind": "field",
|
|
22
|
+
"name": "_resizeFrame",
|
|
23
|
+
"type": {
|
|
24
|
+
"text": "number | null"
|
|
25
|
+
},
|
|
26
|
+
"privacy": "private",
|
|
27
|
+
"default": "null"
|
|
28
|
+
},
|
|
20
29
|
{
|
|
21
30
|
"kind": "method",
|
|
22
31
|
"name": "resize"
|
|
@@ -47,6 +56,79 @@
|
|
|
47
56
|
}
|
|
48
57
|
]
|
|
49
58
|
},
|
|
59
|
+
{
|
|
60
|
+
"kind": "javascript-module",
|
|
61
|
+
"path": "components/action-bar/action-bar.js",
|
|
62
|
+
"declarations": [
|
|
63
|
+
{
|
|
64
|
+
"kind": "class",
|
|
65
|
+
"description": "",
|
|
66
|
+
"name": "ZnActionBar",
|
|
67
|
+
"cssProperties": [
|
|
68
|
+
{
|
|
69
|
+
"description": "An example CSS custom property.",
|
|
70
|
+
"name": "--example"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"cssParts": [
|
|
74
|
+
{
|
|
75
|
+
"description": "The component's base wrapper.",
|
|
76
|
+
"name": "base"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"slots": [
|
|
80
|
+
{
|
|
81
|
+
"description": "The default slot.",
|
|
82
|
+
"name": ""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"description": "An example slot.",
|
|
86
|
+
"name": "example"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"members": [
|
|
90
|
+
{
|
|
91
|
+
"kind": "field",
|
|
92
|
+
"name": "localize",
|
|
93
|
+
"privacy": "private",
|
|
94
|
+
"readonly": true,
|
|
95
|
+
"default": "new LocalizeController(this)"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"events": [
|
|
99
|
+
{
|
|
100
|
+
"description": "Emitted as an example.",
|
|
101
|
+
"name": "zn-event-name"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"superclass": {
|
|
105
|
+
"name": "ZincElement",
|
|
106
|
+
"module": "/src/internal/zinc-element"
|
|
107
|
+
},
|
|
108
|
+
"summary": "Short summary of the component's intended use.",
|
|
109
|
+
"tagNameWithoutPrefix": "action-bar",
|
|
110
|
+
"tagName": "zn-action-bar",
|
|
111
|
+
"customElement": true,
|
|
112
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
113
|
+
"documentation": "https://zinc.style/components/action-bar",
|
|
114
|
+
"status": "experimental",
|
|
115
|
+
"since": "1.0",
|
|
116
|
+
"dependencies": [
|
|
117
|
+
"zn-example"
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"exports": [
|
|
122
|
+
{
|
|
123
|
+
"kind": "js",
|
|
124
|
+
"name": "default",
|
|
125
|
+
"declaration": {
|
|
126
|
+
"name": "ZnActionBar",
|
|
127
|
+
"module": "components/action-bar/action-bar.js"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
50
132
|
{
|
|
51
133
|
"kind": "javascript-module",
|
|
52
134
|
"path": "components/alert/alert.js",
|
|
@@ -241,79 +323,6 @@
|
|
|
241
323
|
}
|
|
242
324
|
]
|
|
243
325
|
},
|
|
244
|
-
{
|
|
245
|
-
"kind": "javascript-module",
|
|
246
|
-
"path": "components/action-bar/action-bar.js",
|
|
247
|
-
"declarations": [
|
|
248
|
-
{
|
|
249
|
-
"kind": "class",
|
|
250
|
-
"description": "",
|
|
251
|
-
"name": "ZnActionBar",
|
|
252
|
-
"cssProperties": [
|
|
253
|
-
{
|
|
254
|
-
"description": "An example CSS custom property.",
|
|
255
|
-
"name": "--example"
|
|
256
|
-
}
|
|
257
|
-
],
|
|
258
|
-
"cssParts": [
|
|
259
|
-
{
|
|
260
|
-
"description": "The component's base wrapper.",
|
|
261
|
-
"name": "base"
|
|
262
|
-
}
|
|
263
|
-
],
|
|
264
|
-
"slots": [
|
|
265
|
-
{
|
|
266
|
-
"description": "The default slot.",
|
|
267
|
-
"name": ""
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"description": "An example slot.",
|
|
271
|
-
"name": "example"
|
|
272
|
-
}
|
|
273
|
-
],
|
|
274
|
-
"members": [
|
|
275
|
-
{
|
|
276
|
-
"kind": "field",
|
|
277
|
-
"name": "localize",
|
|
278
|
-
"privacy": "private",
|
|
279
|
-
"readonly": true,
|
|
280
|
-
"default": "new LocalizeController(this)"
|
|
281
|
-
}
|
|
282
|
-
],
|
|
283
|
-
"events": [
|
|
284
|
-
{
|
|
285
|
-
"description": "Emitted as an example.",
|
|
286
|
-
"name": "zn-event-name"
|
|
287
|
-
}
|
|
288
|
-
],
|
|
289
|
-
"superclass": {
|
|
290
|
-
"name": "ZincElement",
|
|
291
|
-
"module": "/src/internal/zinc-element"
|
|
292
|
-
},
|
|
293
|
-
"summary": "Short summary of the component's intended use.",
|
|
294
|
-
"tagNameWithoutPrefix": "action-bar",
|
|
295
|
-
"tagName": "zn-action-bar",
|
|
296
|
-
"customElement": true,
|
|
297
|
-
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
298
|
-
"documentation": "https://zinc.style/components/action-bar",
|
|
299
|
-
"status": "experimental",
|
|
300
|
-
"since": "1.0",
|
|
301
|
-
"dependencies": [
|
|
302
|
-
"zn-example"
|
|
303
|
-
]
|
|
304
|
-
}
|
|
305
|
-
],
|
|
306
|
-
"exports": [
|
|
307
|
-
{
|
|
308
|
-
"kind": "js",
|
|
309
|
-
"name": "default",
|
|
310
|
-
"declaration": {
|
|
311
|
-
"name": "ZnActionBar",
|
|
312
|
-
"module": "components/action-bar/action-bar.js"
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
]
|
|
316
|
-
},
|
|
317
326
|
{
|
|
318
327
|
"kind": "javascript-module",
|
|
319
328
|
"path": "components/animated-button/animated-button.js",
|
|
@@ -11337,6 +11346,432 @@
|
|
|
11337
11346
|
}
|
|
11338
11347
|
]
|
|
11339
11348
|
},
|
|
11349
|
+
{
|
|
11350
|
+
"kind": "javascript-module",
|
|
11351
|
+
"path": "components/dropdown/dropdown.js",
|
|
11352
|
+
"declarations": [
|
|
11353
|
+
{
|
|
11354
|
+
"kind": "class",
|
|
11355
|
+
"description": "",
|
|
11356
|
+
"name": "ZnDropdown",
|
|
11357
|
+
"cssProperties": [
|
|
11358
|
+
{
|
|
11359
|
+
"description": "An example CSS custom property.",
|
|
11360
|
+
"name": "--example"
|
|
11361
|
+
}
|
|
11362
|
+
],
|
|
11363
|
+
"cssParts": [
|
|
11364
|
+
{
|
|
11365
|
+
"description": "The component's base wrapper.",
|
|
11366
|
+
"name": "base"
|
|
11367
|
+
}
|
|
11368
|
+
],
|
|
11369
|
+
"slots": [
|
|
11370
|
+
{
|
|
11371
|
+
"description": "The default slot.",
|
|
11372
|
+
"name": ""
|
|
11373
|
+
},
|
|
11374
|
+
{
|
|
11375
|
+
"description": "An example slot.",
|
|
11376
|
+
"name": "example"
|
|
11377
|
+
}
|
|
11378
|
+
],
|
|
11379
|
+
"members": [
|
|
11380
|
+
{
|
|
11381
|
+
"kind": "field",
|
|
11382
|
+
"name": "popup",
|
|
11383
|
+
"type": {
|
|
11384
|
+
"text": "ZnPopup"
|
|
11385
|
+
}
|
|
11386
|
+
},
|
|
11387
|
+
{
|
|
11388
|
+
"kind": "field",
|
|
11389
|
+
"name": "trigger",
|
|
11390
|
+
"type": {
|
|
11391
|
+
"text": "HTMLSlotElement"
|
|
11392
|
+
}
|
|
11393
|
+
},
|
|
11394
|
+
{
|
|
11395
|
+
"kind": "field",
|
|
11396
|
+
"name": "panel",
|
|
11397
|
+
"type": {
|
|
11398
|
+
"text": "HTMLSlotElement"
|
|
11399
|
+
}
|
|
11400
|
+
},
|
|
11401
|
+
{
|
|
11402
|
+
"kind": "field",
|
|
11403
|
+
"name": "closeWatcher",
|
|
11404
|
+
"type": {
|
|
11405
|
+
"text": "CloseWatcher | null"
|
|
11406
|
+
},
|
|
11407
|
+
"privacy": "private"
|
|
11408
|
+
},
|
|
11409
|
+
{
|
|
11410
|
+
"kind": "field",
|
|
11411
|
+
"name": "open",
|
|
11412
|
+
"type": {
|
|
11413
|
+
"text": "boolean"
|
|
11414
|
+
},
|
|
11415
|
+
"default": "false",
|
|
11416
|
+
"description": "Indicates whether the dropdown is open",
|
|
11417
|
+
"attribute": "open",
|
|
11418
|
+
"reflects": true
|
|
11419
|
+
},
|
|
11420
|
+
{
|
|
11421
|
+
"kind": "field",
|
|
11422
|
+
"name": "placement",
|
|
11423
|
+
"type": {
|
|
11424
|
+
"text": "'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' |\n 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
11425
|
+
},
|
|
11426
|
+
"default": "'bottom-start'",
|
|
11427
|
+
"description": "The placement of the dropdown. Note the actual placement may vary based on the available space",
|
|
11428
|
+
"attribute": "placement",
|
|
11429
|
+
"reflects": true
|
|
11430
|
+
},
|
|
11431
|
+
{
|
|
11432
|
+
"kind": "field",
|
|
11433
|
+
"name": "disabled",
|
|
11434
|
+
"type": {
|
|
11435
|
+
"text": "boolean"
|
|
11436
|
+
},
|
|
11437
|
+
"default": "false",
|
|
11438
|
+
"description": "Disable the dropdown",
|
|
11439
|
+
"attribute": "disabled",
|
|
11440
|
+
"reflects": true
|
|
11441
|
+
},
|
|
11442
|
+
{
|
|
11443
|
+
"kind": "field",
|
|
11444
|
+
"name": "stayOpenOnSelect",
|
|
11445
|
+
"type": {
|
|
11446
|
+
"text": "boolean"
|
|
11447
|
+
},
|
|
11448
|
+
"default": "false",
|
|
11449
|
+
"description": "By default, the dropdown will close when an item is selected. Set this to true to keep the dropdown open",
|
|
11450
|
+
"attribute": "stay-open-on-select",
|
|
11451
|
+
"reflects": true
|
|
11452
|
+
},
|
|
11453
|
+
{
|
|
11454
|
+
"kind": "field",
|
|
11455
|
+
"name": "containingElement",
|
|
11456
|
+
"type": {
|
|
11457
|
+
"text": "HTMLElement | undefined"
|
|
11458
|
+
},
|
|
11459
|
+
"description": "The dropdown will close when the user interacts outside the element*"
|
|
11460
|
+
},
|
|
11461
|
+
{
|
|
11462
|
+
"kind": "field",
|
|
11463
|
+
"name": "distance",
|
|
11464
|
+
"type": {
|
|
11465
|
+
"text": "number"
|
|
11466
|
+
},
|
|
11467
|
+
"default": "0",
|
|
11468
|
+
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
11469
|
+
"attribute": "distance"
|
|
11470
|
+
},
|
|
11471
|
+
{
|
|
11472
|
+
"kind": "field",
|
|
11473
|
+
"name": "skidding",
|
|
11474
|
+
"type": {
|
|
11475
|
+
"text": "number"
|
|
11476
|
+
},
|
|
11477
|
+
"default": "0",
|
|
11478
|
+
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
11479
|
+
"attribute": "skidding"
|
|
11480
|
+
},
|
|
11481
|
+
{
|
|
11482
|
+
"kind": "field",
|
|
11483
|
+
"name": "hoist",
|
|
11484
|
+
"type": {
|
|
11485
|
+
"text": "boolean"
|
|
11486
|
+
},
|
|
11487
|
+
"default": "true",
|
|
11488
|
+
"description": "Enable this option if the parent is overflow hidden and the dropdown is not visible",
|
|
11489
|
+
"attribute": "hoist"
|
|
11490
|
+
},
|
|
11491
|
+
{
|
|
11492
|
+
"kind": "field",
|
|
11493
|
+
"name": "sync",
|
|
11494
|
+
"type": {
|
|
11495
|
+
"text": "'width' | 'height' | 'both' | undefined"
|
|
11496
|
+
},
|
|
11497
|
+
"default": "undefined",
|
|
11498
|
+
"description": "Syncs the popup width or height with the trigger element",
|
|
11499
|
+
"attribute": "sync",
|
|
11500
|
+
"reflects": true
|
|
11501
|
+
},
|
|
11502
|
+
{
|
|
11503
|
+
"kind": "field",
|
|
11504
|
+
"name": "uri",
|
|
11505
|
+
"type": {
|
|
11506
|
+
"text": "string"
|
|
11507
|
+
},
|
|
11508
|
+
"attribute": "uri"
|
|
11509
|
+
},
|
|
11510
|
+
{
|
|
11511
|
+
"kind": "field",
|
|
11512
|
+
"name": "fetchedContent",
|
|
11513
|
+
"type": {
|
|
11514
|
+
"text": "string"
|
|
11515
|
+
},
|
|
11516
|
+
"default": "''",
|
|
11517
|
+
"attribute": "fetchedContent"
|
|
11518
|
+
},
|
|
11519
|
+
{
|
|
11520
|
+
"kind": "method",
|
|
11521
|
+
"name": "focusOnTrigger",
|
|
11522
|
+
"privacy": "public"
|
|
11523
|
+
},
|
|
11524
|
+
{
|
|
11525
|
+
"kind": "method",
|
|
11526
|
+
"name": "getMenu",
|
|
11527
|
+
"privacy": "private"
|
|
11528
|
+
},
|
|
11529
|
+
{
|
|
11530
|
+
"kind": "method",
|
|
11531
|
+
"name": "addOpenListeners",
|
|
11532
|
+
"privacy": "private"
|
|
11533
|
+
},
|
|
11534
|
+
{
|
|
11535
|
+
"kind": "method",
|
|
11536
|
+
"name": "removeOpenListeners",
|
|
11537
|
+
"privacy": "private"
|
|
11538
|
+
},
|
|
11539
|
+
{
|
|
11540
|
+
"kind": "field",
|
|
11541
|
+
"name": "handlePanelSelect",
|
|
11542
|
+
"description": "Events"
|
|
11543
|
+
},
|
|
11544
|
+
{
|
|
11545
|
+
"kind": "method",
|
|
11546
|
+
"name": "preloadContent",
|
|
11547
|
+
"privacy": "private"
|
|
11548
|
+
},
|
|
11549
|
+
{
|
|
11550
|
+
"kind": "field",
|
|
11551
|
+
"name": "handlePreload",
|
|
11552
|
+
"privacy": "private"
|
|
11553
|
+
},
|
|
11554
|
+
{
|
|
11555
|
+
"kind": "method",
|
|
11556
|
+
"name": "handleTriggerClick"
|
|
11557
|
+
},
|
|
11558
|
+
{
|
|
11559
|
+
"kind": "method",
|
|
11560
|
+
"name": "handleKeyDown",
|
|
11561
|
+
"parameters": [
|
|
11562
|
+
{
|
|
11563
|
+
"name": "event",
|
|
11564
|
+
"type": {
|
|
11565
|
+
"text": "KeyboardEvent"
|
|
11566
|
+
}
|
|
11567
|
+
}
|
|
11568
|
+
]
|
|
11569
|
+
},
|
|
11570
|
+
{
|
|
11571
|
+
"kind": "method",
|
|
11572
|
+
"name": "handleTriggerKeyDown",
|
|
11573
|
+
"privacy": "private",
|
|
11574
|
+
"parameters": [
|
|
11575
|
+
{
|
|
11576
|
+
"name": "event",
|
|
11577
|
+
"type": {
|
|
11578
|
+
"text": "KeyboardEvent"
|
|
11579
|
+
}
|
|
11580
|
+
}
|
|
11581
|
+
]
|
|
11582
|
+
},
|
|
11583
|
+
{
|
|
11584
|
+
"kind": "method",
|
|
11585
|
+
"name": "handleTriggerKeyUp",
|
|
11586
|
+
"privacy": "private",
|
|
11587
|
+
"parameters": [
|
|
11588
|
+
{
|
|
11589
|
+
"name": "event",
|
|
11590
|
+
"type": {
|
|
11591
|
+
"text": "KeyboardEvent"
|
|
11592
|
+
}
|
|
11593
|
+
}
|
|
11594
|
+
]
|
|
11595
|
+
},
|
|
11596
|
+
{
|
|
11597
|
+
"kind": "method",
|
|
11598
|
+
"name": "handleTriggerSlotChange",
|
|
11599
|
+
"privacy": "private"
|
|
11600
|
+
},
|
|
11601
|
+
{
|
|
11602
|
+
"kind": "method",
|
|
11603
|
+
"name": "handleDocumentMouseDown",
|
|
11604
|
+
"privacy": "private",
|
|
11605
|
+
"parameters": [
|
|
11606
|
+
{
|
|
11607
|
+
"name": "event",
|
|
11608
|
+
"type": {
|
|
11609
|
+
"text": "MouseEvent"
|
|
11610
|
+
}
|
|
11611
|
+
}
|
|
11612
|
+
]
|
|
11613
|
+
},
|
|
11614
|
+
{
|
|
11615
|
+
"kind": "method",
|
|
11616
|
+
"name": "handleDocumentKeyDown",
|
|
11617
|
+
"parameters": [
|
|
11618
|
+
{
|
|
11619
|
+
"name": "event",
|
|
11620
|
+
"type": {
|
|
11621
|
+
"text": "KeyboardEvent"
|
|
11622
|
+
}
|
|
11623
|
+
}
|
|
11624
|
+
]
|
|
11625
|
+
},
|
|
11626
|
+
{
|
|
11627
|
+
"kind": "method",
|
|
11628
|
+
"name": "show",
|
|
11629
|
+
"description": "Opens the dropdown"
|
|
11630
|
+
},
|
|
11631
|
+
{
|
|
11632
|
+
"kind": "method",
|
|
11633
|
+
"name": "hide",
|
|
11634
|
+
"description": "Closes the dropdown"
|
|
11635
|
+
},
|
|
11636
|
+
{
|
|
11637
|
+
"kind": "method",
|
|
11638
|
+
"name": "reposition",
|
|
11639
|
+
"description": "Instructs the dropdown to reposition itself"
|
|
11640
|
+
},
|
|
11641
|
+
{
|
|
11642
|
+
"kind": "method",
|
|
11643
|
+
"name": "updateAccessibleTrigger",
|
|
11644
|
+
"privacy": "private",
|
|
11645
|
+
"description": "Aria related method"
|
|
11646
|
+
},
|
|
11647
|
+
{
|
|
11648
|
+
"kind": "method",
|
|
11649
|
+
"name": "handleOpenChange"
|
|
11650
|
+
}
|
|
11651
|
+
],
|
|
11652
|
+
"events": [
|
|
11653
|
+
{
|
|
11654
|
+
"description": "Emitted as an example.",
|
|
11655
|
+
"name": "zn-event-name"
|
|
11656
|
+
}
|
|
11657
|
+
],
|
|
11658
|
+
"attributes": [
|
|
11659
|
+
{
|
|
11660
|
+
"name": "open",
|
|
11661
|
+
"type": {
|
|
11662
|
+
"text": "boolean"
|
|
11663
|
+
},
|
|
11664
|
+
"default": "false",
|
|
11665
|
+
"description": "Indicates whether the dropdown is open",
|
|
11666
|
+
"fieldName": "open"
|
|
11667
|
+
},
|
|
11668
|
+
{
|
|
11669
|
+
"name": "placement",
|
|
11670
|
+
"type": {
|
|
11671
|
+
"text": "'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' |\n 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
11672
|
+
},
|
|
11673
|
+
"default": "'bottom-start'",
|
|
11674
|
+
"description": "The placement of the dropdown. Note the actual placement may vary based on the available space",
|
|
11675
|
+
"fieldName": "placement"
|
|
11676
|
+
},
|
|
11677
|
+
{
|
|
11678
|
+
"name": "disabled",
|
|
11679
|
+
"type": {
|
|
11680
|
+
"text": "boolean"
|
|
11681
|
+
},
|
|
11682
|
+
"default": "false",
|
|
11683
|
+
"description": "Disable the dropdown",
|
|
11684
|
+
"fieldName": "disabled"
|
|
11685
|
+
},
|
|
11686
|
+
{
|
|
11687
|
+
"name": "stay-open-on-select",
|
|
11688
|
+
"type": {
|
|
11689
|
+
"text": "boolean"
|
|
11690
|
+
},
|
|
11691
|
+
"default": "false",
|
|
11692
|
+
"description": "By default, the dropdown will close when an item is selected. Set this to true to keep the dropdown open",
|
|
11693
|
+
"fieldName": "stayOpenOnSelect"
|
|
11694
|
+
},
|
|
11695
|
+
{
|
|
11696
|
+
"name": "distance",
|
|
11697
|
+
"type": {
|
|
11698
|
+
"text": "number"
|
|
11699
|
+
},
|
|
11700
|
+
"default": "0",
|
|
11701
|
+
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
11702
|
+
"fieldName": "distance"
|
|
11703
|
+
},
|
|
11704
|
+
{
|
|
11705
|
+
"name": "skidding",
|
|
11706
|
+
"type": {
|
|
11707
|
+
"text": "number"
|
|
11708
|
+
},
|
|
11709
|
+
"default": "0",
|
|
11710
|
+
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
11711
|
+
"fieldName": "skidding"
|
|
11712
|
+
},
|
|
11713
|
+
{
|
|
11714
|
+
"name": "hoist",
|
|
11715
|
+
"type": {
|
|
11716
|
+
"text": "boolean"
|
|
11717
|
+
},
|
|
11718
|
+
"default": "true",
|
|
11719
|
+
"description": "Enable this option if the parent is overflow hidden and the dropdown is not visible",
|
|
11720
|
+
"fieldName": "hoist"
|
|
11721
|
+
},
|
|
11722
|
+
{
|
|
11723
|
+
"name": "sync",
|
|
11724
|
+
"type": {
|
|
11725
|
+
"text": "'width' | 'height' | 'both' | undefined"
|
|
11726
|
+
},
|
|
11727
|
+
"default": "undefined",
|
|
11728
|
+
"description": "Syncs the popup width or height with the trigger element",
|
|
11729
|
+
"fieldName": "sync"
|
|
11730
|
+
},
|
|
11731
|
+
{
|
|
11732
|
+
"name": "uri",
|
|
11733
|
+
"type": {
|
|
11734
|
+
"text": "string"
|
|
11735
|
+
},
|
|
11736
|
+
"fieldName": "uri"
|
|
11737
|
+
},
|
|
11738
|
+
{
|
|
11739
|
+
"name": "fetchedContent",
|
|
11740
|
+
"type": {
|
|
11741
|
+
"text": "string"
|
|
11742
|
+
},
|
|
11743
|
+
"default": "''",
|
|
11744
|
+
"fieldName": "fetchedContent"
|
|
11745
|
+
}
|
|
11746
|
+
],
|
|
11747
|
+
"superclass": {
|
|
11748
|
+
"name": "ZincElement",
|
|
11749
|
+
"module": "/src/internal/zinc-element"
|
|
11750
|
+
},
|
|
11751
|
+
"summary": "Short summary of the component's intended use.",
|
|
11752
|
+
"tagNameWithoutPrefix": "dropdown",
|
|
11753
|
+
"tagName": "zn-dropdown",
|
|
11754
|
+
"customElement": true,
|
|
11755
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/dropdown\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
11756
|
+
"documentation": "https://zinc.style/components/dropdown",
|
|
11757
|
+
"status": "experimental",
|
|
11758
|
+
"since": "1.0",
|
|
11759
|
+
"dependencies": [
|
|
11760
|
+
"zn-example"
|
|
11761
|
+
]
|
|
11762
|
+
}
|
|
11763
|
+
],
|
|
11764
|
+
"exports": [
|
|
11765
|
+
{
|
|
11766
|
+
"kind": "js",
|
|
11767
|
+
"name": "default",
|
|
11768
|
+
"declaration": {
|
|
11769
|
+
"name": "ZnDropdown",
|
|
11770
|
+
"module": "components/dropdown/dropdown.js"
|
|
11771
|
+
}
|
|
11772
|
+
}
|
|
11773
|
+
]
|
|
11774
|
+
},
|
|
11340
11775
|
{
|
|
11341
11776
|
"kind": "javascript-module",
|
|
11342
11777
|
"path": "components/editor/editor.js",
|
|
@@ -11947,432 +12382,6 @@
|
|
|
11947
12382
|
}
|
|
11948
12383
|
]
|
|
11949
12384
|
},
|
|
11950
|
-
{
|
|
11951
|
-
"kind": "javascript-module",
|
|
11952
|
-
"path": "components/dropdown/dropdown.js",
|
|
11953
|
-
"declarations": [
|
|
11954
|
-
{
|
|
11955
|
-
"kind": "class",
|
|
11956
|
-
"description": "",
|
|
11957
|
-
"name": "ZnDropdown",
|
|
11958
|
-
"cssProperties": [
|
|
11959
|
-
{
|
|
11960
|
-
"description": "An example CSS custom property.",
|
|
11961
|
-
"name": "--example"
|
|
11962
|
-
}
|
|
11963
|
-
],
|
|
11964
|
-
"cssParts": [
|
|
11965
|
-
{
|
|
11966
|
-
"description": "The component's base wrapper.",
|
|
11967
|
-
"name": "base"
|
|
11968
|
-
}
|
|
11969
|
-
],
|
|
11970
|
-
"slots": [
|
|
11971
|
-
{
|
|
11972
|
-
"description": "The default slot.",
|
|
11973
|
-
"name": ""
|
|
11974
|
-
},
|
|
11975
|
-
{
|
|
11976
|
-
"description": "An example slot.",
|
|
11977
|
-
"name": "example"
|
|
11978
|
-
}
|
|
11979
|
-
],
|
|
11980
|
-
"members": [
|
|
11981
|
-
{
|
|
11982
|
-
"kind": "field",
|
|
11983
|
-
"name": "popup",
|
|
11984
|
-
"type": {
|
|
11985
|
-
"text": "ZnPopup"
|
|
11986
|
-
}
|
|
11987
|
-
},
|
|
11988
|
-
{
|
|
11989
|
-
"kind": "field",
|
|
11990
|
-
"name": "trigger",
|
|
11991
|
-
"type": {
|
|
11992
|
-
"text": "HTMLSlotElement"
|
|
11993
|
-
}
|
|
11994
|
-
},
|
|
11995
|
-
{
|
|
11996
|
-
"kind": "field",
|
|
11997
|
-
"name": "panel",
|
|
11998
|
-
"type": {
|
|
11999
|
-
"text": "HTMLSlotElement"
|
|
12000
|
-
}
|
|
12001
|
-
},
|
|
12002
|
-
{
|
|
12003
|
-
"kind": "field",
|
|
12004
|
-
"name": "closeWatcher",
|
|
12005
|
-
"type": {
|
|
12006
|
-
"text": "CloseWatcher | null"
|
|
12007
|
-
},
|
|
12008
|
-
"privacy": "private"
|
|
12009
|
-
},
|
|
12010
|
-
{
|
|
12011
|
-
"kind": "field",
|
|
12012
|
-
"name": "open",
|
|
12013
|
-
"type": {
|
|
12014
|
-
"text": "boolean"
|
|
12015
|
-
},
|
|
12016
|
-
"default": "false",
|
|
12017
|
-
"description": "Indicates whether the dropdown is open",
|
|
12018
|
-
"attribute": "open",
|
|
12019
|
-
"reflects": true
|
|
12020
|
-
},
|
|
12021
|
-
{
|
|
12022
|
-
"kind": "field",
|
|
12023
|
-
"name": "placement",
|
|
12024
|
-
"type": {
|
|
12025
|
-
"text": "'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' |\n 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
12026
|
-
},
|
|
12027
|
-
"default": "'bottom-start'",
|
|
12028
|
-
"description": "The placement of the dropdown. Note the actual placement may vary based on the available space",
|
|
12029
|
-
"attribute": "placement",
|
|
12030
|
-
"reflects": true
|
|
12031
|
-
},
|
|
12032
|
-
{
|
|
12033
|
-
"kind": "field",
|
|
12034
|
-
"name": "disabled",
|
|
12035
|
-
"type": {
|
|
12036
|
-
"text": "boolean"
|
|
12037
|
-
},
|
|
12038
|
-
"default": "false",
|
|
12039
|
-
"description": "Disable the dropdown",
|
|
12040
|
-
"attribute": "disabled",
|
|
12041
|
-
"reflects": true
|
|
12042
|
-
},
|
|
12043
|
-
{
|
|
12044
|
-
"kind": "field",
|
|
12045
|
-
"name": "stayOpenOnSelect",
|
|
12046
|
-
"type": {
|
|
12047
|
-
"text": "boolean"
|
|
12048
|
-
},
|
|
12049
|
-
"default": "false",
|
|
12050
|
-
"description": "By default, the dropdown will close when an item is selected. Set this to true to keep the dropdown open",
|
|
12051
|
-
"attribute": "stay-open-on-select",
|
|
12052
|
-
"reflects": true
|
|
12053
|
-
},
|
|
12054
|
-
{
|
|
12055
|
-
"kind": "field",
|
|
12056
|
-
"name": "containingElement",
|
|
12057
|
-
"type": {
|
|
12058
|
-
"text": "HTMLElement | undefined"
|
|
12059
|
-
},
|
|
12060
|
-
"description": "The dropdown will close when the user interacts outside the element*"
|
|
12061
|
-
},
|
|
12062
|
-
{
|
|
12063
|
-
"kind": "field",
|
|
12064
|
-
"name": "distance",
|
|
12065
|
-
"type": {
|
|
12066
|
-
"text": "number"
|
|
12067
|
-
},
|
|
12068
|
-
"default": "0",
|
|
12069
|
-
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
12070
|
-
"attribute": "distance"
|
|
12071
|
-
},
|
|
12072
|
-
{
|
|
12073
|
-
"kind": "field",
|
|
12074
|
-
"name": "skidding",
|
|
12075
|
-
"type": {
|
|
12076
|
-
"text": "number"
|
|
12077
|
-
},
|
|
12078
|
-
"default": "0",
|
|
12079
|
-
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
12080
|
-
"attribute": "skidding"
|
|
12081
|
-
},
|
|
12082
|
-
{
|
|
12083
|
-
"kind": "field",
|
|
12084
|
-
"name": "hoist",
|
|
12085
|
-
"type": {
|
|
12086
|
-
"text": "boolean"
|
|
12087
|
-
},
|
|
12088
|
-
"default": "true",
|
|
12089
|
-
"description": "Enable this option if the parent is overflow hidden and the dropdown is not visible",
|
|
12090
|
-
"attribute": "hoist"
|
|
12091
|
-
},
|
|
12092
|
-
{
|
|
12093
|
-
"kind": "field",
|
|
12094
|
-
"name": "sync",
|
|
12095
|
-
"type": {
|
|
12096
|
-
"text": "'width' | 'height' | 'both' | undefined"
|
|
12097
|
-
},
|
|
12098
|
-
"default": "undefined",
|
|
12099
|
-
"description": "Syncs the popup width or height with the trigger element",
|
|
12100
|
-
"attribute": "sync",
|
|
12101
|
-
"reflects": true
|
|
12102
|
-
},
|
|
12103
|
-
{
|
|
12104
|
-
"kind": "field",
|
|
12105
|
-
"name": "uri",
|
|
12106
|
-
"type": {
|
|
12107
|
-
"text": "string"
|
|
12108
|
-
},
|
|
12109
|
-
"attribute": "uri"
|
|
12110
|
-
},
|
|
12111
|
-
{
|
|
12112
|
-
"kind": "field",
|
|
12113
|
-
"name": "fetchedContent",
|
|
12114
|
-
"type": {
|
|
12115
|
-
"text": "string"
|
|
12116
|
-
},
|
|
12117
|
-
"default": "''",
|
|
12118
|
-
"attribute": "fetchedContent"
|
|
12119
|
-
},
|
|
12120
|
-
{
|
|
12121
|
-
"kind": "method",
|
|
12122
|
-
"name": "focusOnTrigger",
|
|
12123
|
-
"privacy": "public"
|
|
12124
|
-
},
|
|
12125
|
-
{
|
|
12126
|
-
"kind": "method",
|
|
12127
|
-
"name": "getMenu",
|
|
12128
|
-
"privacy": "private"
|
|
12129
|
-
},
|
|
12130
|
-
{
|
|
12131
|
-
"kind": "method",
|
|
12132
|
-
"name": "addOpenListeners",
|
|
12133
|
-
"privacy": "private"
|
|
12134
|
-
},
|
|
12135
|
-
{
|
|
12136
|
-
"kind": "method",
|
|
12137
|
-
"name": "removeOpenListeners",
|
|
12138
|
-
"privacy": "private"
|
|
12139
|
-
},
|
|
12140
|
-
{
|
|
12141
|
-
"kind": "field",
|
|
12142
|
-
"name": "handlePanelSelect",
|
|
12143
|
-
"description": "Events"
|
|
12144
|
-
},
|
|
12145
|
-
{
|
|
12146
|
-
"kind": "method",
|
|
12147
|
-
"name": "preloadContent",
|
|
12148
|
-
"privacy": "private"
|
|
12149
|
-
},
|
|
12150
|
-
{
|
|
12151
|
-
"kind": "field",
|
|
12152
|
-
"name": "handlePreload",
|
|
12153
|
-
"privacy": "private"
|
|
12154
|
-
},
|
|
12155
|
-
{
|
|
12156
|
-
"kind": "method",
|
|
12157
|
-
"name": "handleTriggerClick"
|
|
12158
|
-
},
|
|
12159
|
-
{
|
|
12160
|
-
"kind": "method",
|
|
12161
|
-
"name": "handleKeyDown",
|
|
12162
|
-
"parameters": [
|
|
12163
|
-
{
|
|
12164
|
-
"name": "event",
|
|
12165
|
-
"type": {
|
|
12166
|
-
"text": "KeyboardEvent"
|
|
12167
|
-
}
|
|
12168
|
-
}
|
|
12169
|
-
]
|
|
12170
|
-
},
|
|
12171
|
-
{
|
|
12172
|
-
"kind": "method",
|
|
12173
|
-
"name": "handleTriggerKeyDown",
|
|
12174
|
-
"privacy": "private",
|
|
12175
|
-
"parameters": [
|
|
12176
|
-
{
|
|
12177
|
-
"name": "event",
|
|
12178
|
-
"type": {
|
|
12179
|
-
"text": "KeyboardEvent"
|
|
12180
|
-
}
|
|
12181
|
-
}
|
|
12182
|
-
]
|
|
12183
|
-
},
|
|
12184
|
-
{
|
|
12185
|
-
"kind": "method",
|
|
12186
|
-
"name": "handleTriggerKeyUp",
|
|
12187
|
-
"privacy": "private",
|
|
12188
|
-
"parameters": [
|
|
12189
|
-
{
|
|
12190
|
-
"name": "event",
|
|
12191
|
-
"type": {
|
|
12192
|
-
"text": "KeyboardEvent"
|
|
12193
|
-
}
|
|
12194
|
-
}
|
|
12195
|
-
]
|
|
12196
|
-
},
|
|
12197
|
-
{
|
|
12198
|
-
"kind": "method",
|
|
12199
|
-
"name": "handleTriggerSlotChange",
|
|
12200
|
-
"privacy": "private"
|
|
12201
|
-
},
|
|
12202
|
-
{
|
|
12203
|
-
"kind": "method",
|
|
12204
|
-
"name": "handleDocumentMouseDown",
|
|
12205
|
-
"privacy": "private",
|
|
12206
|
-
"parameters": [
|
|
12207
|
-
{
|
|
12208
|
-
"name": "event",
|
|
12209
|
-
"type": {
|
|
12210
|
-
"text": "MouseEvent"
|
|
12211
|
-
}
|
|
12212
|
-
}
|
|
12213
|
-
]
|
|
12214
|
-
},
|
|
12215
|
-
{
|
|
12216
|
-
"kind": "method",
|
|
12217
|
-
"name": "handleDocumentKeyDown",
|
|
12218
|
-
"parameters": [
|
|
12219
|
-
{
|
|
12220
|
-
"name": "event",
|
|
12221
|
-
"type": {
|
|
12222
|
-
"text": "KeyboardEvent"
|
|
12223
|
-
}
|
|
12224
|
-
}
|
|
12225
|
-
]
|
|
12226
|
-
},
|
|
12227
|
-
{
|
|
12228
|
-
"kind": "method",
|
|
12229
|
-
"name": "show",
|
|
12230
|
-
"description": "Opens the dropdown"
|
|
12231
|
-
},
|
|
12232
|
-
{
|
|
12233
|
-
"kind": "method",
|
|
12234
|
-
"name": "hide",
|
|
12235
|
-
"description": "Closes the dropdown"
|
|
12236
|
-
},
|
|
12237
|
-
{
|
|
12238
|
-
"kind": "method",
|
|
12239
|
-
"name": "reposition",
|
|
12240
|
-
"description": "Instructs the dropdown to reposition itself"
|
|
12241
|
-
},
|
|
12242
|
-
{
|
|
12243
|
-
"kind": "method",
|
|
12244
|
-
"name": "updateAccessibleTrigger",
|
|
12245
|
-
"privacy": "private",
|
|
12246
|
-
"description": "Aria related method"
|
|
12247
|
-
},
|
|
12248
|
-
{
|
|
12249
|
-
"kind": "method",
|
|
12250
|
-
"name": "handleOpenChange"
|
|
12251
|
-
}
|
|
12252
|
-
],
|
|
12253
|
-
"events": [
|
|
12254
|
-
{
|
|
12255
|
-
"description": "Emitted as an example.",
|
|
12256
|
-
"name": "zn-event-name"
|
|
12257
|
-
}
|
|
12258
|
-
],
|
|
12259
|
-
"attributes": [
|
|
12260
|
-
{
|
|
12261
|
-
"name": "open",
|
|
12262
|
-
"type": {
|
|
12263
|
-
"text": "boolean"
|
|
12264
|
-
},
|
|
12265
|
-
"default": "false",
|
|
12266
|
-
"description": "Indicates whether the dropdown is open",
|
|
12267
|
-
"fieldName": "open"
|
|
12268
|
-
},
|
|
12269
|
-
{
|
|
12270
|
-
"name": "placement",
|
|
12271
|
-
"type": {
|
|
12272
|
-
"text": "'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' |\n 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
12273
|
-
},
|
|
12274
|
-
"default": "'bottom-start'",
|
|
12275
|
-
"description": "The placement of the dropdown. Note the actual placement may vary based on the available space",
|
|
12276
|
-
"fieldName": "placement"
|
|
12277
|
-
},
|
|
12278
|
-
{
|
|
12279
|
-
"name": "disabled",
|
|
12280
|
-
"type": {
|
|
12281
|
-
"text": "boolean"
|
|
12282
|
-
},
|
|
12283
|
-
"default": "false",
|
|
12284
|
-
"description": "Disable the dropdown",
|
|
12285
|
-
"fieldName": "disabled"
|
|
12286
|
-
},
|
|
12287
|
-
{
|
|
12288
|
-
"name": "stay-open-on-select",
|
|
12289
|
-
"type": {
|
|
12290
|
-
"text": "boolean"
|
|
12291
|
-
},
|
|
12292
|
-
"default": "false",
|
|
12293
|
-
"description": "By default, the dropdown will close when an item is selected. Set this to true to keep the dropdown open",
|
|
12294
|
-
"fieldName": "stayOpenOnSelect"
|
|
12295
|
-
},
|
|
12296
|
-
{
|
|
12297
|
-
"name": "distance",
|
|
12298
|
-
"type": {
|
|
12299
|
-
"text": "number"
|
|
12300
|
-
},
|
|
12301
|
-
"default": "0",
|
|
12302
|
-
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
12303
|
-
"fieldName": "distance"
|
|
12304
|
-
},
|
|
12305
|
-
{
|
|
12306
|
-
"name": "skidding",
|
|
12307
|
-
"type": {
|
|
12308
|
-
"text": "number"
|
|
12309
|
-
},
|
|
12310
|
-
"default": "0",
|
|
12311
|
-
"description": "The distance in pixels from which to offset the panel away from the trigger",
|
|
12312
|
-
"fieldName": "skidding"
|
|
12313
|
-
},
|
|
12314
|
-
{
|
|
12315
|
-
"name": "hoist",
|
|
12316
|
-
"type": {
|
|
12317
|
-
"text": "boolean"
|
|
12318
|
-
},
|
|
12319
|
-
"default": "true",
|
|
12320
|
-
"description": "Enable this option if the parent is overflow hidden and the dropdown is not visible",
|
|
12321
|
-
"fieldName": "hoist"
|
|
12322
|
-
},
|
|
12323
|
-
{
|
|
12324
|
-
"name": "sync",
|
|
12325
|
-
"type": {
|
|
12326
|
-
"text": "'width' | 'height' | 'both' | undefined"
|
|
12327
|
-
},
|
|
12328
|
-
"default": "undefined",
|
|
12329
|
-
"description": "Syncs the popup width or height with the trigger element",
|
|
12330
|
-
"fieldName": "sync"
|
|
12331
|
-
},
|
|
12332
|
-
{
|
|
12333
|
-
"name": "uri",
|
|
12334
|
-
"type": {
|
|
12335
|
-
"text": "string"
|
|
12336
|
-
},
|
|
12337
|
-
"fieldName": "uri"
|
|
12338
|
-
},
|
|
12339
|
-
{
|
|
12340
|
-
"name": "fetchedContent",
|
|
12341
|
-
"type": {
|
|
12342
|
-
"text": "string"
|
|
12343
|
-
},
|
|
12344
|
-
"default": "''",
|
|
12345
|
-
"fieldName": "fetchedContent"
|
|
12346
|
-
}
|
|
12347
|
-
],
|
|
12348
|
-
"superclass": {
|
|
12349
|
-
"name": "ZincElement",
|
|
12350
|
-
"module": "/src/internal/zinc-element"
|
|
12351
|
-
},
|
|
12352
|
-
"summary": "Short summary of the component's intended use.",
|
|
12353
|
-
"tagNameWithoutPrefix": "dropdown",
|
|
12354
|
-
"tagName": "zn-dropdown",
|
|
12355
|
-
"customElement": true,
|
|
12356
|
-
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/dropdown\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
12357
|
-
"documentation": "https://zinc.style/components/dropdown",
|
|
12358
|
-
"status": "experimental",
|
|
12359
|
-
"since": "1.0",
|
|
12360
|
-
"dependencies": [
|
|
12361
|
-
"zn-example"
|
|
12362
|
-
]
|
|
12363
|
-
}
|
|
12364
|
-
],
|
|
12365
|
-
"exports": [
|
|
12366
|
-
{
|
|
12367
|
-
"kind": "js",
|
|
12368
|
-
"name": "default",
|
|
12369
|
-
"declaration": {
|
|
12370
|
-
"name": "ZnDropdown",
|
|
12371
|
-
"module": "components/dropdown/dropdown.js"
|
|
12372
|
-
}
|
|
12373
|
-
}
|
|
12374
|
-
]
|
|
12375
|
-
},
|
|
12376
12385
|
{
|
|
12377
12386
|
"kind": "javascript-module",
|
|
12378
12387
|
"path": "components/empty-state/empty-state.js",
|
|
@@ -17685,6 +17694,16 @@
|
|
|
17685
17694
|
"description": "The heading shown above the slash menu's items.",
|
|
17686
17695
|
"attribute": "slash-heading"
|
|
17687
17696
|
},
|
|
17697
|
+
{
|
|
17698
|
+
"kind": "field",
|
|
17699
|
+
"name": "slashHideKeys",
|
|
17700
|
+
"type": {
|
|
17701
|
+
"text": "boolean"
|
|
17702
|
+
},
|
|
17703
|
+
"default": "false",
|
|
17704
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
17705
|
+
"attribute": "slash-hide-keys"
|
|
17706
|
+
},
|
|
17688
17707
|
{
|
|
17689
17708
|
"kind": "field",
|
|
17690
17709
|
"name": "slashItemsProvider",
|
|
@@ -18189,6 +18208,15 @@
|
|
|
18189
18208
|
"description": "The heading shown above the slash menu's items.",
|
|
18190
18209
|
"fieldName": "slashHeading"
|
|
18191
18210
|
},
|
|
18211
|
+
{
|
|
18212
|
+
"name": "slash-hide-keys",
|
|
18213
|
+
"type": {
|
|
18214
|
+
"text": "boolean"
|
|
18215
|
+
},
|
|
18216
|
+
"default": "false",
|
|
18217
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
18218
|
+
"fieldName": "slashHideKeys"
|
|
18219
|
+
},
|
|
18192
18220
|
{
|
|
18193
18221
|
"name": "options",
|
|
18194
18222
|
"type": {
|
|
@@ -18922,6 +18950,16 @@
|
|
|
18922
18950
|
"description": "The heading shown above the slash menu's items.",
|
|
18923
18951
|
"attribute": "slash-heading"
|
|
18924
18952
|
},
|
|
18953
|
+
{
|
|
18954
|
+
"kind": "field",
|
|
18955
|
+
"name": "slashHideKeys",
|
|
18956
|
+
"type": {
|
|
18957
|
+
"text": "boolean"
|
|
18958
|
+
},
|
|
18959
|
+
"default": "false",
|
|
18960
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
18961
|
+
"attribute": "slash-hide-keys"
|
|
18962
|
+
},
|
|
18925
18963
|
{
|
|
18926
18964
|
"kind": "field",
|
|
18927
18965
|
"name": "slashItemsProvider",
|
|
@@ -19784,6 +19822,15 @@
|
|
|
19784
19822
|
"description": "The heading shown above the slash menu's items.",
|
|
19785
19823
|
"fieldName": "slashHeading"
|
|
19786
19824
|
},
|
|
19825
|
+
{
|
|
19826
|
+
"name": "slash-hide-keys",
|
|
19827
|
+
"type": {
|
|
19828
|
+
"text": "boolean"
|
|
19829
|
+
},
|
|
19830
|
+
"default": "false",
|
|
19831
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
19832
|
+
"fieldName": "slashHideKeys"
|
|
19833
|
+
},
|
|
19787
19834
|
{
|
|
19788
19835
|
"name": "trigger-submit",
|
|
19789
19836
|
"type": {
|
|
@@ -34320,23 +34367,46 @@
|
|
|
34320
34367
|
},
|
|
34321
34368
|
"privacy": "private"
|
|
34322
34369
|
},
|
|
34370
|
+
{
|
|
34371
|
+
"kind": "field",
|
|
34372
|
+
"name": "_footerObserved",
|
|
34373
|
+
"type": {
|
|
34374
|
+
"text": "boolean"
|
|
34375
|
+
},
|
|
34376
|
+
"privacy": "private",
|
|
34377
|
+
"default": "false"
|
|
34378
|
+
},
|
|
34379
|
+
{
|
|
34380
|
+
"kind": "field",
|
|
34381
|
+
"name": "_footerHeightFrame",
|
|
34382
|
+
"type": {
|
|
34383
|
+
"text": "number | null"
|
|
34384
|
+
},
|
|
34385
|
+
"privacy": "private",
|
|
34386
|
+
"default": "null"
|
|
34387
|
+
},
|
|
34323
34388
|
{
|
|
34324
34389
|
"kind": "method",
|
|
34325
34390
|
"name": "scrollEnd"
|
|
34326
34391
|
},
|
|
34392
|
+
{
|
|
34393
|
+
"kind": "method",
|
|
34394
|
+
"name": "_syncFooterHeight",
|
|
34395
|
+
"privacy": "private"
|
|
34396
|
+
},
|
|
34327
34397
|
{
|
|
34328
34398
|
"kind": "field",
|
|
34329
34399
|
"name": "_footerResizeObserver",
|
|
34330
34400
|
"privacy": "private",
|
|
34331
34401
|
"readonly": true,
|
|
34332
|
-
"default": "new ResizeController(this, { target: null, callback: () =>
|
|
34402
|
+
"default": "new ResizeController(this, { target: null, callback: () => this._syncFooterHeight(), })"
|
|
34333
34403
|
},
|
|
34334
34404
|
{
|
|
34335
34405
|
"kind": "field",
|
|
34336
34406
|
"name": "_domObserver",
|
|
34337
34407
|
"privacy": "private",
|
|
34338
34408
|
"readonly": true,
|
|
34339
|
-
"default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => { setTimeout(() => this.scrollEnd(), 100); if (this.footer) { this.
|
|
34409
|
+
"default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => { setTimeout(() => this.scrollEnd(), 100); if (this.footer) { this._syncFooterHeight(); if (!this._footerObserved) { this._footerObserved = true; this._footerResizeObserver.observe(this.footer); } } }, })"
|
|
34340
34410
|
}
|
|
34341
34411
|
],
|
|
34342
34412
|
"events": [
|
|
@@ -37028,6 +37098,16 @@
|
|
|
37028
37098
|
"description": "The most items to render at once. Remaining matches are reported in the footer.",
|
|
37029
37099
|
"attribute": "max-items"
|
|
37030
37100
|
},
|
|
37101
|
+
{
|
|
37102
|
+
"kind": "field",
|
|
37103
|
+
"name": "hideKeys",
|
|
37104
|
+
"type": {
|
|
37105
|
+
"text": "boolean"
|
|
37106
|
+
},
|
|
37107
|
+
"default": "false",
|
|
37108
|
+
"description": "Hides the insertion key (the item's value) normally shown against each item.",
|
|
37109
|
+
"attribute": "hide-keys"
|
|
37110
|
+
},
|
|
37031
37111
|
{
|
|
37032
37112
|
"kind": "field",
|
|
37033
37113
|
"name": "anchor",
|
|
@@ -37275,6 +37355,15 @@
|
|
|
37275
37355
|
"description": "The most items to render at once. Remaining matches are reported in the footer.",
|
|
37276
37356
|
"fieldName": "maxItems"
|
|
37277
37357
|
},
|
|
37358
|
+
{
|
|
37359
|
+
"name": "hide-keys",
|
|
37360
|
+
"type": {
|
|
37361
|
+
"text": "boolean"
|
|
37362
|
+
},
|
|
37363
|
+
"default": "false",
|
|
37364
|
+
"description": "Hides the insertion key (the item's value) normally shown against each item.",
|
|
37365
|
+
"fieldName": "hideKeys"
|
|
37366
|
+
},
|
|
37278
37367
|
{
|
|
37279
37368
|
"name": "placement",
|
|
37280
37369
|
"type": {
|
|
@@ -41399,6 +41488,16 @@
|
|
|
41399
41488
|
"description": "The heading shown above the slash menu's items.",
|
|
41400
41489
|
"attribute": "slash-heading"
|
|
41401
41490
|
},
|
|
41491
|
+
{
|
|
41492
|
+
"kind": "field",
|
|
41493
|
+
"name": "slashHideKeys",
|
|
41494
|
+
"type": {
|
|
41495
|
+
"text": "boolean"
|
|
41496
|
+
},
|
|
41497
|
+
"default": "false",
|
|
41498
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
41499
|
+
"attribute": "slash-hide-keys"
|
|
41500
|
+
},
|
|
41402
41501
|
{
|
|
41403
41502
|
"kind": "field",
|
|
41404
41503
|
"name": "slashItemsProvider",
|
|
@@ -41965,6 +42064,15 @@
|
|
|
41965
42064
|
"description": "The heading shown above the slash menu's items.",
|
|
41966
42065
|
"fieldName": "slashHeading"
|
|
41967
42066
|
},
|
|
42067
|
+
{
|
|
42068
|
+
"name": "slash-hide-keys",
|
|
42069
|
+
"type": {
|
|
42070
|
+
"text": "boolean"
|
|
42071
|
+
},
|
|
42072
|
+
"default": "false",
|
|
42073
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
42074
|
+
"fieldName": "slashHideKeys"
|
|
42075
|
+
},
|
|
41968
42076
|
{
|
|
41969
42077
|
"name": "transparent",
|
|
41970
42078
|
"type": {
|
|
@@ -45244,6 +45352,16 @@
|
|
|
45244
45352
|
"description": "The heading shown above the slash menu's items.",
|
|
45245
45353
|
"attribute": "slash-heading"
|
|
45246
45354
|
},
|
|
45355
|
+
{
|
|
45356
|
+
"kind": "field",
|
|
45357
|
+
"name": "slashHideKeys",
|
|
45358
|
+
"type": {
|
|
45359
|
+
"text": "boolean"
|
|
45360
|
+
},
|
|
45361
|
+
"default": "false",
|
|
45362
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
45363
|
+
"attribute": "slash-hide-keys"
|
|
45364
|
+
},
|
|
45247
45365
|
{
|
|
45248
45366
|
"kind": "field",
|
|
45249
45367
|
"name": "slashItemsProvider",
|
|
@@ -45569,6 +45687,15 @@
|
|
|
45569
45687
|
"description": "The heading shown above the slash menu's items.",
|
|
45570
45688
|
"fieldName": "slashHeading"
|
|
45571
45689
|
},
|
|
45690
|
+
{
|
|
45691
|
+
"name": "slash-hide-keys",
|
|
45692
|
+
"type": {
|
|
45693
|
+
"text": "boolean"
|
|
45694
|
+
},
|
|
45695
|
+
"default": "false",
|
|
45696
|
+
"description": "Hides the insertion keys normally shown against the slash menu's items.",
|
|
45697
|
+
"fieldName": "slashHideKeys"
|
|
45698
|
+
},
|
|
45572
45699
|
{
|
|
45573
45700
|
"name": "grouped",
|
|
45574
45701
|
"type": {
|
|
@@ -45871,7 +45998,7 @@
|
|
|
45871
45998
|
"package": {
|
|
45872
45999
|
"name": "@kubex/zinc",
|
|
45873
46000
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
45874
|
-
"version": "1.1.
|
|
46001
|
+
"version": "1.1.91",
|
|
45875
46002
|
"author": "",
|
|
45876
46003
|
"license": "MIT"
|
|
45877
46004
|
}
|