@spectrum-web-components/search 0.48.0-beta.2 → 0.48.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,221 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-search.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-search",
13
+ "declaration": {
14
+ "name": "Search",
15
+ "module": "/src/Search.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/Search.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "",
27
+ "name": "Search",
28
+ "slots": [
29
+ {
30
+ "description": "default or non-negative help text to associate to your form element",
31
+ "name": "help-text"
32
+ },
33
+ {
34
+ "description": "negative help text to associate to your form element when `invalid`",
35
+ "name": "negative-help-text"
36
+ }
37
+ ],
38
+ "members": [
39
+ {
40
+ "kind": "field",
41
+ "name": "action",
42
+ "type": {
43
+ "text": "string"
44
+ },
45
+ "privacy": "public",
46
+ "default": "''",
47
+ "attribute": "action"
48
+ },
49
+ {
50
+ "kind": "field",
51
+ "name": "label",
52
+ "type": {
53
+ "text": "string"
54
+ },
55
+ "privacy": "public",
56
+ "default": "'Search'",
57
+ "attribute": "label"
58
+ },
59
+ {
60
+ "kind": "field",
61
+ "name": "method",
62
+ "type": {
63
+ "text": "'get' | 'post' | 'dialog' | undefined"
64
+ },
65
+ "privacy": "public",
66
+ "attribute": "method"
67
+ },
68
+ {
69
+ "kind": "field",
70
+ "name": "placeholder",
71
+ "type": {
72
+ "text": "string"
73
+ },
74
+ "privacy": "public",
75
+ "default": "'Search'",
76
+ "attribute": "placeholder"
77
+ },
78
+ {
79
+ "kind": "field",
80
+ "name": "holdValueOnEscape",
81
+ "type": {
82
+ "text": "boolean"
83
+ },
84
+ "privacy": "public",
85
+ "attribute": "holdValueOnEscape"
86
+ },
87
+ {
88
+ "kind": "field",
89
+ "name": "form",
90
+ "type": {
91
+ "text": "HTMLFormElement"
92
+ },
93
+ "privacy": "public"
94
+ },
95
+ {
96
+ "kind": "method",
97
+ "name": "handleSubmit",
98
+ "privacy": "private",
99
+ "return": {
100
+ "type": {
101
+ "text": "void"
102
+ }
103
+ },
104
+ "parameters": [
105
+ {
106
+ "name": "event",
107
+ "type": {
108
+ "text": "Event"
109
+ }
110
+ }
111
+ ]
112
+ },
113
+ {
114
+ "kind": "method",
115
+ "name": "handleKeydown",
116
+ "privacy": "private",
117
+ "return": {
118
+ "type": {
119
+ "text": "void"
120
+ }
121
+ },
122
+ "parameters": [
123
+ {
124
+ "name": "event",
125
+ "type": {
126
+ "text": "KeyboardEvent"
127
+ }
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "kind": "method",
133
+ "name": "reset",
134
+ "privacy": "public",
135
+ "return": {
136
+ "type": {
137
+ "text": "Promise<void>"
138
+ }
139
+ }
140
+ },
141
+ {
142
+ "kind": "method",
143
+ "name": "renderField",
144
+ "privacy": "protected",
145
+ "return": {
146
+ "type": {
147
+ "text": "TemplateResult"
148
+ }
149
+ }
150
+ }
151
+ ],
152
+ "events": [
153
+ {
154
+ "name": "submit",
155
+ "type": {
156
+ "text": "Event"
157
+ },
158
+ "description": "The search form has been submitted."
159
+ }
160
+ ],
161
+ "attributes": [
162
+ {
163
+ "name": "action",
164
+ "type": {
165
+ "text": "string"
166
+ },
167
+ "default": "''",
168
+ "fieldName": "action"
169
+ },
170
+ {
171
+ "name": "label",
172
+ "type": {
173
+ "text": "string"
174
+ },
175
+ "default": "'Search'",
176
+ "fieldName": "label"
177
+ },
178
+ {
179
+ "name": "method",
180
+ "type": {
181
+ "text": "'get' | 'post' | 'dialog' | undefined"
182
+ },
183
+ "fieldName": "method"
184
+ },
185
+ {
186
+ "name": "placeholder",
187
+ "type": {
188
+ "text": "string"
189
+ },
190
+ "default": "'Search'",
191
+ "fieldName": "placeholder"
192
+ },
193
+ {
194
+ "name": "holdValueOnEscape",
195
+ "type": {
196
+ "text": "boolean"
197
+ },
198
+ "fieldName": "holdValueOnEscape"
199
+ }
200
+ ],
201
+ "superclass": {
202
+ "name": "Textfield",
203
+ "package": "@spectrum-web-components/textfield"
204
+ },
205
+ "tagName": "sp-search",
206
+ "customElement": true
207
+ }
208
+ ],
209
+ "exports": [
210
+ {
211
+ "kind": "js",
212
+ "name": "Search",
213
+ "declaration": {
214
+ "name": "Search",
215
+ "module": "src/Search.js"
216
+ }
217
+ }
218
+ ]
219
+ }
220
+ ]
221
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/search",
3
- "version": "0.48.0-beta.2",
3
+ "version": "0.48.1",
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.48.0-beta.2",
61
- "@spectrum-web-components/button": "^0.48.0-beta.2",
62
- "@spectrum-web-components/icon": "^0.48.0-beta.2",
63
- "@spectrum-web-components/icons-workflow": "^0.48.0-beta.2",
64
- "@spectrum-web-components/textfield": "^0.48.0-beta.2"
60
+ "@spectrum-web-components/base": "^0.48.1",
61
+ "@spectrum-web-components/button": "^0.48.1",
62
+ "@spectrum-web-components/icon": "^0.48.1",
63
+ "@spectrum-web-components/icons-workflow": "^0.48.1",
64
+ "@spectrum-web-components/textfield": "^0.48.1"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@spectrum-css/search": "^7.1.0"
@@ -72,5 +72,5 @@
72
72
  "./sp-*.js",
73
73
  "./**/*.dev.js"
74
74
  ],
75
- "gitHead": "e0479b5edadc68587c678267d3ac2c29c460b4d3"
75
+ "gitHead": "b756ecc3587411e4dbeb825bad40a9f4a3c7a248"
76
76
  }