@thirstie/ecomm-vue 0.10.1 → 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.
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 158.6 158.6">
2
+ <path fill="currentColor" d="M146.7,0H11.9A11.86,11.86,0,0,0,0,11.85v134.8a11.86,11.86,0,0,0,11.9,11.9H146.7a11.86,11.86,0,0,0,11.9-11.9V11.85A12,12,0,0,0,146.7,0Zm3.9,146.7a4,4,0,0,1-4,4H11.9a4,4,0,0,1-4-4V11.85a4,4,0,0,1,4-4H146.7a4,4,0,0,1,4,4v134.8ZM57.4,47.25H75.8v70.5h6.9V47.25h18.4v-6.6H57.4Z"/>
3
+ </svg>
@@ -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;
@@ -828,6 +836,9 @@ th-icon {
828
836
  .xl\:text-center {
829
837
  text-align: center !important;
830
838
  }
839
+ .xl\:grid-cols-3 {
840
+ grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
841
+ }
831
842
  }
832
843
 
833
844
  /* Background and Text Color Classes */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirstie/ecomm-vue",
3
- "version": "0.10.1",
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.10.1",
30
- "@thirstie/thirstieclient": "^0.10.1",
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": "61d2e0afd8d795119c631b245adaa807c680bcfb"
34
+ "gitHead": "1b9695731426f007a2676b9b5d7329143ddfafd5"
35
35
  }