@ionic/docs 8.7.17-dev.11770405784.157a3c10 → 8.7.17-dev.11771865171.14f4c2cf

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/core.json +142 -35
  2. package/package.json +1 -1
package/core.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2026-02-06T19:24:47",
2
+ "timestamp": "2026-02-23T16:48:01",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.38.0",
@@ -25548,6 +25548,10 @@
25548
25548
  "name": "slot",
25549
25549
  "text": "end - Content is placed to the right of the range slider in LTR, and to the left in RTL."
25550
25550
  },
25551
+ {
25552
+ "name": "part",
25553
+ "text": "label - The label text describing the range."
25554
+ },
25551
25555
  {
25552
25556
  "name": "part",
25553
25557
  "text": "tick - An inactive tick mark."
@@ -25556,25 +25560,89 @@
25556
25560
  "name": "part",
25557
25561
  "text": "tick-active - An active tick mark."
25558
25562
  },
25563
+ {
25564
+ "name": "part",
25565
+ "text": "bar - The inactive part of the bar."
25566
+ },
25567
+ {
25568
+ "name": "part",
25569
+ "text": "bar-active - The active part of the bar."
25570
+ },
25571
+ {
25572
+ "name": "part",
25573
+ "text": "knob-handle - The container element that wraps the knob and handles drag interactions."
25574
+ },
25575
+ {
25576
+ "name": "part",
25577
+ "text": "knob-handle-a - The container element for the first knob. Only available when `dualKnobs` is `true`."
25578
+ },
25579
+ {
25580
+ "name": "part",
25581
+ "text": "knob-handle-b - The container element for the second knob. Only available when `dualKnobs` is `true`."
25582
+ },
25583
+ {
25584
+ "name": "part",
25585
+ "text": "knob-handle-lower - The container element for the lower knob. Only available when `dualKnobs` is `true`."
25586
+ },
25587
+ {
25588
+ "name": "part",
25589
+ "text": "knob-handle-upper - The container element for the upper knob. Only available when `dualKnobs` is `true`."
25590
+ },
25559
25591
  {
25560
25592
  "name": "part",
25561
25593
  "text": "pin - The counter that appears above a knob."
25562
25594
  },
25563
25595
  {
25564
25596
  "name": "part",
25565
- "text": "knob - The handle that is used to drag the range."
25597
+ "text": "pin-a - The counter that appears above the first knob. Only available when `dualKnobs` is `true`."
25566
25598
  },
25567
25599
  {
25568
25600
  "name": "part",
25569
- "text": "bar - The inactive part of the bar."
25601
+ "text": "pin-b - The counter that appears above the second knob. Only available when `dualKnobs` is `true`."
25570
25602
  },
25571
25603
  {
25572
25604
  "name": "part",
25573
- "text": "bar-active - The active part of the bar."
25605
+ "text": "pin-lower - The counter that appears above the lower knob. Only available when `dualKnobs` is `true`."
25574
25606
  },
25575
25607
  {
25576
25608
  "name": "part",
25577
- "text": "label - The label text describing the range."
25609
+ "text": "pin-upper - The counter that appears above the upper knob. Only available when `dualKnobs` is `true`."
25610
+ },
25611
+ {
25612
+ "name": "part",
25613
+ "text": "knob - The visual knob element that appears on the range track."
25614
+ },
25615
+ {
25616
+ "name": "part",
25617
+ "text": "knob-a - The visual knob element for the first knob. Only available when `dualKnobs` is `true`."
25618
+ },
25619
+ {
25620
+ "name": "part",
25621
+ "text": "knob-b - The visual knob element for the second knob. Only available when `dualKnobs` is `true`."
25622
+ },
25623
+ {
25624
+ "name": "part",
25625
+ "text": "knob-lower - The visual knob element for the lower knob. Only available when `dualKnobs` is `true`."
25626
+ },
25627
+ {
25628
+ "name": "part",
25629
+ "text": "knob-upper - The visual knob element for the upper knob. Only available when `dualKnobs` is `true`."
25630
+ },
25631
+ {
25632
+ "name": "part",
25633
+ "text": "activated - Added to the knob-handle, knob, and pin when the knob is activated (has the `ion-activated` class). Only one set has this part at a time when `dualKnobs` is `true`."
25634
+ },
25635
+ {
25636
+ "name": "part",
25637
+ "text": "focused - Added to the knob-handle, knob, and pin that currently has focus. Only one set has this part at a time when `dualKnobs` is `true`."
25638
+ },
25639
+ {
25640
+ "name": "part",
25641
+ "text": "hover - Added to the knob-handle, knob, and pin when the knob has hover. Only one set has this part at a time when `dualKnobs` is `true`."
25642
+ },
25643
+ {
25644
+ "name": "part",
25645
+ "text": "pressed - Added to the knob-handle, knob, and pin that is currently being pressed to drag. Only one set has this part at a time when `dualKnobs` is `true`."
25578
25646
  }
25579
25647
  ],
25580
25648
  "usage": {},
@@ -26386,6 +26454,10 @@
26386
26454
  }
26387
26455
  ],
