@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.
@@ -144,4 +144,16 @@
144
144
  color: #777;
145
145
  line-height: 1.4;
146
146
  }
147
+ .spinner {
148
+ animation: spin 1s linear infinite;
149
+ }
150
+
151
+ @keyframes spin {
152
+ 0% {
153
+ transform: rotate(0deg);
154
+ }
155
+ 100% {
156
+ transform: rotate(360deg);
157
+ }
158
+ }
147
159
  }
package/dist/login.scss CHANGED
@@ -178,6 +178,8 @@
178
178
  display: flex;
179
179
  justify-content: center;
180
180
  align-items: center;
181
+ // margin: var(--_ctm-lt-mn);
182
+ padding: var(--_ctm-lt-pg);
181
183
  }
182
184
 
183
185
  // Login Box
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: 4px 0 0;
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: block; /* Hidden by default */
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sc-360-v2/storefront-cms-library",
3
- "version": "0.2.82",
3
+ "version": "0.2.84",
4
4
  "main": "/dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {