@spectrum-web-components/progress-bar 1.0.0-rc.8 → 1.0.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": "staticColor",
92
+ "type": {
93
+ "text": "'white' | undefined"
94
+ },
95
+ "privacy": "public",
96
+ "attribute": "static-color",
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-color",
161
+ "type": {
162
+ "text": "'white' | undefined"
163
+ },
164
+ "fieldName": "staticColor"
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": "1.0.0-rc.8",
3
+ "version": "1.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,10 +58,10 @@
58
58
  "lit-html"
59
59
  ],
60
60
  "dependencies": {
61
- "@spectrum-web-components/base": "^1.0.0-rc.8",
62
- "@spectrum-web-components/field-label": "^1.0.0-rc.8",
63
- "@spectrum-web-components/reactive-controllers": "^1.0.0-rc.8",
64
- "@spectrum-web-components/shared": "^1.0.0-rc.8"
61
+ "@spectrum-web-components/base": "^1.0.0",
62
+ "@spectrum-web-components/field-label": "^1.0.0",
63
+ "@spectrum-web-components/reactive-controllers": "^1.0.0",
64
+ "@spectrum-web-components/shared": "^1.0.0"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@spectrum-css/progressbar": "^5.0.0-s2-foundations.19"
@@ -72,5 +72,5 @@
72
72
  "./sp-*.js",
73
73
  "./**/*.dev.js"
74
74
  ],
75
- "gitHead": "9a2084a069937ff1371dfb41b36c11d612d02378"
75
+ "gitHead": "5cf5d34645bf9494ebd20f64c42d1619523d2d84"
76
76
  }