@ukic/docs 3.4.9 → 3.4.11
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 +781 -194
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -274,6 +274,10 @@
|
|
|
274
274
|
{
|
|
275
275
|
"name": "slot",
|
|
276
276
|
"text": "label - Content is placed as the accordion group title."
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "slot",
|
|
280
|
+
"text": "accessibleButtonLabel - Content is placed as the accessible label for the 'See all/Hide all' button for screen reader users. If this slot is not used, the `accessibleButtonLabel` prop will be used as the accessible label instead."
|
|
277
281
|
}
|
|
278
282
|
],
|
|
279
283
|
"usage": {},
|
|
@@ -505,6 +509,10 @@
|
|
|
505
509
|
],
|
|
506
510
|
"styles": [],
|
|
507
511
|
"slots": [
|
|
512
|
+
{
|
|
513
|
+
"name": "accessibleButtonLabel",
|
|
514
|
+
"docs": "Content is placed as the accessible label for the 'See all/Hide all' button for screen reader users. If this slot is not used, the `accessibleButtonLabel` prop will be used as the accessible label instead."
|
|
515
|
+
},
|
|
508
516
|
{
|
|
509
517
|
"name": "label",
|
|
510
518
|
"docs": "Content is placed as the accordion group title."
|
|
@@ -3313,89 +3321,753 @@
|
|
|
3313
3321
|
}
|
|
3314
3322
|
},
|
|
3315
3323
|
"mutable": false,
|
|
3316
|
-
"attr": "type",
|
|
3324
|
+
"attr": "type",
|
|
3325
|
+
"reflectToAttr": false,
|
|
3326
|
+
"docs": "The type of the button.",
|
|
3327
|
+
"docsTags": [],
|
|
3328
|
+
"default": "\"button\"",
|
|
3329
|
+
"values": [
|
|
3330
|
+
{
|
|
3331
|
+
"value": "button",
|
|
3332
|
+
"type": "string"
|
|
3333
|
+
},
|
|
3334
|
+
{
|
|
3335
|
+
"value": "reset",
|
|
3336
|
+
"type": "string"
|
|
3337
|
+
},
|
|
3338
|
+
{
|
|
3339
|
+
"value": "submit",
|
|
3340
|
+
"type": "string"
|
|
3341
|
+
}
|
|
3342
|
+
],
|
|
3343
|
+
"optional": false,
|
|
3344
|
+
"required": false,
|
|
3345
|
+
"getter": false,
|
|
3346
|
+
"setter": false
|
|
3347
|
+
},
|
|
3348
|
+
{
|
|
3349
|
+
"name": "variant",
|
|
3350
|
+
"type": "\"destructive\" | \"icon\" | \"icon-destructive\" | \"icon-primary\" | \"icon-secondary\" | \"icon-tertiary\" | \"primary\" | \"secondary\" | \"tertiary\"",
|
|
3351
|
+
"complexType": {
|
|
3352
|
+
"original": "IcButtonVariants",
|
|
3353
|
+
"resolved": "\"destructive\" | \"icon\" | \"icon-destructive\" | \"icon-primary\" | \"icon-secondary\" | \"icon-tertiary\" | \"primary\" | \"secondary\" | \"tertiary\"",
|
|
3354
|
+
"references": {
|
|
3355
|
+
"IcButtonVariants": {
|
|
3356
|
+
"location": "import",
|
|
3357
|
+
"path": "./ic-button.types",
|
|
3358
|
+
"id": "src/components/ic-button/ic-button.types.ts::IcButtonVariants"
|
|
3359
|
+
}
|
|
3360
|
+
}
|
|
3361
|
+
},
|
|
3362
|
+
"mutable": true,
|
|
3363
|
+
"attr": "variant",
|
|
3364
|
+
"reflectToAttr": false,
|
|
3365
|
+
"docs": "The variant of the button to be displayed.",
|
|
3366
|
+
"docsTags": [],
|
|
3367
|
+
"default": "\"primary\"",
|
|
3368
|
+
"values": [
|
|
3369
|
+
{
|
|
3370
|
+
"value": "destructive",
|
|
3371
|
+
"type": "string"
|
|
3372
|
+
},
|
|
3373
|
+
{
|
|
3374
|
+
"value": "icon",
|
|
3375
|
+
"type": "string"
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"value": "icon-destructive",
|
|
3379
|
+
"type": "string"
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"value": "icon-primary",
|
|
3383
|
+
"type": "string"
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"value": "icon-secondary",
|
|
3387
|
+
"type": "string"
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
"value": "icon-tertiary",
|
|
3391
|
+
"type": "string"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"value": "primary",
|
|
3395
|
+
"type": "string"
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
"value": "secondary",
|
|
3399
|
+
"type": "string"
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"value": "tertiary",
|
|
3403
|
+
"type": "string"
|
|
3404
|
+
}
|
|
3405
|
+
],
|
|
3406
|
+
"optional": false,
|
|
3407
|
+
"required": false,
|
|
3408
|
+
"getter": false,
|
|
3409
|
+
"setter": false
|
|
3410
|
+
}
|
|
3411
|
+
],
|
|
3412
|
+
"methods": [
|
|
3413
|
+
{
|
|
3414
|
+
"name": "setFocus",
|
|
3415
|
+
"returns": {
|
|
3416
|
+
"type": "Promise<void>",
|
|
3417
|
+
"docs": ""
|
|
3418
|
+
},
|
|
3419
|
+
"complexType": {
|
|
3420
|
+
"signature": "() => Promise<void>",
|
|
3421
|
+
"parameters": [],
|
|
3422
|
+
"references": {
|
|
3423
|
+
"Promise": {
|
|
3424
|
+
"location": "global",
|
|
3425
|
+
"id": "global::Promise"
|
|
3426
|
+
}
|
|
3427
|
+
},
|
|
3428
|
+
"return": "Promise<void>"
|
|
3429
|
+
},
|
|
3430
|
+
"signature": "setFocus() => Promise<void>",
|
|
3431
|
+
"parameters": [],
|
|
3432
|
+
"docs": "Sets focus on the native `button`.",
|
|
3433
|
+
"docsTags": []
|
|
3434
|
+
}
|
|
3435
|
+
],
|
|
3436
|
+
"events": [
|
|
3437
|
+
{
|
|
3438
|
+
"event": "icBlur",
|
|
3439
|
+
"detail": "void",
|
|
3440
|
+
"bubbles": true,
|
|
3441
|
+
"complexType": {
|
|
3442
|
+
"original": "void",
|
|
3443
|
+
"resolved": "void",
|
|
3444
|
+
"references": {}
|
|
3445
|
+
},
|
|
3446
|
+
"cancelable": true,
|
|
3447
|
+
"composed": true,
|
|
3448
|
+
"docs": "Emitted when button has blur",
|
|
3449
|
+
"docsTags": []
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"event": "icFileSelection",
|
|
3453
|
+
"detail": "FileList",
|
|
3454
|
+
"bubbles": true,
|
|
3455
|
+
"complexType": {
|
|
3456
|
+
"original": "FileList",
|
|
3457
|
+
"resolved": "FileList",
|
|
3458
|
+
"references": {
|
|
3459
|
+
"FileList": {
|
|
3460
|
+
"location": "global",
|
|
3461
|
+
"id": "global::FileList"
|
|
3462
|
+
}
|
|
3463
|
+
}
|
|
3464
|
+
},
|
|
3465
|
+
"cancelable": true,
|
|
3466
|
+
"composed": true,
|
|
3467
|
+
"docs": "If `fileUpload` is set to `true`, this will be emitted when a file is selected in the native explorer.",
|
|
3468
|
+
"docsTags": []
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"event": "icFocus",
|
|
3472
|
+
"detail": "void",
|
|
3473
|
+
"bubbles": true,
|
|
3474
|
+
"complexType": {
|
|
3475
|
+
"original": "void",
|
|
3476
|
+
"resolved": "void",
|
|
3477
|
+
"references": {}
|
|
3478
|
+
},
|
|
3479
|
+
"cancelable": true,
|
|
3480
|
+
"composed": true,
|
|
3481
|
+
"docs": "Emitted when button has focus",
|
|
3482
|
+
"docsTags": []
|
|
3483
|
+
}
|
|
3484
|
+
],
|
|
3485
|
+
"listeners": [
|
|
3486
|
+
{
|
|
3487
|
+
"event": "click",
|
|
3488
|
+
"capture": true,
|
|
3489
|
+
"passive": false
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
"event": "brandChange",
|
|
3493
|
+
"target": "document",
|
|
3494
|
+
"capture": false,
|
|
3495
|
+
"passive": false
|
|
3496
|
+
}
|
|
3497
|
+
],
|
|
3498
|
+
"styles": [
|
|
3499
|
+
{
|
|
3500
|
+
"name": "--height",
|
|
3501
|
+
"annotation": "prop",
|
|
3502
|
+
"docs": "The height of the button."
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
"name": "--min-width",
|
|
3506
|
+
"annotation": "prop",
|
|
3507
|
+
"docs": "Minimum width of the button."
|
|
3508
|
+
}
|
|
3509
|
+
],
|
|
3510
|
+
"slots": [
|
|
3511
|
+
{
|
|
3512
|
+
"name": "badge",
|
|
3513
|
+
"docs": "Badge component overlaying the top right of the button."
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"name": "left-icon",
|
|
3517
|
+
"docs": "Content will be placed to the left of the button label."
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"name": "right-icon",
|
|
3521
|
+
"docs": "Content will be placed to the right of the button label."
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
"name": "router-item",
|
|
3525
|
+
"docs": "Handle routing by nesting your routes in this slot. Setting loading to true will have no impact on this slot."
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
"name": "top-icon",
|
|
3529
|
+
"docs": "Content will be placed above the button label."
|
|
3530
|
+
}
|
|
3531
|
+
],
|
|
3532
|
+
"parts": [],
|
|
3533
|
+
"dependents": [
|
|
3534
|
+
"ic-accordion-group",
|
|
3535
|
+
"ic-alert",
|
|
3536
|
+
"ic-back-to-top",
|
|
3537
|
+
"ic-dialog",
|
|
3538
|
+
"ic-horizontal-scroll",
|
|
3539
|
+
"ic-menu",
|
|
3540
|
+
"ic-menu-item",
|
|
3541
|
+
"ic-navigation-button",
|
|
3542
|
+
"ic-navigation-menu",
|
|
3543
|
+
"ic-pagination",
|
|
3544
|
+
"ic-search-bar",
|
|
3545
|
+
"ic-select",
|
|
3546
|
+
"ic-side-navigation",
|
|
3547
|
+
"ic-toast",
|
|
3548
|
+
"ic-toggle-button",
|
|
3549
|
+
"ic-top-navigation"
|
|
3550
|
+
],
|
|
3551
|
+
"dependencies": [
|
|
3552
|
+
"ic-typography",
|
|
3553
|
+
"ic-loading-indicator",
|
|
3554
|
+
"ic-tooltip"
|
|
3555
|
+
],
|
|
3556
|
+
"dependencyGraph": {
|
|
3557
|
+
"ic-button": [
|
|
3558
|
+
"ic-typography",
|
|
3559
|
+
"ic-loading-indicator",
|
|
3560
|
+
"ic-tooltip"
|
|
3561
|
+
],
|
|
3562
|
+
"ic-loading-indicator": [
|
|
3563
|
+
"ic-typography"
|
|
3564
|
+
],
|
|
3565
|
+
"ic-tooltip": [
|
|
3566
|
+
"ic-typography"
|
|
3567
|
+
],
|
|
3568
|
+
"ic-accordion-group": [
|
|
3569
|
+
"ic-button"
|
|
3570
|
+
],
|
|
3571
|
+
"ic-alert": [
|
|
3572
|
+
"ic-button"
|
|
3573
|
+
],
|
|
3574
|
+
"ic-back-to-top": [
|
|
3575
|
+
"ic-button"
|
|
3576
|
+
],
|
|
3577
|
+
"ic-dialog": [
|
|
3578
|
+
"ic-button"
|
|
3579
|
+
],
|
|
3580
|
+
"ic-horizontal-scroll": [
|
|
3581
|
+
"ic-button"
|
|
3582
|
+
],
|
|
3583
|
+
"ic-menu": [
|
|
3584
|
+
"ic-button"
|
|
3585
|
+
],
|
|
3586
|
+
"ic-menu-item": [
|
|
3587
|
+
"ic-button"
|
|
3588
|
+
],
|
|
3589
|
+
"ic-navigation-button": [
|
|
3590
|
+
"ic-button"
|
|
3591
|
+
],
|
|
3592
|
+
"ic-navigation-menu": [
|
|
3593
|
+
"ic-button"
|
|
3594
|
+
],
|
|
3595
|
+
"ic-pagination": [
|
|
3596
|
+
"ic-button"
|
|
3597
|
+
],
|
|
3598
|
+
"ic-search-bar": [
|
|
3599
|
+
"ic-button"
|
|
3600
|
+
],
|
|
3601
|
+
"ic-select": [
|
|
3602
|
+
"ic-button"
|
|
3603
|
+
],
|
|
3604
|
+
"ic-side-navigation": [
|
|
3605
|
+
"ic-button"
|
|
3606
|
+
],
|
|
3607
|
+
"ic-toast": [
|
|
3608
|
+
"ic-button"
|
|
3609
|
+
],
|
|
3610
|
+
"ic-toggle-button": [
|
|
3611
|
+
"ic-button"
|
|
3612
|
+
],
|
|
3613
|
+
"ic-top-navigation": [
|
|
3614
|
+
"ic-button"
|
|
3615
|
+
]
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"filePath": "src/components/ic-card-horizontal/ic-card-horizontal.tsx",
|
|
3620
|
+
"encapsulation": "shadow",
|
|
3621
|
+
"tag": "ic-card-horizontal",
|
|
3622
|
+
"readme": "# ic-card-horizontal\n\n\n",
|
|
3623
|
+
"docs": "",
|
|
3624
|
+
"docsTags": [
|
|
3625
|
+
{
|
|
3626
|
+
"name": "slot",
|
|
3627
|
+
"text": "heading - Content will be placed at the top of the horizontal card to the right of the icon."
|
|
3628
|
+
},
|
|
3629
|
+
{
|
|
3630
|
+
"name": "slot",
|
|
3631
|
+
"text": "message - Content will be placed in the main body of the horizontal card."
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"name": "slot",
|
|
3635
|
+
"text": "subheading - Content will be placed below the card heading. Only for `density=\"spacious\"`."
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
"name": "slot",
|
|
3639
|
+
"text": "adornment - Content will be placed below the card subheading. Only for `density=\"spacious\"`."
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
"name": "slot",
|
|
3643
|
+
"text": "image-left - Content will be placed to the left of all other content."
|
|
3644
|
+
},
|
|
3645
|
+
{
|
|
3646
|
+
"name": "slot",
|
|
3647
|
+
"text": "image-right - Content will be placed to the right of all other content."
|
|
3648
|
+
},
|
|
3649
|
+
{
|
|
3650
|
+
"name": "slot",
|
|
3651
|
+
"text": "icon - Content will be placed to the left of the horizontal card heading."
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
"name": "slot",
|
|
3655
|
+
"text": "interaction-button - Content will be placed in the top right corner of the heading section."
|
|
3656
|
+
},
|
|
3657
|
+
{
|
|
3658
|
+
"name": "slot",
|
|
3659
|
+
"text": "badge - Badge component overlaying the top right of the horizontal card."
|
|
3660
|
+
}
|
|
3661
|
+
],
|
|
3662
|
+
"usage": {},
|
|
3663
|
+
"props": [
|
|
3664
|
+
{
|
|
3665
|
+
"name": "clickable",
|
|
3666
|
+
"type": "boolean",
|
|
3667
|
+
"complexType": {
|
|
3668
|
+
"original": "boolean",
|
|
3669
|
+
"resolved": "boolean",
|
|
3670
|
+
"references": {}
|
|
3671
|
+
},
|
|
3672
|
+
"mutable": true,
|
|
3673
|
+
"attr": "clickable",
|
|
3674
|
+
"reflectToAttr": false,
|
|
3675
|
+
"docs": "If `true`, the horizontal card will be a clickable variant, instead of static.",
|
|
3676
|
+
"docsTags": [],
|
|
3677
|
+
"default": "false",
|
|
3678
|
+
"values": [
|
|
3679
|
+
{
|
|
3680
|
+
"type": "boolean"
|
|
3681
|
+
}
|
|
3682
|
+
],
|
|
3683
|
+
"optional": false,
|
|
3684
|
+
"required": false,
|
|
3685
|
+
"getter": false,
|
|
3686
|
+
"setter": false
|
|
3687
|
+
},
|
|
3688
|
+
{
|
|
3689
|
+
"name": "density",
|
|
3690
|
+
"type": "\"default\" | \"spacious\"",
|
|
3691
|
+
"complexType": {
|
|
3692
|
+
"original": "IcCardDensity",
|
|
3693
|
+
"resolved": "\"default\" | \"spacious\"",
|
|
3694
|
+
"references": {
|
|
3695
|
+
"IcCardDensity": {
|
|
3696
|
+
"location": "import",
|
|
3697
|
+
"path": "../../utils/types",
|
|
3698
|
+
"id": "src/utils/types.ts::IcCardDensity"
|
|
3699
|
+
}
|
|
3700
|
+
}
|
|
3701
|
+
},
|
|
3702
|
+
"mutable": false,
|
|
3703
|
+
"attr": "density",
|
|
3704
|
+
"reflectToAttr": false,
|
|
3705
|
+
"docs": "The padding of the horizontal card.",
|
|
3706
|
+
"docsTags": [],
|
|
3707
|
+
"default": "\"default\"",
|
|
3708
|
+
"values": [
|
|
3709
|
+
{
|
|
3710
|
+
"value": "default",
|
|
3711
|
+
"type": "string"
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"value": "spacious",
|
|
3715
|
+
"type": "string"
|
|
3716
|
+
}
|
|
3717
|
+
],
|
|
3718
|
+
"optional": false,
|
|
3719
|
+
"required": false,
|
|
3720
|
+
"getter": false,
|
|
3721
|
+
"setter": false
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
"name": "disabled",
|
|
3725
|
+
"type": "boolean",
|
|
3726
|
+
"complexType": {
|
|
3727
|
+
"original": "boolean",
|
|
3728
|
+
"resolved": "boolean",
|
|
3729
|
+
"references": {}
|
|
3730
|
+
},
|
|
3731
|
+
"mutable": false,
|
|
3732
|
+
"attr": "disabled",
|
|
3733
|
+
"reflectToAttr": false,
|
|
3734
|
+
"docs": "If `true`, the horizontal card will be disabled if it is clickable.",
|
|
3735
|
+
"docsTags": [],
|
|
3736
|
+
"default": "false",
|
|
3737
|
+
"values": [
|
|
3738
|
+
{
|
|
3739
|
+
"type": "boolean"
|
|
3740
|
+
}
|
|
3741
|
+
],
|
|
3742
|
+
"optional": false,
|
|
3743
|
+
"required": false,
|
|
3744
|
+
"getter": false,
|
|
3745
|
+
"setter": false
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
"name": "heading",
|
|
3749
|
+
"type": "string | undefined",
|
|
3750
|
+
"complexType": {
|
|
3751
|
+
"original": "string",
|
|
3752
|
+
"resolved": "string | undefined",
|
|
3753
|
+
"references": {}
|
|
3754
|
+
},
|
|
3755
|
+
"mutable": false,
|
|
3756
|
+
"attr": "heading",
|
|
3757
|
+
"reflectToAttr": false,
|
|
3758
|
+
"docs": "The heading for the horizontal card. This is required, unless a slotted heading is used.",
|
|
3759
|
+
"docsTags": [],
|
|
3760
|
+
"values": [
|
|
3761
|
+
{
|
|
3762
|
+
"type": "string"
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
"type": "undefined"
|
|
3766
|
+
}
|
|
3767
|
+
],
|
|
3768
|
+
"optional": true,
|
|
3769
|
+
"required": false,
|
|
3770
|
+
"getter": false,
|
|
3771
|
+
"setter": false
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
"name": "href",
|
|
3775
|
+
"type": "string | undefined",
|
|
3776
|
+
"complexType": {
|
|
3777
|
+
"original": "string | undefined",
|
|
3778
|
+
"resolved": "string | undefined",
|
|
3779
|
+
"references": {}
|
|
3780
|
+
},
|
|
3781
|
+
"mutable": false,
|
|
3782
|
+
"attr": "href",
|
|
3783
|
+
"reflectToAttr": false,
|
|
3784
|
+
"docs": "The URL that the clickable horizontal card link points to. If set, the clickable horizontal card will render as an \"a\" tag, otherwise it will render as a button.",
|
|
3785
|
+
"docsTags": [],
|
|
3786
|
+
"values": [
|
|
3787
|
+
{
|
|
3788
|
+
"type": "string"
|
|
3789
|
+
},
|
|
3790
|
+
{
|
|
3791
|
+
"type": "undefined"
|
|
3792
|
+
}
|
|
3793
|
+
],
|
|
3794
|
+
"optional": true,
|
|
3795
|
+
"required": false,
|
|
3796
|
+
"getter": false,
|
|
3797
|
+
"setter": false
|
|
3798
|
+
},
|
|
3799
|
+
{
|
|
3800
|
+
"name": "hreflang",
|
|
3801
|
+
"type": "string | undefined",
|
|
3802
|
+
"complexType": {
|
|
3803
|
+
"original": "string",
|
|
3804
|
+
"resolved": "string | undefined",
|
|
3805
|
+
"references": {}
|
|
3806
|
+
},
|
|
3807
|
+
"mutable": false,
|
|
3808
|
+
"attr": "hreflang",
|
|
3809
|
+
"reflectToAttr": false,
|
|
3810
|
+
"docs": "The human language of the linked URL.",
|
|
3811
|
+
"docsTags": [],
|
|
3812
|
+
"default": "\"\"",
|
|
3813
|
+
"values": [
|
|
3814
|
+
{
|
|
3815
|
+
"type": "string"
|
|
3816
|
+
},
|
|
3817
|
+
{
|
|
3818
|
+
"type": "undefined"
|
|
3819
|
+
}
|
|
3820
|
+
],
|
|
3821
|
+
"optional": true,
|
|
3822
|
+
"required": false,
|
|
3823
|
+
"getter": false,
|
|
3824
|
+
"setter": false
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"name": "message",
|
|
3828
|
+
"type": "string | undefined",
|
|
3829
|
+
"complexType": {
|
|
3830
|
+
"original": "string",
|
|
3831
|
+
"resolved": "string | undefined",
|
|
3832
|
+
"references": {}
|
|
3833
|
+
},
|
|
3834
|
+
"mutable": false,
|
|
3835
|
+
"attr": "message",
|
|
3836
|
+
"reflectToAttr": false,
|
|
3837
|
+
"docs": "The main body message of the horizontal card.",
|
|
3838
|
+
"docsTags": [],
|
|
3839
|
+
"default": "\"\"",
|
|
3840
|
+
"values": [
|
|
3841
|
+
{
|
|
3842
|
+
"type": "string"
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"type": "undefined"
|
|
3846
|
+
}
|
|
3847
|
+
],
|
|
3848
|
+
"optional": true,
|
|
3849
|
+
"required": false,
|
|
3850
|
+
"getter": false,
|
|
3851
|
+
"setter": false
|
|
3852
|
+
},
|
|
3853
|
+
{
|
|
3854
|
+
"name": "referrerpolicy",
|
|
3855
|
+
"type": "\"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\" | undefined",
|
|
3856
|
+
"complexType": {
|
|
3857
|
+
"original": "ReferrerPolicy",
|
|
3858
|
+
"resolved": "\"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\" | undefined",
|
|
3859
|
+
"references": {
|
|
3860
|
+
"ReferrerPolicy": {
|
|
3861
|
+
"location": "global",
|
|
3862
|
+
"id": "global::ReferrerPolicy"
|
|
3863
|
+
}
|
|
3864
|
+
}
|
|
3865
|
+
},
|
|
3866
|
+
"mutable": false,
|
|
3867
|
+
"attr": "referrerpolicy",
|
|
3868
|
+
"reflectToAttr": false,
|
|
3869
|
+
"docs": "How much of the referrer to send when following the link.",
|
|
3870
|
+
"docsTags": [],
|
|
3871
|
+
"values": [
|
|
3872
|
+
{
|
|
3873
|
+
"type": "\"\""
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"value": "no-referrer",
|
|
3877
|
+
"type": "string"
|
|
3878
|
+
},
|
|
3879
|
+
{
|
|
3880
|
+
"value": "no-referrer-when-downgrade",
|
|
3881
|
+
"type": "string"
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"value": "origin",
|
|
3885
|
+
"type": "string"
|
|
3886
|
+
},
|
|
3887
|
+
{
|
|
3888
|
+
"value": "origin-when-cross-origin",
|
|
3889
|
+
"type": "string"
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
"value": "same-origin",
|
|
3893
|
+
"type": "string"
|
|
3894
|
+
},
|
|
3895
|
+
{
|
|
3896
|
+
"value": "strict-origin",
|
|
3897
|
+
"type": "string"
|
|
3898
|
+
},
|
|
3899
|
+
{
|
|
3900
|
+
"value": "strict-origin-when-cross-origin",
|
|
3901
|
+
"type": "string"
|
|
3902
|
+
},
|
|
3903
|
+
{
|
|
3904
|
+
"value": "unsafe-url",
|
|
3905
|
+
"type": "string"
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
"type": "undefined"
|
|
3909
|
+
}
|
|
3910
|
+
],
|
|
3911
|
+
"optional": true,
|
|
3912
|
+
"required": false,
|
|
3913
|
+
"getter": false,
|
|
3914
|
+
"setter": false
|
|
3915
|
+
},
|
|
3916
|
+
{
|
|
3917
|
+
"name": "rel",
|
|
3918
|
+
"type": "string | undefined",
|
|
3919
|
+
"complexType": {
|
|
3920
|
+
"original": "string",
|
|
3921
|
+
"resolved": "string | undefined",
|
|
3922
|
+
"references": {}
|
|
3923
|
+
},
|
|
3924
|
+
"mutable": false,
|
|
3925
|
+
"attr": "rel",
|
|
3926
|
+
"reflectToAttr": false,
|
|
3927
|
+
"docs": "The relationship of the linked URL as space-separated link types.",
|
|
3928
|
+
"docsTags": [],
|
|
3929
|
+
"values": [
|
|
3930
|
+
{
|
|
3931
|
+
"type": "string"
|
|
3932
|
+
},
|
|
3933
|
+
{
|
|
3934
|
+
"type": "undefined"
|
|
3935
|
+
}
|
|
3936
|
+
],
|
|
3937
|
+
"optional": true,
|
|
3938
|
+
"required": false,
|
|
3939
|
+
"getter": false,
|
|
3940
|
+
"setter": false
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
"name": "size",
|
|
3944
|
+
"type": "\"large\" | \"medium\" | \"small\"",
|
|
3945
|
+
"complexType": {
|
|
3946
|
+
"original": "IcSizes",
|
|
3947
|
+
"resolved": "\"large\" | \"medium\" | \"small\"",
|
|
3948
|
+
"references": {
|
|
3949
|
+
"IcSizes": {
|
|
3950
|
+
"location": "import",
|
|
3951
|
+
"path": "../../utils/types",
|
|
3952
|
+
"id": "src/utils/types.ts::IcSizes"
|
|
3953
|
+
}
|
|
3954
|
+
}
|
|
3955
|
+
},
|
|
3956
|
+
"mutable": false,
|
|
3957
|
+
"attr": "size",
|
|
3958
|
+
"reflectToAttr": false,
|
|
3959
|
+
"docs": "The size of the horizontal card.",
|
|
3960
|
+
"docsTags": [],
|
|
3961
|
+
"default": "\"medium\"",
|
|
3962
|
+
"values": [
|
|
3963
|
+
{
|
|
3964
|
+
"value": "large",
|
|
3965
|
+
"type": "string"
|
|
3966
|
+
},
|
|
3967
|
+
{
|
|
3968
|
+
"value": "medium",
|
|
3969
|
+
"type": "string"
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
"value": "small",
|
|
3973
|
+
"type": "string"
|
|
3974
|
+
}
|
|
3975
|
+
],
|
|
3976
|
+
"optional": false,
|
|
3977
|
+
"required": false,
|
|
3978
|
+
"getter": false,
|
|
3979
|
+
"setter": false
|
|
3980
|
+
},
|
|
3981
|
+
{
|
|
3982
|
+
"name": "subheading",
|
|
3983
|
+
"type": "string | undefined",
|
|
3984
|
+
"complexType": {
|
|
3985
|
+
"original": "string",
|
|
3986
|
+
"resolved": "string | undefined",
|
|
3987
|
+
"references": {}
|
|
3988
|
+
},
|
|
3989
|
+
"mutable": false,
|
|
3990
|
+
"attr": "subheading",
|
|
3991
|
+
"reflectToAttr": false,
|
|
3992
|
+
"docs": "The subheading for the card.",
|
|
3993
|
+
"docsTags": [],
|
|
3994
|
+
"values": [
|
|
3995
|
+
{
|
|
3996
|
+
"type": "string"
|
|
3997
|
+
},
|
|
3998
|
+
{
|
|
3999
|
+
"type": "undefined"
|
|
4000
|
+
}
|
|
4001
|
+
],
|
|
4002
|
+
"optional": true,
|
|
4003
|
+
"required": false,
|
|
4004
|
+
"getter": false,
|
|
4005
|
+
"setter": false
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
"name": "target",
|
|
4009
|
+
"type": "string | undefined",
|
|
4010
|
+
"complexType": {
|
|
4011
|
+
"original": "string",
|
|
4012
|
+
"resolved": "string | undefined",
|
|
4013
|
+
"references": {}
|
|
4014
|
+
},
|
|
4015
|
+
"mutable": false,
|
|
4016
|
+
"attr": "target",
|
|
3317
4017
|
"reflectToAttr": false,
|
|
3318
|
-
"docs": "The
|
|
4018
|
+
"docs": "The place to display the linked URL, as the name for a browsing context (a tab, window, or iframe).",
|
|
3319
4019
|
"docsTags": [],
|
|
3320
|
-
"default": "\"button\"",
|
|
3321
4020
|
"values": [
|
|
3322
4021
|
{
|
|
3323
|
-
"value": "button",
|
|
3324
|
-
"type": "string"
|
|
3325
|
-
},
|
|
3326
|
-
{
|
|
3327
|
-
"value": "reset",
|
|
3328
4022
|
"type": "string"
|
|
3329
4023
|
},
|
|
3330
4024
|
{
|
|
3331
|
-
"
|
|
3332
|
-
"type": "string"
|
|
4025
|
+
"type": "undefined"
|
|
3333
4026
|
}
|
|
3334
4027
|
],
|
|
3335
|
-
"optional":
|
|
4028
|
+
"optional": true,
|
|
3336
4029
|
"required": false,
|
|
3337
4030
|
"getter": false,
|
|
3338
4031
|
"setter": false
|
|
3339
4032
|
},
|
|
3340
4033
|
{
|
|
3341
|
-
"name": "
|
|
3342
|
-
"type": "\"
|
|
4034
|
+
"name": "theme",
|
|
4035
|
+
"type": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
3343
4036
|
"complexType": {
|
|
3344
|
-
"original": "
|
|
3345
|
-
"resolved": "\"
|
|
4037
|
+
"original": "IcThemeMode",
|
|
4038
|
+
"resolved": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
3346
4039
|
"references": {
|
|
3347
|
-
"
|
|
4040
|
+
"IcThemeMode": {
|
|
3348
4041
|
"location": "import",
|
|
3349
|
-
"path": "
|
|
3350
|
-
"id": "src/
|
|
4042
|
+
"path": "../../utils/types",
|
|
4043
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
3351
4044
|
}
|
|
3352
4045
|
}
|
|
3353
4046
|
},
|
|
3354
|
-
"mutable":
|
|
3355
|
-
"attr": "
|
|
4047
|
+
"mutable": false,
|
|
4048
|
+
"attr": "theme",
|
|
3356
4049
|
"reflectToAttr": false,
|
|
3357
|
-
"docs": "
|
|
4050
|
+
"docs": "Sets the theme color to the dark or light theme color. \"inherit\" will set the color based on the system settings or ic-theme component.",
|
|
3358
4051
|
"docsTags": [],
|
|
3359
|
-
"default": "\"
|
|
4052
|
+
"default": "\"inherit\"",
|
|
3360
4053
|
"values": [
|
|
3361
4054
|
{
|
|
3362
|
-
"value": "
|
|
3363
|
-
"type": "string"
|
|
3364
|
-
},
|
|
3365
|
-
{
|
|
3366
|
-
"value": "icon",
|
|
3367
|
-
"type": "string"
|
|
3368
|
-
},
|
|
3369
|
-
{
|
|
3370
|
-
"value": "icon-destructive",
|
|
3371
|
-
"type": "string"
|
|
3372
|
-
},
|
|
3373
|
-
{
|
|
3374
|
-
"value": "icon-primary",
|
|
3375
|
-
"type": "string"
|
|
3376
|
-
},
|
|
3377
|
-
{
|
|
3378
|
-
"value": "icon-secondary",
|
|
3379
|
-
"type": "string"
|
|
3380
|
-
},
|
|
3381
|
-
{
|
|
3382
|
-
"value": "icon-tertiary",
|
|
4055
|
+
"value": "dark",
|
|
3383
4056
|
"type": "string"
|
|
3384
4057
|
},
|
|
3385
4058
|
{
|
|
3386
|
-
"value": "
|
|
4059
|
+
"value": "inherit",
|
|
3387
4060
|
"type": "string"
|
|
3388
4061
|
},
|
|
3389
4062
|
{
|
|
3390
|
-
"value": "
|
|
4063
|
+
"value": "light",
|
|
3391
4064
|
"type": "string"
|
|
3392
4065
|
},
|
|
3393
4066
|
{
|
|
3394
|
-
"
|
|
3395
|
-
"type": "string"
|
|
4067
|
+
"type": "undefined"
|
|
3396
4068
|
}
|
|
3397
4069
|
],
|
|
3398
|
-
"optional":
|
|
4070
|
+
"optional": true,
|
|
3399
4071
|
"required": false,
|
|
3400
4072
|
"getter": false,
|
|
3401
4073
|
"setter": false
|
|
@@ -3421,59 +4093,11 @@
|
|
|
3421
4093
|
},
|
|
3422
4094
|
"signature": "setFocus() => Promise<void>",
|
|
3423
4095
|
"parameters": [],
|
|
3424
|
-
"docs": "Sets focus on the
|
|
3425
|
-
"docsTags": []
|
|
3426
|
-
}
|
|
3427
|
-
],
|
|
3428
|
-
"events": [
|
|
3429
|
-
{
|
|
3430
|
-
"event": "icBlur",
|
|
3431
|
-
"detail": "void",
|
|
3432
|
-
"bubbles": true,
|
|
3433
|
-
"complexType": {
|
|
3434
|
-
"original": "void",
|
|
3435
|
-
"resolved": "void",
|
|
3436
|
-
"references": {}
|
|
3437
|
-
},
|
|
3438
|
-
"cancelable": true,
|
|
3439
|
-
"composed": true,
|
|
3440
|
-
"docs": "Emitted when button has blur",
|
|
3441
|
-
"docsTags": []
|
|
3442
|
-
},
|
|
3443
|
-
{
|
|
3444
|
-
"event": "icFileSelection",
|
|
3445
|
-
"detail": "FileList",
|
|
3446
|
-
"bubbles": true,
|
|
3447
|
-
"complexType": {
|
|
3448
|
-
"original": "FileList",
|
|
3449
|
-
"resolved": "FileList",
|
|
3450
|
-
"references": {
|
|
3451
|
-
"FileList": {
|
|
3452
|
-
"location": "global",
|
|
3453
|
-
"id": "global::FileList"
|
|
3454
|
-
}
|
|
3455
|
-
}
|
|
3456
|
-
},
|
|
3457
|
-
"cancelable": true,
|
|
3458
|
-
"composed": true,
|
|
3459
|
-
"docs": "If `fileUpload` is set to `true`, this will be emitted when a file is selected in the native explorer.",
|
|
3460
|
-
"docsTags": []
|
|
3461
|
-
},
|
|
3462
|
-
{
|
|
3463
|
-
"event": "icFocus",
|
|
3464
|
-
"detail": "void",
|
|
3465
|
-
"bubbles": true,
|
|
3466
|
-
"complexType": {
|
|
3467
|
-
"original": "void",
|
|
3468
|
-
"resolved": "void",
|
|
3469
|
-
"references": {}
|
|
3470
|
-
},
|
|
3471
|
-
"cancelable": true,
|
|
3472
|
-
"composed": true,
|
|
3473
|
-
"docs": "Emitted when button has focus",
|
|
4096
|
+
"docs": "Sets focus on the card.",
|
|
3474
4097
|
"docsTags": []
|
|
3475
4098
|
}
|
|
3476
4099
|
],
|
|
4100
|
+
"events": [],
|
|
3477
4101
|
"listeners": [
|
|
3478
4102
|
{
|
|
3479
4103
|
"event": "click",
|
|
@@ -3489,121 +4113,57 @@
|
|
|
3489
4113
|
],
|
|
3490
4114
|
"styles": [
|
|
3491
4115
|
{
|
|
3492
|
-
"name": "--
|
|
3493
|
-
"annotation": "prop",
|
|
3494
|
-
"docs": "The height of the button."
|
|
3495
|
-
},
|
|
3496
|
-
{
|
|
3497
|
-
"name": "--min-width",
|
|
4116
|
+
"name": "--card-horizontal-width",
|
|
3498
4117
|
"annotation": "prop",
|
|
3499
|
-
"docs": "
|
|
4118
|
+
"docs": "Width of the horizontal card"
|
|
3500
4119
|
}
|
|
3501
4120
|
],
|
|
3502
4121
|
"slots": [
|
|
4122
|
+
{
|
|
4123
|
+
"name": "adornment",
|
|
4124
|
+
"docs": "Content will be placed below the card subheading. Only for `density=\"spacious\"`."
|
|
4125
|
+
},
|
|
3503
4126
|
{
|
|
3504
4127
|
"name": "badge",
|
|
3505
|
-
"docs": "Badge component overlaying the top right of the
|
|
4128
|
+
"docs": "Badge component overlaying the top right of the horizontal card."
|
|
3506
4129
|
},
|
|
3507
4130
|
{
|
|
3508
|
-
"name": "
|
|
3509
|
-
"docs": "Content will be placed to the
|
|
4131
|
+
"name": "heading",
|
|
4132
|
+
"docs": "Content will be placed at the top of the horizontal card to the right of the icon."
|
|
3510
4133
|
},
|
|
3511
4134
|
{
|
|
3512
|
-
"name": "
|
|
3513
|
-
"docs": "Content will be placed to the
|
|
4135
|
+
"name": "icon",
|
|
4136
|
+
"docs": "Content will be placed to the left of the horizontal card heading."
|
|
3514
4137
|
},
|
|
3515
4138
|
{
|
|
3516
|
-
"name": "
|
|
3517
|
-
"docs": "
|
|
4139
|
+
"name": "image-left",
|
|
4140
|
+
"docs": "Content will be placed to the left of all other content."
|
|
3518
4141
|
},
|
|
3519
4142
|
{
|
|
3520
|
-
"name": "
|
|
3521
|
-
"docs": "Content will be placed
|
|
4143
|
+
"name": "image-right",
|
|
4144
|
+
"docs": "Content will be placed to the right of all other content."
|
|
4145
|
+
},
|
|
4146
|
+
{
|
|
4147
|
+
"name": "interaction-button",
|
|
4148
|
+
"docs": "Content will be placed in the top right corner of the heading section."
|
|
4149
|
+
},
|
|
4150
|
+
{
|
|
4151
|
+
"name": "message",
|
|
4152
|
+
"docs": "Content will be placed in the main body of the horizontal card."
|
|
4153
|
+
},
|
|
4154
|
+
{
|
|
4155
|
+
"name": "subheading",
|
|
4156
|
+
"docs": "Content will be placed below the card heading. Only for `density=\"spacious\"`."
|
|
3522
4157
|
}
|
|
3523
4158
|
],
|
|
3524
4159
|
"parts": [],
|
|
3525
|
-
"dependents": [
|
|
3526
|
-
"ic-accordion-group",
|
|
3527
|
-
"ic-alert",
|
|
3528
|
-
"ic-back-to-top",
|
|
3529
|
-
"ic-dialog",
|
|
3530
|
-
"ic-horizontal-scroll",
|
|
3531
|
-
"ic-menu",
|
|
3532
|
-
"ic-menu-item",
|
|
3533
|
-
"ic-navigation-button",
|
|
3534
|
-
"ic-navigation-menu",
|
|
3535
|
-
"ic-pagination",
|
|
3536
|
-
"ic-search-bar",
|
|
3537
|
-
"ic-select",
|
|
3538
|
-
"ic-side-navigation",
|
|
3539
|
-
"ic-toast",
|
|
3540
|
-
"ic-toggle-button",
|
|
3541
|
-
"ic-top-navigation"
|
|
3542
|
-
],
|
|
4160
|
+
"dependents": [],
|
|
3543
4161
|
"dependencies": [
|
|
3544
|
-
"ic-typography"
|
|
3545
|
-
"ic-loading-indicator",
|
|
3546
|
-
"ic-tooltip"
|
|
4162
|
+
"ic-typography"
|
|
3547
4163
|
],
|
|
3548
4164
|
"dependencyGraph": {
|
|
3549
|
-
"ic-
|
|
3550
|
-
"ic-typography",
|
|
3551
|
-
"ic-loading-indicator",
|
|
3552
|
-
"ic-tooltip"
|
|
3553
|
-
],
|
|
3554
|
-
"ic-loading-indicator": [
|
|
3555
|
-
"ic-typography"
|
|
3556
|
-
],
|
|
3557
|
-
"ic-tooltip": [
|
|
4165
|
+
"ic-card-horizontal": [
|
|
3558
4166
|
"ic-typography"
|
|
3559
|
-
],
|
|
3560
|
-
"ic-accordion-group": [
|
|
3561
|
-
"ic-button"
|
|
3562
|
-
],
|
|
3563
|
-
"ic-alert": [
|
|
3564
|
-
"ic-button"
|
|
3565
|
-
],
|
|
3566
|
-
"ic-back-to-top": [
|
|
3567
|
-
"ic-button"
|
|
3568
|
-
],
|
|
3569
|
-
"ic-dialog": [
|
|
3570
|
-
"ic-button"
|
|
3571
|
-
],
|
|
3572
|
-
"ic-horizontal-scroll": [
|
|
3573
|
-
"ic-button"
|
|
3574
|
-
],
|
|
3575
|
-
"ic-menu": [
|
|
3576
|
-
"ic-button"
|
|
3577
|
-
],
|
|
3578
|
-
"ic-menu-item": [
|
|
3579
|
-
"ic-button"
|
|
3580
|
-
],
|
|
3581
|
-
"ic-navigation-button": [
|
|
3582
|
-
"ic-button"
|
|
3583
|
-
],
|
|
3584
|
-
"ic-navigation-menu": [
|
|
3585
|
-
"ic-button"
|
|
3586
|
-
],
|
|
3587
|
-
"ic-pagination": [
|
|
3588
|
-
"ic-button"
|
|
3589
|
-
],
|
|
3590
|
-
"ic-search-bar": [
|
|
3591
|
-
"ic-button"
|
|
3592
|
-
],
|
|
3593
|
-
"ic-select": [
|
|
3594
|
-
"ic-button"
|
|
3595
|
-
],
|
|
3596
|
-
"ic-side-navigation": [
|
|
3597
|
-
"ic-button"
|
|
3598
|
-
],
|
|
3599
|
-
"ic-toast": [
|
|
3600
|
-
"ic-button"
|
|
3601
|
-
],
|
|
3602
|
-
"ic-toggle-button": [
|
|
3603
|
-
"ic-button"
|
|
3604
|
-
],
|
|
3605
|
-
"ic-top-navigation": [
|
|
3606
|
-
"ic-button"
|
|
3607
4167
|
]
|
|
3608
4168
|
}
|
|
3609
4169
|
},
|
|
@@ -4636,6 +5196,10 @@
|
|
|
4636
5196
|
{
|
|
4637
5197
|
"name": "slot",
|
|
4638
5198
|
"text": "helper-text - Content is set as the helper text for the checkbox group."
|
|
5199
|
+
},
|
|
5200
|
+
{
|
|
5201
|
+
"name": "slot",
|
|
5202
|
+
"text": "label - Content is placed as the label text."
|
|
4639
5203
|
}
|
|
4640
5204
|
],
|
|
4641
5205
|
"usage": {},
|
|
@@ -5006,6 +5570,10 @@
|
|
|
5006
5570
|
{
|
|
5007
5571
|
"name": "helper-text",
|
|
5008
5572
|
"docs": "Content is set as the helper text for the checkbox group."
|
|
5573
|
+
},
|
|
5574
|
+
{
|
|
5575
|
+
"name": "label",
|
|
5576
|
+
"docs": "Content is placed as the label text."
|
|
5009
5577
|
}
|
|
5010
5578
|
],
|
|
5011
5579
|
"parts": [],
|
|
@@ -8621,7 +9189,12 @@
|
|
|
8621
9189
|
"tag": "ic-input-label",
|
|
8622
9190
|
"readme": "# ic-input-label\n\n\n",
|
|
8623
9191
|
"docs": "",
|
|
8624
|
-
"docsTags": [
|
|
9192
|
+
"docsTags": [
|
|
9193
|
+
{
|
|
9194
|
+
"name": "slot",
|
|
9195
|
+
"text": "label - Content is placed as the label text."
|
|
9196
|
+
}
|
|
9197
|
+
],
|
|
8625
9198
|
"usage": {},
|
|
8626
9199
|
"props": [
|
|
8627
9200
|
{
|
|
@@ -8829,7 +9402,12 @@
|
|
|
8829
9402
|
"events": [],
|
|
8830
9403
|
"listeners": [],
|
|
8831
9404
|
"styles": [],
|
|
8832
|
-
"slots": [
|
|
9405
|
+
"slots": [
|
|
9406
|
+
{
|
|
9407
|
+
"name": "label",
|
|
9408
|
+
"docs": "Content is placed as the label text."
|
|
9409
|
+
}
|
|
9410
|
+
],
|
|
8833
9411
|
"parts": [],
|
|
8834
9412
|
"dependents": [
|
|
8835
9413
|
"ic-checkbox-group",
|
|
@@ -23311,6 +23889,7 @@
|
|
|
23311
23889
|
"ic-alert",
|
|
23312
23890
|
"ic-badge",
|
|
23313
23891
|
"ic-button",
|
|
23892
|
+
"ic-card-horizontal",
|
|
23314
23893
|
"ic-card-vertical",
|
|
23315
23894
|
"ic-checkbox",
|
|
23316
23895
|
"ic-chip",
|
|
@@ -23366,6 +23945,9 @@
|
|
|
23366
23945
|
"ic-button": [
|
|
23367
23946
|
"ic-typography"
|
|
23368
23947
|
],
|
|
23948
|
+
"ic-card-horizontal": [
|
|
23949
|
+
"ic-typography"
|
|
23950
|
+
],
|
|
23369
23951
|
"ic-card-vertical": [
|
|
23370
23952
|
"ic-typography"
|
|
23371
23953
|
],
|
|
@@ -23572,6 +24154,11 @@
|
|
|
23572
24154
|
"docstring": "",
|
|
23573
24155
|
"path": "src/utils/types.ts"
|
|
23574
24156
|
},
|
|
24157
|
+
"src/utils/types.ts::IcCardDensity": {
|
|
24158
|
+
"declaration": "export type IcCardDensity = \"default\" | \"spacious\";",
|
|
24159
|
+
"docstring": "",
|
|
24160
|
+
"path": "src/utils/types.ts"
|
|
24161
|
+
},
|
|
23575
24162
|
"src/utils/types.ts::IcAdditionalFieldTypes": {
|
|
23576
24163
|
"declaration": "export type IcAdditionalFieldTypes = \"static\" | \"dynamic\";",
|
|
23577
24164
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukic/docs",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.11",
|
|
4
4
|
"description": "API documentation for @ukic components",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/mi6/ic-ui-kit",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"docs.d.ts"
|
|
20
20
|
],
|
|
21
21
|
"packageManager": "^npm@10.9.2",
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "7cf9b9cc592d4b73b39c8627dc462b9f7bb504a5"
|
|
23
23
|
}
|