@ukic/docs 2.1.0-beta.10 → 2.1.0-beta.12
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/docs.json +711 -46
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-05-03T10:24:19",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "2.20.0",
|
|
@@ -508,6 +508,102 @@
|
|
|
508
508
|
"optional": true,
|
|
509
509
|
"required": false
|
|
510
510
|
},
|
|
511
|
+
{
|
|
512
|
+
"name": "form",
|
|
513
|
+
"type": "string",
|
|
514
|
+
"mutable": false,
|
|
515
|
+
"attr": "form",
|
|
516
|
+
"reflectToAttr": false,
|
|
517
|
+
"docs": "The <form> element to associate the button with.",
|
|
518
|
+
"docsTags": [],
|
|
519
|
+
"values": [
|
|
520
|
+
{
|
|
521
|
+
"type": "string"
|
|
522
|
+
}
|
|
523
|
+
],
|
|
524
|
+
"optional": true,
|
|
525
|
+
"required": false
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"name": "formaction",
|
|
529
|
+
"type": "string",
|
|
530
|
+
"mutable": false,
|
|
531
|
+
"attr": "formaction",
|
|
532
|
+
"reflectToAttr": false,
|
|
533
|
+
"docs": "The URL that processes the information submitted by the button. It overrides the action attribute of the button's form owner. Does nothing if there is no form owner.",
|
|
534
|
+
"docsTags": [],
|
|
535
|
+
"values": [
|
|
536
|
+
{
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"optional": true,
|
|
541
|
+
"required": false
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "formenctype",
|
|
545
|
+
"type": "string",
|
|
546
|
+
"mutable": false,
|
|
547
|
+
"attr": "formenctype",
|
|
548
|
+
"reflectToAttr": false,
|
|
549
|
+
"docs": "The way the submitted form data is encoded.",
|
|
550
|
+
"docsTags": [],
|
|
551
|
+
"values": [
|
|
552
|
+
{
|
|
553
|
+
"type": "string"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"optional": true,
|
|
557
|
+
"required": false
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "formmethod",
|
|
561
|
+
"type": "string",
|
|
562
|
+
"mutable": false,
|
|
563
|
+
"attr": "formmethod",
|
|
564
|
+
"reflectToAttr": false,
|
|
565
|
+
"docs": "The HTTP method used to submit the form.",
|
|
566
|
+
"docsTags": [],
|
|
567
|
+
"values": [
|
|
568
|
+
{
|
|
569
|
+
"type": "string"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"optional": true,
|
|
573
|
+
"required": false
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"name": "formnovalidate",
|
|
577
|
+
"type": "boolean",
|
|
578
|
+
"mutable": false,
|
|
579
|
+
"attr": "formnovalidate",
|
|
580
|
+
"reflectToAttr": false,
|
|
581
|
+
"docs": "If `true`, the form will not be validated when submitted.",
|
|
582
|
+
"docsTags": [],
|
|
583
|
+
"values": [
|
|
584
|
+
{
|
|
585
|
+
"type": "boolean"
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"optional": true,
|
|
589
|
+
"required": false
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "formtarget",
|
|
593
|
+
"type": "string",
|
|
594
|
+
"mutable": false,
|
|
595
|
+
"attr": "formtarget",
|
|
596
|
+
"reflectToAttr": false,
|
|
597
|
+
"docs": "The place to display the response from submitting the form. It overrides the target attribute of the button's form owner.",
|
|
598
|
+
"docsTags": [],
|
|
599
|
+
"values": [
|
|
600
|
+
{
|
|
601
|
+
"type": "string"
|
|
602
|
+
}
|
|
603
|
+
],
|
|
604
|
+
"optional": true,
|
|
605
|
+
"required": false
|
|
606
|
+
},
|
|
511
607
|
{
|
|
512
608
|
"name": "fullWidth",
|
|
513
609
|
"type": "boolean",
|
|
@@ -829,6 +925,7 @@
|
|
|
829
925
|
"ic-alert",
|
|
830
926
|
"ic-card",
|
|
831
927
|
"ic-horizontal-scroll",
|
|
928
|
+
"ic-menu-item",
|
|
832
929
|
"ic-navigation-button",
|
|
833
930
|
"ic-navigation-menu",
|
|
834
931
|
"ic-search-bar",
|
|
@@ -861,6 +958,9 @@
|
|
|
861
958
|
"ic-horizontal-scroll": [
|
|
862
959
|
"ic-button"
|
|
863
960
|
],
|
|
961
|
+
"ic-menu-item": [
|
|
962
|
+
"ic-button"
|
|
963
|
+
],
|
|
864
964
|
"ic-navigation-button": [
|
|
865
965
|
"ic-button"
|
|
866
966
|
],
|
|
@@ -1405,6 +1505,23 @@
|
|
|
1405
1505
|
"optional": false,
|
|
1406
1506
|
"required": false
|
|
1407
1507
|
},
|
|
1508
|
+
{
|
|
1509
|
+
"name": "small",
|
|
1510
|
+
"type": "boolean",
|
|
1511
|
+
"mutable": false,
|
|
1512
|
+
"attr": "small",
|
|
1513
|
+
"reflectToAttr": false,
|
|
1514
|
+
"docs": "If true, the small styling will be applied to the checkbox.",
|
|
1515
|
+
"docsTags": [],
|
|
1516
|
+
"default": "false",
|
|
1517
|
+
"values": [
|
|
1518
|
+
{
|
|
1519
|
+
"type": "boolean"
|
|
1520
|
+
}
|
|
1521
|
+
],
|
|
1522
|
+
"optional": true,
|
|
1523
|
+
"required": false
|
|
1524
|
+
},
|
|
1408
1525
|
{
|
|
1409
1526
|
"name": "value",
|
|
1410
1527
|
"type": "string",
|
|
@@ -3681,8 +3798,14 @@
|
|
|
3681
3798
|
"mutable": false,
|
|
3682
3799
|
"attr": "show-icon",
|
|
3683
3800
|
"reflectToAttr": false,
|
|
3684
|
-
"docs": "
|
|
3685
|
-
"docsTags": [
|
|
3801
|
+
"docs": "",
|
|
3802
|
+
"docsTags": [
|
|
3803
|
+
{
|
|
3804
|
+
"name": "deprecated",
|
|
3805
|
+
"text": "This prop should not be used anymore. The 'open in new tab/window' icon will display automatically if target=\"_blank\"."
|
|
3806
|
+
}
|
|
3807
|
+
],
|
|
3808
|
+
"deprecation": "This prop should not be used anymore. The 'open in new tab/window' icon will display automatically if target=\"_blank\".",
|
|
3686
3809
|
"values": [
|
|
3687
3810
|
{
|
|
3688
3811
|
"type": "boolean"
|
|
@@ -3986,7 +4109,7 @@
|
|
|
3986
4109
|
},
|
|
3987
4110
|
{
|
|
3988
4111
|
"filePath": "./src/components/ic-menu/ic-menu.tsx",
|
|
3989
|
-
"encapsulation": "
|
|
4112
|
+
"encapsulation": "scoped",
|
|
3990
4113
|
"tag": "ic-menu",
|
|
3991
4114
|
"readme": "# ic-menu\n\n\n",
|
|
3992
4115
|
"docs": "",
|
|
@@ -4156,54 +4279,374 @@
|
|
|
4156
4279
|
}
|
|
4157
4280
|
],
|
|
4158
4281
|
"optional": false,
|
|
4159
|
-
"required": true
|
|
4282
|
+
"required": true
|
|
4283
|
+
}
|
|
4284
|
+
],
|
|
4285
|
+
"methods": [
|
|
4286
|
+
{
|
|
4287
|
+
"name": "handleKeyboardOpen",
|
|
4288
|
+
"returns": {
|
|
4289
|
+
"type": "Promise<void>",
|
|
4290
|
+
"docs": ""
|
|
4291
|
+
},
|
|
4292
|
+
"signature": "handleKeyboardOpen(event: KeyboardEvent) => Promise<void>",
|
|
4293
|
+
"parameters": [],
|
|
4294
|
+
"docs": "Used alongside activationType\nIf menu is opened via keyboard navigation (i.e. Enter, ArrowUp or ArrowDown), emit optionSelect custom event.",
|
|
4295
|
+
"docsTags": [
|
|
4296
|
+
{
|
|
4297
|
+
"name": "param",
|
|
4298
|
+
"text": "event - keyboard event"
|
|
4299
|
+
}
|
|
4300
|
+
]
|
|
4301
|
+
}
|
|
4302
|
+
],
|
|
4303
|
+
"events": [],
|
|
4304
|
+
"listeners": [],
|
|
4305
|
+
"styles": [
|
|
4306
|
+
{
|
|
4307
|
+
"name": "--ic-z-index-menu",
|
|
4308
|
+
"annotation": "prop",
|
|
4309
|
+
"docs": "z-index of menu"
|
|
4310
|
+
}
|
|
4311
|
+
],
|
|
4312
|
+
"slots": [],
|
|
4313
|
+
"parts": [],
|
|
4314
|
+
"dependents": [
|
|
4315
|
+
"ic-search-bar",
|
|
4316
|
+
"ic-select"
|
|
4317
|
+
],
|
|
4318
|
+
"dependencies": [
|
|
4319
|
+
"ic-typography"
|
|
4320
|
+
],
|
|
4321
|
+
"dependencyGraph": {
|
|
4322
|
+
"ic-menu": [
|
|
4323
|
+
"ic-typography"
|
|
4324
|
+
],
|
|
4325
|
+
"ic-search-bar": [
|
|
4326
|
+
"ic-menu"
|
|
4327
|
+
],
|
|
4328
|
+
"ic-select": [
|
|
4329
|
+
"ic-menu"
|
|
4330
|
+
]
|
|
4331
|
+
}
|
|
4332
|
+
},
|
|
4333
|
+
{
|
|
4334
|
+
"filePath": "./src/components/ic-menu-group/ic-menu-group.tsx",
|
|
4335
|
+
"encapsulation": "shadow",
|
|
4336
|
+
"tag": "ic-menu-group",
|
|
4337
|
+
"readme": "# ic-menu-group\n\n\n",
|
|
4338
|
+
"docs": "",
|
|
4339
|
+
"docsTags": [],
|
|
4340
|
+
"usage": {},
|
|
4341
|
+
"props": [
|
|
4342
|
+
{
|
|
4343
|
+
"name": "label",
|
|
4344
|
+
"type": "string",
|
|
4345
|
+
"mutable": false,
|
|
4346
|
+
"attr": "label",
|
|
4347
|
+
"reflectToAttr": false,
|
|
4348
|
+
"docs": "The label to display as the title of the menu group.",
|
|
4349
|
+
"docsTags": [],
|
|
4350
|
+
"values": [
|
|
4351
|
+
{
|
|
4352
|
+
"type": "string"
|
|
4353
|
+
}
|
|
4354
|
+
],
|
|
4355
|
+
"optional": true,
|
|
4356
|
+
"required": false
|
|
4357
|
+
}
|
|
4358
|
+
],
|
|
4359
|
+
"methods": [],
|
|
4360
|
+
"events": [],
|
|
4361
|
+
"listeners": [],
|
|
4362
|
+
"styles": [],
|
|
4363
|
+
"slots": [],
|
|
4364
|
+
"parts": [],
|
|
4365
|
+
"dependents": [],
|
|
4366
|
+
"dependencies": [
|
|
4367
|
+
"ic-typography"
|
|
4368
|
+
],
|
|
4369
|
+
"dependencyGraph": {
|
|
4370
|
+
"ic-menu-group": [
|
|
4371
|
+
"ic-typography"
|
|
4372
|
+
]
|
|
4373
|
+
}
|
|
4374
|
+
},
|
|
4375
|
+
{
|
|
4376
|
+
"filePath": "./src/components/ic-menu-item/ic-menu-item.tsx",
|
|
4377
|
+
"encapsulation": "shadow",
|
|
4378
|
+
"tag": "ic-menu-item",
|
|
4379
|
+
"readme": "# ic-menu-item\n\n\n",
|
|
4380
|
+
"docs": "",
|
|
4381
|
+
"docsTags": [
|
|
4382
|
+
{
|
|
4383
|
+
"name": "slot",
|
|
4384
|
+
"text": "icon - Content will be placed to the left of the menu item label."
|
|
4385
|
+
}
|
|
4386
|
+
],
|
|
4387
|
+
"usage": {},
|
|
4388
|
+
"props": [
|
|
4389
|
+
{
|
|
4390
|
+
"name": "description",
|
|
4391
|
+
"type": "string",
|
|
4392
|
+
"mutable": false,
|
|
4393
|
+
"attr": "description",
|
|
4394
|
+
"reflectToAttr": false,
|
|
4395
|
+
"docs": "The description displayed in the menu item, below the label.",
|
|
4396
|
+
"docsTags": [],
|
|
4397
|
+
"values": [
|
|
4398
|
+
{
|
|
4399
|
+
"type": "string"
|
|
4400
|
+
}
|
|
4401
|
+
],
|
|
4402
|
+
"optional": true,
|
|
4403
|
+
"required": false
|
|
4404
|
+
},
|
|
4405
|
+
{
|
|
4406
|
+
"name": "disabled",
|
|
4407
|
+
"type": "boolean",
|
|
4408
|
+
"mutable": false,
|
|
4409
|
+
"attr": "disabled",
|
|
4410
|
+
"reflectToAttr": false,
|
|
4411
|
+
"docs": "If `true`, the menu item will be in disabled state.",
|
|
4412
|
+
"docsTags": [],
|
|
4413
|
+
"default": "false",
|
|
4414
|
+
"values": [
|
|
4415
|
+
{
|
|
4416
|
+
"type": "boolean"
|
|
4417
|
+
}
|
|
4418
|
+
],
|
|
4419
|
+
"optional": true,
|
|
4420
|
+
"required": false
|
|
4421
|
+
},
|
|
4422
|
+
{
|
|
4423
|
+
"name": "href",
|
|
4424
|
+
"type": "string",
|
|
4425
|
+
"mutable": false,
|
|
4426
|
+
"attr": "href",
|
|
4427
|
+
"reflectToAttr": false,
|
|
4428
|
+
"docs": "The URL that the link points to. This will render the menu item as an \"a\" tag.",
|
|
4429
|
+
"docsTags": [],
|
|
4430
|
+
"values": [
|
|
4431
|
+
{
|
|
4432
|
+
"type": "string"
|
|
4433
|
+
}
|
|
4434
|
+
],
|
|
4435
|
+
"optional": true,
|
|
4436
|
+
"required": false
|
|
4437
|
+
},
|
|
4438
|
+
{
|
|
4439
|
+
"name": "hreflang",
|
|
4440
|
+
"type": "string",
|
|
4441
|
+
"mutable": false,
|
|
4442
|
+
"attr": "hreflang",
|
|
4443
|
+
"reflectToAttr": false,
|
|
4444
|
+
"docs": "The human language of the linked URL.",
|
|
4445
|
+
"docsTags": [],
|
|
4446
|
+
"values": [
|
|
4447
|
+
{
|
|
4448
|
+
"type": "string"
|
|
4449
|
+
}
|
|
4450
|
+
],
|
|
4451
|
+
"optional": true,
|
|
4452
|
+
"required": false
|
|
4453
|
+
},
|
|
4454
|
+
{
|
|
4455
|
+
"name": "keyboardShortcut",
|
|
4456
|
+
"type": "string",
|
|
4457
|
+
"mutable": false,
|
|
4458
|
+
"attr": "keyboard-shortcut",
|
|
4459
|
+
"reflectToAttr": false,
|
|
4460
|
+
"docs": "The label describing the keyboard shortcut for a menu item's action.",
|
|
4461
|
+
"docsTags": [],
|
|
4462
|
+
"values": [
|
|
4463
|
+
{
|
|
4464
|
+
"type": "string"
|
|
4465
|
+
}
|
|
4466
|
+
],
|
|
4467
|
+
"optional": true,
|
|
4468
|
+
"required": false
|
|
4469
|
+
},
|
|
4470
|
+
{
|
|
4471
|
+
"name": "label",
|
|
4472
|
+
"type": "string",
|
|
4473
|
+
"mutable": false,
|
|
4474
|
+
"attr": "label",
|
|
4475
|
+
"reflectToAttr": false,
|
|
4476
|
+
"docs": "The label to display in the menu item.",
|
|
4477
|
+
"docsTags": [],
|
|
4478
|
+
"values": [
|
|
4479
|
+
{
|
|
4480
|
+
"type": "string"
|
|
4481
|
+
}
|
|
4482
|
+
],
|
|
4483
|
+
"optional": false,
|
|
4484
|
+
"required": true
|
|
4485
|
+
},
|
|
4486
|
+
{
|
|
4487
|
+
"name": "referrerpolicy",
|
|
4488
|
+
"type": "\"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\"",
|
|
4489
|
+
"mutable": false,
|
|
4490
|
+
"attr": "referrerpolicy",
|
|
4491
|
+
"reflectToAttr": false,
|
|
4492
|
+
"docs": "How much of the referrer to send when following the link.",
|
|
4493
|
+
"docsTags": [],
|
|
4494
|
+
"values": [
|
|
4495
|
+
{
|
|
4496
|
+
"type": "\"\""
|
|
4497
|
+
},
|
|
4498
|
+
{
|
|
4499
|
+
"value": "no-referrer",
|
|
4500
|
+
"type": "string"
|
|
4501
|
+
},
|
|
4502
|
+
{
|
|
4503
|
+
"value": "no-referrer-when-downgrade",
|
|
4504
|
+
"type": "string"
|
|
4505
|
+
},
|
|
4506
|
+
{
|
|
4507
|
+
"value": "origin",
|
|
4508
|
+
"type": "string"
|
|
4509
|
+
},
|
|
4510
|
+
{
|
|
4511
|
+
"value": "origin-when-cross-origin",
|
|
4512
|
+
"type": "string"
|
|
4513
|
+
},
|
|
4514
|
+
{
|
|
4515
|
+
"value": "same-origin",
|
|
4516
|
+
"type": "string"
|
|
4517
|
+
},
|
|
4518
|
+
{
|
|
4519
|
+
"value": "strict-origin",
|
|
4520
|
+
"type": "string"
|
|
4521
|
+
},
|
|
4522
|
+
{
|
|
4523
|
+
"value": "strict-origin-when-cross-origin",
|
|
4524
|
+
"type": "string"
|
|
4525
|
+
},
|
|
4526
|
+
{
|
|
4527
|
+
"value": "unsafe-url",
|
|
4528
|
+
"type": "string"
|
|
4529
|
+
}
|
|
4530
|
+
],
|
|
4531
|
+
"optional": true,
|
|
4532
|
+
"required": false
|
|
4533
|
+
},
|
|
4534
|
+
{
|
|
4535
|
+
"name": "rel",
|
|
4536
|
+
"type": "string",
|
|
4537
|
+
"mutable": false,
|
|
4538
|
+
"attr": "rel",
|
|
4539
|
+
"reflectToAttr": false,
|
|
4540
|
+
"docs": "The relationship of the linked URL as space-separated link types.",
|
|
4541
|
+
"docsTags": [],
|
|
4542
|
+
"values": [
|
|
4543
|
+
{
|
|
4544
|
+
"type": "string"
|
|
4545
|
+
}
|
|
4546
|
+
],
|
|
4547
|
+
"optional": true,
|
|
4548
|
+
"required": false
|
|
4549
|
+
},
|
|
4550
|
+
{
|
|
4551
|
+
"name": "submenuTriggerFor",
|
|
4552
|
+
"type": "string",
|
|
4553
|
+
"mutable": false,
|
|
4554
|
+
"attr": "submenu-trigger-for",
|
|
4555
|
+
"reflectToAttr": false,
|
|
4556
|
+
"docs": "This references the popover menu instance that the menu item is a trigger for. If this prop is set, then the variant will always be default.",
|
|
4557
|
+
"docsTags": [],
|
|
4558
|
+
"values": [
|
|
4559
|
+
{
|
|
4560
|
+
"type": "string"
|
|
4561
|
+
}
|
|
4562
|
+
],
|
|
4563
|
+
"optional": true,
|
|
4564
|
+
"required": false
|
|
4565
|
+
},
|
|
4566
|
+
{
|
|
4567
|
+
"name": "target",
|
|
4568
|
+
"type": "string",
|
|
4569
|
+
"mutable": false,
|
|
4570
|
+
"attr": "target",
|
|
4571
|
+
"reflectToAttr": false,
|
|
4572
|
+
"docs": "The place to display the linked URL, as the name for a browsing context (a tab, window, or iframe).",
|
|
4573
|
+
"docsTags": [],
|
|
4574
|
+
"values": [
|
|
4575
|
+
{
|
|
4576
|
+
"type": "string"
|
|
4577
|
+
}
|
|
4578
|
+
],
|
|
4579
|
+
"optional": true,
|
|
4580
|
+
"required": false
|
|
4581
|
+
},
|
|
4582
|
+
{
|
|
4583
|
+
"name": "variant",
|
|
4584
|
+
"type": "\"default\" | \"destructive\" | \"toggle\"",
|
|
4585
|
+
"mutable": true,
|
|
4586
|
+
"attr": "variant",
|
|
4587
|
+
"reflectToAttr": true,
|
|
4588
|
+
"docs": "The variant of the menu item.",
|
|
4589
|
+
"docsTags": [],
|
|
4590
|
+
"default": "\"default\"",
|
|
4591
|
+
"values": [
|
|
4592
|
+
{
|
|
4593
|
+
"value": "default",
|
|
4594
|
+
"type": "string"
|
|
4595
|
+
},
|
|
4596
|
+
{
|
|
4597
|
+
"value": "destructive",
|
|
4598
|
+
"type": "string"
|
|
4599
|
+
},
|
|
4600
|
+
{
|
|
4601
|
+
"value": "toggle",
|
|
4602
|
+
"type": "string"
|
|
4603
|
+
}
|
|
4604
|
+
],
|
|
4605
|
+
"optional": false,
|
|
4606
|
+
"required": false
|
|
4160
4607
|
}
|
|
4161
4608
|
],
|
|
4162
|
-
"methods": [
|
|
4609
|
+
"methods": [],
|
|
4610
|
+
"events": [],
|
|
4611
|
+
"listeners": [
|
|
4163
4612
|
{
|
|
4164
|
-
"
|
|
4165
|
-
"
|
|
4166
|
-
|
|
4167
|
-
"docs": ""
|
|
4168
|
-
},
|
|
4169
|
-
"signature": "handleKeyboardOpen(event: KeyboardEvent) => Promise<void>",
|
|
4170
|
-
"parameters": [],
|
|
4171
|
-
"docs": "Used alongside activationType\nIf menu is opened via keyboard navigation (i.e. Enter, ArrowUp or ArrowDown), emit optionSelect custom event.",
|
|
4172
|
-
"docsTags": [
|
|
4173
|
-
{
|
|
4174
|
-
"name": "param",
|
|
4175
|
-
"text": "event - keyboard event"
|
|
4176
|
-
}
|
|
4177
|
-
]
|
|
4613
|
+
"event": "click",
|
|
4614
|
+
"capture": true,
|
|
4615
|
+
"passive": false
|
|
4178
4616
|
}
|
|
4179
4617
|
],
|
|
4180
|
-
"
|
|
4181
|
-
"
|
|
4182
|
-
"styles": [
|
|
4618
|
+
"styles": [],
|
|
4619
|
+
"slots": [
|
|
4183
4620
|
{
|
|
4184
|
-
"name": "
|
|
4185
|
-
"
|
|
4186
|
-
"docs": "z-index of menu"
|
|
4621
|
+
"name": "icon",
|
|
4622
|
+
"docs": "Content will be placed to the left of the menu item label."
|
|
4187
4623
|
}
|
|
4188
4624
|
],
|
|
4189
|
-
"slots": [],
|
|
4190
4625
|
"parts": [],
|
|
4191
4626
|
"dependents": [
|
|
4192
|
-
"ic-
|
|
4193
|
-
"ic-select"
|
|
4627
|
+
"ic-popover-menu"
|
|
4194
4628
|
],
|
|
4195
4629
|
"dependencies": [
|
|
4196
|
-
"ic-typography"
|
|
4630
|
+
"ic-typography",
|
|
4631
|
+
"ic-button"
|
|
4197
4632
|
],
|
|
4198
4633
|
"dependencyGraph": {
|
|
4199
|
-
"ic-menu": [
|
|
4634
|
+
"ic-menu-item": [
|
|
4635
|
+
"ic-typography",
|
|
4636
|
+
"ic-button"
|
|
4637
|
+
],
|
|
4638
|
+
"ic-button": [
|
|
4639
|
+
"ic-loading-indicator",
|
|
4640
|
+
"ic-tooltip"
|
|
4641
|
+
],
|
|
4642
|
+
"ic-loading-indicator": [
|
|
4200
4643
|
"ic-typography"
|
|
4201
4644
|
],
|
|
4202
|
-
"ic-
|
|
4203
|
-
"ic-
|
|
4645
|
+
"ic-tooltip": [
|
|
4646
|
+
"ic-typography"
|
|
4204
4647
|
],
|
|
4205
|
-
"ic-
|
|
4206
|
-
"ic-menu"
|
|
4648
|
+
"ic-popover-menu": [
|
|
4649
|
+
"ic-menu-item"
|
|
4207
4650
|
]
|
|
4208
4651
|
}
|
|
4209
4652
|
},
|
|
@@ -5129,6 +5572,136 @@
|
|
|
5129
5572
|
]
|
|
5130
5573
|
}
|
|
5131
5574
|
},
|
|
5575
|
+
{
|
|
5576
|
+
"filePath": "./src/components/ic-popover-menu/ic-popover-menu.tsx",
|
|
5577
|
+
"encapsulation": "shadow",
|
|
5578
|
+
"tag": "ic-popover-menu",
|
|
5579
|
+
"readme": "# ic-popover-menu\n\nThis is a wrapper component to be placed around one or more ic-menu-item components.\n",
|
|
5580
|
+
"docs": "This is a wrapper component to be placed around one or more ic-menu-item components.",
|
|
5581
|
+
"docsTags": [],
|
|
5582
|
+
"usage": {},
|
|
5583
|
+
"props": [
|
|
5584
|
+
{
|
|
5585
|
+
"name": "anchor",
|
|
5586
|
+
"type": "string",
|
|
5587
|
+
"mutable": false,
|
|
5588
|
+
"attr": "anchor",
|
|
5589
|
+
"reflectToAttr": false,
|
|
5590
|
+
"docs": "The ID of the element the popover menu will anchor itself to. This is required unless the popover is a submenu.",
|
|
5591
|
+
"docsTags": [],
|
|
5592
|
+
"values": [
|
|
5593
|
+
{
|
|
5594
|
+
"type": "string"
|
|
5595
|
+
}
|
|
5596
|
+
],
|
|
5597
|
+
"optional": false,
|
|
5598
|
+
"required": false
|
|
5599
|
+
},
|
|
5600
|
+
{
|
|
5601
|
+
"name": "open",
|
|
5602
|
+
"type": "boolean",
|
|
5603
|
+
"mutable": true,
|
|
5604
|
+
"attr": "open",
|
|
5605
|
+
"reflectToAttr": true,
|
|
5606
|
+
"docs": "If `true`, the popover menu will be displayed.",
|
|
5607
|
+
"docsTags": [],
|
|
5608
|
+
"default": "undefined",
|
|
5609
|
+
"values": [
|
|
5610
|
+
{
|
|
5611
|
+
"type": "boolean"
|
|
5612
|
+
}
|
|
5613
|
+
],
|
|
5614
|
+
"optional": false,
|
|
5615
|
+
"required": false
|
|
5616
|
+
},
|
|
5617
|
+
{
|
|
5618
|
+
"name": "submenuId",
|
|
5619
|
+
"type": "string",
|
|
5620
|
+
"mutable": false,
|
|
5621
|
+
"attr": "submenu-id",
|
|
5622
|
+
"reflectToAttr": false,
|
|
5623
|
+
"docs": "The unique identifier for a popover submenu.",
|
|
5624
|
+
"docsTags": [],
|
|
5625
|
+
"values": [
|
|
5626
|
+
{
|
|
5627
|
+
"type": "string"
|
|
5628
|
+
}
|
|
5629
|
+
],
|
|
5630
|
+
"optional": true,
|
|
5631
|
+
"required": false
|
|
5632
|
+
}
|
|
5633
|
+
],
|
|
5634
|
+
"methods": [],
|
|
5635
|
+
"events": [],
|
|
5636
|
+
"listeners": [
|
|
5637
|
+
{
|
|
5638
|
+
"event": "handleMenuItemClick",
|
|
5639
|
+
"capture": false,
|
|
5640
|
+
"passive": false
|
|
5641
|
+
},
|
|
5642
|
+
{
|
|
5643
|
+
"event": "triggerPopoverMenuInstance",
|
|
5644
|
+
"capture": true,
|
|
5645
|
+
"passive": false
|
|
5646
|
+
},
|
|
5647
|
+
{
|
|
5648
|
+
"event": "click",
|
|
5649
|
+
"target": "document",
|
|
5650
|
+
"capture": false,
|
|
5651
|
+
"passive": false
|
|
5652
|
+
},
|
|
5653
|
+
{
|
|
5654
|
+
"event": "keydown",
|
|
5655
|
+
"target": "document",
|
|
5656
|
+
"capture": false,
|
|
5657
|
+
"passive": false
|
|
5658
|
+
}
|
|
5659
|
+
],
|
|
5660
|
+
"styles": [
|
|
5661
|
+
{
|
|
5662
|
+
"name": "--ic-z-index-popover",
|
|
5663
|
+
"annotation": "prop",
|
|
5664
|
+
"docs": "z-index of popover menu."
|
|
5665
|
+
},
|
|
5666
|
+
{
|
|
5667
|
+
"name": "--max-height",
|
|
5668
|
+
"annotation": "prop",
|
|
5669
|
+
"docs": "Maximum height of the popover menu."
|
|
5670
|
+
},
|
|
5671
|
+
{
|
|
5672
|
+
"name": "--popover-width",
|
|
5673
|
+
"annotation": "prop",
|
|
5674
|
+
"docs": "Default width of the popover menu."
|
|
5675
|
+
}
|
|
5676
|
+
],
|
|
5677
|
+
"slots": [],
|
|
5678
|
+
"parts": [],
|
|
5679
|
+
"dependents": [],
|
|
5680
|
+
"dependencies": [
|
|
5681
|
+
"ic-menu-item",
|
|
5682
|
+
"ic-typography"
|
|
5683
|
+
],
|
|
5684
|
+
"dependencyGraph": {
|
|
5685
|
+
"ic-popover-menu": [
|
|
5686
|
+
"ic-menu-item",
|
|
5687
|
+
"ic-typography"
|
|
5688
|
+
],
|
|
5689
|
+
"ic-menu-item": [
|
|
5690
|
+
"ic-typography",
|
|
5691
|
+
"ic-button"
|
|
5692
|
+
],
|
|
5693
|
+
"ic-button": [
|
|
5694
|
+
"ic-loading-indicator",
|
|
5695
|
+
"ic-tooltip"
|
|
5696
|
+
],
|
|
5697
|
+
"ic-loading-indicator": [
|
|
5698
|
+
"ic-typography"
|
|
5699
|
+
],
|
|
5700
|
+
"ic-tooltip": [
|
|
5701
|
+
"ic-typography"
|
|
5702
|
+
]
|
|
5703
|
+
}
|
|
5704
|
+
},
|
|
5132
5705
|
{
|
|
5133
5706
|
"filePath": "./src/components/ic-radio-group/ic-radio-group.tsx",
|
|
5134
5707
|
"encapsulation": "shadow",
|
|
@@ -6464,9 +7037,15 @@
|
|
|
6464
7037
|
"mutable": false,
|
|
6465
7038
|
"attr": "characters-until-suggestions",
|
|
6466
7039
|
"reflectToAttr": false,
|
|
6467
|
-
"docs": "
|
|
6468
|
-
"docsTags": [
|
|
7040
|
+
"docs": "",
|
|
7041
|
+
"docsTags": [
|
|
7042
|
+
{
|
|
7043
|
+
"name": "deprecated",
|
|
7044
|
+
"text": "This prop should not be used anymore."
|
|
7045
|
+
}
|
|
7046
|
+
],
|
|
6469
7047
|
"default": "0",
|
|
7048
|
+
"deprecation": "This prop should not be used anymore.",
|
|
6470
7049
|
"values": [
|
|
6471
7050
|
{
|
|
6472
7051
|
"type": "number"
|
|
@@ -8029,6 +8608,16 @@
|
|
|
8029
8608
|
"event": "tabClick",
|
|
8030
8609
|
"capture": false,
|
|
8031
8610
|
"passive": false
|
|
8611
|
+
},
|
|
8612
|
+
{
|
|
8613
|
+
"event": "tabCreated",
|
|
8614
|
+
"capture": false,
|
|
8615
|
+
"passive": false
|
|
8616
|
+
},
|
|
8617
|
+
{
|
|
8618
|
+
"event": "tabPanelCreated",
|
|
8619
|
+
"capture": false,
|
|
8620
|
+
"passive": false
|
|
8032
8621
|
}
|
|
8033
8622
|
],
|
|
8034
8623
|
"styles": [],
|
|
@@ -8053,9 +8642,15 @@
|
|
|
8053
8642
|
"mutable": false,
|
|
8054
8643
|
"attr": "context-id",
|
|
8055
8644
|
"reflectToAttr": true,
|
|
8056
|
-
"docs": "
|
|
8057
|
-
"docsTags": [
|
|
8645
|
+
"docs": "",
|
|
8646
|
+
"docsTags": [
|
|
8647
|
+
{
|
|
8648
|
+
"name": "deprecated",
|
|
8649
|
+
"text": "This is no longer required.\nThe context id is passed down from `ic-tab-context`"
|
|
8650
|
+
}
|
|
8651
|
+
],
|
|
8058
8652
|
"default": "\"default\"",
|
|
8653
|
+
"deprecation": "This is no longer required.\nThe context id is passed down from `ic-tab-context`",
|
|
8059
8654
|
"values": [
|
|
8060
8655
|
{
|
|
8061
8656
|
"type": "string"
|
|
@@ -8142,9 +8737,15 @@
|
|
|
8142
8737
|
"mutable": false,
|
|
8143
8738
|
"attr": "context-id",
|
|
8144
8739
|
"reflectToAttr": true,
|
|
8145
|
-
"docs": "
|
|
8146
|
-
"docsTags": [
|
|
8740
|
+
"docs": "",
|
|
8741
|
+
"docsTags": [
|
|
8742
|
+
{
|
|
8743
|
+
"name": "deprecated",
|
|
8744
|
+
"text": "This is no longer required.\nThe context id is passed down from `ic-tab-context`"
|
|
8745
|
+
}
|
|
8746
|
+
],
|
|
8147
8747
|
"default": "\"default\"",
|
|
8748
|
+
"deprecation": "This is no longer required.\nThe context id is passed down from `ic-tab-context`",
|
|
8148
8749
|
"values": [
|
|
8149
8750
|
{
|
|
8150
8751
|
"type": "string"
|
|
@@ -8628,6 +9229,23 @@
|
|
|
8628
9229
|
"optional": false,
|
|
8629
9230
|
"required": true
|
|
8630
9231
|
},
|
|
9232
|
+
{
|
|
9233
|
+
"name": "max",
|
|
9234
|
+
"type": "number",
|
|
9235
|
+
"mutable": false,
|
|
9236
|
+
"attr": "max",
|
|
9237
|
+
"reflectToAttr": false,
|
|
9238
|
+
"docs": "The maximum number that can be accepted as a value, when `type` is `number` and `rows` is `1`. (NOTE: Ensure to include visual indication of max value in `helperText` or `label`)",
|
|
9239
|
+
"docsTags": [],
|
|
9240
|
+
"default": "undefined",
|
|
9241
|
+
"values": [
|
|
9242
|
+
{
|
|
9243
|
+
"type": "number"
|
|
9244
|
+
}
|
|
9245
|
+
],
|
|
9246
|
+
"optional": false,
|
|
9247
|
+
"required": false
|
|
9248
|
+
},
|
|
8631
9249
|
{
|
|
8632
9250
|
"name": "maxLength",
|
|
8633
9251
|
"type": "number",
|
|
@@ -8645,6 +9263,23 @@
|
|
|
8645
9263
|
"optional": false,
|
|
8646
9264
|
"required": false
|
|
8647
9265
|
},
|
|
9266
|
+
{
|
|
9267
|
+
"name": "min",
|
|
9268
|
+
"type": "number",
|
|
9269
|
+
"mutable": false,
|
|
9270
|
+
"attr": "min",
|
|
9271
|
+
"reflectToAttr": false,
|
|
9272
|
+
"docs": "The minimum number that can be accepted as a value, when `type` is `number` and `rows` is `1`. (NOTE: Ensure to include visual indication of min value in `helperText` or `label`)",
|
|
9273
|
+
"docsTags": [],
|
|
9274
|
+
"default": "undefined",
|
|
9275
|
+
"values": [
|
|
9276
|
+
{
|
|
9277
|
+
"type": "number"
|
|
9278
|
+
}
|
|
9279
|
+
],
|
|
9280
|
+
"optional": false,
|
|
9281
|
+
"required": false
|
|
9282
|
+
},
|
|
8648
9283
|
{
|
|
8649
9284
|
"name": "name",
|
|
8650
9285
|
"type": "string",
|
|
@@ -9072,7 +9707,7 @@
|
|
|
9072
9707
|
{
|
|
9073
9708
|
"name": "autoDismissTimeout",
|
|
9074
9709
|
"type": "number",
|
|
9075
|
-
"mutable":
|
|
9710
|
+
"mutable": true,
|
|
9076
9711
|
"attr": "auto-dismiss-timeout",
|
|
9077
9712
|
"reflectToAttr": false,
|
|
9078
9713
|
"docs": "If toast dismissMode is set to `automatic`, use this prop to define the time before the toast dismisses (in MILLISECONDS)\n(NOTE: Has a minimum value of `5000ms`)",
|
|
@@ -9106,7 +9741,7 @@
|
|
|
9106
9741
|
{
|
|
9107
9742
|
"name": "dismissMode",
|
|
9108
9743
|
"type": "\"automatic\" | \"manual\"",
|
|
9109
|
-
"mutable":
|
|
9744
|
+
"mutable": true,
|
|
9110
9745
|
"attr": "dismiss-mode",
|
|
9111
9746
|
"reflectToAttr": false,
|
|
9112
9747
|
"docs": "How the toast will be dismissed. If manual will display a dismiss button.",
|
|
@@ -9176,7 +9811,7 @@
|
|
|
9176
9811
|
{
|
|
9177
9812
|
"name": "variant",
|
|
9178
9813
|
"type": "\"error\" | \"info\" | \"neutral\" | \"success\" | \"warning\"",
|
|
9179
|
-
"mutable":
|
|
9814
|
+
"mutable": true,
|
|
9180
9815
|
"attr": "variant",
|
|
9181
9816
|
"reflectToAttr": false,
|
|
9182
9817
|
"docs": "The variant of the toast being rendered",
|
|
@@ -9259,7 +9894,13 @@
|
|
|
9259
9894
|
"passive": true
|
|
9260
9895
|
}
|
|
9261
9896
|
],
|
|
9262
|
-
"styles": [
|
|
9897
|
+
"styles": [
|
|
9898
|
+
{
|
|
9899
|
+
"name": "--ic-z-index-toast",
|
|
9900
|
+
"annotation": "prop",
|
|
9901
|
+
"docs": "z-index of toast"
|
|
9902
|
+
}
|
|
9903
|
+
],
|
|
9263
9904
|
"slots": [
|
|
9264
9905
|
{
|
|
9265
9906
|
"name": "action",
|
|
@@ -9754,7 +10395,7 @@
|
|
|
9754
10395
|
},
|
|
9755
10396
|
{
|
|
9756
10397
|
"name": "variant",
|
|
9757
|
-
"type": "\"body\" | \"caption\" | \"caption-uppercase\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
10398
|
+
"type": "\"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
9758
10399
|
"mutable": false,
|
|
9759
10400
|
"attr": "variant",
|
|
9760
10401
|
"reflectToAttr": false,
|
|
@@ -9774,6 +10415,18 @@
|
|
|
9774
10415
|
"value": "caption-uppercase",
|
|
9775
10416
|
"type": "string"
|
|
9776
10417
|
},
|
|
10418
|
+
{
|
|
10419
|
+
"value": "code-extra-small",
|
|
10420
|
+
"type": "string"
|
|
10421
|
+
},
|
|
10422
|
+
{
|
|
10423
|
+
"value": "code-large",
|
|
10424
|
+
"type": "string"
|
|
10425
|
+
},
|
|
10426
|
+
{
|
|
10427
|
+
"value": "code-small",
|
|
10428
|
+
"type": "string"
|
|
10429
|
+
},
|
|
9777
10430
|
{
|
|
9778
10431
|
"value": "h1",
|
|
9779
10432
|
"type": "string"
|
|
@@ -9833,10 +10486,13 @@
|
|
|
9833
10486
|
"ic-input-validation",
|
|
9834
10487
|
"ic-loading-indicator",
|
|
9835
10488
|
"ic-menu",
|
|
10489
|
+
"ic-menu-group",
|
|
10490
|
+
"ic-menu-item",
|
|
9836
10491
|
"ic-navigation-group",
|
|
9837
10492
|
"ic-navigation-item",
|
|
9838
10493
|
"ic-navigation-menu",
|
|
9839
10494
|
"ic-page-header",
|
|
10495
|
+
"ic-popover-menu",
|
|
9840
10496
|
"ic-radio-option",
|
|
9841
10497
|
"ic-select",
|
|
9842
10498
|
"ic-side-navigation",
|
|
@@ -9896,6 +10552,12 @@
|
|
|
9896
10552
|
"ic-menu": [
|
|
9897
10553
|
"ic-typography"
|
|
9898
10554
|
],
|
|
10555
|
+
"ic-menu-group": [
|
|
10556
|
+
"ic-typography"
|
|
10557
|
+
],
|
|
10558
|
+
"ic-menu-item": [
|
|
10559
|
+
"ic-typography"
|
|
10560
|
+
],
|
|
9899
10561
|
"ic-navigation-group": [
|
|
9900
10562
|
"ic-typography"
|
|
9901
10563
|
],
|
|
@@ -9908,6 +10570,9 @@
|
|
|
9908
10570
|
"ic-page-header": [
|
|
9909
10571
|
"ic-typography"
|
|
9910
10572
|
],
|
|
10573
|
+
"ic-popover-menu": [
|
|
10574
|
+
"ic-typography"
|
|
10575
|
+
],
|
|
9911
10576
|
"ic-radio-option": [
|
|
9912
10577
|
"ic-typography"
|
|
9913
10578
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukic/docs",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.12",
|
|
4
4
|
"description": "API documentation for @ukic components",
|
|
5
5
|
"main": "docs.json",
|
|
6
6
|
"types": "docs.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"docs.d.ts"
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "72bf817d43a6f91d56e03aa4d4252ca817285fca"
|
|
13
13
|
}
|