@digipair/skill-web-spectrum 0.73.4 → 0.73.6
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/package.json +1 -1
- package/schema.fr.json +170 -0
- package/schema.json +170 -0
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10871,6 +10871,33 @@
|
|
|
10871
10871
|
"schema": {
|
|
10872
10872
|
"type": "string"
|
|
10873
10873
|
}
|
|
10874
|
+
},
|
|
10875
|
+
{
|
|
10876
|
+
"name": "system",
|
|
10877
|
+
"summary": "System",
|
|
10878
|
+
"required": false,
|
|
10879
|
+
"description": "Name of the theme to apply",
|
|
10880
|
+
"schema": {
|
|
10881
|
+
"type": "string"
|
|
10882
|
+
}
|
|
10883
|
+
},
|
|
10884
|
+
{
|
|
10885
|
+
"name": "color",
|
|
10886
|
+
"summary": "Color",
|
|
10887
|
+
"required": false,
|
|
10888
|
+
"description": "Theme color",
|
|
10889
|
+
"schema": {
|
|
10890
|
+
"type": "string"
|
|
10891
|
+
}
|
|
10892
|
+
},
|
|
10893
|
+
{
|
|
10894
|
+
"name": "scale",
|
|
10895
|
+
"summary": "Size",
|
|
10896
|
+
"required": false,
|
|
10897
|
+
"description": "Theme scale",
|
|
10898
|
+
"schema": {
|
|
10899
|
+
"type": "string"
|
|
10900
|
+
}
|
|
10874
10901
|
}
|
|
10875
10902
|
],
|
|
10876
10903
|
"x-events": []
|
|
@@ -10937,10 +10964,153 @@
|
|
|
10937
10964
|
"schema": {
|
|
10938
10965
|
"type": "string"
|
|
10939
10966
|
}
|
|
10967
|
+
},
|
|
10968
|
+
{
|
|
10969
|
+
"name": "placement",
|
|
10970
|
+
"summary": "Placement",
|
|
10971
|
+
"description": "Tooltip placement.",
|
|
10972
|
+
"required": false,
|
|
10973
|
+
"schema": {
|
|
10974
|
+
"type": "string"
|
|
10975
|
+
}
|
|
10976
|
+
}
|
|
10977
|
+
],
|
|
10978
|
+
"x-events": []
|
|
10979
|
+
}
|
|
10980
|
+
},
|
|
10981
|
+
"/sp-table-head": {
|
|
10982
|
+
"post": {
|
|
10983
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
10984
|
+
"summary": "Header",
|
|
10985
|
+
"description": "Table header",
|
|
10986
|
+
"parameters": [],
|
|
10987
|
+
"x-events": []
|
|
10988
|
+
}
|
|
10989
|
+
},
|
|
10990
|
+
"/sp-table-head-cell": {
|
|
10991
|
+
"post": {
|
|
10992
|
+
"tags": ["web", "needPins"],
|
|
10993
|
+
"summary": "Header cell",
|
|
10994
|
+
"description": "Header cell of a table",
|
|
10995
|
+
"parameters": [
|
|
10996
|
+
{
|
|
10997
|
+
"name": "textContent",
|
|
10998
|
+
"summary": "Text",
|
|
10999
|
+
"required": false,
|
|
11000
|
+
"description": "Text of the header cell",
|
|
11001
|
+
"schema": {
|
|
11002
|
+
"type": "string"
|
|
11003
|
+
}
|
|
10940
11004
|
}
|
|
10941
11005
|
],
|
|
10942
11006
|
"x-events": []
|
|
10943
11007
|
}
|
|
11008
|
+
},
|
|
11009
|
+
"/sp-table-body": {
|
|
11010
|
+
"post": {
|
|
11011
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
11012
|
+
"summary": "Table content",
|
|
11013
|
+
"description": "Content of a table",
|
|
11014
|
+
"parameters": [],
|
|
11015
|
+
"x-events": []
|
|
11016
|
+
}
|
|
11017
|
+
},
|
|
11018
|
+
"/sp-table-row": {
|
|
11019
|
+
"post": {
|
|
11020
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
11021
|
+
"summary": "Row",
|
|
11022
|
+
"description": "Row of a table",
|
|
11023
|
+
"parameters": [
|
|
11024
|
+
{
|
|
11025
|
+
"name": "value",
|
|
11026
|
+
"summary": "Identifier",
|
|
11027
|
+
"required": false,
|
|
11028
|
+
"description": "Identifier of the table row",
|
|
11029
|
+
"schema": {
|
|
11030
|
+
"type": "string"
|
|
11031
|
+
}
|
|
11032
|
+
}
|
|
11033
|
+
],
|
|
11034
|
+
"x-events": []
|
|
11035
|
+
}
|
|
11036
|
+
},
|
|
11037
|
+
"/sp-table-cell": {
|
|
11038
|
+
"post": {
|
|
11039
|
+
"tags": ["web", "needPins"],
|
|
11040
|
+
"summary": "Cell",
|
|
11041
|
+
"description": "Cell of a table",
|
|
11042
|
+
"parameters": [
|
|
11043
|
+
{
|
|
11044
|
+
"name": "textContent",
|
|
11045
|
+
"summary": "Text",
|
|
11046
|
+
"required": false,
|
|
11047
|
+
"description": "Text of the cell",
|
|
11048
|
+
"schema": {
|
|
11049
|
+
"type": "string"
|
|
11050
|
+
}
|
|
11051
|
+
}
|
|
11052
|
+
],
|
|
11053
|
+
"x-events": []
|
|
11054
|
+
}
|
|
11055
|
+
},
|
|
11056
|
+
"/sp-top-nav-item": {
|
|
11057
|
+
"post": {
|
|
11058
|
+
"tags": ["web", "needPins"],
|
|
11059
|
+
"summary": "Navigation item",
|
|
11060
|
+
"description": "Item of the horizontal navigation bar",
|
|
11061
|
+
"parameters": [
|
|
11062
|
+
{
|
|
11063
|
+
"name": "textContent",
|
|
11064
|
+
"summary": "Text",
|
|
11065
|
+
"required": false,
|
|
11066
|
+
"description": "Text of the navigation item",
|
|
11067
|
+
"schema": {
|
|
11068
|
+
"type": "string"
|
|
11069
|
+
}
|
|
11070
|
+
},
|
|
11071
|
+
{
|
|
11072
|
+
"name": "href",
|
|
11073
|
+
"summary": "Address",
|
|
11074
|
+
"required": false,
|
|
11075
|
+
"description": "Redirection address",
|
|
11076
|
+
"schema": {
|
|
11077
|
+
"type": "string"
|
|
11078
|
+
}
|
|
11079
|
+
},
|
|
11080
|
+
{
|
|
11081
|
+
"name": "style",
|
|
11082
|
+
"summary": "Custom style",
|
|
11083
|
+
"required": false,
|
|
11084
|
+
"description": "Customization of navigation bar styles",
|
|
11085
|
+
"schema": {
|
|
11086
|
+
"type": "string"
|
|
11087
|
+
}
|
|
11088
|
+
}
|
|
11089
|
+
],
|
|
11090
|
+
"x-events": [
|
|
11091
|
+
{
|
|
11092
|
+
"name": "click",
|
|
11093
|
+
"summary": "On click",
|
|
11094
|
+
"required": false,
|
|
11095
|
+
"description": "Action triggered when clicking the button",
|
|
11096
|
+
"schema": {
|
|
11097
|
+
"type": "array",
|
|
11098
|
+
"items": {
|
|
11099
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
11100
|
+
}
|
|
11101
|
+
}
|
|
11102
|
+
}
|
|
11103
|
+
]
|
|
11104
|
+
}
|
|
11105
|
+
},
|
|
11106
|
+
"sp-menu-divider": {
|
|
11107
|
+
"post": {
|
|
11108
|
+
"tags": ["web"],
|
|
11109
|
+
"summary": "Menu divider",
|
|
11110
|
+
"description": "Menu divider",
|
|
11111
|
+
"parameters": [],
|
|
11112
|
+
"x-events": []
|
|
11113
|
+
}
|
|
10944
11114
|
}
|
|
10945
11115
|
},
|
|
10946
11116
|
"components": {
|
package/schema.json
CHANGED
|
@@ -10871,6 +10871,33 @@
|
|
|
10871
10871
|
"schema": {
|
|
10872
10872
|
"type": "string"
|
|
10873
10873
|
}
|
|
10874
|
+
},
|
|
10875
|
+
{
|
|
10876
|
+
"name": "system",
|
|
10877
|
+
"summary": "System",
|
|
10878
|
+
"required": false,
|
|
10879
|
+
"description": "Name of the theme to apply",
|
|
10880
|
+
"schema": {
|
|
10881
|
+
"type": "string"
|
|
10882
|
+
}
|
|
10883
|
+
},
|
|
10884
|
+
{
|
|
10885
|
+
"name": "color",
|
|
10886
|
+
"summary": "Color",
|
|
10887
|
+
"required": false,
|
|
10888
|
+
"description": "Theme color",
|
|
10889
|
+
"schema": {
|
|
10890
|
+
"type": "string"
|
|
10891
|
+
}
|
|
10892
|
+
},
|
|
10893
|
+
{
|
|
10894
|
+
"name": "scale",
|
|
10895
|
+
"summary": "Size",
|
|
10896
|
+
"required": false,
|
|
10897
|
+
"description": "Theme scale",
|
|
10898
|
+
"schema": {
|
|
10899
|
+
"type": "string"
|
|
10900
|
+
}
|
|
10874
10901
|
}
|
|
10875
10902
|
],
|
|
10876
10903
|
"x-events": []
|
|
@@ -10937,10 +10964,153 @@
|
|
|
10937
10964
|
"schema": {
|
|
10938
10965
|
"type": "string"
|
|
10939
10966
|
}
|
|
10967
|
+
},
|
|
10968
|
+
{
|
|
10969
|
+
"name": "placement",
|
|
10970
|
+
"summary": "Placement",
|
|
10971
|
+
"description": "Tooltip placement.",
|
|
10972
|
+
"required": false,
|
|
10973
|
+
"schema": {
|
|
10974
|
+
"type": "string"
|
|
10975
|
+
}
|
|
10976
|
+
}
|
|
10977
|
+
],
|
|
10978
|
+
"x-events": []
|
|
10979
|
+
}
|
|
10980
|
+
},
|
|
10981
|
+
"/sp-table-head": {
|
|
10982
|
+
"post": {
|
|
10983
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
10984
|
+
"summary": "Header",
|
|
10985
|
+
"description": "Table header",
|
|
10986
|
+
"parameters": [],
|
|
10987
|
+
"x-events": []
|
|
10988
|
+
}
|
|
10989
|
+
},
|
|
10990
|
+
"/sp-table-head-cell": {
|
|
10991
|
+
"post": {
|
|
10992
|
+
"tags": ["web", "needPins"],
|
|
10993
|
+
"summary": "Header cell",
|
|
10994
|
+
"description": "Header cell of a table",
|
|
10995
|
+
"parameters": [
|
|
10996
|
+
{
|
|
10997
|
+
"name": "textContent",
|
|
10998
|
+
"summary": "Text",
|
|
10999
|
+
"required": false,
|
|
11000
|
+
"description": "Text of the header cell",
|
|
11001
|
+
"schema": {
|
|
11002
|
+
"type": "string"
|
|
11003
|
+
}
|
|
10940
11004
|
}
|
|
10941
11005
|
],
|
|
10942
11006
|
"x-events": []
|
|
10943
11007
|
}
|
|
11008
|
+
},
|
|
11009
|
+
"/sp-table-body": {
|
|
11010
|
+
"post": {
|
|
11011
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
11012
|
+
"summary": "Table content",
|
|
11013
|
+
"description": "Content of a table",
|
|
11014
|
+
"parameters": [],
|
|
11015
|
+
"x-events": []
|
|
11016
|
+
}
|
|
11017
|
+
},
|
|
11018
|
+
"/sp-table-row": {
|
|
11019
|
+
"post": {
|
|
11020
|
+
"tags": ["web", "needPins", "requirePins"],
|
|
11021
|
+
"summary": "Row",
|
|
11022
|
+
"description": "Row of a table",
|
|
11023
|
+
"parameters": [
|
|
11024
|
+
{
|
|
11025
|
+
"name": "value",
|
|
11026
|
+
"summary": "Identifier",
|
|
11027
|
+
"required": false,
|
|
11028
|
+
"description": "Identifier of the table row",
|
|
11029
|
+
"schema": {
|
|
11030
|
+
"type": "string"
|
|
11031
|
+
}
|
|
11032
|
+
}
|
|
11033
|
+
],
|
|
11034
|
+
"x-events": []
|
|
11035
|
+
}
|
|
11036
|
+
},
|
|
11037
|
+
"/sp-table-cell": {
|
|
11038
|
+
"post": {
|
|
11039
|
+
"tags": ["web", "needPins"],
|
|
11040
|
+
"summary": "Cell",
|
|
11041
|
+
"description": "Cell of a table",
|
|
11042
|
+
"parameters": [
|
|
11043
|
+
{
|
|
11044
|
+
"name": "textContent",
|
|
11045
|
+
"summary": "Text",
|
|
11046
|
+
"required": false,
|
|
11047
|
+
"description": "Text of the cell",
|
|
11048
|
+
"schema": {
|
|
11049
|
+
"type": "string"
|
|
11050
|
+
}
|
|
11051
|
+
}
|
|
11052
|
+
],
|
|
11053
|
+
"x-events": []
|
|
11054
|
+
}
|
|
11055
|
+
},
|
|
11056
|
+
"/sp-top-nav-item": {
|
|
11057
|
+
"post": {
|
|
11058
|
+
"tags": ["web", "needPins"],
|
|
11059
|
+
"summary": "Navigation item",
|
|
11060
|
+
"description": "Item of the horizontal navigation bar",
|
|
11061
|
+
"parameters": [
|
|
11062
|
+
{
|
|
11063
|
+
"name": "textContent",
|
|
11064
|
+
"summary": "Text",
|
|
11065
|
+
"required": false,
|
|
11066
|
+
"description": "Text of the navigation item",
|
|
11067
|
+
"schema": {
|
|
11068
|
+
"type": "string"
|
|
11069
|
+
}
|
|
11070
|
+
},
|
|
11071
|
+
{
|
|
11072
|
+
"name": "href",
|
|
11073
|
+
"summary": "Address",
|
|
11074
|
+
"required": false,
|
|
11075
|
+
"description": "Redirection address",
|
|
11076
|
+
"schema": {
|
|
11077
|
+
"type": "string"
|
|
11078
|
+
}
|
|
11079
|
+
},
|
|
11080
|
+
{
|
|
11081
|
+
"name": "style",
|
|
11082
|
+
"summary": "Custom style",
|
|
11083
|
+
"required": false,
|
|
11084
|
+
"description": "Customization of navigation bar styles",
|
|
11085
|
+
"schema": {
|
|
11086
|
+
"type": "string"
|
|
11087
|
+
}
|
|
11088
|
+
}
|
|
11089
|
+
],
|
|
11090
|
+
"x-events": [
|
|
11091
|
+
{
|
|
11092
|
+
"name": "click",
|
|
11093
|
+
"summary": "On click",
|
|
11094
|
+
"required": false,
|
|
11095
|
+
"description": "Action triggered when clicking the button",
|
|
11096
|
+
"schema": {
|
|
11097
|
+
"type": "array",
|
|
11098
|
+
"items": {
|
|
11099
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
11100
|
+
}
|
|
11101
|
+
}
|
|
11102
|
+
}
|
|
11103
|
+
]
|
|
11104
|
+
}
|
|
11105
|
+
},
|
|
11106
|
+
"sp-menu-divider": {
|
|
11107
|
+
"post": {
|
|
11108
|
+
"tags": ["web"],
|
|
11109
|
+
"summary": "Menu divider",
|
|
11110
|
+
"description": "Menu divider",
|
|
11111
|
+
"parameters": [],
|
|
11112
|
+
"x-events": []
|
|
11113
|
+
}
|
|
10944
11114
|
}
|
|
10945
11115
|
},
|
|
10946
11116
|
"components": {
|