@spectrum-web-components/icon 0.12.10-overlay.9 → 0.12.10

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