@ukic/canary-docs 3.0.0-canary.19 → 3.0.0-canary.20

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.
Files changed (2) hide show
  1. package/docs.json +277 -0
  2. package/package.json +2 -2
package/docs.json CHANGED
@@ -4362,6 +4362,278 @@
4362
4362
  ]
4363
4363
  }
4364
4364
  },
4365
+ {
4366
+ "filePath": "src/components/ic-table-of-contents/ic-table-of-contents.tsx",
4367
+ "encapsulation": "shadow",
4368
+ "tag": "ic-table-of-contents",
4369
+ "readme": "# ic-table-of-contents\n\n\n",
4370
+ "docs": "",
4371
+ "docsTags": [],
4372
+ "usage": {},
4373
+ "props": [
4374
+ {
4375
+ "name": "heading",
4376
+ "type": "string",
4377
+ "complexType": {
4378
+ "original": "string",
4379
+ "resolved": "string",
4380
+ "references": {}
4381
+ },
4382
+ "mutable": false,
4383
+ "attr": "heading",
4384
+ "reflectToAttr": false,
4385
+ "docs": "Heading text of the table of contents.",
4386
+ "docsTags": [],
4387
+ "default": "\"Contents\"",
4388
+ "values": [
4389
+ {
4390
+ "type": "string"
4391
+ }
4392
+ ],
4393
+ "optional": false,
4394
+ "required": false,
4395
+ "getter": false,
4396
+ "setter": false
4397
+ },
4398
+ {
4399
+ "name": "maximumHeadingLevel",
4400
+ "type": "number",
4401
+ "complexType": {
4402
+ "original": "number",
4403
+ "resolved": "number",
4404
+ "references": {}
4405
+ },
4406
+ "mutable": false,
4407
+ "attr": "maximum-heading-level",
4408
+ "reflectToAttr": false,
4409
+ "docs": "Maximum heading level of child content that will generate an item in the table of contents. E.g. when set to '3', headings of <h4> and <h5> will not appear.",
4410
+ "docsTags": [],
4411
+ "default": "3",
4412
+ "values": [
4413
+ {
4414
+ "type": "number"
4415
+ }
4416
+ ],
4417
+ "optional": false,
4418
+ "required": false,
4419
+ "getter": false,
4420
+ "setter": false
4421
+ },
4422
+ {
4423
+ "name": "monochrome",
4424
+ "type": "boolean | undefined",
4425
+ "complexType": {
4426
+ "original": "boolean",
4427
+ "resolved": "boolean | undefined",
4428
+ "references": {}
4429
+ },
4430
+ "mutable": false,
4431
+ "attr": "monochrome",
4432
+ "reflectToAttr": false,
4433
+ "docs": "If `true`, the table of contents will display as black in the light theme, and white in dark theme.",
4434
+ "docsTags": [],
4435
+ "default": "false",
4436
+ "values": [
4437
+ {
4438
+ "type": "boolean"
4439
+ },
4440
+ {
4441
+ "type": "undefined"
4442
+ }
4443
+ ],
4444
+ "optional": true,
4445
+ "required": false,
4446
+ "getter": false,
4447
+ "setter": false
4448
+ },
4449
+ {
4450
+ "name": "position",
4451
+ "type": "\"right\" | \"top\"",
4452
+ "complexType": {
4453
+ "original": "IcPositionTopOrRight",
4454
+ "resolved": "\"right\" | \"top\"",
4455
+ "references": {
4456
+ "IcPositionTopOrRight": {
4457
+ "location": "import",
4458
+ "path": "../../utils/types",
4459
+ "id": "src/utils/types.ts::IcPositionTopOrRight"
4460
+ }
4461
+ }
4462
+ },
4463
+ "mutable": true,
4464
+ "attr": "position",
4465
+ "reflectToAttr": false,
4466
+ "docs": "Whether the table of contents will appear on the right of or above child content on large viewport widths.",
4467
+ "docsTags": [],
4468
+ "default": "\"right\"",
4469
+ "values": [
4470
+ {
4471
+ "value": "right",
4472
+ "type": "string"
4473
+ },
4474
+ {
4475
+ "value": "top",
4476
+ "type": "string"
4477
+ }
4478
+ ],
4479
+ "optional": false,
4480
+ "required": false,
4481
+ "getter": false,
4482
+ "setter": false
4483
+ },
4484
+ {
4485
+ "name": "setScrollHeight",
4486
+ "type": "number",
4487
+ "complexType": {
4488
+ "original": "number",
4489
+ "resolved": "number",
4490
+ "references": {}
4491
+ },
4492
+ "mutable": false,
4493
+ "attr": "set-scroll-height",
4494
+ "reflectToAttr": false,
4495
+ "docs": "Vertical offset to page scroll (in percent) when table of contents item is selected, to account for other page components like headers.",
4496
+ "docsTags": [],
4497
+ "default": "50",
4498
+ "values": [
4499
+ {
4500
+ "type": "number"
4501
+ }
4502
+ ],
4503
+ "optional": false,
4504
+ "required": false,
4505
+ "getter": false,
4506
+ "setter": false
4507
+ },
4508
+ {
4509
+ "name": "size",
4510
+ "type": "\"large\" | \"medium\" | \"small\"",
4511
+ "complexType": {
4512
+ "original": "IcSizes",
4513
+ "resolved": "\"large\" | \"medium\" | \"small\"",
4514
+ "references": {
4515
+ "IcSizes": {
4516
+ "location": "import",
4517
+ "path": "../../utils/types",
4518
+ "id": "src/utils/types.ts::IcSizes"
4519
+ }
4520
+ }
4521
+ },
4522
+ "mutable": false,
4523
+ "attr": "size",
4524
+ "reflectToAttr": false,
4525
+ "docs": "The size of the table of contents items.",
4526
+ "docsTags": [],
4527
+ "default": "\"medium\"",
4528
+ "values": [
4529
+ {
4530
+ "value": "large",
4531
+ "type": "string"
4532
+ },
4533
+ {
4534
+ "value": "medium",
4535
+ "type": "string"
4536
+ },
4537
+ {
4538
+ "value": "small",
4539
+ "type": "string"
4540
+ }
4541
+ ],
4542
+ "optional": false,
4543
+ "required": false,
4544
+ "getter": false,
4545
+ "setter": false
4546
+ },
4547
+ {
4548
+ "name": "theme",
4549
+ "type": "\"dark\" | \"inherit\" | \"light\" | undefined",
4550
+ "complexType": {
4551
+ "original": "IcThemeMode",
4552
+ "resolved": "\"dark\" | \"inherit\" | \"light\" | undefined",
4553
+ "references": {
4554
+ "IcThemeMode": {
4555
+ "location": "import",
4556
+ "path": "../../utils/types",
4557
+ "id": "src/utils/types.ts::IcThemeMode"
4558
+ }
4559
+ }
4560
+ },
4561
+ "mutable": false,
4562
+ "attr": "theme",
4563
+ "reflectToAttr": false,
4564
+ "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.",
4565
+ "docsTags": [],
4566
+ "default": "\"inherit\"",
4567
+ "values": [
4568
+ {
4569
+ "value": "dark",
4570
+ "type": "string"
4571
+ },
4572
+ {
4573
+ "value": "inherit",
4574
+ "type": "string"
4575
+ },
4576
+ {
4577
+ "value": "light",
4578
+ "type": "string"
4579
+ },
4580
+ {
4581
+ "type": "undefined"
4582
+ }
4583
+ ],
4584
+ "optional": true,
4585
+ "required": false,
4586
+ "getter": false,
4587
+ "setter": false
4588
+ },
4589
+ {
4590
+ "name": "truncate",
4591
+ "type": "boolean",
4592
+ "complexType": {
4593
+ "original": "boolean",
4594
+ "resolved": "boolean",
4595
+ "references": {}
4596
+ },
4597
+ "mutable": false,
4598
+ "attr": "truncate",
4599
+ "reflectToAttr": false,
4600
+ "docs": "If `true`, the table of contents item label will be truncated.",
4601
+ "docsTags": [],
4602
+ "default": "true",
4603
+ "values": [
4604
+ {
4605
+ "type": "boolean"
4606
+ }
4607
+ ],
4608
+ "optional": false,
4609
+ "required": false,
4610
+ "getter": false,
4611
+ "setter": false
4612
+ }
4613
+ ],
4614
+ "methods": [],
4615
+ "events": [],
4616
+ "listeners": [],
4617
+ "styles": [],
4618
+ "slots": [],
4619
+ "parts": [],
4620
+ "dependents": [],
4621
+ "dependencies": [
4622
+ "ic-tooltip",
4623
+ "ic-section-container",
4624
+ "ic-typography"
4625
+ ],
4626
+ "dependencyGraph": {
4627
+ "ic-table-of-contents": [
4628
+ "ic-tooltip",
4629
+ "ic-section-container",
4630
+ "ic-typography"
4631
+ ],
4632
+ "ic-tooltip": [
4633
+ "ic-typography"
4634
+ ]
4635
+ }
4636
+ },
4365
4637
  {
4366
4638
  "filePath": "src/components/ic-time-input/ic-time-input.tsx",
4367
4639
  "encapsulation": "shadow",
@@ -5953,6 +6225,11 @@
5953
6225
  "docstring": "",
5954
6226
  "path": "src/utils/types.ts"
5955
6227
  },
6228
+ "src/utils/types.ts::IcPositionTopOrRight": {
6229
+ "declaration": "export type IcPositionTopOrRight = \"top\" | \"right\";",
6230
+ "docstring": "",
6231
+ "path": "src/utils/types.ts"
6232
+ },
5956
6233
  "src/utils/types.ts::IcDisableTimeSelection": {
5957
6234
  "declaration": "export type IcDisableTimeSelection =\n | string\n | Date\n | { start: string | Date; end: string | Date };",
5958
6235
  "docstring": "",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "mi6",
3
3
  "name": "@ukic/canary-docs",
4
- "version": "3.0.0-canary.19",
4
+ "version": "3.0.0-canary.20",
5
5
  "description": "API documentation for @ukic canary components",
6
6
  "main": "docs.json",
7
7
  "types": "./docs.d.ts",
@@ -19,5 +19,5 @@
19
19
  },
20
20
  "license": "MIT",
21
21
  "packageManager": "^npm@10.9.2",
22
- "gitHead": "db93fe7649cd716a63d1a61be6a5098809af165d"
22
+ "gitHead": "3614c603996bdfb39b4be9114ec272a4ee138c23"
23
23
  }