@thirstie/ecomm-vue 0.11.0 → 1.1.0

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.
@@ -6,6 +6,7 @@
6
6
 
7
7
  /* Colors */
8
8
  --th-c-white: #FFF;
9
+ --th-c-smokywhite: #FAFAFA;
9
10
  --th-c-light: #e4e4e4;
10
11
  --th-c-greysLightestGrey: #F2F2F2;
11
12
  --th-c-greysLightGrey: #aaa;
@@ -37,8 +38,39 @@
37
38
  --th-font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
38
39
  --th-font-weight: 400;
39
40
  --th-line-height: 1.5;
40
- --th-border-form: 1px solid var(--th-c-greysMediumLightGrey);
41
+ --th-border-color: var(--th-c-greysMediumLightGrey);
42
+ --th-border-form: 1px solid var(--th-border-color);
43
+ --th-input-focus-outline: 2px solid var(--th-c-greysDarkGrey);
41
44
  --th-border-radius: 4px;
42
45
  --th-header-dividers: 1px solid var(--th-c-greysLightestGrey);
43
46
  --th-account-dividers: 1px solid var(--th-c-gray);
47
+
48
+ --th-checkout-breadcrumb-completed: var(--th-c-brandPrimaryColor, var(--th-c-dark));
49
+ --th-checkout-breadcrumb-inactive: var(--th-c-greysDisabledGrey);
50
+
51
+ --th-c-cart-message-bg: var(--th-c-greysLightestGrey);
52
+ --th-c-cart-message-text-color: var(--th-c-alertWarningPrimary);
53
+
54
+ --th-checkout-bg: var(--th-c-smokywhite, #fafafa); /* .th-checkout */
55
+ --th-checkout-container-bg: var(--th-checkout-bg); /* .th-checkout-section--container */
56
+ --th-checkout-container-text-color: var(--th-c-dark, #242424);
57
+ --th-checkout-container-box-shadow: 0 0 #00000000, 0 0 #00000000, 0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);
58
+ --th-checkout-form-bg: var(--th-c-white);
59
+ --th-checkout-input-bg: var(--th-c-white);
60
+ --th-checkout-input-disabled-bg: var(--th-c-greysLightestGrey);
61
+ --th-checkout-card-bg: var(--th-checkout-form-bg);
62
+ --th-checkout-border: var(--th-border-form);
63
+ --th-checkout-border-radius: var(--th-border-radius);
64
+ --th-checkout-text-color: var(--th-c-dark);
65
+
66
+ --th-checkout-payment-border: var(--th-checkout-border);
67
+ --th-checkout-payment-border-radius: var(--th-checkout-border-radius);
68
+ --th-checkout-payment-background-color: var(--th-checkout-form-bg);
69
+ --th-checkout-payment-text-color: var(--th-checkout-text-color);
70
+ --th-checkout-payment-header-color: var(--th-checkout-payment-text-color);
71
+ --th-checkout-payment-input-border: var(--th-border-form);
72
+ --th-checkout-payment-input-bg: var(--th-checkout-input-bg);
73
+ --th-checkout-payment-input-text-color: var(--th-c-black);
74
+ --th-checkout-payment-placeholder-text-color: var(--th-c-greysMediumDarkGrey);
75
+ --th-checkout-payment-input-focus-outline: var(--th-input-focus-outline);
44
76
  }
@@ -7,6 +7,14 @@ th-icon {
7
7
  vertical-align:middle;
8
8
  }
9
9
 
10
+ /* Box Sizing */
11
+ .box-border {
12
+ box-sizing: border-box;
13
+ }
14
+ .box-content {
15
+ box-sizing: content-box;
16
+ }
17
+
10
18
  /* Display */
11
19
  .flex {
12
20
  display: flex;
@@ -250,6 +258,10 @@ th-icon {
250
258
  margin-left: 0.75rem;
251
259
  margin-right: 0.75rem;
252
260
  }
261
+ .my-2 {
262
+ margin-top: 0.5rem;
263
+ margin-bottom: 0.5rem;
264
+ }
253
265
  .my-3 {
254
266
  margin-top: 0.75rem;
255
267
  margin-bottom: 0.75rem;
@@ -279,9 +291,15 @@ th-icon {
279
291
  .mt-4 {
280
292
  margin-top: 1rem;
281
293
  }
294
+ .mt-2 {
295
+ margin-top: 0.5rem;
296
+ }
282
297
  .mr-2 {
283
298
  margin-right: 0.5rem;
284
299
  }
300
+ .mb-0 {
301
+ margin-bottom: 0;
302
+ }
285
303
  .mb-2 {
286
304
  margin-bottom: 0.5rem;
287
305
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirstie/ecomm-vue",
3
- "version": "0.11.0",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -26,10 +26,10 @@
26
26
  "vue": "^3.4.21"
27
27
  },
28
28
  "dependencies": {
29
- "@thirstie/assets": "^0.11.0",
30
- "@thirstie/thirstieclient": "^0.11.0",
29
+ "@thirstie/assets": "^1.1.0",
30
+ "@thirstie/thirstieclient": "^1.1.0",
31
31
  "@vueuse/core": "^11.0.1",
32
32
  "ramda": "^0.29.1"
33
33
  },
34
- "gitHead": "ed7fb11b877996c6cdf3969f5f457c4694fef162"
34
+ "gitHead": "fe6e3ef52ab8feecdd8560a27848d90747cfbf1a"
35
35
  }