You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Boolean indicating if the appElement should be hidden. _Tested with snapshot testing._",
7339
+
"description": "Boolean indicating if the appElement should be hidden.",
7341
7340
"defaultValue": {
7342
7341
"value": "true",
7343
7342
"computed": false
@@ -7595,105 +7594,6 @@
7595
7594
"SLDS-component-path": "/components/modals",
7596
7595
"dependencies": []
7597
7596
},
7598
-
"navigation": {
7599
-
"description": "Navigation represents a list of links that either take the user to another page or parts of the page the user is in.",
7600
-
"methods": [
7601
-
{
7602
-
"name": "getId",
7603
-
"docblock": null,
7604
-
"modifiers": [],
7605
-
"params": [],
7606
-
"returns": null
7607
-
},
7608
-
{
7609
-
"name": "getVariant",
7610
-
"docblock": null,
7611
-
"modifiers": [],
7612
-
"params": [],
7613
-
"returns": null
7614
-
},
7615
-
{
7616
-
"name": "getSelectedId",
7617
-
"docblock": null,
7618
-
"modifiers": [],
7619
-
"params": [],
7620
-
"returns": null
7621
-
}
7622
-
],
7623
-
"props": {
7624
-
"id": {
7625
-
"type": {
7626
-
"name": "string"
7627
-
},
7628
-
"required": false,
7629
-
"description": "HTML id for component. _Tested with snapshot testing._"
7630
-
},
7631
-
"className": {
7632
-
"type": {
7633
-
"name": "union",
7634
-
"value": [
7635
-
{
7636
-
"name": "array"
7637
-
},
7638
-
{
7639
-
"name": "object"
7640
-
},
7641
-
{
7642
-
"name": "string"
7643
-
}
7644
-
]
7645
-
},
7646
-
"required": false,
7647
-
"description": "CSS class names to be added to the container element. _Tested with snapshot testing._"
7648
-
},
7649
-
"categories": {
7650
-
"type": {
7651
-
"name": "array"
7652
-
},
7653
-
"required": false,
7654
-
"description": "Array of categories. The required shape is: `{id: string, label: string, items: array}`. The required shape of an item is `{id: string, label: string, url: string}`. All item ids are expected to be unique. _Tested with snapshot testing._"
7655
-
},
7656
-
"selectedId": {
7657
-
"type": {
7658
-
"name": "string"
7659
-
},
7660
-
"required": false,
7661
-
"description": "The ID of the item that is currently selected. Defaults to the ID of the first item. _Tested with Mocha framework._"
7662
-
},
7663
-
"onSelect": {
7664
-
"type": {
7665
-
"name": "func"
7666
-
},
7667
-
"required": false,
7668
-
"description": "Triggered when the selection changes. It receives an event and an item object in the shape: `event, {item: [object] }`. _Tested with Mocha framework._"
7669
-
},
7670
-
"variant": {
7671
-
"type": {
7672
-
"name": "enum",
7673
-
"value": [
7674
-
{
7675
-
"value": "'default'",
7676
-
"computed": false
7677
-
},
7678
-
{
7679
-
"value": "'shade'",
7680
-
"computed": false
7681
-
}
7682
-
]
7683
-
},
7684
-
"required": false,
7685
-
"description": "Determines component style. _Tested with snapshot testing._",
7686
-
"defaultValue": {
7687
-
"value": "'default'",
7688
-
"computed": false
7689
-
}
7690
-
}
7691
-
},
7692
-
"route": "navigation",
7693
-
"display-name": "Navigation",
7694
-
"SLDS-component-path": "/components/navigation",
7695
-
"dependencies": []
7696
-
},
7697
7597
"panel": {
7698
7598
"description": "A panel provides detailed contextual information or contextual filtering options. [Filter](/components/filters/) component should be used as children. Menus within a Filter Popover will need to not have \"portal mounts\" and be inline.",
7699
7599
"methods": [],
@@ -9017,16 +8917,28 @@
9017
8917
"type": {
9018
8918
"name": "shape",
9019
8919
"value": {
8920
+
"completedStep": {
8921
+
"name": "string",
8922
+
"required": false
8923
+
},
8924
+
"disabledStep": {
8925
+
"name": "string",
8926
+
"required": false
8927
+
},
9020
8928
"percentage": {
9021
8929
"name": "string",
9022
8930
"required": false
8931
+
},
8932
+
"step": {
8933
+
"name": "string",
8934
+
"required": false
9023
8935
}
9024
8936
}
9025
8937
},
9026
8938
"required": false,
9027
-
"description": "**Assistive text for accessibility**\nThis object is merged with the default props object on every render.\n* `percentage`: Label for Progress Bar. The default is `Progress: [this.props.value]%`",
8939
+
"description": "**Assistive text for accessibility**\nThis object is merged with the default props object on every render.\n* `completedStep`: Label for a completed step. The default is `Completed Step`\n* `disabledStep`: Label for disabled step. The default is `Disabled Step`\n* `errorStep`: Label for a step with an error. The default is `Error Step`\n* `percentage`: Label for Progress Bar. The default is `Progress: [this.props.value]%`. You will need to calculate the percentage yourself if changing this string.\n* `step`: Label for a step. It will be typically followed by the number of the step such as \"Step 1\".",
"description": "Stores all error steps. It is an array of step objects and usually there is only one error step, the current step.",
8990
+
"description": "Stores all error steps. It is an array of step objects and usually there is only one error step, the current step. If an error occurs a second error icon should be placed to the left of related confirmation buttons (e.g. Cancel, Save) and an Error Popover should appear indicating there are errors. These additional items are NOT part of this component. This note was included for visibility purposes. Please refer to [SLDS website](https://www.lightningdesignsystem.com/components/progress-indicator/) for full details **",
9079
8991
"defaultValue": {
9080
8992
"value": "[]",
9081
8993
"computed": false
@@ -11233,7 +11145,7 @@
11233
11145
},
11234
11146
"route": "timepickers",
11235
11147
"display-name": "Timepickers",
11236
-
"SLDS-component-path": "/components/datepickers",
11148
+
"SLDS-component-path": "/components/timepicker",
11237
11149
"dependencies": []
11238
11150
},
11239
11151
"toast": {
@@ -11408,7 +11320,7 @@
11408
11320
},
11409
11321
"route": "toasts",
11410
11322
"display-name": "Toasts",
11411
-
"SLDS-component-path": "/components/toasts",
11323
+
"SLDS-component-path": "/components/toast",
11412
11324
"dependencies": [
11413
11325
{
11414
11326
"container": {
@@ -11994,7 +11906,106 @@
11994
11906
},
11995
11907
"route": "tree",
11996
11908
"display-name": "Tree",
11997
-
"SLDS-component-path": "/components/tree",
11909
+
"SLDS-component-path": "/components/trees",
11910
+
"dependencies": []
11911
+
},
11912
+
"vertical-navigation": {
11913
+
"description": "Vertical Navigation represents a list of links that either take the user to another page or parts of the page the user is in.",
11914
+
"methods": [
11915
+
{
11916
+
"name": "getId",
11917
+
"docblock": null,
11918
+
"modifiers": [],
11919
+
"params": [],
11920
+
"returns": null
11921
+
},
11922
+
{
11923
+
"name": "getVariant",
11924
+
"docblock": null,
11925
+
"modifiers": [],
11926
+
"params": [],
11927
+
"returns": null
11928
+
},
11929
+
{
11930
+
"name": "getSelectedId",
11931
+
"docblock": null,
11932
+
"modifiers": [],
11933
+
"params": [],
11934
+
"returns": null
11935
+
}
11936
+
],
11937
+
"props": {
11938
+
"id": {
11939
+
"type": {
11940
+
"name": "string"
11941
+
},
11942
+
"required": false,
11943
+
"description": "HTML id for component. _Tested with snapshot testing._"
11944
+
},
11945
+
"className": {
11946
+
"type": {
11947
+
"name": "union",
11948
+
"value": [
11949
+
{
11950
+
"name": "array"
11951
+
},
11952
+
{
11953
+
"name": "object"
11954
+
},
11955
+
{
11956
+
"name": "string"
11957
+
}
11958
+
]
11959
+
},
11960
+
"required": false,
11961
+
"description": "CSS class names to be added to the container element. _Tested with snapshot testing._"
11962
+
},
11963
+
"categories": {
11964
+
"type": {
11965
+
"name": "array"
11966
+
},
11967
+
"required": false,
11968
+
"description": "Array of categories. The required shape is: `{id: string, label: string, items: array}`. The required shape of an item is `{id: string, label: string, url: string}`. All item ids are expected to be unique. _Tested with snapshot testing._"
11969
+
},
11970
+
"selectedId": {
11971
+
"type": {
11972
+
"name": "string"
11973
+
},
11974
+
"required": false,
11975
+
"description": "The ID of the item that is currently selected. Defaults to the ID of the first item. _Tested with Mocha framework._"
11976
+
},
11977
+
"onSelect": {
11978
+
"type": {
11979
+
"name": "func"
11980
+
},
11981
+
"required": false,
11982
+
"description": "Triggered when the selection changes. It receives an event and an item object in the shape: `event, {item: [object] }`. _Tested with Mocha framework._"
11983
+
},
11984
+
"variant": {
11985
+
"type": {
11986
+
"name": "enum",
11987
+
"value": [
11988
+
{
11989
+
"value": "'default'",
11990
+
"computed": false
11991
+
},
11992
+
{
11993
+
"value": "'shade'",
11994
+
"computed": false
11995
+
}
11996
+
]
11997
+
},
11998
+
"required": false,
11999
+
"description": "Determines component style. _Tested with snapshot testing._",
0 commit comments