@ruebenfox/liquefaction 3.0.0 → 4.0.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.
- package/components/lib-alpha/lib-alpha.liquid +35 -0
- package/components/lib-alpha/manifest.json +55 -0
- package/components/lib-description/lib-description.liquid +5 -4
- package/components/lib-description/manifest.json +19 -10
- package/components/lib-image/lib-image.liquid +13 -13
- package/components/lib-image/manifest.json +10 -10
- package/components/lib-price/lib-price.liquid +1 -1
- package/components/lib-price/manifest.json +8 -7
- package/components/lib-tags/lib-tags.liquid +4 -3
- package/components/lib-tags/manifest.json +9 -8
- package/package.json +1 -1
- package/registry.json +275 -46
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-alpha
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _price_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _price_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: Show a products price.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= product, collection, search, cart
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _price: The products price to display.
|
|
18
|
+
- @prop _show_compare_at: Whether to show the compare at price.
|
|
19
|
+
- @prop _classes: Whether to show the compare at price.
|
|
20
|
+
{%- endcomment -%}
|
|
21
|
+
|
|
22
|
+
{% assign _price = _price | default: product.selected_or_first_available_variant.price %}
|
|
23
|
+
{% assign _classes = _classes | default: 'm-4' %}
|
|
24
|
+
{% assign _show_compare_at = _show_compare_at | default: true %}
|
|
25
|
+
|
|
26
|
+
<div class="price-wrap {{ _classes }}">
|
|
27
|
+
<span>
|
|
28
|
+
{{ _price | money }}
|
|
29
|
+
</span>
|
|
30
|
+
{%- if _show_compare_at and product.selected_or_first_available_variant.compare_at_price > product.selected_or_first_available_variant.price -%}
|
|
31
|
+
<span class="line-through ml-2">
|
|
32
|
+
{{ product.selected_or_first_available_variant.compare_at_price | money }}
|
|
33
|
+
</span>
|
|
34
|
+
{%- endif -%}
|
|
35
|
+
</div>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-alpha",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"description": "Show a products price.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-alpha.liquid",
|
|
8
|
+
"hash": "3f9fbff105cb95633560314fec60e84f"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-alpha/lib-alpha.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "3f9fbff105cb95633560314fec60e84f"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_price",
|
|
21
|
+
"type": "shopify_object",
|
|
22
|
+
"required": true,
|
|
23
|
+
"description": "The products price to display.",
|
|
24
|
+
"placeholder": "product.selected_or_first_available_variant.price"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_classes",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": true,
|
|
30
|
+
"description": "Whether to show the compare at price.",
|
|
31
|
+
"placeholder": "m-4"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "_show_compare_at",
|
|
35
|
+
"type": "boolean",
|
|
36
|
+
"required": true,
|
|
37
|
+
"description": "Whether to show the compare at price.",
|
|
38
|
+
"placeholder": "true"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"dependencies": [],
|
|
42
|
+
"scope": [
|
|
43
|
+
"product",
|
|
44
|
+
"collection",
|
|
45
|
+
"search",
|
|
46
|
+
"cart"
|
|
47
|
+
],
|
|
48
|
+
"registry": {
|
|
49
|
+
"createdAt": "2026-02-09T21:52:10.351Z",
|
|
50
|
+
"hash": "3f9fbff105cb95633560314fec60e84f"
|
|
51
|
+
},
|
|
52
|
+
"build": {
|
|
53
|
+
"lastAuditAt": "2026-02-09T21:53:55.349Z"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -20,10 +20,11 @@ Docs (inline prop descriptions):
|
|
|
20
20
|
- @prop _enable_strip_html: Boolean to enable stripping HTML tags.
|
|
21
21
|
{%- endcomment -%}
|
|
22
22
|
|
|
23
|
-
{% assign _content = _content | default:
|
|
23
|
+
{% assign _content = _content | default: product.description %}
|
|
24
24
|
{% assign _classes = _classes | default: 'mb-4' %}
|
|
25
|
-
{% assign _enable_truncate = _enable_truncate %}
|
|
26
|
-
{% assign
|
|
25
|
+
{% assign _enable_truncate = _enable_truncate | default: true %}
|
|
26
|
+
{% assign _truncate_length = _truncate_length | default: 100 %}
|
|
27
|
+
{% assign _enable_strip_html = _enable_strip_html | default: true %}
|
|
27
28
|
|
|
28
29
|
<div class="description-wrapper {{ _classes }}">
|
|
29
30
|
{% assign description_text = _content %}
|
|
@@ -31,7 +32,7 @@ Docs (inline prop descriptions):
|
|
|
31
32
|
{% assign description_text = description_text | strip_html %}
|
|
32
33
|
{% endif %}
|
|
33
34
|
{% if _enable_truncate %}
|
|
34
|
-
{% assign description_text = description_text | truncate:
|
|
35
|
+
{% assign description_text = description_text | truncate: _truncate_length %}
|
|
35
36
|
{% endif %}
|
|
36
37
|
<p data-lib="description">
|
|
37
38
|
{{ description_text }}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lib-description",
|
|
3
3
|
"type": "snippet-component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"description": "Describe what this component does.",
|
|
6
6
|
"primary": {
|
|
7
7
|
"path": "lib-description.liquid",
|
|
8
|
-
"hash": "
|
|
8
|
+
"hash": "854f1fc5f48159e00bbfa5675eb97814"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
{
|
|
12
12
|
"src": "components/lib-description/lib-description.liquid",
|
|
13
13
|
"destDir": "snippets",
|
|
14
|
-
"hash": "
|
|
14
|
+
"hash": "854f1fc5f48159e00bbfa5675eb97814"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"assets": {},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "string",
|
|
22
22
|
"required": true,
|
|
23
23
|
"description": "The item description you wish to display.",
|
|
24
|
-
"placeholder": "
|
|
24
|
+
"placeholder": "product.description"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "_classes",
|
|
@@ -33,14 +33,23 @@
|
|
|
33
33
|
{
|
|
34
34
|
"name": "_enable_truncate",
|
|
35
35
|
"type": "string",
|
|
36
|
-
"required":
|
|
37
|
-
"description": "Boolean to enable truncation of text."
|
|
36
|
+
"required": true,
|
|
37
|
+
"description": "Boolean to enable truncation of text.",
|
|
38
|
+
"placeholder": "true"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "_truncate_length",
|
|
42
|
+
"type": "string",
|
|
43
|
+
"required": true,
|
|
44
|
+
"description": "",
|
|
45
|
+
"placeholder": "100"
|
|
38
46
|
},
|
|
39
47
|
{
|
|
40
48
|
"name": "_enable_strip_html",
|
|
41
49
|
"type": "string",
|
|
42
|
-
"required":
|
|
43
|
-
"description": "Boolean to enable stripping HTML tags."
|
|
50
|
+
"required": true,
|
|
51
|
+
"description": "Boolean to enable stripping HTML tags.",
|
|
52
|
+
"placeholder": "true"
|
|
44
53
|
}
|
|
45
54
|
],
|
|
46
55
|
"dependencies": [],
|
|
@@ -49,9 +58,9 @@
|
|
|
49
58
|
],
|
|
50
59
|
"registry": {
|
|
51
60
|
"createdAt": "2026-02-01T19:39:42.311Z",
|
|
52
|
-
"hash": "
|
|
61
|
+
"hash": "854f1fc5f48159e00bbfa5675eb97814"
|
|
53
62
|
},
|
|
54
63
|
"build": {
|
|
55
|
-
"lastAuditAt": "2026-02-
|
|
64
|
+
"lastAuditAt": "2026-02-02T11:10:09.484Z"
|
|
56
65
|
}
|
|
57
66
|
}
|
|
@@ -21,19 +21,19 @@ Docs (inline prop descriptions):
|
|
|
21
21
|
-@prop _height: The height of the image.
|
|
22
22
|
{%- endcomment -%}
|
|
23
23
|
|
|
24
|
-
{% assign _image = _image | default:
|
|
25
|
-
{% assign _alt_text = _alt_text | default:
|
|
26
|
-
{% assign _classes = _classes | default: '' %}
|
|
27
|
-
{% assign _width = _width | default:
|
|
28
|
-
{% assign _height = _height | default:
|
|
24
|
+
{% assign _image = _image | default: product.featured_image | image_url: width: _width, height: _height %}
|
|
25
|
+
{% assign _alt_text = _alt_text | default: product.title %}
|
|
26
|
+
{% assign _classes = _classes | default: 'w-full aspect-square object-cover rounded-md mb-2' %}
|
|
27
|
+
{% assign _width = _width | default: 250 %}
|
|
28
|
+
{% assign _height = _height | default: 250 %}
|
|
29
29
|
|
|
30
30
|
<div class="image-container {{ _classes }}" style="width: {{ _width }}px; height: {{ _height }}px;">
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
{
|
|
37
|
-
|
|
38
|
-
|
|
31
|
+
{% if _image %}
|
|
32
|
+
<img
|
|
33
|
+
class="w-full h-full object-cover block {{ _classes }}"
|
|
34
|
+
src="{{ _image }}"
|
|
35
|
+
width="{{ _width }}"
|
|
36
|
+
height="{{ _height }}"
|
|
37
|
+
alt="{{ _alt_text }}" />
|
|
38
|
+
{% endif %}
|
|
39
39
|
</div>
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lib-image",
|
|
3
3
|
"type": "snippet-component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
5
|
"description": "A component for rendering an image.",
|
|
6
6
|
"primary": {
|
|
7
7
|
"path": "lib-image.liquid",
|
|
8
|
-
"hash": "
|
|
8
|
+
"hash": "87bd8f070a3fc42161957d506feeab54"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
{
|
|
12
12
|
"src": "components/lib-image/lib-image.liquid",
|
|
13
13
|
"destDir": "snippets",
|
|
14
|
-
"hash": "
|
|
14
|
+
"hash": "87bd8f070a3fc42161957d506feeab54"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"assets": {},
|
|
@@ -21,35 +21,35 @@
|
|
|
21
21
|
"type": "string",
|
|
22
22
|
"required": true,
|
|
23
23
|
"description": "The image to display.",
|
|
24
|
-
"placeholder": "
|
|
24
|
+
"placeholder": "product.featured_image | image_url: width: _width, height: _height"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "_alt_text",
|
|
28
28
|
"type": "string",
|
|
29
29
|
"required": true,
|
|
30
30
|
"description": "The alt text for the image.",
|
|
31
|
-
"placeholder": "
|
|
31
|
+
"placeholder": "product.title"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"name": "_classes",
|
|
35
35
|
"type": "string",
|
|
36
36
|
"required": true,
|
|
37
37
|
"description": "Additional classes for the image styling.",
|
|
38
|
-
"placeholder": "''"
|
|
38
|
+
"placeholder": "'w-full aspect-square object-cover rounded-md mb-2'"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"name": "_width",
|
|
42
42
|
"type": "string",
|
|
43
43
|
"required": true,
|
|
44
44
|
"description": "The width of the image.",
|
|
45
|
-
"placeholder": "
|
|
45
|
+
"placeholder": "250"
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"name": "_height",
|
|
49
49
|
"type": "string",
|
|
50
50
|
"required": true,
|
|
51
51
|
"description": "The height of the image.",
|
|
52
|
-
"placeholder": "
|
|
52
|
+
"placeholder": "250"
|
|
53
53
|
}
|
|
54
54
|
],
|
|
55
55
|
"dependencies": [],
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
],
|
|
59
59
|
"registry": {
|
|
60
60
|
"createdAt": "2026-02-01T19:39:23.849Z",
|
|
61
|
-
"hash": "
|
|
61
|
+
"hash": "87bd8f070a3fc42161957d506feeab54"
|
|
62
62
|
},
|
|
63
63
|
"build": {
|
|
64
|
-
"lastAuditAt": "2026-02-
|
|
64
|
+
"lastAuditAt": "2026-02-02T11:01:58.315Z"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -21,7 +21,7 @@ Docs (inline prop descriptions):
|
|
|
21
21
|
|
|
22
22
|
{% assign _price = _price | default: product.selected_or_first_available_variant.price %}
|
|
23
23
|
{% assign _classes = _classes | default: 'm-4' %}
|
|
24
|
-
{% assign _show_compare_at = _show_compare_at %}
|
|
24
|
+
{% assign _show_compare_at = _show_compare_at | default: true %}
|
|
25
25
|
|
|
26
26
|
<div class="price-wrap {{ _classes }}">
|
|
27
27
|
<span>
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lib-price",
|
|
3
3
|
"type": "snippet-component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
5
|
"description": "Show a products price.",
|
|
6
6
|
"primary": {
|
|
7
7
|
"path": "lib-price.liquid",
|
|
8
|
-
"hash": "
|
|
8
|
+
"hash": "38a260348195688cf0a45dff8c73fe8f"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
{
|
|
12
12
|
"src": "components/lib-price/lib-price.liquid",
|
|
13
13
|
"destDir": "snippets",
|
|
14
|
-
"hash": "
|
|
14
|
+
"hash": "38a260348195688cf0a45dff8c73fe8f"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"assets": {},
|
|
@@ -33,8 +33,9 @@
|
|
|
33
33
|
{
|
|
34
34
|
"name": "_show_compare_at",
|
|
35
35
|
"type": "string",
|
|
36
|
-
"required":
|
|
37
|
-
"description": "Whether to show the compare at price."
|
|
36
|
+
"required": true,
|
|
37
|
+
"description": "Whether to show the compare at price.",
|
|
38
|
+
"placeholder": "true"
|
|
38
39
|
}
|
|
39
40
|
],
|
|
40
41
|
"dependencies": [],
|
|
@@ -46,9 +47,9 @@
|
|
|
46
47
|
],
|
|
47
48
|
"registry": {
|
|
48
49
|
"createdAt": "2026-02-01T19:39:01.207Z",
|
|
49
|
-
"hash": "
|
|
50
|
+
"hash": "38a260348195688cf0a45dff8c73fe8f"
|
|
50
51
|
},
|
|
51
52
|
"build": {
|
|
52
|
-
"lastAuditAt": "2026-02-
|
|
53
|
+
"lastAuditAt": "2026-02-02T11:10:33.370Z"
|
|
53
54
|
}
|
|
54
55
|
}
|
|
@@ -19,13 +19,14 @@ Docs (inline prop descriptions):
|
|
|
19
19
|
- @prop _tags: The list of tags to display.
|
|
20
20
|
{%- endcomment -%}
|
|
21
21
|
|
|
22
|
-
{% assign _classes = _classes | default: 'tag-list flex flex-wrap gap-2' %}
|
|
23
|
-
{% assign _number_of_tags = _number_of_tags %}
|
|
22
|
+
{% assign _classes = _classes | default: 'tag-list flex flex-wrap gap-2 mb-2 text-xs text-gray-600' %}
|
|
23
|
+
{% assign _number_of_tags = _number_of_tags | default: 3 %}
|
|
24
24
|
{% assign _tags = _tags | default: product.tags %}
|
|
25
25
|
|
|
26
26
|
<ul class="{{ _classes }}">
|
|
27
27
|
{% if _number_of_tags %}
|
|
28
|
-
{%
|
|
28
|
+
{% assign tag_limit = _number_of_tags | plus: 0 %}
|
|
29
|
+
{% for tag in _tags limit: tag_limit %}
|
|
29
30
|
<li>{{ tag }}</li>
|
|
30
31
|
{% endfor %}
|
|
31
32
|
{% else %}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lib-tags",
|
|
3
3
|
"type": "snippet-component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
5
|
"description": "Show the product tags.",
|
|
6
6
|
"primary": {
|
|
7
7
|
"path": "lib-tags.liquid",
|
|
8
|
-
"hash": "
|
|
8
|
+
"hash": "eba86dd5b4d671cca41af6e142ca5c7b"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
{
|
|
12
12
|
"src": "components/lib-tags/lib-tags.liquid",
|
|
13
13
|
"destDir": "snippets",
|
|
14
|
-
"hash": "
|
|
14
|
+
"hash": "eba86dd5b4d671cca41af6e142ca5c7b"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"assets": {},
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
"type": "string",
|
|
22
22
|
"required": true,
|
|
23
23
|
"description": "Additional classes for the tags styling.",
|
|
24
|
-
"placeholder": "'tag-list flex flex-wrap gap-2'"
|
|
24
|
+
"placeholder": "'tag-list flex flex-wrap gap-2 mb-2 text-xs text-gray-600'"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "_number_of_tags",
|
|
28
28
|
"type": "string",
|
|
29
|
-
"required":
|
|
30
|
-
"description": "Determine how many tags to show."
|
|
29
|
+
"required": true,
|
|
30
|
+
"description": "Determine how many tags to show.",
|
|
31
|
+
"placeholder": "3"
|
|
31
32
|
},
|
|
32
33
|
{
|
|
33
34
|
"name": "_tags",
|
|
@@ -43,9 +44,9 @@
|
|
|
43
44
|
],
|
|
44
45
|
"registry": {
|
|
45
46
|
"createdAt": "2026-02-01T20:38:27.819Z",
|
|
46
|
-
"hash": "
|
|
47
|
+
"hash": "eba86dd5b4d671cca41af6e142ca5c7b"
|
|
47
48
|
},
|
|
48
49
|
"build": {
|
|
49
|
-
"lastAuditAt": "2026-02-
|
|
50
|
+
"lastAuditAt": "2026-02-02T11:10:09.545Z"
|
|
50
51
|
}
|
|
51
52
|
}
|
package/package.json
CHANGED
package/registry.json
CHANGED
|
@@ -27,7 +27,16 @@
|
|
|
27
27
|
"2026-02-01T20:49:37.913Z",
|
|
28
28
|
"2026-02-01T20:56:45.169Z",
|
|
29
29
|
"2026-02-01T20:57:01.755Z",
|
|
30
|
-
"2026-02-01T20:57:33.335Z"
|
|
30
|
+
"2026-02-01T20:57:33.335Z",
|
|
31
|
+
"2026-02-02T11:00:06.387Z",
|
|
32
|
+
"2026-02-02T11:01:58.273Z",
|
|
33
|
+
"2026-02-02T11:10:09.472Z",
|
|
34
|
+
"2026-02-02T11:10:33.313Z",
|
|
35
|
+
"2026-02-02T11:10:45.328Z",
|
|
36
|
+
"2026-02-02T11:11:20.622Z",
|
|
37
|
+
"2026-02-09T21:53:33.174Z",
|
|
38
|
+
"2026-02-09T21:53:55.370Z",
|
|
39
|
+
"2026-02-09T22:00:39.955Z"
|
|
31
40
|
],
|
|
32
41
|
"props": [
|
|
33
42
|
{
|
|
@@ -75,7 +84,16 @@
|
|
|
75
84
|
"2026-02-01T20:49:37.932Z",
|
|
76
85
|
"2026-02-01T20:56:45.187Z",
|
|
77
86
|
"2026-02-01T20:57:01.774Z",
|
|
78
|
-
"2026-02-01T20:57:33.352Z"
|
|
87
|
+
"2026-02-01T20:57:33.352Z",
|
|
88
|
+
"2026-02-02T11:00:06.412Z",
|
|
89
|
+
"2026-02-02T11:01:58.290Z",
|
|
90
|
+
"2026-02-02T11:10:09.494Z",
|
|
91
|
+
"2026-02-02T11:10:33.330Z",
|
|
92
|
+
"2026-02-02T11:10:45.344Z",
|
|
93
|
+
"2026-02-02T11:11:20.641Z",
|
|
94
|
+
"2026-02-09T21:53:33.199Z",
|
|
95
|
+
"2026-02-09T21:53:55.390Z",
|
|
96
|
+
"2026-02-09T22:00:39.973Z"
|
|
79
97
|
],
|
|
80
98
|
"props": [],
|
|
81
99
|
"files": [
|
|
@@ -117,7 +135,16 @@
|
|
|
117
135
|
"2026-02-01T20:49:37.959Z",
|
|
118
136
|
"2026-02-01T20:56:45.210Z",
|
|
119
137
|
"2026-02-01T20:57:01.797Z",
|
|
120
|
-
"2026-02-01T20:57:33.373Z"
|
|
138
|
+
"2026-02-01T20:57:33.373Z",
|
|
139
|
+
"2026-02-02T11:00:06.444Z",
|
|
140
|
+
"2026-02-02T11:01:58.311Z",
|
|
141
|
+
"2026-02-02T11:10:09.516Z",
|
|
142
|
+
"2026-02-02T11:10:33.351Z",
|
|
143
|
+
"2026-02-02T11:10:45.366Z",
|
|
144
|
+
"2026-02-02T11:11:20.663Z",
|
|
145
|
+
"2026-02-09T21:53:33.230Z",
|
|
146
|
+
"2026-02-09T21:53:55.415Z",
|
|
147
|
+
"2026-02-09T22:00:39.998Z"
|
|
121
148
|
],
|
|
122
149
|
"props": [],
|
|
123
150
|
"files": [
|
|
@@ -153,7 +180,16 @@
|
|
|
153
180
|
"2026-02-01T20:49:37.949Z",
|
|
154
181
|
"2026-02-01T20:56:45.202Z",
|
|
155
182
|
"2026-02-01T20:57:01.788Z",
|
|
156
|
-
"2026-02-01T20:57:33.365Z"
|
|
183
|
+
"2026-02-01T20:57:33.365Z",
|
|
184
|
+
"2026-02-02T11:00:06.432Z",
|
|
185
|
+
"2026-02-02T11:01:58.303Z",
|
|
186
|
+
"2026-02-02T11:10:09.507Z",
|
|
187
|
+
"2026-02-02T11:10:33.343Z",
|
|
188
|
+
"2026-02-02T11:10:45.357Z",
|
|
189
|
+
"2026-02-02T11:11:20.655Z",
|
|
190
|
+
"2026-02-09T21:53:33.218Z",
|
|
191
|
+
"2026-02-09T21:53:55.404Z",
|
|
192
|
+
"2026-02-09T22:00:39.988Z"
|
|
157
193
|
],
|
|
158
194
|
"props": [],
|
|
159
195
|
"files": [
|
|
@@ -193,7 +229,16 @@
|
|
|
193
229
|
"2026-02-01T20:49:37.990Z",
|
|
194
230
|
"2026-02-01T20:56:45.244Z",
|
|
195
231
|
"2026-02-01T20:57:01.826Z",
|
|
196
|
-
"2026-02-01T20:57:33.400Z"
|
|
232
|
+
"2026-02-01T20:57:33.400Z",
|
|
233
|
+
"2026-02-02T11:00:06.489Z",
|
|
234
|
+
"2026-02-02T11:01:58.345Z",
|
|
235
|
+
"2026-02-02T11:10:09.542Z",
|
|
236
|
+
"2026-02-02T11:10:33.385Z",
|
|
237
|
+
"2026-02-02T11:10:45.393Z",
|
|
238
|
+
"2026-02-02T11:11:20.688Z",
|
|
239
|
+
"2026-02-09T21:53:33.269Z",
|
|
240
|
+
"2026-02-09T21:53:55.443Z",
|
|
241
|
+
"2026-02-09T22:00:40.027Z"
|
|
197
242
|
],
|
|
198
243
|
"props": [],
|
|
199
244
|
"files": [
|
|
@@ -233,7 +278,16 @@
|
|
|
233
278
|
"2026-02-01T20:49:37.985Z",
|
|
234
279
|
"2026-02-01T20:56:45.240Z",
|
|
235
280
|
"2026-02-01T20:57:01.821Z",
|
|
236
|
-
"2026-02-01T20:57:33.396Z"
|
|
281
|
+
"2026-02-01T20:57:33.396Z",
|
|
282
|
+
"2026-02-02T11:00:06.483Z",
|
|
283
|
+
"2026-02-02T11:01:58.341Z",
|
|
284
|
+
"2026-02-02T11:10:09.538Z",
|
|
285
|
+
"2026-02-02T11:10:33.380Z",
|
|
286
|
+
"2026-02-02T11:10:45.390Z",
|
|
287
|
+
"2026-02-02T11:11:20.685Z",
|
|
288
|
+
"2026-02-09T21:53:33.263Z",
|
|
289
|
+
"2026-02-09T21:53:55.439Z",
|
|
290
|
+
"2026-02-09T22:00:40.022Z"
|
|
237
291
|
],
|
|
238
292
|
"props": [
|
|
239
293
|
{
|
|
@@ -322,7 +376,16 @@
|
|
|
322
376
|
"2026-02-01T20:49:38.013Z",
|
|
323
377
|
"2026-02-01T20:56:45.268Z",
|
|
324
378
|
"2026-02-01T20:57:01.841Z",
|
|
325
|
-
"2026-02-01T20:57:33.413Z"
|
|
379
|
+
"2026-02-01T20:57:33.413Z",
|
|
380
|
+
"2026-02-02T11:00:06.524Z",
|
|
381
|
+
"2026-02-02T11:01:58.359Z",
|
|
382
|
+
"2026-02-02T11:10:09.558Z",
|
|
383
|
+
"2026-02-02T11:10:33.398Z",
|
|
384
|
+
"2026-02-02T11:10:45.416Z",
|
|
385
|
+
"2026-02-02T11:11:20.702Z",
|
|
386
|
+
"2026-02-09T21:53:33.289Z",
|
|
387
|
+
"2026-02-09T21:53:55.458Z",
|
|
388
|
+
"2026-02-09T22:00:40.042Z"
|
|
326
389
|
],
|
|
327
390
|
"props": [
|
|
328
391
|
{
|
|
@@ -404,7 +467,16 @@
|
|
|
404
467
|
"2026-02-01T20:49:37.943Z",
|
|
405
468
|
"2026-02-01T20:56:45.197Z",
|
|
406
469
|
"2026-02-01T20:57:01.783Z",
|
|
407
|
-
"2026-02-01T20:57:33.361Z"
|
|
470
|
+
"2026-02-01T20:57:33.361Z",
|
|
471
|
+
"2026-02-02T11:00:06.425Z",
|
|
472
|
+
"2026-02-02T11:01:58.298Z",
|
|
473
|
+
"2026-02-02T11:10:09.503Z",
|
|
474
|
+
"2026-02-02T11:10:33.339Z",
|
|
475
|
+
"2026-02-02T11:10:45.353Z",
|
|
476
|
+
"2026-02-02T11:11:20.651Z",
|
|
477
|
+
"2026-02-09T21:53:33.211Z",
|
|
478
|
+
"2026-02-09T21:53:55.399Z",
|
|
479
|
+
"2026-02-09T22:00:39.984Z"
|
|
408
480
|
],
|
|
409
481
|
"props": [
|
|
410
482
|
{
|
|
@@ -479,7 +551,16 @@
|
|
|
479
551
|
"2026-02-01T20:49:37.970Z",
|
|
480
552
|
"2026-02-01T20:56:45.225Z",
|
|
481
553
|
"2026-02-01T20:57:01.807Z",
|
|
482
|
-
"2026-02-01T20:57:33.383Z"
|
|
554
|
+
"2026-02-01T20:57:33.383Z",
|
|
555
|
+
"2026-02-02T11:00:06.463Z",
|
|
556
|
+
"2026-02-02T11:01:58.327Z",
|
|
557
|
+
"2026-02-02T11:10:09.525Z",
|
|
558
|
+
"2026-02-02T11:10:33.360Z",
|
|
559
|
+
"2026-02-02T11:10:45.375Z",
|
|
560
|
+
"2026-02-02T11:11:20.671Z",
|
|
561
|
+
"2026-02-09T21:53:33.243Z",
|
|
562
|
+
"2026-02-09T21:53:55.424Z",
|
|
563
|
+
"2026-02-09T22:00:40.008Z"
|
|
483
564
|
],
|
|
484
565
|
"props": [
|
|
485
566
|
{
|
|
@@ -535,7 +616,16 @@
|
|
|
535
616
|
"2026-02-01T20:49:37.955Z",
|
|
536
617
|
"2026-02-01T20:56:45.206Z",
|
|
537
618
|
"2026-02-01T20:57:01.792Z",
|
|
538
|
-
"2026-02-01T20:57:33.369Z"
|
|
619
|
+
"2026-02-01T20:57:33.369Z",
|
|
620
|
+
"2026-02-02T11:00:06.438Z",
|
|
621
|
+
"2026-02-02T11:01:58.307Z",
|
|
622
|
+
"2026-02-02T11:10:09.511Z",
|
|
623
|
+
"2026-02-02T11:10:33.347Z",
|
|
624
|
+
"2026-02-02T11:10:45.362Z",
|
|
625
|
+
"2026-02-02T11:11:20.658Z",
|
|
626
|
+
"2026-02-09T21:53:33.224Z",
|
|
627
|
+
"2026-02-09T21:53:55.409Z",
|
|
628
|
+
"2026-02-09T22:00:39.993Z"
|
|
539
629
|
],
|
|
540
630
|
"props": [],
|
|
541
631
|
"files": [
|
|
@@ -581,7 +671,16 @@
|
|
|
581
671
|
"2026-02-01T20:49:37.938Z",
|
|
582
672
|
"2026-02-01T20:56:45.192Z",
|
|
583
673
|
"2026-02-01T20:57:01.779Z",
|
|
584
|
-
"2026-02-01T20:57:33.356Z"
|
|
674
|
+
"2026-02-01T20:57:33.356Z",
|
|
675
|
+
"2026-02-02T11:00:06.419Z",
|
|
676
|
+
"2026-02-02T11:01:58.294Z",
|
|
677
|
+
"2026-02-02T11:10:09.498Z",
|
|
678
|
+
"2026-02-02T11:10:33.335Z",
|
|
679
|
+
"2026-02-02T11:10:45.348Z",
|
|
680
|
+
"2026-02-02T11:11:20.647Z",
|
|
681
|
+
"2026-02-09T21:53:33.205Z",
|
|
682
|
+
"2026-02-09T21:53:55.395Z",
|
|
683
|
+
"2026-02-09T22:00:39.978Z"
|
|
585
684
|
],
|
|
586
685
|
"props": [],
|
|
587
686
|
"files": [
|
|
@@ -622,7 +721,16 @@
|
|
|
622
721
|
"2026-02-01T20:49:37.921Z",
|
|
623
722
|
"2026-02-01T20:56:45.177Z",
|
|
624
723
|
"2026-02-01T20:57:01.764Z",
|
|
625
|
-
"2026-02-01T20:57:33.342Z"
|
|
724
|
+
"2026-02-01T20:57:33.342Z",
|
|
725
|
+
"2026-02-02T11:00:06.398Z",
|
|
726
|
+
"2026-02-02T11:01:58.279Z",
|
|
727
|
+
"2026-02-02T11:10:09.479Z",
|
|
728
|
+
"2026-02-02T11:10:33.321Z",
|
|
729
|
+
"2026-02-02T11:10:45.335Z",
|
|
730
|
+
"2026-02-02T11:11:20.631Z",
|
|
731
|
+
"2026-02-09T21:53:33.186Z",
|
|
732
|
+
"2026-02-09T21:53:55.378Z",
|
|
733
|
+
"2026-02-09T22:00:39.962Z"
|
|
626
734
|
],
|
|
627
735
|
"props": [
|
|
628
736
|
{
|
|
@@ -694,7 +802,16 @@
|
|
|
694
802
|
"2026-02-01T20:49:37.974Z",
|
|
695
803
|
"2026-02-01T20:56:45.230Z",
|
|
696
804
|
"2026-02-01T20:57:01.812Z",
|
|
697
|
-
"2026-02-01T20:57:33.388Z"
|
|
805
|
+
"2026-02-01T20:57:33.388Z",
|
|
806
|
+
"2026-02-02T11:00:06.470Z",
|
|
807
|
+
"2026-02-02T11:01:58.333Z",
|
|
808
|
+
"2026-02-02T11:10:09.531Z",
|
|
809
|
+
"2026-02-02T11:10:33.365Z",
|
|
810
|
+
"2026-02-02T11:10:45.381Z",
|
|
811
|
+
"2026-02-02T11:11:20.675Z",
|
|
812
|
+
"2026-02-09T21:53:33.251Z",
|
|
813
|
+
"2026-02-09T21:53:55.429Z",
|
|
814
|
+
"2026-02-09T22:00:40.013Z"
|
|
698
815
|
],
|
|
699
816
|
"props": [],
|
|
700
817
|
"files": [
|
|
@@ -728,7 +845,16 @@
|
|
|
728
845
|
"2026-02-01T20:49:38.008Z",
|
|
729
846
|
"2026-02-01T20:56:45.256Z",
|
|
730
847
|
"2026-02-01T20:57:01.837Z",
|
|
731
|
-
"2026-02-01T20:57:33.409Z"
|
|
848
|
+
"2026-02-01T20:57:33.409Z",
|
|
849
|
+
"2026-02-02T11:00:06.515Z",
|
|
850
|
+
"2026-02-02T11:01:58.354Z",
|
|
851
|
+
"2026-02-02T11:10:09.554Z",
|
|
852
|
+
"2026-02-02T11:10:33.393Z",
|
|
853
|
+
"2026-02-02T11:10:45.410Z",
|
|
854
|
+
"2026-02-02T11:11:20.699Z",
|
|
855
|
+
"2026-02-09T21:53:33.283Z",
|
|
856
|
+
"2026-02-09T21:53:55.454Z",
|
|
857
|
+
"2026-02-09T22:00:40.038Z"
|
|
732
858
|
],
|
|
733
859
|
"props": [
|
|
734
860
|
{
|
|
@@ -767,9 +893,9 @@
|
|
|
767
893
|
},
|
|
768
894
|
"lib-price": {
|
|
769
895
|
"type": "snippet-component",
|
|
770
|
-
"version": "
|
|
896
|
+
"version": "4.0.0",
|
|
771
897
|
"description": "liquid component scaffold",
|
|
772
|
-
"hash": "
|
|
898
|
+
"hash": "38a260348195688cf0a45dff8c73fe8f",
|
|
773
899
|
"createdAt": "2026-02-01T19:39:01.214Z",
|
|
774
900
|
"updatedAt": [
|
|
775
901
|
"2026-02-01T19:46:48.491Z",
|
|
@@ -787,7 +913,15 @@
|
|
|
787
913
|
"2026-02-01T20:49:37.979Z",
|
|
788
914
|
"2026-02-01T20:56:45.235Z",
|
|
789
915
|
"2026-02-01T20:57:01.817Z",
|
|
790
|
-
"2026-02-01T20:57:33.392Z"
|
|
916
|
+
"2026-02-01T20:57:33.392Z",
|
|
917
|
+
"2026-02-02T11:00:06.477Z",
|
|
918
|
+
"2026-02-02T11:01:58.337Z",
|
|
919
|
+
"2026-02-02T11:10:33.375Z",
|
|
920
|
+
"2026-02-02T11:10:45.386Z",
|
|
921
|
+
"2026-02-02T11:11:20.680Z",
|
|
922
|
+
"2026-02-09T21:53:33.257Z",
|
|
923
|
+
"2026-02-09T21:53:55.435Z",
|
|
924
|
+
"2026-02-09T22:00:40.019Z"
|
|
791
925
|
],
|
|
792
926
|
"props": [
|
|
793
927
|
{
|
|
@@ -807,15 +941,16 @@
|
|
|
807
941
|
{
|
|
808
942
|
"name": "_show_compare_at",
|
|
809
943
|
"type": "string",
|
|
810
|
-
"required":
|
|
811
|
-
"description": "Whether to show the compare at price."
|
|
944
|
+
"required": true,
|
|
945
|
+
"description": "Whether to show the compare at price.",
|
|
946
|
+
"placeholder": "true"
|
|
812
947
|
}
|
|
813
948
|
],
|
|
814
949
|
"files": [
|
|
815
950
|
{
|
|
816
951
|
"src": "components/lib-price/lib-price.liquid",
|
|
817
952
|
"destDir": "snippets",
|
|
818
|
-
"hash": "
|
|
953
|
+
"hash": "38a260348195688cf0a45dff8c73fe8f"
|
|
819
954
|
}
|
|
820
955
|
],
|
|
821
956
|
"dependencies": [],
|
|
@@ -828,9 +963,9 @@
|
|
|
828
963
|
},
|
|
829
964
|
"lib-image": {
|
|
830
965
|
"type": "snippet-component",
|
|
831
|
-
"version": "
|
|
966
|
+
"version": "4.0.0",
|
|
832
967
|
"description": "liquid component scaffold",
|
|
833
|
-
"hash": "
|
|
968
|
+
"hash": "87bd8f070a3fc42161957d506feeab54",
|
|
834
969
|
"createdAt": "2026-02-01T19:39:23.857Z",
|
|
835
970
|
"updatedAt": [
|
|
836
971
|
"2026-02-01T19:46:48.474Z",
|
|
@@ -848,7 +983,16 @@
|
|
|
848
983
|
"2026-02-01T20:49:37.965Z",
|
|
849
984
|
"2026-02-01T20:56:45.220Z",
|
|
850
985
|
"2026-02-01T20:57:01.803Z",
|
|
851
|
-
"2026-02-01T20:57:33.378Z"
|
|
986
|
+
"2026-02-01T20:57:33.378Z",
|
|
987
|
+
"2026-02-02T11:00:06.457Z",
|
|
988
|
+
"2026-02-02T11:01:58.322Z",
|
|
989
|
+
"2026-02-02T11:10:09.521Z",
|
|
990
|
+
"2026-02-02T11:10:33.356Z",
|
|
991
|
+
"2026-02-02T11:10:45.371Z",
|
|
992
|
+
"2026-02-02T11:11:20.667Z",
|
|
993
|
+
"2026-02-09T21:53:33.237Z",
|
|
994
|
+
"2026-02-09T21:53:55.420Z",
|
|
995
|
+
"2026-02-09T22:00:40.004Z"
|
|
852
996
|
],
|
|
853
997
|
"props": [
|
|
854
998
|
{
|
|
@@ -856,42 +1000,42 @@
|
|
|
856
1000
|
"type": "string",
|
|
857
1001
|
"required": true,
|
|
858
1002
|
"description": "The image to display.",
|
|
859
|
-
"placeholder": "
|
|
1003
|
+
"placeholder": "product.featured_image | image_url: width: _width, height: _height"
|
|
860
1004
|
},
|
|
861
1005
|
{
|
|
862
1006
|
"name": "_alt_text",
|
|
863
1007
|
"type": "string",
|
|
864
1008
|
"required": true,
|
|
865
1009
|
"description": "The alt text for the image.",
|
|
866
|
-
"placeholder": "
|
|
1010
|
+
"placeholder": "product.title"
|
|
867
1011
|
},
|
|
868
1012
|
{
|
|
869
1013
|
"name": "_classes",
|
|
870
1014
|
"type": "string",
|
|
871
1015
|
"required": true,
|
|
872
1016
|
"description": "Additional classes for the image styling.",
|
|
873
|
-
"placeholder": "''"
|
|
1017
|
+
"placeholder": "'w-full aspect-square object-cover rounded-md mb-2'"
|
|
874
1018
|
},
|
|
875
1019
|
{
|
|
876
1020
|
"name": "_width",
|
|
877
1021
|
"type": "string",
|
|
878
1022
|
"required": true,
|
|
879
1023
|
"description": "The width of the image.",
|
|
880
|
-
"placeholder": "
|
|
1024
|
+
"placeholder": "250"
|
|
881
1025
|
},
|
|
882
1026
|
{
|
|
883
1027
|
"name": "_height",
|
|
884
1028
|
"type": "string",
|
|
885
1029
|
"required": true,
|
|
886
1030
|
"description": "The height of the image.",
|
|
887
|
-
"placeholder": "
|
|
1031
|
+
"placeholder": "250"
|
|
888
1032
|
}
|
|
889
1033
|
],
|
|
890
1034
|
"files": [
|
|
891
1035
|
{
|
|
892
1036
|
"src": "components/lib-image/lib-image.liquid",
|
|
893
1037
|
"destDir": "snippets",
|
|
894
|
-
"hash": "
|
|
1038
|
+
"hash": "87bd8f070a3fc42161957d506feeab54"
|
|
895
1039
|
}
|
|
896
1040
|
],
|
|
897
1041
|
"dependencies": [],
|
|
@@ -901,9 +1045,9 @@
|
|
|
901
1045
|
},
|
|
902
1046
|
"lib-description": {
|
|
903
1047
|
"type": "snippet-component",
|
|
904
|
-
"version": "
|
|
1048
|
+
"version": "2.0.0",
|
|
905
1049
|
"description": "liquid component scaffold",
|
|
906
|
-
"hash": "
|
|
1050
|
+
"hash": "854f1fc5f48159e00bbfa5675eb97814",
|
|
907
1051
|
"createdAt": "2026-02-01T19:39:42.319Z",
|
|
908
1052
|
"updatedAt": [
|
|
909
1053
|
"2026-02-01T19:46:48.436Z",
|
|
@@ -921,7 +1065,16 @@
|
|
|
921
1065
|
"2026-02-01T20:49:37.926Z",
|
|
922
1066
|
"2026-02-01T20:56:45.182Z",
|
|
923
1067
|
"2026-02-01T20:57:01.769Z",
|
|
924
|
-
"2026-02-01T20:57:33.347Z"
|
|
1068
|
+
"2026-02-01T20:57:33.347Z",
|
|
1069
|
+
"2026-02-02T11:00:06.405Z",
|
|
1070
|
+
"2026-02-02T11:01:58.285Z",
|
|
1071
|
+
"2026-02-02T11:10:09.490Z",
|
|
1072
|
+
"2026-02-02T11:10:33.325Z",
|
|
1073
|
+
"2026-02-02T11:10:45.340Z",
|
|
1074
|
+
"2026-02-02T11:11:20.636Z",
|
|
1075
|
+
"2026-02-09T21:53:33.194Z",
|
|
1076
|
+
"2026-02-09T21:53:55.384Z",
|
|
1077
|
+
"2026-02-09T22:00:39.968Z"
|
|
925
1078
|
],
|
|
926
1079
|
"props": [
|
|
927
1080
|
{
|
|
@@ -929,7 +1082,7 @@
|
|
|
929
1082
|
"type": "string",
|
|
930
1083
|
"required": true,
|
|
931
1084
|
"description": "The item description you wish to display.",
|
|
932
|
-
"placeholder": "
|
|
1085
|
+
"placeholder": "product.description"
|
|
933
1086
|
},
|
|
934
1087
|
{
|
|
935
1088
|
"name": "_classes",
|
|
@@ -941,21 +1094,30 @@
|
|
|
941
1094
|
{
|
|
942
1095
|
"name": "_enable_truncate",
|
|
943
1096
|
"type": "string",
|
|
944
|
-
"required":
|
|
945
|
-
"description": "Boolean to enable truncation of text."
|
|
1097
|
+
"required": true,
|
|
1098
|
+
"description": "Boolean to enable truncation of text.",
|
|
1099
|
+
"placeholder": "true"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"name": "_truncate_length",
|
|
1103
|
+
"type": "string",
|
|
1104
|
+
"required": true,
|
|
1105
|
+
"description": "",
|
|
1106
|
+
"placeholder": "100"
|
|
946
1107
|
},
|
|
947
1108
|
{
|
|
948
1109
|
"name": "_enable_strip_html",
|
|
949
1110
|
"type": "string",
|
|
950
|
-
"required":
|
|
951
|
-
"description": "Boolean to enable stripping HTML tags."
|
|
1111
|
+
"required": true,
|
|
1112
|
+
"description": "Boolean to enable stripping HTML tags.",
|
|
1113
|
+
"placeholder": "true"
|
|
952
1114
|
}
|
|
953
1115
|
],
|
|
954
1116
|
"files": [
|
|
955
1117
|
{
|
|
956
1118
|
"src": "components/lib-description/lib-description.liquid",
|
|
957
1119
|
"destDir": "snippets",
|
|
958
|
-
"hash": "
|
|
1120
|
+
"hash": "854f1fc5f48159e00bbfa5675eb97814"
|
|
959
1121
|
}
|
|
960
1122
|
],
|
|
961
1123
|
"dependencies": [],
|
|
@@ -986,7 +1148,16 @@
|
|
|
986
1148
|
"2026-02-01T20:49:37.906Z",
|
|
987
1149
|
"2026-02-01T20:56:45.162Z",
|
|
988
1150
|
"2026-02-01T20:57:01.748Z",
|
|
989
|
-
"2026-02-01T20:57:33.327Z"
|
|
1151
|
+
"2026-02-01T20:57:33.327Z",
|
|
1152
|
+
"2026-02-02T11:00:06.376Z",
|
|
1153
|
+
"2026-02-02T11:01:58.267Z",
|
|
1154
|
+
"2026-02-02T11:10:09.465Z",
|
|
1155
|
+
"2026-02-02T11:10:33.306Z",
|
|
1156
|
+
"2026-02-02T11:10:45.321Z",
|
|
1157
|
+
"2026-02-02T11:11:20.615Z",
|
|
1158
|
+
"2026-02-09T21:53:33.167Z",
|
|
1159
|
+
"2026-02-09T21:53:55.365Z",
|
|
1160
|
+
"2026-02-09T22:00:39.950Z"
|
|
990
1161
|
],
|
|
991
1162
|
"props": [
|
|
992
1163
|
{
|
|
@@ -1029,9 +1200,9 @@
|
|
|
1029
1200
|
},
|
|
1030
1201
|
"lib-tags": {
|
|
1031
1202
|
"type": "snippet-component",
|
|
1032
|
-
"version": "
|
|
1203
|
+
"version": "4.0.0",
|
|
1033
1204
|
"description": "liquid component scaffold",
|
|
1034
|
-
"hash": "
|
|
1205
|
+
"hash": "eba86dd5b4d671cca41af6e142ca5c7b",
|
|
1035
1206
|
"createdAt": "2026-02-01T20:38:27.828Z",
|
|
1036
1207
|
"updatedAt": [
|
|
1037
1208
|
"2026-02-01T20:42:38.909Z",
|
|
@@ -1039,7 +1210,16 @@
|
|
|
1039
1210
|
"2026-02-01T20:49:38.002Z",
|
|
1040
1211
|
"2026-02-01T20:56:45.251Z",
|
|
1041
1212
|
"2026-02-01T20:57:01.831Z",
|
|
1042
|
-
"2026-02-01T20:57:33.404Z"
|
|
1213
|
+
"2026-02-01T20:57:33.404Z",
|
|
1214
|
+
"2026-02-02T11:00:06.503Z",
|
|
1215
|
+
"2026-02-02T11:01:58.349Z",
|
|
1216
|
+
"2026-02-02T11:10:09.548Z",
|
|
1217
|
+
"2026-02-02T11:10:33.389Z",
|
|
1218
|
+
"2026-02-02T11:10:45.403Z",
|
|
1219
|
+
"2026-02-02T11:11:20.693Z",
|
|
1220
|
+
"2026-02-09T21:53:33.275Z",
|
|
1221
|
+
"2026-02-09T21:53:55.449Z",
|
|
1222
|
+
"2026-02-09T22:00:40.032Z"
|
|
1043
1223
|
],
|
|
1044
1224
|
"props": [
|
|
1045
1225
|
{
|
|
@@ -1047,13 +1227,14 @@
|
|
|
1047
1227
|
"type": "string",
|
|
1048
1228
|
"required": true,
|
|
1049
1229
|
"description": "Additional classes for the tags styling.",
|
|
1050
|
-
"placeholder": "'tag-list flex flex-wrap gap-2'"
|
|
1230
|
+
"placeholder": "'tag-list flex flex-wrap gap-2 mb-2 text-xs text-gray-600'"
|
|
1051
1231
|
},
|
|
1052
1232
|
{
|
|
1053
1233
|
"name": "_number_of_tags",
|
|
1054
1234
|
"type": "string",
|
|
1055
|
-
"required":
|
|
1056
|
-
"description": "Determine how many tags to show."
|
|
1235
|
+
"required": true,
|
|
1236
|
+
"description": "Determine how many tags to show.",
|
|
1237
|
+
"placeholder": "3"
|
|
1057
1238
|
},
|
|
1058
1239
|
{
|
|
1059
1240
|
"name": "_tags",
|
|
@@ -1067,12 +1248,60 @@
|
|
|
1067
1248
|
{
|
|
1068
1249
|
"src": "components/lib-tags/lib-tags.liquid",
|
|
1069
1250
|
"destDir": "snippets",
|
|
1070
|
-
"hash": "
|
|
1251
|
+
"hash": "eba86dd5b4d671cca41af6e142ca5c7b"
|
|
1071
1252
|
}
|
|
1072
1253
|
],
|
|
1073
1254
|
"dependencies": [],
|
|
1074
1255
|
"scope": [
|
|
1075
1256
|
"all"
|
|
1076
1257
|
]
|
|
1258
|
+
},
|
|
1259
|
+
"lib-alpha": {
|
|
1260
|
+
"type": "snippet-component",
|
|
1261
|
+
"version": "0.0.2",
|
|
1262
|
+
"description": "liquid component scaffold",
|
|
1263
|
+
"hash": "3f9fbff105cb95633560314fec60e84f",
|
|
1264
|
+
"createdAt": "2026-02-09T21:52:10.363Z",
|
|
1265
|
+
"updatedAt": [
|
|
1266
|
+
"2026-02-09T21:53:55.359Z",
|
|
1267
|
+
"2026-02-09T22:00:39.941Z"
|
|
1268
|
+
],
|
|
1269
|
+
"props": [
|
|
1270
|
+
{
|
|
1271
|
+
"name": "_price",
|
|
1272
|
+
"type": "shopify_object",
|
|
1273
|
+
"required": true,
|
|
1274
|
+
"description": "The products price to display.",
|
|
1275
|
+
"placeholder": "product.selected_or_first_available_variant.price"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"name": "_classes",
|
|
1279
|
+
"type": "string",
|
|
1280
|
+
"required": true,
|
|
1281
|
+
"description": "Whether to show the compare at price.",
|
|
1282
|
+
"placeholder": "m-4"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"name": "_show_compare_at",
|
|
1286
|
+
"type": "boolean",
|
|
1287
|
+
"required": true,
|
|
1288
|
+
"description": "Whether to show the compare at price.",
|
|
1289
|
+
"placeholder": "true"
|
|
1290
|
+
}
|
|
1291
|
+
],
|
|
1292
|
+
"files": [
|
|
1293
|
+
{
|
|
1294
|
+
"src": "components/lib-alpha/lib-alpha.liquid",
|
|
1295
|
+
"destDir": "snippets",
|
|
1296
|
+
"hash": "3f9fbff105cb95633560314fec60e84f"
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"dependencies": [],
|
|
1300
|
+
"scope": [
|
|
1301
|
+
"product",
|
|
1302
|
+
"collection",
|
|
1303
|
+
"search",
|
|
1304
|
+
"cart"
|
|
1305
|
+
]
|
|
1077
1306
|
}
|
|
1078
1307
|
}
|