@spectrum-web-components/progress-bar 0.35.1-rc.41 → 0.36.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,197 @@
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
+ "attribute": "static",
97
+ "reflects": true
98
+ },
99
+ {
100
+ "kind": "field",
101
+ "name": "slotEl",
102
+ "type": {
103
+ "text": "HTMLSlotElement"
104
+ },
105
+ "privacy": "private"
106
+ },
107
+ {
108
+ "kind": "method",
109
+ "name": "handleSlotchange",
110
+ "privacy": "protected",
111
+ "return": {
112
+ "type": {
113
+ "text": "void"
114
+ }
115
+ }
116
+ }
117
+ ],
118
+ "attributes": [
119
+ {
120
+ "name": "indeterminate",
121
+ "type": {
122
+ "text": "boolean"
123
+ },
124
+ "default": "false",
125
+ "fieldName": "indeterminate"
126
+ },
127
+ {
128
+ "name": "label",
129
+ "type": {
130
+ "text": "string"
131
+ },
132
+ "default": "''",
133
+ "fieldName": "label"
134
+ },
135
+ {
136
+ "name": "over-background",
137
+ "type": {
138
+ "text": "boolean"
139
+ },
140
+ "default": "false",
141
+ "fieldName": "overBackground"
142
+ },
143
+ {
144
+ "name": "side-label",
145
+ "type": {
146
+ "text": "boolean"
147
+ },
148
+ "default": "false",
149
+ "fieldName": "sideLabel"
150
+ },
151
+ {
152
+ "name": "progress",
153
+ "type": {
154
+ "text": "number"
155
+ },
156
+ "default": "0",
157
+ "fieldName": "progress"
158
+ },
159
+ {
160
+ "name": "static",
161
+ "type": {
162
+ "text": "'white' | undefined"
163
+ },
164
+ "fieldName": "static"
165
+ }
166
+ ],
167
+ "mixins": [
168
+ {
169
+ "name": "SizedMixin",
170
+ "package": "@spectrum-web-components/base"
171
+ },
172
+ {
173
+ "name": "ObserveSlotText",
174
+ "package": "@spectrum-web-components/shared/src/observe-slot-text.js"
175
+ }
176
+ ],
177
+ "superclass": {
178
+ "name": "SpectrumElement",
179
+ "package": "@spectrum-web-components/base"
180
+ },
181
+ "tagName": "sp-progress-bar",
182
+ "customElement": true
183
+ }
184
+ ],
185
+ "exports": [
186
+ {
187
+ "kind": "js",
188
+ "name": "ProgressBar",
189
+ "declaration": {
190
+ "name": "ProgressBar",
191
+ "module": "src/ProgressBar.js"
192
+ }
193
+ }
194
+ ]
195
+ }
196
+ ]
197
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/progress-bar",
3
- "version": "0.35.1-rc.41+6ac4e82f0",
3
+ "version": "0.36.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -57,11 +57,11 @@
57
57
  "lit-html"
58
58
  ],
59
59
  "dependencies": {
60
- "@spectrum-web-components/base": "^0.35.1-rc.41+6ac4e82f0",
61
- "@spectrum-web-components/field-label": "^0.35.1-rc.41+6ac4e82f0"
60
+ "@spectrum-web-components/base": "^0.36.0",
61
+ "@spectrum-web-components/field-label": "^0.36.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@spectrum-css/progressbar": "^3.0.54"
64
+ "@spectrum-css/progressbar": "^3.0.61"
65
65
  },
66
66
  "types": "./src/index.d.ts",
67
67
  "customElements": "custom-elements.json",
@@ -69,5 +69,5 @@
69
69
  "./sp-*.js",
70
70
  "./**/*.dev.js"
71
71
  ],
72
- "gitHead": "6ac4e82f0a4a68eb50b5dd4b96a562060162ac6f"
72
+ "gitHead": "a532ff8a410abeefb54d9638a2316ae82570566e"
73
73
  }