26388
26456
  "parts": [
26457
+ {
26458
+ "name": "activated",
26459
+ "docs": "Added to the knob-handle, knob, and pin when the knob is activated (has the `ion-activated` class). Only one set has this part at a time when `dualKnobs` is `true`."
26460
+ },
26389
26461
  {
26390
26462
  "name": "bar",
26391
26463
  "docs": "The inactive part of the bar."
@@ -26394,9 +26466,53 @@
26394
26466
  "name": "bar-active",
26395
26467
  "docs": "The active part of the bar."
26396
26468
  },
26469
+ {
26470
+ "name": "focused",
26471
+ "docs": "Added to the knob-handle, knob, and pin that currently has focus. Only one set has this part at a time when `dualKnobs` is `true`."
26472
+ },
26473
+ {
26474
+ "name": "hover",
26475
+ "docs": "Added to the knob-handle, knob, and pin when the knob has hover. Only one set has this part at a time when `dualKnobs` is `true`."
26476
+ },
26397
26477
  {
26398
26478
  "name": "knob",
26399
- "docs": "The handle that is used to drag the range."
26479
+ "docs": "The visual knob element that appears on the range track."
26480
+ },
26481
+ {
26482
+ "name": "knob-a",
26483
+ "docs": "The visual knob element for the first knob. Only available when `dualKnobs` is `true`."
26484
+ },
26485
+ {
26486
+ "name": "knob-b",
26487
+ "docs": "The visual knob element for the second knob. Only available when `dualKnobs` is `true`."
26488
+ },
26489
+ {
26490
+ "name": "knob-handle",
26491
+ "docs": "The container element that wraps the knob and handles drag interactions."
26492
+ },
26493
+ {
26494
+ "name": "knob-handle-a",
26495
+ "docs": "The container element for the first knob. Only available when `dualKnobs` is `true`."
26496
+ },
26497
+ {
26498
+ "name": "knob-handle-b",
26499
+ "docs": "The container element for the second knob. Only available when `dualKnobs` is `true`."
26500
+ },
26501
+ {
26502
+ "name": "knob-handle-lower",
26503
+ "docs": "The container element for the lower knob. Only available when `dualKnobs` is `true`."
26504
+ },
26505
+ {
26506
+ "name": "knob-handle-upper",
26507
+ "docs": "The container element for the upper knob. Only available when `dualKnobs` is `true`."
26508
+ },
26509
+ {
26510
+ "name": "knob-lower",
26511
+ "docs": "The visual knob element for the lower knob. Only available when `dualKnobs` is `true`."
26512
+ },
26513
+ {
26514
+ "name": "knob-upper",
26515
+ "docs": "The visual knob element for the upper knob. Only available when `dualKnobs` is `true`."
26400
26516
  },
26401
26517
  {
26402
26518
  "name": "label",
@@ -26406,6 +26522,26 @@
26406
26522
  "name": "pin",
26407
26523
  "docs": "The counter that appears above a knob."
26408
26524
  },
26525
+ {
26526
+ "name": "pin-a",
26527
+ "docs": "The counter that appears above the first knob. Only available when `dualKnobs` is `true`."
26528
+ },
26529
+ {
26530
+ "name": "pin-b",
26531
+ "docs": "The counter that appears above the second knob. Only available when `dualKnobs` is `true`."
26532
+ },
26533
+ {
26534
+ "name": "pin-lower",
26535
+ "docs": "The counter that appears above the lower knob. Only available when `dualKnobs` is `true`."
26536
+ },
26537
+ {
26538
+ "name": "pin-upper",
26539
+ "docs": "The counter that appears above the upper knob. Only available when `dualKnobs` is `true`."
26540
+ },
26541
+ {
26542
+ "name": "pressed",
26543
+ "docs": "Added to the knob-handle, knob, and pin that is currently being pressed to drag. Only one set has this part at a time when `dualKnobs` is `true`."
26544
+ },
26409
26545
  {
26410
26546
  "name": "tick",
26411
26547
  "docs": "An inactive tick mark."
@@ -30495,35 +30631,6 @@
30495
30631
  "required": false,
30496
30632
  "getter": false,
30497
30633
  "setter": false
30498
- },
30499
- {
30500
- "name": "swipeGesture",
30501
- "type": "boolean",
30502
- "complexType": {
30503
- "original": "boolean",
30504
- "resolved": "boolean",
30505
- "references": {}
30506
- },
30507
- "mutable": false,
30508
- "attr": "swipe-gesture",
30509
- "reflectToAttr": false,
30510
- "docs": "If `true`, users will be able to swipe the segment view to navigate between segment contents.",
30511
- "docsTags": [
30512
- {
30513
- "name": "default",
30514
- "text": "true"
30515
- }
30516
- ],
30517
- "default": "true",
30518
- "values": [
30519
- {
30520
- "type": "boolean"
30521
- }
30522
- ],
30523
- "optional": false,
30524
- "required": false,
30525
- "getter": false,
30526
- "setter": false
30527
30634
  }
30528
30635
  ],
30529
30636
  "methods": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/docs",
3
- "version": "8.7.17-dev.11770405784.157a3c10",
3
+ "version": "8.7.17-dev.11771865171.14f4c2cf",
4
4
  "description": "Pre-packaged API documentation for the Ionic docs.",
5
5
  "main": "core.json",
6
6
  "types": "core.d.ts",