@spectrum-web-components/icon 0.30.1-overlay.41 → 0.31.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,263 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-icon.js",
8
+ "declarations": [],
9
+ "exports": []
10
+ },
11
+ {
12
+ "kind": "javascript-module",
13
+ "path": "src/Icon.js",
14
+ "declarations": [
15
+ {
16
+ "kind": "class",
17
+ "description": "",
18
+ "name": "Icon",
19
+ "members": [
20
+ {
21
+ "kind": "field",
22
+ "name": "src",
23
+ "type": {
24
+ "text": "string | undefined"
25
+ },
26
+ "privacy": "public",
27
+ "attribute": "src"
28
+ },
29
+ {
30
+ "kind": "field",
31
+ "name": "name",
32
+ "type": {
33
+ "text": "string | undefined"
34
+ },
35
+ "privacy": "public",
36
+ "attribute": "name"
37
+ },
38
+ {
39
+ "kind": "field",
40
+ "name": "iconContainer",
41
+ "type": {
42
+ "text": "HTMLElement | undefined"
43
+ },
44
+ "privacy": "private"
45
+ },
46
+ {
47
+ "kind": "field",
48
+ "name": "updateIconPromise",
49
+ "type": {
50
+ "text": "Promise<void> | undefined"
51
+ },
52
+ "privacy": "private"
53
+ },
54
+ {
55
+ "kind": "field",
56
+ "name": "iconsetListener",
57
+ "privacy": "private"
58
+ },
59
+ {
60
+ "kind": "method",
61
+ "name": "announceIconImageSrcError",
62
+ "privacy": "private",
63
+ "return": {
64
+ "type": {
65
+ "text": "void"
66
+ }
67
+ }
68
+ },
69
+ {
70
+ "kind": "method",
71
+ "name": "updateIcon",
72
+ "privacy": "private",
73
+ "return": {
74
+ "type": {
75
+ "text": "Promise<void>"
76
+ }
77
+ }
78
+ },
79
+ {
80
+ "kind": "method",
81
+ "name": "parseIcon",
82
+ "privacy": "private",
83
+ "return": {
84
+ "type": {
85
+ "text": "{ iconset: string; icon: string }"
86
+ }
87
+ },
88
+ "parameters": [
89
+ {
90
+ "name": "icon",
91
+ "type": {
92
+ "text": "string"
93
+ }
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ "kind": "method",
99
+ "name": "getUpdateComplete",
100
+ "privacy": "protected",
101
+ "return": {
102
+ "type": {
103
+ "text": "Promise<boolean>"
104
+ }
105
+ }
106
+ },
107
+ {
108
+ "kind": "field",
109
+ "name": "label",
110
+ "type": {
111
+ "text": "string | undefined"
112
+ },
113
+ "privacy": "public",
114
+ "attribute": "label",
115
+ "inheritedFrom": {
116
+ "name": "IconBase",
117
+ "module": "src/IconBase.js"
118
+ }
119
+ },
120
+ {
121
+ "kind": "field",
122
+ "name": "size",
123
+ "type": {
124
+ "text": "'s' | 'm' | 'l' | 'xl' | 'xxl' | undefined"
125
+ },
126
+ "privacy": "public",
127
+ "attribute": "size",
128
+ "reflects": true,
129
+ "inheritedFrom": {
130
+ "name": "IconBase",
131
+ "module": "src/IconBase.js"
132
+ }
133
+ }
134
+ ],
135
+ "events": [
136
+ {
137
+ "name": "error",
138
+ "type": {
139
+ "text": "Event"
140
+ }
141
+ }
142
+ ],
143
+ "attributes": [
144
+ {
145
+ "name": "src",
146
+ "type": {
147
+ "text": "string | undefined"
148
+ },
149
+ "fieldName": "src"
150
+ },
151
+ {
152
+ "name": "name",
153
+ "type": {
154
+ "text": "string | undefined"
155
+ },
156
+ "fieldName": "name"
157
+ },
158
+ {
159
+ "name": "label",
160
+ "type": {
161
+ "text": "string | undefined"
162
+ },
163
+ "fieldName": "label",
164
+ "inheritedFrom": {
165
+ "name": "IconBase",
166
+ "module": "src/IconBase.ts"
167
+ }
168
+ },
169
+ {
170
+ "name": "size",
171
+ "type": {
172
+ "text": "'s' | 'm' | 'l' | 'xl' | 'xxl' | undefined"
173
+ },
174
+ "fieldName": "size",
175
+ "inheritedFrom": {
176
+ "name": "IconBase",
177
+ "module": "src/IconBase.ts"
178
+ }
179
+ }
180
+ ],
181
+ "superclass": {
182
+ "name": "IconBase",
183
+ "module": "/src/IconBase.js"
184
+ },
185
+ "tagName": "sp-icon",
186
+ "customElement": true
187
+ }
188
+ ],
189
+ "exports": [
190
+ {
191
+ "kind": "js",
192
+ "name": "Icon",
193
+ "declaration": {
194
+ "name": "Icon",
195
+ "module": "src/Icon.js"
196
+ }
197
+ }
198
+ ]
199
+ },
200
+ {
201
+ "kind": "javascript-module",
202
+ "path": "src/IconBase.js",
203
+ "declarations": [
204
+ {
205
+ "kind": "class",
206
+ "description": "",
207
+ "name": "IconBase",
208
+ "members": [
209
+ {
210
+ "kind": "field",
211
+ "name": "label",
212
+ "type": {
213
+ "text": "string | undefined"
214
+ },
215
+ "privacy": "public",
216
+ "attribute": "label"
217
+ },
218
+ {
219
+ "kind": "field",
220
+ "name": "size",
221
+ "type": {
222
+ "text": "'s' | 'm' | 'l' | 'xl' | 'xxl' | undefined"
223
+ },
224
+ "privacy": "public",
225
+ "attribute": "size",
226
+ "reflects": true
227
+ }
228
+ ],
229
+ "attributes": [
230
+ {
231
+ "name": "label",
232
+ "type": {
233
+ "text": "string | undefined"
234
+ },
235
+ "fieldName": "label"
236
+ },
237
+ {
238
+ "name": "size",
239
+ "type": {
240
+ "text": "'s' | 'm' | 'l' | 'xl' | 'xxl' | undefined"
241
+ },
242
+ "fieldName": "size"
243
+ }
244
+ ],
245
+ "superclass": {
246
+ "name": "SpectrumElement",
247
+ "package": "@spectrum-web-components/base"
248
+ }
249
+ }
250
+ ],
251
+ "exports": [
252
+ {
253
+ "kind": "js",
254
+ "name": "IconBase",
255
+ "declaration": {
256
+ "name": "IconBase",
257
+ "module": "src/IconBase.js"
258
+ }
259
+ }
260
+ ]
261
+ }
262
+ ]
263
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/icon",
3
- "version": "0.30.1-overlay.41+e8c5ef2f9",
3
+ "version": "0.31.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -71,8 +71,8 @@
71
71
  "lit-html"
72
72
  ],
73
73
  "dependencies": {
74
- "@spectrum-web-components/base": "^0.30.1-overlay.41+e8c5ef2f9",
75
- "@spectrum-web-components/iconset": "^0.30.1-overlay.41+e8c5ef2f9"
74
+ "@spectrum-web-components/base": "^0.31.0",
75
+ "@spectrum-web-components/iconset": "^0.31.0"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@spectrum-css/icon": "^3.0.41"
@@ -83,5 +83,5 @@
83
83
  "./sp-*.js",
84
84
  "./**/*.dev.js"
85
85
  ],
86
- "gitHead": "e8c5ef2f9a22bb50fefbbd24762f96ff818551b4"
86
+ "gitHead": "a30eeed27948a9a372b792b751f968c54337ab9e"
87
87
  }