@openremote/or-timeline 1.6.0 → 1.6.2

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.
@@ -5,8 +5,173 @@
5
5
  {
6
6
  "kind": "javascript-module",
7
7
  "path": "src/index.ts",
8
- "declarations": [],
9
- "exports": []
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "",
12
+ "name": "OrTimeline",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "current",
17
+ "type": {
18
+ "text": "number"
19
+ },
20
+ "privacy": "public",
21
+ "default": "0",
22
+ "attribute": "current"
23
+ },
24
+ {
25
+ "kind": "field",
26
+ "name": "onChange",
27
+ "type": {
28
+ "text": "any"
29
+ },
30
+ "privacy": "public",
31
+ "attribute": "onChange"
32
+ },
33
+ {
34
+ "kind": "field",
35
+ "name": "value",
36
+ "type": {
37
+ "text": "number"
38
+ },
39
+ "privacy": "public",
40
+ "default": "0",
41
+ "attribute": "value"
42
+ },
43
+ {
44
+ "kind": "field",
45
+ "name": "maxRange",
46
+ "type": {
47
+ "text": "number"
48
+ },
49
+ "privacy": "public",
50
+ "default": "360",
51
+ "attribute": "maxRange"
52
+ },
53
+ {
54
+ "kind": "field",
55
+ "name": "minRange",
56
+ "type": {
57
+ "text": "number"
58
+ },
59
+ "privacy": "public",
60
+ "default": "0",
61
+ "attribute": "minRange"
62
+ },
63
+ {
64
+ "kind": "field",
65
+ "name": "step",
66
+ "type": {
67
+ "text": "number"
68
+ },
69
+ "privacy": "public",
70
+ "default": "5",
71
+ "attribute": "step"
72
+ },
73
+ {
74
+ "kind": "method",
75
+ "name": "moveBubble",
76
+ "privacy": "public",
77
+ "parameters": [
78
+ {
79
+ "name": "e",
80
+ "default": "null",
81
+ "type": {
82
+ "text": "any"
83
+ }
84
+ },
85
+ {
86
+ "name": "value",
87
+ "default": "null",
88
+ "type": {
89
+ "text": "string|null"
90
+ }
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "kind": "method",
96
+ "name": "valueChange",
97
+ "privacy": "public",
98
+ "parameters": [
99
+ {
100
+ "name": "e",
101
+ "type": {
102
+ "text": "any"
103
+ }
104
+ }
105
+ ]
106
+ }
107
+ ],
108
+ "attributes": [
109
+ {
110
+ "name": "current",
111
+ "type": {
112
+ "text": "number"
113
+ },
114
+ "default": "0",
115
+ "fieldName": "current"
116
+ },
117
+ {
118
+ "name": "onChange",
119
+ "type": {
120
+ "text": "any"
121
+ },
122
+ "fieldName": "onChange"
123
+ },
124
+ {
125
+ "name": "value",
126
+ "type": {
127
+ "text": "number"
128
+ },
129
+ "default": "0",
130
+ "fieldName": "value"
131
+ },
132
+ {
133
+ "name": "maxRange",
134
+ "type": {
135
+ "text": "number"
136
+ },
137
+ "default": "360",
138
+ "fieldName": "maxRange"
139
+ },
140
+ {
141
+ "name": "minRange",
142
+ "type": {
143
+ "text": "number"
144
+ },
145
+ "default": "0",
146
+ "fieldName": "minRange"
147
+ },
148
+ {
149
+ "name": "step",
150
+ "type": {
151
+ "text": "number"
152
+ },
153
+ "default": "5",
154
+ "fieldName": "step"
155
+ }
156
+ ],
157
+ "superclass": {
158
+ "name": "LitElement",
159
+ "package": "lit"
160
+ },
161
+ "tagName": "or-timeline",
162
+ "customElement": true
163
+ }
164
+ ],
165
+ "exports": [
166
+ {
167
+ "kind": "custom-element-definition",
168
+ "name": "or-timeline",
169
+ "declaration": {
170
+ "name": "OrTimeline",
171
+ "module": "src/index.ts"
172
+ }
173
+ }
174
+ ]
10
175
  }
11
176
  ]
12
177
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openremote/or-timeline",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "OpenRemote Timeline",
5
5
  "customElements": "custom-elements.json",
6
6
  "main": "dist/umd/index.bundle.js",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "types": "lib/index.d.ts",
13
13
  "scripts": {
14
- "analyze": "npx cem analyze --config ../custom-elements-manifest.config.js",
14
+ "analyze": "npx cem analyze --config ../custom-elements-manifest.config.mjs",
15
15
  "test": "echo \"No tests\" && exit 0",
16
16
  "prepack": "npx webpack"
17
17
  },
@@ -22,7 +22,7 @@
22
22
  "moment": "^2.29.4"
23
23
  },
24
24
  "devDependencies": {
25
- "@openremote/util": "1.6.0"
25
+ "@openremote/util": "1.6.2"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"