@spectrum-web-components/progress-bar 0.49.0 → 0.50.0-beta.1

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