@spectrum-web-components/search 1.0.0 → 1.1.0-beta.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/search",
3
- "version": "1.0.0",
3
+ "version": "1.1.0-beta.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,11 +58,11 @@
58
58
  "lit-html"
59
59
  ],
60
60
  "dependencies": {
61
- "@spectrum-web-components/base": "^1.0.0",
62
- "@spectrum-web-components/button": "^1.0.0",
63
- "@spectrum-web-components/icon": "^1.0.0",
64
- "@spectrum-web-components/icons-workflow": "^1.0.0",
65
- "@spectrum-web-components/textfield": "^1.0.0"
61
+ "@spectrum-web-components/base": "^1.1.0-beta.0",
62
+ "@spectrum-web-components/button": "^1.1.0-beta.0",
63
+ "@spectrum-web-components/icon": "^1.1.0-beta.0",
64
+ "@spectrum-web-components/icons-workflow": "^1.1.0-beta.0",
65
+ "@spectrum-web-components/textfield": "^1.1.0-beta.0"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@spectrum-css/search": "^8.0.0-s2-foundations.17"
@@ -73,5 +73,5 @@
73
73
  "./sp-*.js",
74
74
  "./**/*.dev.js"
75
75
  ],
76
- "gitHead": "5cf5d34645bf9494ebd20f64c42d1619523d2d84"
76
+ "gitHead": "8840da116b3429f0b4de70ad7f690ae3de1c9448"
77
77
  }
@@ -1,221 +0,0 @@
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
- }