vue-instantsearch 4.17.3 → 4.17.4

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.
@@ -1,133 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`rendering displays correctly with a max 1`] = `
4
- <div class="ais-RangeInput">
5
- <form class="ais-RangeInput-form">
6
- <label class="ais-RangeInput-label">
7
- <input class="ais-RangeInput-input ais-RangeInput-input--min"
8
- max="100"
9
- min="0"
10
- placeholder="0"
11
- step="1"
12
- type="number"
13
- >
14
- </label>
15
- <span class="ais-RangeInput-separator">
16
- to
17
- </span>
18
- <label class="ais-RangeInput-label">
19
- <input class="ais-RangeInput-input ais-RangeInput-input--max"
20
- max="100"
21
- min="0"
22
- placeholder="100"
23
- step="1"
24
- type="number"
25
- >
26
- </label>
27
- <button class="ais-RangeInput-submit"
28
- type="submit"
29
- >
30
- Go
31
- </button>
32
- </form>
33
- </div>
34
- `;
35
-
36
- exports[`rendering displays correctly with a min 1`] = `
37
- <div class="ais-RangeInput">
38
- <form class="ais-RangeInput-form">
39
- <label class="ais-RangeInput-label">
40
- <input class="ais-RangeInput-input ais-RangeInput-input--min"
41
- max="1000"
42
- min="100"
43
- placeholder="100"
44
- step="1"
45
- type="number"
46
- >
47
- </label>
48
- <span class="ais-RangeInput-separator">
49
- to
50
- </span>
51
- <label class="ais-RangeInput-label">
52
- <input class="ais-RangeInput-input ais-RangeInput-input--max"
53
- max="1000"
54
- min="100"
55
- placeholder="1000"
56
- step="1"
57
- type="number"
58
- >
59
- </label>
60
- <button class="ais-RangeInput-submit"
61
- type="submit"
62
- >
63
- Go
64
- </button>
65
- </form>
66
- </div>
67
- `;
68
-
69
- exports[`rendering displays correctly with a min and a max 1`] = `
70
- <div class="ais-RangeInput">
71
- <form class="ais-RangeInput-form">
72
- <label class="ais-RangeInput-label">
73
- <input class="ais-RangeInput-input ais-RangeInput-input--min"
74
- max="37"
75
- min="10"
76
- placeholder="10"
77
- step="1"
78
- type="number"
79
- >
80
- </label>
81
- <span class="ais-RangeInput-separator">
82
- to
83
- </span>
84
- <label class="ais-RangeInput-label">
85
- <input class="ais-RangeInput-input ais-RangeInput-input--max"
86
- max="37"
87
- min="10"
88
- placeholder="37"
89
- step="1"
90
- type="number"
91
- >
92
- </label>
93
- <button class="ais-RangeInput-submit"
94
- type="submit"
95
- >
96
- Go
97
- </button>
98
- </form>
99
- </div>
100
- `;
101
-
102
- exports[`rendering displays correctly with default 1`] = `
103
- <div class="ais-RangeInput">
104
- <form class="ais-RangeInput-form">
105
- <label class="ais-RangeInput-label">
106
- <input class="ais-RangeInput-input ais-RangeInput-input--min"
107
- max="1000"
108
- min="0"
109
- placeholder="0"
110
- step="1"
111
- type="number"
112
- >
113
- </label>
114
- <span class="ais-RangeInput-separator">
115
- to
116
- </span>
117
- <label class="ais-RangeInput-label">
118
- <input class="ais-RangeInput-input ais-RangeInput-input--max"
119
- max="1000"
120
- min="0"
121
- placeholder="1000"
122
- step="1"
123
- type="number"
124
- >
125
- </label>
126
- <button class="ais-RangeInput-submit"
127
- type="submit"
128
- >
129
- Go
130
- </button>
131
- </form>
132
- </div>
133
- `;