Skip to content

Commit

Permalink
var
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-blackson committed Sep 19, 2024
1 parent 6de0ca7 commit cffa429
Show file tree
Hide file tree
Showing 4 changed files with 249 additions and 6 deletions.
15 changes: 14 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"common": {
"name": "countdown",
"version": "2.2.1",
"version": "2.3.0",
"news": {
"2.3.0": {
"en": "Compatibility for js-controller 7\n",
"de": "Kompatibilität für js-controller 7\n",
"ru": "Совместимость js-контроллера 7\n",
"pt": "Compatibilidade para js-controller 7\n",
"nl": "Compatibiliteit voor js-controller 7\n",
"fr": "Compatibilité pour js-controller 7\n",
"it": "Compatibilità per js-controller 7\n",
"es": "Compatibilidad para js-controller 7\n",
"pl": "Zgodność dla kontrolera js- 7\n",
"uk": "Сумісність для js-controller 7 хв\n",
"zh-cn": "Js 控制器的兼容性 页:1\n"
},
"2.2.1": {
"en": "Additional check to avoid not allowed signs in countdown name",
"de": "Zusätzliche Überprüfung nicht erlaubt Zeichen im Countdown-Namen zu vermeiden",
Expand Down
79 changes: 79 additions & 0 deletions lib/stateAttr.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
const stateAttrb = {
'event' : {
name: 'Event',
type: 'string',
role: 'value',
},
'headline' : {
name: 'Headline',
type: 'string',
role: 'value',
},
'color' : {
name: 'Alarm color',
type: 'string',
role: 'value',
},
'icon' : {
name: 'Alarm icon',
type: 'string',
role: 'value',
},
'level' : {
name: 'Alarm level',
type: 'number',
role: 'value',
},
'levelText' : {
name: 'Alarm level text',
type: 'string',
role: 'value',
},
'type' : {
name: 'Alarm type',
type: 'number',
role: 'value',
},
'typeText' : {
name: 'Alarm type text',
type: 'string',
role: 'value',
},
'description' : {
name: 'Description',
type: 'string',
role: 'value',
},
'sender' : {
name: 'Sender of the Alarm',
type: 'string',
role: 'value',
},
'effective' : {
name: 'Date Alarm gets effective',
type: 'string',
role: 'value.datetime',
},
'expires' : {
name: 'Date Alarm expires',
type: 'string',
role: 'value.datetime',
},
'link' : {
name: 'Link',
type: 'string',
role: 'value',
},
'updateIdentifier' : {
name: 'Identifier of update',
type: 'string',
role: 'value',
},
'sent' : {
name: 'Last Update',
type: 'string',
role: 'value.datetime',
},
};

module.exports = stateAttrb;
Loading

0 comments on commit cffa429

Please sign in to comment.