@thirstie/ecomm-vue 1.4.3 → 1.5.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.
@@ -92,6 +92,17 @@ th-icon {
92
92
  align-items: flex-end;
93
93
  }
94
94
 
95
+ /* text align */
96
+ .text-center {
97
+ text-align: center;
98
+ }
99
+ .text-start {
100
+ text-align: start;
101
+ }
102
+ .text-end {
103
+ text-align: end;
104
+ }
105
+
95
106
  .flex-auto {
96
107
  flex: 1 1 auto;
97
108
  }
@@ -261,14 +272,28 @@ th-icon {
261
272
  margin-bottom: 0;
262
273
  }
263
274
 
264
- .mx-3 {
265
- margin-left: 0.75rem;
266
- margin-right: 0.75rem;
275
+ .mx-1 {
276
+ margin-left: 0.25rem;
277
+ margin-right: 0.5rem;
278
+ }
279
+ .my-1 {
280
+ margin-top: 0.25rem;
281
+ margin-bottom: 0.25rem;
282
+ }
283
+
284
+ .mx-2 {
285
+ margin-left: 0.5rem;
286
+ margin-right: 0.5rem;
267
287
  }
268
288
  .my-2 {
269
289
  margin-top: 0.5rem;
270
290
  margin-bottom: 0.5rem;
271
291
  }
292
+
293
+ .mx-3 {
294
+ margin-left: 0.75rem;
295
+ margin-right: 0.75rem;
296
+ }
272
297
  .my-3 {
273
298
  margin-top: 0.75rem;
274
299
  margin-bottom: 0.75rem;
@@ -298,6 +323,9 @@ th-icon {
298
323
  .mt-4 {
299
324
  margin-top: 1rem;
300
325
  }
326
+ .mt-3 {
327
+ margin-top: 0.75rem;
328
+ }
301
329
  .mt-2 {
302
330
  margin-top: 0.5rem;
303
331
  }
@@ -310,6 +338,9 @@ th-icon {
310
338
  .mb-2 {
311
339
  margin-bottom: 0.5rem;
312
340
  }
341
+ .mb-3 {
342
+ margin-bottom: 0.5rem;
343
+ }
313
344
  .mb-4 {
314
345
  margin-bottom: 1rem;
315
346
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirstie/ecomm-vue",
3
- "version": "1.4.3",
3
+ "version": "1.5.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -17,7 +17,6 @@
17
17
  "build": "vite build",
18
18
  "preview": "vite preview",
19
19
  "lint": "eslint src/",
20
- "test:int": "vitest int --run",
21
20
  "test:coverage": "vitest unit --run --coverage",
22
21
  "test": "concurrently \"npm run lint\" \"npm run test:coverage\"",
23
22
  "test:watch": "vitest unit --watch"
@@ -26,10 +25,10 @@
26
25
  "vue": "^3.4.21"
27
26
  },
28
27
  "dependencies": {
29
- "@thirstie/assets": "^1.4.3",
30
- "@thirstie/thirstieclient": "^1.4.3",
28
+ "@thirstie/assets": "^1.5.1",
29
+ "@thirstie/thirstieclient": "^1.5.1",
31
30
  "@vueuse/core": "^11.0.1",
32
31
  "ramda": "^0.29.1"
33
32
  },
34
- "gitHead": "0066a49b41aa0787a4bbebae52d64f6dc238ea99"
33
+ "gitHead": "7a603c3eab3b23e23e4dce93bed63c39b4ce6fcf"
35
34
  }