@kubex/zinc 1.1.88 → 1.1.90
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 +338 -306
- package/dist/vscode.html-custom-data.json +37 -37
- package/dist/web-types.json +104 -104
- package/dist/zn.d.ts +7 -1
- package/dist/zn.min.js +6 -7
- 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/scroll-container/scroll-container.component.ts +31 -6
- package/src/components/theme-editor/theme-editor.component.ts +0 -1
- package/src/components/theme-editor/theme-editor.scss +0 -1
|
@@ -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"
|
|
@@ -34320,23 +34329,46 @@
|
|
|
34320
34329
|
},
|
|
34321
34330
|
"privacy": "private"
|
|
34322
34331
|
},
|
|
34332
|
+
{
|
|
34333
|
+
"kind": "field",
|
|
34334
|
+
"name": "_footerObserved",
|
|
34335
|
+
"type": {
|
|
34336
|
+
"text": "boolean"
|
|
34337
|
+
},
|
|
34338
|
+
"privacy": "private",
|
|
34339
|
+
"default": "false"
|
|
34340
|
+
},
|
|
34341
|
+
{
|
|
34342
|
+
"kind": "field",
|
|
34343
|
+
"name": "_footerHeightFrame",
|
|
34344
|
+
"type": {
|
|
34345
|
+
"text": "number | null"
|
|
34346
|
+
},
|
|
34347
|
+
"privacy": "private",
|
|
34348
|
+
"default": "null"
|
|
34349
|
+
},
|
|
34323
34350
|
{
|
|
34324
34351
|
"kind": "method",
|
|
34325
34352
|
"name": "scrollEnd"
|
|
34326
34353
|
},
|
|
34354
|
+
{
|
|
34355
|
+
"kind": "method",
|
|
34356
|
+
"name": "_syncFooterHeight",
|
|
34357
|
+
"privacy": "private"
|
|
34358
|
+
},
|
|
34327
34359
|
{
|
|
34328
34360
|
"kind": "field",
|
|
34329
34361
|
"name": "_footerResizeObserver",
|
|
34330
34362
|
"privacy": "private",
|
|
34331
34363
|
"readonly": true,
|
|
34332
|
-
"default": "new ResizeController(this, { target: null, callback: () =>
|
|
34364
|
+
"default": "new ResizeController(this, { target: null, callback: () => this._syncFooterHeight(), })"
|
|
34333
34365
|
},
|
|
34334
34366
|
{
|
|
34335
34367
|
"kind": "field",
|
|
34336
34368
|
"name": "_domObserver",
|
|
34337
34369
|
"privacy": "private",
|
|
34338
34370
|
"readonly": true,
|
|
34339
|
-
"default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => { setTimeout(() => this.scrollEnd(), 100); if (this.footer) { this.
|
|
34371
|
+
"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
34372
|
}
|
|
34341
34373
|
],
|
|
34342
34374
|
"events": [
|
|
@@ -44244,309 +44276,6 @@
|
|
|
44244
44276
|
}
|
|
44245
44277
|
]
|
|
44246
44278
|
},
|
|
44247
|
-
{
|
|
44248
|
-
"kind": "javascript-module",
|
|
44249
|
-
"path": "components/tooltip/tooltip.js",
|
|
44250
|
-
"declarations": [
|
|
44251
|
-
{
|
|
44252
|
-
"kind": "class",
|
|
44253
|
-
"description": "",
|
|
44254
|
-
"name": "ZnTooltip",
|
|
44255
|
-
"slots": [
|
|
44256
|
-
{
|
|
44257
|
-
"description": "The content of the tooltip",
|
|
44258
|
-
"name": ""
|
|
44259
|
-
},
|
|
44260
|
-
{
|
|
44261
|
-
"description": "The anchor the tooltip is attached to.",
|
|
44262
|
-
"name": "anchor"
|
|
44263
|
-
}
|
|
44264
|
-
],
|
|
44265
|
-
"members": [
|
|
44266
|
-
{
|
|
44267
|
-
"kind": "field",
|
|
44268
|
-
"name": "hoverTimeout",
|
|
44269
|
-
"type": {
|
|
44270
|
-
"text": "number"
|
|
44271
|
-
},
|
|
44272
|
-
"privacy": "private"
|
|
44273
|
-
},
|
|
44274
|
-
{
|
|
44275
|
-
"kind": "field",
|
|
44276
|
-
"name": "closeWatcher",
|
|
44277
|
-
"type": {
|
|
44278
|
-
"text": "CloseWatcher | null"
|
|
44279
|
-
},
|
|
44280
|
-
"privacy": "private"
|
|
44281
|
-
},
|
|
44282
|
-
{
|
|
44283
|
-
"kind": "field",
|
|
44284
|
-
"name": "defaultSlot",
|
|
44285
|
-
"type": {
|
|
44286
|
-
"text": "HTMLSlotElement"
|
|
44287
|
-
}
|
|
44288
|
-
},
|
|
44289
|
-
{
|
|
44290
|
-
"kind": "field",
|
|
44291
|
-
"name": "body",
|
|
44292
|
-
"type": {
|
|
44293
|
-
"text": "HTMLElement"
|
|
44294
|
-
}
|
|
44295
|
-
},
|
|
44296
|
-
{
|
|
44297
|
-
"kind": "field",
|
|
44298
|
-
"name": "popup",
|
|
44299
|
-
"type": {
|
|
44300
|
-
"text": "Popup"
|
|
44301
|
-
}
|
|
44302
|
-
},
|
|
44303
|
-
{
|
|
44304
|
-
"kind": "field",
|
|
44305
|
-
"name": "content",
|
|
44306
|
-
"type": {
|
|
44307
|
-
"text": "string"
|
|
44308
|
-
},
|
|
44309
|
-
"default": "''",
|
|
44310
|
-
"attribute": "content"
|
|
44311
|
-
},
|
|
44312
|
-
{
|
|
44313
|
-
"kind": "field",
|
|
44314
|
-
"name": "placement",
|
|
44315
|
-
"type": {
|
|
44316
|
-
"text": "| 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' |\n 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
44317
|
-
},
|
|
44318
|
-
"default": "'top'",
|
|
44319
|
-
"attribute": "placement"
|
|
44320
|
-
},
|
|
44321
|
-
{
|
|
44322
|
-
"kind": "field",
|
|
44323
|
-
"name": "disabled",
|
|
44324
|
-
"type": {
|
|
44325
|
-
"text": "boolean"
|
|
44326
|
-
},
|
|
44327
|
-
"default": "false",
|
|
44328
|
-
"attribute": "disabled",
|
|
44329
|
-
"reflects": true
|
|
44330
|
-
},
|
|
44331
|
-
{
|
|
44332
|
-
"kind": "field",
|
|
44333
|
-
"name": "distance",
|
|
44334
|
-
"type": {
|
|
44335
|
-
"text": "number"
|
|
44336
|
-
},
|
|
44337
|
-
"default": "4",
|
|
44338
|
-
"attribute": "distance"
|
|
44339
|
-
},
|
|
44340
|
-
{
|
|
44341
|
-
"kind": "field",
|
|
44342
|
-
"name": "open",
|
|
44343
|
-
"type": {
|
|
44344
|
-
"text": "boolean"
|
|
44345
|
-
},
|
|
44346
|
-
"default": "false",
|
|
44347
|
-
"attribute": "open",
|
|
44348
|
-
"reflects": true
|
|
44349
|
-
},
|
|
44350
|
-
{
|
|
44351
|
-
"kind": "field",
|
|
44352
|
-
"name": "skidding",
|
|
44353
|
-
"type": {
|
|
44354
|
-
"text": "number"
|
|
44355
|
-
},
|
|
44356
|
-
"default": "0",
|
|
44357
|
-
"attribute": "skidding"
|
|
44358
|
-
},
|
|
44359
|
-
{
|
|
44360
|
-
"kind": "field",
|
|
44361
|
-
"name": "trigger",
|
|
44362
|
-
"type": {
|
|
44363
|
-
"text": "string"
|
|
44364
|
-
},
|
|
44365
|
-
"default": "'hover focus'",
|
|
44366
|
-
"attribute": "trigger"
|
|
44367
|
-
},
|
|
44368
|
-
{
|
|
44369
|
-
"kind": "field",
|
|
44370
|
-
"name": "hoist",
|
|
44371
|
-
"type": {
|
|
44372
|
-
"text": "boolean"
|
|
44373
|
-
},
|
|
44374
|
-
"default": "true",
|
|
44375
|
-
"attribute": "hoist"
|
|
44376
|
-
},
|
|
44377
|
-
{
|
|
44378
|
-
"kind": "method",
|
|
44379
|
-
"name": "hasTrigger",
|
|
44380
|
-
"privacy": "private",
|
|
44381
|
-
"parameters": [
|
|
44382
|
-
{
|
|
44383
|
-
"name": "triggerType",
|
|
44384
|
-
"type": {
|
|
44385
|
-
"text": "string"
|
|
44386
|
-
}
|
|
44387
|
-
}
|
|
44388
|
-
]
|
|
44389
|
-
},
|
|
44390
|
-
{
|
|
44391
|
-
"kind": "field",
|
|
44392
|
-
"name": "handleBlur",
|
|
44393
|
-
"privacy": "private"
|
|
44394
|
-
},
|
|
44395
|
-
{
|
|
44396
|
-
"kind": "field",
|
|
44397
|
-
"name": "handleClick",
|
|
44398
|
-
"privacy": "private"
|
|
44399
|
-
},
|
|
44400
|
-
{
|
|
44401
|
-
"kind": "field",
|
|
44402
|
-
"name": "handleFocus",
|
|
44403
|
-
"privacy": "private"
|
|
44404
|
-
},
|
|
44405
|
-
{
|
|
44406
|
-
"kind": "field",
|
|
44407
|
-
"name": "handleDocumentKeyDown",
|
|
44408
|
-
"privacy": "private"
|
|
44409
|
-
},
|
|
44410
|
-
{
|
|
44411
|
-
"kind": "method",
|
|
44412
|
-
"name": "handleMouseOver",
|
|
44413
|
-
"privacy": "private"
|
|
44414
|
-
},
|
|
44415
|
-
{
|
|
44416
|
-
"kind": "method",
|
|
44417
|
-
"name": "handleMouseOut",
|
|
44418
|
-
"privacy": "private"
|
|
44419
|
-
},
|
|
44420
|
-
{
|
|
44421
|
-
"kind": "method",
|
|
44422
|
-
"name": "handleOpenChange"
|
|
44423
|
-
},
|
|
44424
|
-
{
|
|
44425
|
-
"kind": "method",
|
|
44426
|
-
"name": "handleOptionsChange"
|
|
44427
|
-
},
|
|
44428
|
-
{
|
|
44429
|
-
"kind": "method",
|
|
44430
|
-
"name": "handleDisabledChange"
|
|
44431
|
-
},
|
|
44432
|
-
{
|
|
44433
|
-
"kind": "method",
|
|
44434
|
-
"name": "show"
|
|
44435
|
-
},
|
|
44436
|
-
{
|
|
44437
|
-
"kind": "method",
|
|
44438
|
-
"name": "hide"
|
|
44439
|
-
}
|
|
44440
|
-
],
|
|
44441
|
-
"events": [
|
|
44442
|
-
{
|
|
44443
|
-
"description": "Emitted when the tooltip is shown.",
|
|
44444
|
-
"name": "zn-show"
|
|
44445
|
-
},
|
|
44446
|
-
{
|
|
44447
|
-
"description": "Emitted after the tooltip is shown.",
|
|
44448
|
-
"name": "zn-after-show"
|
|
44449
|
-
},
|
|
44450
|
-
{
|
|
44451
|
-
"description": "Emitted when the tooltip is hidden.",
|
|
44452
|
-
"name": "zn-hide"
|
|
44453
|
-
},
|
|
44454
|
-
{
|
|
44455
|
-
"description": "Emitted after the tooltip is hidden.",
|
|
44456
|
-
"name": "zn-after-hide"
|
|
44457
|
-
}
|
|
44458
|
-
],
|
|
44459
|
-
"attributes": [
|
|
44460
|
-
{
|
|
44461
|
-
"name": "content",
|
|
44462
|
-
"type": {
|
|
44463
|
-
"text": "string"
|
|
44464
|
-
},
|
|
44465
|
-
"default": "''",
|
|
44466
|
-
"fieldName": "content"
|
|
44467
|
-
},
|
|
44468
|
-
{
|
|
44469
|
-
"name": "placement",
|
|
44470
|
-
"type": {
|
|
44471
|
-
"text": "| 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' |\n 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
44472
|
-
},
|
|
44473
|
-
"default": "'top'",
|
|
44474
|
-
"fieldName": "placement"
|
|
44475
|
-
},
|
|
44476
|
-
{
|
|
44477
|
-
"name": "disabled",
|
|
44478
|
-
"type": {
|
|
44479
|
-
"text": "boolean"
|
|
44480
|
-
},
|
|
44481
|
-
"default": "false",
|
|
44482
|
-
"fieldName": "disabled"
|
|
44483
|
-
},
|
|
44484
|
-
{
|
|
44485
|
-
"name": "distance",
|
|
44486
|
-
"type": {
|
|
44487
|
-
"text": "number"
|
|
44488
|
-
},
|
|
44489
|
-
"default": "4",
|
|
44490
|
-
"fieldName": "distance"
|
|
44491
|
-
},
|
|
44492
|
-
{
|
|
44493
|
-
"name": "open",
|
|
44494
|
-
"type": {
|
|
44495
|
-
"text": "boolean"
|
|
44496
|
-
},
|
|
44497
|
-
"default": "false",
|
|
44498
|
-
"fieldName": "open"
|
|
44499
|
-
},
|
|
44500
|
-
{
|
|
44501
|
-
"name": "skidding",
|
|
44502
|
-
"type": {
|
|
44503
|
-
"text": "number"
|
|
44504
|
-
},
|
|
44505
|
-
"default": "0",
|
|
44506
|
-
"fieldName": "skidding"
|
|
44507
|
-
},
|
|
44508
|
-
{
|
|
44509
|
-
"name": "trigger",
|
|
44510
|
-
"type": {
|
|
44511
|
-
"text": "string"
|
|
44512
|
-
},
|
|
44513
|
-
"default": "'hover focus'",
|
|
44514
|
-
"fieldName": "trigger"
|
|
44515
|
-
},
|
|
44516
|
-
{
|
|
44517
|
-
"name": "hoist",
|
|
44518
|
-
"type": {
|
|
44519
|
-
"text": "boolean"
|
|
44520
|
-
},
|
|
44521
|
-
"default": "true",
|
|
44522
|
-
"fieldName": "hoist"
|
|
44523
|
-
}
|
|
44524
|
-
],
|
|
44525
|
-
"superclass": {
|
|
44526
|
-
"name": "ZincElement",
|
|
44527
|
-
"module": "/src/internal/zinc-element"
|
|
44528
|
-
},
|
|
44529
|
-
"summary": "The Tooltip component is used to display additional information when a user hovers over or clicks\non an element.",
|
|
44530
|
-
"tagNameWithoutPrefix": "tooltip",
|
|
44531
|
-
"tagName": "zn-tooltip",
|
|
44532
|
-
"customElement": true,
|
|
44533
|
-
"jsDoc": "/**\n * @summary The Tooltip component is used to display additional information when a user hovers over or clicks\n * on an element.\n *\n * @documentation https://zinc.style/components/tooltip\n * @status experimental\n * @since 1.0\n *\n * @event zn-show - Emitted when the tooltip is shown.\n * @event zn-after-show - Emitted after the tooltip is shown.\n * @event zn-hide - Emitted when the tooltip is hidden.\n * @event zn-after-hide - Emitted after the tooltip is hidden.\n *\n * @slot - The content of the tooltip\n * @slot anchor - The anchor the tooltip is attached to.\n */",
|
|
44534
|
-
"documentation": "https://zinc.style/components/tooltip",
|
|
44535
|
-
"status": "experimental",
|
|
44536
|
-
"since": "1.0"
|
|
44537
|
-
}
|
|
44538
|
-
],
|
|
44539
|
-
"exports": [
|
|
44540
|
-
{
|
|
44541
|
-
"kind": "js",
|
|
44542
|
-
"name": "default",
|
|
44543
|
-
"declaration": {
|
|
44544
|
-
"name": "ZnTooltip",
|
|
44545
|
-
"module": "components/tooltip/tooltip.js"
|
|
44546
|
-
}
|
|
44547
|
-
}
|
|
44548
|
-
]
|
|
44549
|
-
},
|
|
44550
44279
|
{
|
|
44551
44280
|
"kind": "javascript-module",
|
|
44552
44281
|
"path": "components/translation-group/translation-group.js",
|
|
@@ -45615,6 +45344,309 @@
|
|
|
45615
45344
|
}
|
|
45616
45345
|
]
|
|
45617
45346
|
},
|
|
45347
|
+
{
|
|
45348
|
+
"kind": "javascript-module",
|
|
45349
|
+
"path": "components/tooltip/tooltip.js",
|
|
45350
|
+
"declarations": [
|
|
45351
|
+
{
|
|
45352
|
+
"kind": "class",
|
|
45353
|
+
"description": "",
|
|
45354
|
+
"name": "ZnTooltip",
|
|
45355
|
+
"slots": [
|
|
45356
|
+
{
|
|
45357
|
+
"description": "The content of the tooltip",
|
|
45358
|
+
"name": ""
|
|
45359
|
+
},
|
|
45360
|
+
{
|
|
45361
|
+
"description": "The anchor the tooltip is attached to.",
|
|
45362
|
+
"name": "anchor"
|
|
45363
|
+
}
|
|
45364
|
+
],
|
|
45365
|
+
"members": [
|
|
45366
|
+
{
|
|
45367
|
+
"kind": "field",
|
|
45368
|
+
"name": "hoverTimeout",
|
|
45369
|
+
"type": {
|
|
45370
|
+
"text": "number"
|
|
45371
|
+
},
|
|
45372
|
+
"privacy": "private"
|
|
45373
|
+
},
|
|
45374
|
+
{
|
|
45375
|
+
"kind": "field",
|
|
45376
|
+
"name": "closeWatcher",
|
|
45377
|
+
"type": {
|
|
45378
|
+
"text": "CloseWatcher | null"
|
|
45379
|
+
},
|
|
45380
|
+
"privacy": "private"
|
|
45381
|
+
},
|
|
45382
|
+
{
|
|
45383
|
+
"kind": "field",
|
|
45384
|
+
"name": "defaultSlot",
|
|
45385
|
+
"type": {
|
|
45386
|
+
"text": "HTMLSlotElement"
|
|
45387
|
+
}
|
|
45388
|
+
},
|
|
45389
|
+
{
|
|
45390
|
+
"kind": "field",
|
|
45391
|
+
"name": "body",
|
|
45392
|
+
"type": {
|
|
45393
|
+
"text": "HTMLElement"
|
|
45394
|
+
}
|
|
45395
|
+
},
|
|
45396
|
+
{
|
|
45397
|
+
"kind": "field",
|
|
45398
|
+
"name": "popup",
|
|
45399
|
+
"type": {
|
|
45400
|
+
"text": "Popup"
|
|
45401
|
+
}
|
|
45402
|
+
},
|
|
45403
|
+
{
|
|
45404
|
+
"kind": "field",
|
|
45405
|
+
"name": "content",
|
|
45406
|
+
"type": {
|
|
45407
|
+
"text": "string"
|
|
45408
|
+
},
|
|
45409
|
+
"default": "''",
|
|
45410
|
+
"attribute": "content"
|
|
45411
|
+
},
|
|
45412
|
+
{
|
|
45413
|
+
"kind": "field",
|
|
45414
|
+
"name": "placement",
|
|
45415
|
+
"type": {
|
|
45416
|
+
"text": "| 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' |\n 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
45417
|
+
},
|
|
45418
|
+
"default": "'top'",
|
|
45419
|
+
"attribute": "placement"
|
|
45420
|
+
},
|
|
45421
|
+
{
|
|
45422
|
+
"kind": "field",
|
|
45423
|
+
"name": "disabled",
|
|
45424
|
+
"type": {
|
|
45425
|
+
"text": "boolean"
|
|
45426
|
+
},
|
|
45427
|
+
"default": "false",
|
|
45428
|
+
"attribute": "disabled",
|
|
45429
|
+
"reflects": true
|
|
45430
|
+
},
|
|
45431
|
+
{
|
|
45432
|
+
"kind": "field",
|
|
45433
|
+
"name": "distance",
|
|
45434
|
+
"type": {
|
|
45435
|
+
"text": "number"
|
|
45436
|
+
},
|
|
45437
|
+
"default": "4",
|
|
45438
|
+
"attribute": "distance"
|
|
45439
|
+
},
|
|
45440
|
+
{
|
|
45441
|
+
"kind": "field",
|
|
45442
|
+
"name": "open",
|
|
45443
|
+
"type": {
|
|
45444
|
+
"text": "boolean"
|
|
45445
|
+
},
|
|
45446
|
+
"default": "false",
|
|
45447
|
+
"attribute": "open",
|
|
45448
|
+
"reflects": true
|
|
45449
|
+
},
|
|
45450
|
+
{
|
|
45451
|
+
"kind": "field",
|
|
45452
|
+
"name": "skidding",
|
|
45453
|
+
"type": {
|
|
45454
|
+
"text": "number"
|
|
45455
|
+
},
|
|
45456
|
+
"default": "0",
|
|
45457
|
+
"attribute": "skidding"
|
|
45458
|
+
},
|
|
45459
|
+
{
|
|
45460
|
+
"kind": "field",
|
|
45461
|
+
"name": "trigger",
|
|
45462
|
+
"type": {
|
|
45463
|
+
"text": "string"
|
|
45464
|
+
},
|
|
45465
|
+
"default": "'hover focus'",
|
|
45466
|
+
"attribute": "trigger"
|
|
45467
|
+
},
|
|
45468
|
+
{
|
|
45469
|
+
"kind": "field",
|
|
45470
|
+
"name": "hoist",
|
|
45471
|
+
"type": {
|
|
45472
|
+
"text": "boolean"
|
|
45473
|
+
},
|
|
45474
|
+
"default": "true",
|
|
45475
|
+
"attribute": "hoist"
|
|
45476
|
+
},
|
|
45477
|
+
{
|
|
45478
|
+
"kind": "method",
|
|
45479
|
+
"name": "hasTrigger",
|
|
45480
|
+
"privacy": "private",
|
|
45481
|
+
"parameters": [
|
|
45482
|
+
{
|
|
45483
|
+
"name": "triggerType",
|
|
45484
|
+
"type": {
|
|
45485
|
+
"text": "string"
|
|
45486
|
+
}
|
|
45487
|
+
}
|
|
45488
|
+
]
|
|
45489
|
+
},
|
|
45490
|
+
{
|
|
45491
|
+
"kind": "field",
|
|
45492
|
+
"name": "handleBlur",
|
|
45493
|
+
"privacy": "private"
|
|
45494
|
+
},
|
|
45495
|
+
{
|
|
45496
|
+
"kind": "field",
|
|
45497
|
+
"name": "handleClick",
|
|
45498
|
+
"privacy": "private"
|
|
45499
|
+
},
|
|
45500
|
+
{
|
|
45501
|
+
"kind": "field",
|
|
45502
|
+
"name": "handleFocus",
|
|
45503
|
+
"privacy": "private"
|
|
45504
|
+
},
|
|
45505
|
+
{
|
|
45506
|
+
"kind": "field",
|
|
45507
|
+
"name": "handleDocumentKeyDown",
|
|
45508
|
+
"privacy": "private"
|
|
45509
|
+
},
|
|
45510
|
+
{
|
|
45511
|
+
"kind": "method",
|
|
45512
|
+
"name": "handleMouseOver",
|
|
45513
|
+
"privacy": "private"
|
|
45514
|
+
},
|
|
45515
|
+
{
|
|
45516
|
+
"kind": "method",
|
|
45517
|
+
"name": "handleMouseOut",
|
|
45518
|
+
"privacy": "private"
|
|
45519
|
+
},
|
|
45520
|
+
{
|
|
45521
|
+
"kind": "method",
|
|
45522
|
+
"name": "handleOpenChange"
|
|
45523
|
+
},
|
|
45524
|
+
{
|
|
45525
|
+
"kind": "method",
|
|
45526
|
+
"name": "handleOptionsChange"
|
|
45527
|
+
},
|
|
45528
|
+
{
|
|
45529
|
+
"kind": "method",
|
|
45530
|
+
"name": "handleDisabledChange"
|
|
45531
|
+
},
|
|
45532
|
+
{
|
|
45533
|
+
"kind": "method",
|
|
45534
|
+
"name": "show"
|
|
45535
|
+
},
|
|
45536
|
+
{
|
|
45537
|
+
"kind": "method",
|
|
45538
|
+
"name": "hide"
|
|
45539
|
+
}
|
|
45540
|
+
],
|
|
45541
|
+
"events": [
|
|
45542
|
+
{
|
|
45543
|
+
"description": "Emitted when the tooltip is shown.",
|
|
45544
|
+
"name": "zn-show"
|
|
45545
|
+
},
|
|
45546
|
+
{
|
|
45547
|
+
"description": "Emitted after the tooltip is shown.",
|
|
45548
|
+
"name": "zn-after-show"
|
|
45549
|
+
},
|
|
45550
|
+
{
|
|
45551
|
+
"description": "Emitted when the tooltip is hidden.",
|
|
45552
|
+
"name": "zn-hide"
|
|
45553
|
+
},
|
|
45554
|
+
{
|
|
45555
|
+
"description": "Emitted after the tooltip is hidden.",
|
|
45556
|
+
"name": "zn-after-hide"
|
|
45557
|
+
}
|
|
45558
|
+
],
|
|
45559
|
+
"attributes": [
|
|
45560
|
+
{
|
|
45561
|
+
"name": "content",
|
|
45562
|
+
"type": {
|
|
45563
|
+
"text": "string"
|
|
45564
|
+
},
|
|
45565
|
+
"default": "''",
|
|
45566
|
+
"fieldName": "content"
|
|
45567
|
+
},
|
|
45568
|
+
{
|
|
45569
|
+
"name": "placement",
|
|
45570
|
+
"type": {
|
|
45571
|
+
"text": "| 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' |\n 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'"
|
|
45572
|
+
},
|
|
45573
|
+
"default": "'top'",
|
|
45574
|
+
"fieldName": "placement"
|
|
45575
|
+
},
|
|
45576
|
+
{
|
|
45577
|
+
"name": "disabled",
|
|
45578
|
+
"type": {
|
|
45579
|
+
"text": "boolean"
|
|
45580
|
+
},
|
|
45581
|
+
"default": "false",
|
|
45582
|
+
"fieldName": "disabled"
|
|
45583
|
+
},
|
|
45584
|
+
{
|
|
45585
|
+
"name": "distance",
|
|
45586
|
+
"type": {
|
|
45587
|
+
"text": "number"
|
|
45588
|
+
},
|
|
45589
|
+
"default": "4",
|
|
45590
|
+
"fieldName": "distance"
|
|
45591
|
+
},
|
|
45592
|
+
{
|
|
45593
|
+
"name": "open",
|
|
45594
|
+
"type": {
|
|
45595
|
+
"text": "boolean"
|
|
45596
|
+
},
|
|
45597
|
+
"default": "false",
|
|
45598
|
+
"fieldName": "open"
|
|
45599
|
+
},
|
|
45600
|
+
{
|
|
45601
|
+
"name": "skidding",
|
|
45602
|
+
"type": {
|
|
45603
|
+
"text": "number"
|
|
45604
|
+
},
|
|
45605
|
+
"default": "0",
|
|
45606
|
+
"fieldName": "skidding"
|
|
45607
|
+
},
|
|
45608
|
+
{
|
|
45609
|
+
"name": "trigger",
|
|
45610
|
+
"type": {
|
|
45611
|
+
"text": "string"
|
|
45612
|
+
},
|
|
45613
|
+
"default": "'hover focus'",
|
|
45614
|
+
"fieldName": "trigger"
|
|
45615
|
+
},
|
|
45616
|
+
{
|
|
45617
|
+
"name": "hoist",
|
|
45618
|
+
"type": {
|
|
45619
|
+
"text": "boolean"
|
|
45620
|
+
},
|
|
45621
|
+
"default": "true",
|
|
45622
|
+
"fieldName": "hoist"
|
|
45623
|
+
}
|
|
45624
|
+
],
|
|
45625
|
+
"superclass": {
|
|
45626
|
+
"name": "ZincElement",
|
|
45627
|
+
"module": "/src/internal/zinc-element"
|
|
45628
|
+
},
|
|
45629
|
+
"summary": "The Tooltip component is used to display additional information when a user hovers over or clicks\non an element.",
|
|
45630
|
+
"tagNameWithoutPrefix": "tooltip",
|
|
45631
|
+
"tagName": "zn-tooltip",
|
|
45632
|
+
"customElement": true,
|
|
45633
|
+
"jsDoc": "/**\n * @summary The Tooltip component is used to display additional information when a user hovers over or clicks\n * on an element.\n *\n * @documentation https://zinc.style/components/tooltip\n * @status experimental\n * @since 1.0\n *\n * @event zn-show - Emitted when the tooltip is shown.\n * @event zn-after-show - Emitted after the tooltip is shown.\n * @event zn-hide - Emitted when the tooltip is hidden.\n * @event zn-after-hide - Emitted after the tooltip is hidden.\n *\n * @slot - The content of the tooltip\n * @slot anchor - The anchor the tooltip is attached to.\n */",
|
|
45634
|
+
"documentation": "https://zinc.style/components/tooltip",
|
|
45635
|
+
"status": "experimental",
|
|
45636
|
+
"since": "1.0"
|
|
45637
|
+
}
|
|
45638
|
+
],
|
|
45639
|
+
"exports": [
|
|
45640
|
+
{
|
|
45641
|
+
"kind": "js",
|
|
45642
|
+
"name": "default",
|
|
45643
|
+
"declaration": {
|
|
45644
|
+
"name": "ZnTooltip",
|
|
45645
|
+
"module": "components/tooltip/tooltip.js"
|
|
45646
|
+
}
|
|
45647
|
+
}
|
|
45648
|
+
]
|
|
45649
|
+
},
|
|
45618
45650
|
{
|
|
45619
45651
|
"kind": "javascript-module",
|
|
45620
45652
|
"path": "components/vertical-stepper/vertical-stepper.js",
|
|
@@ -45871,7 +45903,7 @@
|
|
|
45871
45903
|
"package": {
|
|
45872
45904
|
"name": "@kubex/zinc",
|
|
45873
45905
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
45874
|
-
"version": "1.1.
|
|
45906
|
+
"version": "1.1.90",
|
|
45875
45907
|
"author": "",
|
|
45876
45908
|
"license": "MIT"
|
|
45877
45909
|
}
|