@spectrum-web-components/progress-circle 0.49.0 → 0.50.0-beta.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/progress-circle",
3
- "version": "0.49.0",
3
+ "version": "0.50.0-beta.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -57,8 +57,8 @@
57
57
  "lit-html"
58
58
  ],
59
59
  "dependencies": {
60
- "@spectrum-web-components/base": "^0.49.0",
61
- "@spectrum-web-components/shared": "^0.49.0"
60
+ "@spectrum-web-components/base": "^0.50.0-beta.0",
61
+ "@spectrum-web-components/shared": "^0.50.0-beta.0"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@spectrum-css/progresscircle": "^3.1.0"
@@ -69,5 +69,5 @@
69
69
  "./sp-*.js",
70
70
  "./**/*.dev.js"
71
71
  ],
72
- "gitHead": "088e84caa1e2f723d735b011608ca0a3411e2149"
72
+ "gitHead": "c3e248b4de0be546f3fb6bdfb26c9f711676b9c3"
73
73
  }
@@ -1,206 +0,0 @@
1
- {
2
- "schemaVersion": "1.0.0",
3
- "readme": "",
4
- "modules": [
5
- {
6
- "kind": "javascript-module",
7
- "path": "sp-progress-circle.js",
8
- "declarations": [],
9
- "exports": [
10
- {
11
- "kind": "custom-element-definition",
12
- "name": "sp-progress-circle",
13
- "declaration": {
14
- "name": "ProgressCircle",
15
- "module": "/src/ProgressCircle.js"
16
- }
17
- }
18
- ]
19
- },
20
- {
21
- "kind": "javascript-module",
22
- "path": "src/ProgressCircle.js",
23
- "declarations": [
24
- {
25
- "kind": "class",
26
- "description": "",
27
- "name": "ProgressCircle",
28
- "members": [
29
- {
30
- "kind": "field",
31
- "name": "indeterminate",
32
- "type": {
33
- "text": "boolean"
34
- },
35
- "privacy": "public",
36
- "default": "false",
37
- "attribute": "indeterminate",
38
- "reflects": true
39
- },
40
- {
41
- "kind": "field",
42
- "name": "label",
43
- "type": {
44
- "text": "string"
45
- },
46
- "privacy": "public",
47
- "default": "''",
48
- "attribute": "label"
49
- },
50
- {
51
- "kind": "field",
52
- "name": "overBackground",
53
- "type": {
54
- "text": "boolean"
55
- },
56
- "privacy": "public",
57
- "default": "false",
58
- "deprecated": "Use `staticColor` instead.",
59
- "attribute": "over-background",
60
- "reflects": true
61
- },
62
- {
63
- "kind": "field",
64
- "name": "static",
65
- "type": {
66
- "text": "'white' | undefined"
67
- },
68
- "privacy": "public",
69
- "deprecated": "Use `staticColor` instead.",
70
- "attribute": "static",
71
- "reflects": true
72
- },
73
- {
74
- "kind": "field",
75
- "name": "staticColor",
76
- "type": {
77
- "text": "'white' | undefined"
78
- },
79
- "privacy": "public",
80
- "attribute": "static-color",
81
- "reflects": true
82
- },
83
- {
84
- "kind": "field",
85
- "name": "progress",
86
- "type": {
87
- "text": "number"
88
- },
89
- "privacy": "public",
90
- "default": "0",
91
- "attribute": "progress"
92
- },
93
- {
94
- "kind": "field",
95
- "name": "slotEl",
96
- "type": {
97
- "text": "HTMLSlotElement"
98
- },
99
- "privacy": "private"
100
- },
101
- {
102
- "kind": "method",
103
- "name": "makeRotation",
104
- "privacy": "private",
105
- "return": {
106
- "type": {
107
- "text": "string | undefined"
108
- }
109
- },
110
- "parameters": [
111
- {
112
- "name": "rotation",
113
- "type": {
114
- "text": "number"
115
- }
116
- }
117
- ]
118
- },
119
- {
120
- "kind": "method",
121
- "name": "handleSlotchange",
122
- "privacy": "protected",
123
- "return": {
124
- "type": {
125
- "text": "void"
126
- }
127
- }
128
- }
129
- ],
130
- "attributes": [
131
- {
132
- "name": "indeterminate",
133
- "type": {
134
- "text": "boolean"
135
- },
136
- "default": "false",
137
- "fieldName": "indeterminate"
138
- },
139
- {
140
- "name": "label",
141
- "type": {
142
- "text": "string"
143
- },
144
- "default": "''",
145
- "fieldName": "label"
146
- },
147
- {
148
- "name": "over-background",
149
- "type": {
150
- "text": "boolean"
151
- },
152
- "default": "false",
153
- "deprecated": "Use `staticColor` instead.",
154
- "fieldName": "overBackground"
155
- },
156
- {
157
- "name": "static",
158
- "type": {
159
- "text": "'white' | undefined"
160
- },
161
- "deprecated": "Use `staticColor` instead.",
162
- "fieldName": "static"
163
- },
164
- {
165
- "name": "static-color",
166
- "type": {
167
- "text": "'white' | undefined"
168
- },
169
- "fieldName": "staticColor"
170
- },
171
- {
172
- "name": "progress",
173
- "type": {
174
- "text": "number"
175
- },
176
- "default": "0",
177
- "fieldName": "progress"
178
- }
179
- ],
180
- "mixins": [
181
- {
182
- "name": "SizedMixin",
183
- "package": "@spectrum-web-components/base"
184
- }
185
- ],
186
- "superclass": {
187
- "name": "SpectrumElement",
188
- "package": "@spectrum-web-components/base"
189
- },
190
- "tagName": "sp-progress-circle",
191
- "customElement": true
192
- }
193
- ],
194
- "exports": [
195
- {
196
- "kind": "js",
197
- "name": "ProgressCircle",
198
- "declaration": {
199
- "name": "ProgressCircle",
200
- "module": "src/ProgressCircle.js"
201
- }
202
- }
203
- ]
204
- }
205
- ]
206
- }