@thirstie/ecomm-vue 0.11.0 → 1.0.1

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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirstie/ecomm-vue",
3
- "version": "0.11.0",
3
+ "version": "1.0.1",
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.0.1",
30
+ "@thirstie/thirstieclient": "^1.0.1",
31
31
  "@vueuse/core": "^11.0.1",
32
32
  "ramda": "^0.29.1"
33
33
  },
34
- "gitHead": "ed7fb11b877996c6cdf3969f5f457c4694fef162"
34
+ "gitHead": "1b9695731426f007a2676b9b5d7329143ddfafd5"
35
35
  }