@sc-360-v2/storefront-cms-library 0.2.82 → 0.2.84
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/dist/form-preview.scss
CHANGED
package/dist/login.scss
CHANGED
package/dist/search.scss
CHANGED
|
@@ -51,6 +51,13 @@
|
|
|
51
51
|
.search-container {
|
|
52
52
|
width: 100%;
|
|
53
53
|
height: 100%;
|
|
54
|
+
&.dropdown {
|
|
55
|
+
&:focus-within {
|
|
56
|
+
.dropdown__options {
|
|
57
|
+
display: block;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
54
61
|
}
|
|
55
62
|
|
|
56
63
|
.search-wrapper {
|
|
@@ -162,7 +169,7 @@
|
|
|
162
169
|
|
|
163
170
|
.dropdown__options {
|
|
164
171
|
list-style: none;
|
|
165
|
-
margin:
|
|
172
|
+
margin: 3px 0 0;
|
|
166
173
|
max-height: 200px;
|
|
167
174
|
overflow-y: auto;
|
|
168
175
|
border: 1px solid var(--_gray-200);
|
|
@@ -171,7 +178,7 @@
|
|
|
171
178
|
position: absolute;
|
|
172
179
|
width: 100%;
|
|
173
180
|
z-index: 1000;
|
|
174
|
-
display:
|
|
181
|
+
display: none; /* Hidden by default */
|
|
175
182
|
cursor: pointer;
|
|
176
183
|
transition: background 0.2s;
|
|
177
184
|
|
|
@@ -103,3 +103,12 @@ export interface FormGridLayoutInterface {
|
|
|
103
103
|
minH?: number;
|
|
104
104
|
minW?: number;
|
|
105
105
|
}
|
|
106
|
+
export declare enum FormConfirmationOption {
|
|
107
|
+
ShowMessage = 1,
|
|
108
|
+
RedirectToURL = 2,
|
|
109
|
+
ClearForm = 3
|
|
110
|
+
}
|
|
111
|
+
export declare enum FormMessageDisplay {
|
|
112
|
+
Custom = 1,
|
|
113
|
+
Always = 2
|
|
114
|
+
}
|