@wizishop/angular-components 0.0.37 → 0.0.38
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/angular-components.scss +4 -0
- package/bundles/wizishop-angular-components.umd.js +10 -4
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.38.tgz +0 -0
- package/wizishop-angular-components-0.0.37.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -1349,6 +1349,10 @@ $wac-button-tab-background: #EAEDF5!default;
|
|
|
1349
1349
|
color: $wac-second-color;
|
|
1350
1350
|
cursor: pointer;
|
|
1351
1351
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
1352
|
+
display: flex;
|
|
1353
|
+
justify-content: flex-start;
|
|
1354
|
+
align-items: center;
|
|
1355
|
+
align-content: center;
|
|
1352
1356
|
|
|
1353
1357
|
i {
|
|
1354
1358
|
min-width: 15px;
|
|
@@ -230,10 +230,16 @@
|
|
|
230
230
|
r[k] = a[j];
|
|
231
231
|
return r;
|
|
232
232
|
}
|
|
233
|
-
function __spreadArray(to, from) {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
233
|
+
function __spreadArray(to, from, pack) {
|
|
234
|
+
if (pack || arguments.length === 2)
|
|
235
|
+
for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
236
|
+
if (ar || !(i in from)) {
|
|
237
|
+
if (!ar)
|
|
238
|
+
ar = Array.prototype.slice.call(from, 0, i);
|
|
239
|
+
ar[i] = from[i];
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
237
243
|
}
|
|
238
244
|
function __await(v) {
|
|
239
245
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|