ublo-lib 1.9.2 → 1.9.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,29 +1,35 @@
1
1
  .root {
2
2
  position: absolute;
3
- bottom: 5px;
4
- left: 30px;
3
+ bottom: 8px;
4
+ left: 34px;
5
5
  font-family: "Open Sans", sans-serif;
6
6
  z-index: 900;
7
7
  }
8
8
 
9
9
  .toggle {
10
- width: 20px;
11
- height: 20px;
10
+ width: 22px;
11
+ height: 22px;
12
12
  display: flex;
13
13
  align-items: center;
14
14
  justify-content: center;
15
- background-color: #fff;
16
- border-radius: 50%;
17
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
15
+ background: var(
16
+ --cms-blue-gradient,
17
+ linear-gradient(
18
+ 175deg,
19
+ var(--cms-blue-400, #4177f6),
20
+ var(--cms-blue-500, #004cc2)
21
+ )
22
+ );
23
+ border-radius: var(--cms-radius-100, 3px);
18
24
  cursor: pointer;
19
25
  user-select: none;
20
26
  z-index: 2;
21
27
  }
22
28
 
23
29
  .toggleIcon {
24
- width: 14px;
25
- height: 14px;
26
- fill: #484848;
30
+ width: 16px;
31
+ height: 16px;
32
+ fill: var(--cms-grey-000, #ffffff);
27
33
  }
28
34
 
29
35
  .links {
@@ -212,7 +212,7 @@ export const gescoFields = (data, ref) => {
212
212
  lastname: data.lastName.value,
213
213
  email: data.email.value,
214
214
  phone: data.phone.value,
215
- message: ref.current.textContent,
215
+ message: ref.current.innerText,
216
216
  stayFrom: data.stayFrom.value,
217
217
  stayTo: data.stayTo.value
218
218
  };
@@ -30,7 +30,7 @@ export const getData = (product, selectors, levels, handleVariants, convertTable
30
30
  return {
31
31
  title: formatedTitle || "",
32
32
  price: formatedPrice,
33
- details: details?.textContent || "",
33
+ details: details?.innerText || "",
34
34
  selectedOption,
35
35
  productCategory
36
36
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ublo-lib",
3
- "version": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "peerDependencies": {
5
5
  "dt-design-system": "^2.1.0",
6
6
  "next": "^12.0.0 || ^13.0.0",