@spectrum-web-components/search 0.12.11-react.48 → 0.12.11-react.50

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,205 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-search.ts",
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.ts",
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": "form",
81
+ "type": {
82
+ "text": "HTMLFormElement"
83
+ },
84
+ "privacy": "public"
85
+ },
86
+ {
87
+ "kind": "method",
88
+ "name": "handleSubmit",
89
+ "privacy": "private",
90
+ "return": {
91
+ "type": {
92
+ "text": "void"
93
+ }
94
+ },
95
+ "parameters": [
96
+ {
97
+ "name": "event",
98
+ "type": {
99
+ "text": "Event"
100
+ }
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "kind": "method",
106
+ "name": "handleKeydown",
107
+ "privacy": "private",
108
+ "return": {
109
+ "type": {
110
+ "text": "void"
111
+ }
112
+ },
113
+ "parameters": [
114
+ {
115
+ "name": "event",
116
+ "type": {
117
+ "text": "KeyboardEvent"
118
+ }
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "kind": "method",
124
+ "name": "reset",
125
+ "privacy": "public",
126
+ "return": {
127
+ "type": {
128
+ "text": "Promise<void>"
129
+ }
130
+ }
131
+ },
132
+ {
133
+ "kind": "method",
134
+ "name": "renderField",
135
+ "privacy": "protected",
136
+ "return": {
137
+ "type": {
138
+ "text": "TemplateResult"
139
+ }
140
+ }
141
+ }
142
+ ],
143
+ "events": [
144
+ {
145
+ "name": "submit",
146
+ "type": {
147
+ "text": "Event"
148
+ },
149
+ "description": "The search form has been submitted."
150
+ }
151
+ ],
152
+ "attributes": [
153
+ {
154
+ "name": "action",
155
+ "type": {
156
+ "text": "string"
157
+ },
158
+ "default": "''",
159
+ "fieldName": "action"
160
+ },
161
+ {
162
+ "name": "label",
163
+ "type": {
164
+ "text": "string"
165
+ },
166
+ "default": "'Search'",
167
+ "fieldName": "label"
168
+ },
169
+ {
170
+ "name": "method",
171
+ "type": {
172
+ "text": "'GET' | 'POST' | 'dialog' | undefined"
173
+ },
174
+ "fieldName": "method"
175
+ },
176
+ {
177
+ "name": "placeholder",
178
+ "type": {
179
+ "text": "string"
180
+ },
181
+ "default": "'Search'",
182
+ "fieldName": "placeholder"
183
+ }
184
+ ],
185
+ "superclass": {
186
+ "name": "Textfield",
187
+ "package": "@spectrum-web-components/textfield"
188
+ },
189
+ "tagName": "sp-search",
190
+ "customElement": true
191
+ }
192
+ ],
193
+ "exports": [
194
+ {
195
+ "kind": "js",
196
+ "name": "Search",
197
+ "declaration": {
198
+ "name": "Search",
199
+ "module": "src/Search.ts"
200
+ }
201
+ }
202
+ ]
203
+ }
204
+ ]
205
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/search",
3
- "version": "0.12.11-react.48+e4fada004",
3
+ "version": "0.12.11-react.50+474992be7",
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.7.5-react.48+e4fada004",
61
- "@spectrum-web-components/button": "^0.19.11-react.48+e4fada004",
62
- "@spectrum-web-components/icon": "^0.12.8-react.48+e4fada004",
63
- "@spectrum-web-components/icons-workflow": "^0.9.8-react.48+e4fada004",
64
- "@spectrum-web-components/textfield": "^0.13.11-react.48+e4fada004"
60
+ "@spectrum-web-components/base": "^0.7.5-react.50+474992be7",
61
+ "@spectrum-web-components/button": "^0.19.11-react.50+474992be7",
62
+ "@spectrum-web-components/icon": "^0.12.8-react.50+474992be7",
63
+ "@spectrum-web-components/icons-workflow": "^0.9.8-react.50+474992be7",
64
+ "@spectrum-web-components/textfield": "^0.13.11-react.50+474992be7"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@spectrum-css/search": "^4.2.17"
@@ -72,5 +72,5 @@
72
72
  "./sp-*.js",
73
73
  "./**/*.dev.js"
74
74
  ],
75
- "gitHead": "e4fada0040dcaf1e1267f2159f366ec708cb2d09"
75
+ "gitHead": "474992be7513cad160eeeec0b522600243babc70"
76
76
  }