Add Logicool aliases (#10430)

This commit is contained in:
Adam Rusted 2024-03-13 16:44:17 +00:00 committed by GitHub
parent 1401fb2a05
commit 2455746fcc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 1 deletions

View file

@ -638,6 +638,10 @@
"guidelines": {
"description": "The brand guidelines, if different from the original",
"$ref": "#/definitions/url"
},
"loc": {
"description": "Localized names of the brand",
"$ref": "#/definitions/locale"
}
},
"additionalProperties": false

View file

@ -8609,7 +8609,18 @@
{
"title": "Logitech",
"hex": "00B8FC",
"source": "https://www.logitech.com/en-us/pr/library"
"source": "https://www.logitech.com/en-us/pr/library",
"aliases": {
"dup": [
{
"title": "Logicool",
"hex": "00BFFF",
"loc": {
"ja-JP": "ロジクール"
}
}
]
}
},
{
"title": "Logitech G",

1
sdk.d.ts vendored
View file

@ -40,6 +40,7 @@ type DuplicateAlias = {
title: string;
hex?: string;
guidelines?: string;
loc?: { [key: string]: string };
};
/**