@thefittingroom/shop-ui 1.3.13 → 1.3.14
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/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +2 -2
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* thefittingroom v1.3.
|
|
2
|
+
* thefittingroom v1.3.14 (2024-07-06T01:55:56.681Z)
|
|
3
3
|
* Copyright 2022-present, TheFittingRoom, Inc. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
function loadImageRecursive(imageURL, imageURLs) {
|
|
@@ -24190,8 +24190,8 @@ class SizeRecComponent {
|
|
|
24190
24190
|
this.tfrSizeRecSubtitle.style.display = 'block';
|
|
24191
24191
|
this.tfrSizeRecSelectContainer.style.display = 'flex';
|
|
24192
24192
|
this.isCollapsed = false;
|
|
24193
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24194
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24193
|
+
this.tfrSizeRecTitleToggle.classList.add('tfr-chevron-up');
|
|
24194
|
+
this.tfrSizeRecTitleToggle.classList.remove('tfr-chevron-down');
|
|
24195
24195
|
}
|
|
24196
24196
|
else {
|
|
24197
24197
|
this.tfrSizeRecActionLogin.style.display = 'block';
|
|
@@ -24318,14 +24318,14 @@ class SizeRecComponent {
|
|
|
24318
24318
|
toggletSizeRecSelectContainer() {
|
|
24319
24319
|
if (this.isCollapsed) {
|
|
24320
24320
|
this.isCollapsed = false;
|
|
24321
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24322
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24321
|
+
this.tfrSizeRecTitleToggle.classList.add('tfr-chevron-up');
|
|
24322
|
+
this.tfrSizeRecTitleToggle.classList.remove('tfr-chevron-down');
|
|
24323
24323
|
this.tfrSizeRecSelectContainer.style.display = 'flex';
|
|
24324
24324
|
}
|
|
24325
24325
|
else {
|
|
24326
24326
|
this.isCollapsed = true;
|
|
24327
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24328
|
-
this.tfrSizeRecTitleToggle.classList.
|
|
24327
|
+
this.tfrSizeRecTitleToggle.classList.remove('tfr-chevron-up');
|
|
24328
|
+
this.tfrSizeRecTitleToggle.classList.add('tfr-chevron-down');
|
|
24329
24329
|
this.tfrSizeRecSelectContainer.style.display = 'none';
|
|
24330
24330
|
}
|
|
24331
24331
|
}
|
|
@@ -24340,7 +24340,7 @@ class SizeRecComponent {
|
|
|
24340
24340
|
</div>
|
|
24341
24341
|
</div>
|
|
24342
24342
|
<div id="tfr-size-recommendations-container">
|
|
24343
|
-
<div id="tfr-size-rec-title-toggle" class="tfr-chevron-
|
|
24343
|
+
<div id="tfr-size-rec-title-toggle" class="tfr-chevron-down">v</div>
|
|
24344
24344
|
|
|
24345
24345
|
<div id="tfr-size-rec-title">
|
|
24346
24346
|
Recommended Size:
|