@ruebenfox/liquefaction 2.0.2 → 3.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-atc-button/lib-atc-button.js +11 -0
- package/components/lib-atc-button/lib-atc-button.liquid +32 -0
- package/components/lib-atc-button/manifest.json +60 -0
- package/components/lib-description/lib-description.liquid +39 -0
- package/components/lib-description/manifest.json +57 -0
- package/components/lib-image/lib-image.liquid +39 -0
- package/components/lib-image/manifest.json +66 -0
- package/components/lib-price/lib-price.liquid +35 -0
- package/components/lib-price/manifest.json +54 -0
- package/components/lib-tags/lib-tags.liquid +36 -0
- package/components/lib-tags/manifest.json +51 -0
- package/components/lib-title/lib-title.liquid +28 -0
- package/components/lib-title/manifest.json +52 -0
- package/package.json +2 -2
- package/registry.json +589 -13
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// lib-atc-button.js
|
|
2
|
+
// Basic JS for Add to Cart button (P1 test)
|
|
3
|
+
document.addEventListener('DOMContentLoaded', function() {
|
|
4
|
+
document.querySelectorAll('.atc-btn[data-lib="atc-button"]')
|
|
5
|
+
.forEach(function(btn) {
|
|
6
|
+
btn.addEventListener('click', function() {
|
|
7
|
+
// Basic test: show alert (replace with real ATC logic later)
|
|
8
|
+
alert('Added to cart!');
|
|
9
|
+
});
|
|
10
|
+
});
|
|
11
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-atc-button
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _atc_button_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _atc_button_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: Basic add to cart button.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= product, collection
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _content: The button label (e.g. "Add to cart").
|
|
18
|
+
- @prop _id: Optional id for the button.
|
|
19
|
+
- @prop _classes: Additional classes for the button styling.
|
|
20
|
+
{%- endcomment -%}
|
|
21
|
+
|
|
22
|
+
{% assign _id = _id %}
|
|
23
|
+
{% assign _classes = _classes | default: 'bg-red-600 hover:bg-red-700 text-white font-semibold rounded px-5 py-3 shadow focus:outline-none focus:ring-2 focus:ring-red-400 transition' %}
|
|
24
|
+
{% assign _content = _atc_button_content | default: 'Add to cart' %}
|
|
25
|
+
|
|
26
|
+
<button
|
|
27
|
+
{% if _id %}id="{{ _id }}"{% endif %}
|
|
28
|
+
class="atc-btn {{ _classes }}"
|
|
29
|
+
type="button"
|
|
30
|
+
data-lib="atc-button">
|
|
31
|
+
{{ _content }}
|
|
32
|
+
</button>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-atc-button",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"description": "Basic add to cart button.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-atc-button.liquid",
|
|
8
|
+
"hash": "8a349e5812cbef6697f3f13cd7ec7580"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-atc-button/lib-atc-button.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "8a349e5812cbef6697f3f13cd7ec7580"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"src": "components/lib-atc-button/lib-atc-button.js",
|
|
18
|
+
"destDir": "assets"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"assets": {
|
|
22
|
+
"js": [
|
|
23
|
+
"lib-atc-button.js"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"props": [
|
|
27
|
+
{
|
|
28
|
+
"name": "_content",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"required": true,
|
|
31
|
+
"description": "The button label (e.g. \"Add to cart\").",
|
|
32
|
+
"placeholder": "'Add to cart'"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "_id",
|
|
36
|
+
"type": "string",
|
|
37
|
+
"required": false,
|
|
38
|
+
"description": "Optional id for the button."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "_classes",
|
|
42
|
+
"type": "string",
|
|
43
|
+
"required": true,
|
|
44
|
+
"description": "Additional classes for the button styling.",
|
|
45
|
+
"placeholder": "'bg-red-600 hover:bg-red-700 text-white font-semibold rounded px-5 py-3 shadow focus:outline-none focus:ring-2 focus:ring-red-400 transition'"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"dependencies": [],
|
|
49
|
+
"scope": [
|
|
50
|
+
"product",
|
|
51
|
+
"collection"
|
|
52
|
+
],
|
|
53
|
+
"registry": {
|
|
54
|
+
"createdAt": "2026-02-01T19:39:52.718Z",
|
|
55
|
+
"hash": "8a349e5812cbef6697f3f13cd7ec7580"
|
|
56
|
+
},
|
|
57
|
+
"build": {
|
|
58
|
+
"lastAuditAt": "2026-02-01T20:36:25.298Z"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-description
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _description_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _description_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: Describe what this component does.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= all
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _content: The item description you wish to display.
|
|
18
|
+
- @prop _classes: Additional classes for the description styling.
|
|
19
|
+
- @prop _enable_truncate: Boolean to enable truncation of text.
|
|
20
|
+
- @prop _enable_strip_html: Boolean to enable stripping HTML tags.
|
|
21
|
+
{%- endcomment -%}
|
|
22
|
+
|
|
23
|
+
{% assign _content = _content | default: 'Some random product description.' %}
|
|
24
|
+
{% assign _classes = _classes | default: 'mb-4' %}
|
|
25
|
+
{% assign _enable_truncate = _enable_truncate %}
|
|
26
|
+
{% assign _enable_strip_html = _enable_strip_html %}
|
|
27
|
+
|
|
28
|
+
<div class="description-wrapper {{ _classes }}">
|
|
29
|
+
{% assign description_text = _content %}
|
|
30
|
+
{% if _enable_strip_html %}
|
|
31
|
+
{% assign description_text = description_text | strip_html %}
|
|
32
|
+
{% endif %}
|
|
33
|
+
{% if _enable_truncate %}
|
|
34
|
+
{% assign description_text = description_text | truncate: 100 %}
|
|
35
|
+
{% endif %}
|
|
36
|
+
<p data-lib="description">
|
|
37
|
+
{{ description_text }}
|
|
38
|
+
</p>
|
|
39
|
+
</div>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-description",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Describe what this component does.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-description.liquid",
|
|
8
|
+
"hash": "5a6a8df310bd9b9307940552be08c281"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-description/lib-description.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "5a6a8df310bd9b9307940552be08c281"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_content",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true,
|
|
23
|
+
"description": "The item description you wish to display.",
|
|
24
|
+
"placeholder": "'Some random product description.'"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_classes",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": true,
|
|
30
|
+
"description": "Additional classes for the description styling.",
|
|
31
|
+
"placeholder": "'mb-4'"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "_enable_truncate",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"required": false,
|
|
37
|
+
"description": "Boolean to enable truncation of text."
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "_enable_strip_html",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"required": false,
|
|
43
|
+
"description": "Boolean to enable stripping HTML tags."
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"dependencies": [],
|
|
47
|
+
"scope": [
|
|
48
|
+
"all"
|
|
49
|
+
],
|
|
50
|
+
"registry": {
|
|
51
|
+
"createdAt": "2026-02-01T19:39:42.311Z",
|
|
52
|
+
"hash": "5a6a8df310bd9b9307940552be08c281"
|
|
53
|
+
},
|
|
54
|
+
"build": {
|
|
55
|
+
"lastAuditAt": "2026-02-01T20:36:25.326Z"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-image
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _image_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _image_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: A component for rendering an image.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= all
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _image: The image to display.
|
|
18
|
+
- @prop _alt_text: The alt text for the image.
|
|
19
|
+
- @prop _classes: Additional classes for the image styling.
|
|
20
|
+
- @prop _width: The width of the image.
|
|
21
|
+
-@prop _height: The height of the image.
|
|
22
|
+
{%- endcomment -%}
|
|
23
|
+
|
|
24
|
+
{% assign _image = _image | default: '' %}
|
|
25
|
+
{% assign _alt_text = _alt_text | default: '' %}
|
|
26
|
+
{% assign _classes = _classes | default: '' %}
|
|
27
|
+
{% assign _width = _width | default: '500' %}
|
|
28
|
+
{% assign _height = _height | default: '500' %}
|
|
29
|
+
|
|
30
|
+
<div class="image-container {{ _classes }}" style="width: {{ _width }}px; height: {{ _height }}px;">
|
|
31
|
+
<img
|
|
32
|
+
class="w-full h-full object-cover block"
|
|
33
|
+
{% if _image %}
|
|
34
|
+
{% if _image.src %}src="{{ _image.src }}"
|
|
35
|
+
{% else %}src="{{ _image }}"
|
|
36
|
+
{% endif %}
|
|
37
|
+
{% endif %}
|
|
38
|
+
alt="{{ _alt_text }}" />
|
|
39
|
+
</div>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-image",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"description": "A component for rendering an image.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-image.liquid",
|
|
8
|
+
"hash": "b09572f3fae5035571451de637535ea5"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-image/lib-image.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "b09572f3fae5035571451de637535ea5"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_image",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true,
|
|
23
|
+
"description": "The image to display.",
|
|
24
|
+
"placeholder": "''"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_alt_text",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": true,
|
|
30
|
+
"description": "The alt text for the image.",
|
|
31
|
+
"placeholder": "''"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "_classes",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"required": true,
|
|
37
|
+
"description": "Additional classes for the image styling.",
|
|
38
|
+
"placeholder": "''"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "_width",
|
|
42
|
+
"type": "string",
|
|
43
|
+
"required": true,
|
|
44
|
+
"description": "The width of the image.",
|
|
45
|
+
"placeholder": "'500'"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "_height",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"required": true,
|
|
51
|
+
"description": "The height of the image.",
|
|
52
|
+
"placeholder": "'500'"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"dependencies": [],
|
|
56
|
+
"scope": [
|
|
57
|
+
"all"
|
|
58
|
+
],
|
|
59
|
+
"registry": {
|
|
60
|
+
"createdAt": "2026-02-01T19:39:23.849Z",
|
|
61
|
+
"hash": "b09572f3fae5035571451de637535ea5"
|
|
62
|
+
},
|
|
63
|
+
"build": {
|
|
64
|
+
"lastAuditAt": "2026-02-01T20:56:45.214Z"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-price
|
|
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 %}
|
|
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,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-price",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "3.0.0",
|
|
5
|
+
"description": "Show a products price.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-price.liquid",
|
|
8
|
+
"hash": "ac0af4dea88094e3bf7f3c6e6d3e2f19"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-price/lib-price.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "ac0af4dea88094e3bf7f3c6e6d3e2f19"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_price",
|
|
21
|
+
"type": "string",
|
|
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": "string",
|
|
36
|
+
"required": false,
|
|
37
|
+
"description": "Whether to show the compare at price."
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"dependencies": [],
|
|
41
|
+
"scope": [
|
|
42
|
+
"product",
|
|
43
|
+
"collection",
|
|
44
|
+
"search",
|
|
45
|
+
"cart"
|
|
46
|
+
],
|
|
47
|
+
"registry": {
|
|
48
|
+
"createdAt": "2026-02-01T19:39:01.207Z",
|
|
49
|
+
"hash": "ac0af4dea88094e3bf7f3c6e6d3e2f19"
|
|
50
|
+
},
|
|
51
|
+
"build": {
|
|
52
|
+
"lastAuditAt": "2026-02-01T20:13:36.974Z"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-tags
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _tags_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _tags_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: Show the product tags.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= all
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _number_of_tags: Determine how many tags to show.
|
|
18
|
+
- @prop _classes: Additional classes for the tags styling.
|
|
19
|
+
- @prop _tags: The list of tags to display.
|
|
20
|
+
{%- endcomment -%}
|
|
21
|
+
|
|
22
|
+
{% assign _classes = _classes | default: 'tag-list flex flex-wrap gap-2' %}
|
|
23
|
+
{% assign _number_of_tags = _number_of_tags %}
|
|
24
|
+
{% assign _tags = _tags | default: product.tags %}
|
|
25
|
+
|
|
26
|
+
<ul class="{{ _classes }}">
|
|
27
|
+
{% if _number_of_tags %}
|
|
28
|
+
{% for tag in _tags | limit: _number_of_tags %}
|
|
29
|
+
<li>{{ tag }}</li>
|
|
30
|
+
{% endfor %}
|
|
31
|
+
{% else %}
|
|
32
|
+
{% for tag in _tags %}
|
|
33
|
+
<li>{{ tag }}</li>
|
|
34
|
+
{% endfor %}
|
|
35
|
+
{% endif %}
|
|
36
|
+
</ul>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-tags",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "3.0.0",
|
|
5
|
+
"description": "Show the product tags.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-tags.liquid",
|
|
8
|
+
"hash": "a83c3ca036b3a5fad09ee9dab4bbaef8"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-tags/lib-tags.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "a83c3ca036b3a5fad09ee9dab4bbaef8"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_classes",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true,
|
|
23
|
+
"description": "Additional classes for the tags styling.",
|
|
24
|
+
"placeholder": "'tag-list flex flex-wrap gap-2'"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_number_of_tags",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": false,
|
|
30
|
+
"description": "Determine how many tags to show."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "_tags",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"required": true,
|
|
36
|
+
"description": "The list of tags to display.",
|
|
37
|
+
"placeholder": "product.tags"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"dependencies": [],
|
|
41
|
+
"scope": [
|
|
42
|
+
"all"
|
|
43
|
+
],
|
|
44
|
+
"registry": {
|
|
45
|
+
"createdAt": "2026-02-01T20:38:27.819Z",
|
|
46
|
+
"hash": "a83c3ca036b3a5fad09ee9dab4bbaef8"
|
|
47
|
+
},
|
|
48
|
+
"build": {
|
|
49
|
+
"lastAuditAt": "2026-02-01T20:49:37.995Z"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{%- comment -%}
|
|
2
|
+
Component: lib-title
|
|
3
|
+
Type: snippet-component
|
|
4
|
+
|
|
5
|
+
Props (snake_case with leading underscore). Use a default filter to mark required:
|
|
6
|
+
- _title_content: string (required)
|
|
7
|
+
- _aria_label: string (optional)
|
|
8
|
+
- _title_id: string (optional)
|
|
9
|
+
|
|
10
|
+
Description
|
|
11
|
+
- @description: This component, can be used to display any title passed to it.
|
|
12
|
+
|
|
13
|
+
Scope (theme contexts):
|
|
14
|
+
- @scope= all
|
|
15
|
+
|
|
16
|
+
Docs (inline prop descriptions):
|
|
17
|
+
- @prop _title_content: The title to display.
|
|
18
|
+
- @prop _classes: The classes used to style the component.
|
|
19
|
+
- @prop _tag_type: The HTML tag type to use for the title (e.g., h1, h2, h3).
|
|
20
|
+
{%- endcomment -%}
|
|
21
|
+
|
|
22
|
+
{% assign _classes = _classes | default: 'mb-4' %}
|
|
23
|
+
{% assign _title_content = _title_content | default: product.title %}
|
|
24
|
+
{% assign _tag_type = _tag_type | default: 'h3' %}
|
|
25
|
+
|
|
26
|
+
<{{ _tag_type }} class="{{ _classes }}">
|
|
27
|
+
<span>{{ _title_content }}</span>
|
|
28
|
+
</{{ _tag_type }}>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lib-title",
|
|
3
|
+
"type": "snippet-component",
|
|
4
|
+
"version": "3.0.0",
|
|
5
|
+
"description": "This component, can be used to display any title passed to it.",
|
|
6
|
+
"primary": {
|
|
7
|
+
"path": "lib-title.liquid",
|
|
8
|
+
"hash": "86ff1b35646d0defe4ef47ef33b27299"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"src": "components/lib-title/lib-title.liquid",
|
|
13
|
+
"destDir": "snippets",
|
|
14
|
+
"hash": "86ff1b35646d0defe4ef47ef33b27299"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"assets": {},
|
|
18
|
+
"props": [
|
|
19
|
+
{
|
|
20
|
+
"name": "_tag_type",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true,
|
|
23
|
+
"description": "The HTML tag type to use for the title (e.g., h1, h2, h3).",
|
|
24
|
+
"placeholder": "'h3'"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_title_content",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": true,
|
|
30
|
+
"description": "The title to display.",
|
|
31
|
+
"placeholder": "product.title"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "_classes",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"required": true,
|
|
37
|
+
"description": "The classes used to style the component.",
|
|
38
|
+
"placeholder": "'mb-4'"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"dependencies": [],
|
|
42
|
+
"scope": [
|
|
43
|
+
"all"
|
|
44
|
+
],
|
|
45
|
+
"registry": {
|
|
46
|
+
"createdAt": "2026-02-01T19:38:46.676Z",
|
|
47
|
+
"hash": "86ff1b35646d0defe4ef47ef33b27299"
|
|
48
|
+
},
|
|
49
|
+
"build": {
|
|
50
|
+
"lastAuditAt": "2026-02-01T19:55:40.375Z"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/package.json
CHANGED
package/registry.json
CHANGED
|
@@ -11,7 +11,23 @@
|
|
|
11
11
|
"2026-01-19T22:56:49.230Z",
|
|
12
12
|
"2026-01-25T17:59:55.944Z",
|
|
13
13
|
"2026-02-01T00:08:31.813Z",
|
|
14
|
-
"2026-02-01T00:09:47.468Z"
|
|
14
|
+
"2026-02-01T00:09:47.468Z",
|
|
15
|
+
"2026-02-01T19:46:48.422Z",
|
|
16
|
+
"2026-02-01T19:47:30.708Z",
|
|
17
|
+
"2026-02-01T19:52:30.350Z",
|
|
18
|
+
"2026-02-01T19:55:40.306Z",
|
|
19
|
+
"2026-02-01T19:59:12.248Z",
|
|
20
|
+
"2026-02-01T20:06:44.966Z",
|
|
21
|
+
"2026-02-01T20:11:01.311Z",
|
|
22
|
+
"2026-02-01T20:13:36.883Z",
|
|
23
|
+
"2026-02-01T20:24:54.970Z",
|
|
24
|
+
"2026-02-01T20:36:25.313Z",
|
|
25
|
+
"2026-02-01T20:42:38.830Z",
|
|
26
|
+
"2026-02-01T20:44:04.093Z",
|
|
27
|
+
"2026-02-01T20:49:37.913Z",
|
|
28
|
+
"2026-02-01T20:56:45.169Z",
|
|
29
|
+
"2026-02-01T20:57:01.755Z",
|
|
30
|
+
"2026-02-01T20:57:33.335Z"
|
|
15
31
|
],
|
|
16
32
|
"props": [
|
|
17
33
|
{
|
|
@@ -43,7 +59,23 @@
|
|
|
43
59
|
"updatedAt": [
|
|
44
60
|
"2026-01-25T17:58:24.356Z",
|
|
45
61
|
"2026-02-01T00:08:31.832Z",
|
|
46
|
-
"2026-02-01T00:09:47.482Z"
|
|
62
|
+
"2026-02-01T00:09:47.482Z",
|
|
63
|
+
"2026-02-01T19:46:48.442Z",
|
|
64
|
+
"2026-02-01T19:47:30.724Z",
|
|
65
|
+
"2026-02-01T19:52:30.366Z",
|
|
66
|
+
"2026-02-01T19:55:40.323Z",
|
|
67
|
+
"2026-02-01T19:59:12.265Z",
|
|
68
|
+
"2026-02-01T20:06:44.983Z",
|
|
69
|
+
"2026-02-01T20:11:01.328Z",
|
|
70
|
+
"2026-02-01T20:13:36.906Z",
|
|
71
|
+
"2026-02-01T20:24:54.985Z",
|
|
72
|
+
"2026-02-01T20:36:25.335Z",
|
|
73
|
+
"2026-02-01T20:42:38.848Z",
|
|
74
|
+
"2026-02-01T20:44:04.118Z",
|
|
75
|
+
"2026-02-01T20:49:37.932Z",
|
|
76
|
+
"2026-02-01T20:56:45.187Z",
|
|
77
|
+
"2026-02-01T20:57:01.774Z",
|
|
78
|
+
"2026-02-01T20:57:33.352Z"
|
|
47
79
|
],
|
|
48
80
|
"props": [],
|
|
49
81
|
"files": [
|
|
@@ -69,7 +101,23 @@
|
|
|
69
101
|
"2026-01-20T21:23:03.239Z",
|
|
70
102
|
"2026-01-25T17:58:24.370Z",
|
|
71
103
|
"2026-02-01T00:08:31.861Z",
|
|
72
|
-
"2026-02-01T00:09:47.504Z"
|
|
104
|
+
"2026-02-01T00:09:47.504Z",
|
|
105
|
+
"2026-02-01T19:46:48.469Z",
|
|
106
|
+
"2026-02-01T19:47:30.743Z",
|
|
107
|
+
"2026-02-01T19:52:30.388Z",
|
|
108
|
+
"2026-02-01T19:55:40.344Z",
|
|
109
|
+
"2026-02-01T19:59:12.288Z",
|
|
110
|
+
"2026-02-01T20:06:45.006Z",
|
|
111
|
+
"2026-02-01T20:11:01.348Z",
|
|
112
|
+
"2026-02-01T20:13:36.938Z",
|
|
113
|
+
"2026-02-01T20:24:55.007Z",
|
|
114
|
+
"2026-02-01T20:36:25.355Z",
|
|
115
|
+
"2026-02-01T20:42:38.870Z",
|
|
116
|
+
"2026-02-01T20:44:04.146Z",
|
|
117
|
+
"2026-02-01T20:49:37.959Z",
|
|
118
|
+
"2026-02-01T20:56:45.210Z",
|
|
119
|
+
"2026-02-01T20:57:01.797Z",
|
|
120
|
+
"2026-02-01T20:57:33.373Z"
|
|
73
121
|
],
|
|
74
122
|
"props": [],
|
|
75
123
|
"files": [
|
|
@@ -89,7 +137,23 @@
|
|
|
89
137
|
"updatedAt": [
|
|
90
138
|
"2026-01-25T17:58:24.365Z",
|
|
91
139
|
"2026-02-01T00:08:31.849Z",
|
|
92
|
-
"2026-02-01T00:09:47.495Z"
|
|
140
|
+
"2026-02-01T00:09:47.495Z",
|
|
141
|
+
"2026-02-01T19:46:48.459Z",
|
|
142
|
+
"2026-02-01T19:47:30.735Z",
|
|
143
|
+
"2026-02-01T19:52:30.380Z",
|
|
144
|
+
"2026-02-01T19:55:40.336Z",
|
|
145
|
+
"2026-02-01T19:59:12.281Z",
|
|
146
|
+
"2026-02-01T20:06:44.997Z",
|
|
147
|
+
"2026-02-01T20:11:01.340Z",
|
|
148
|
+
"2026-02-01T20:13:36.925Z",
|
|
149
|
+
"2026-02-01T20:24:54.999Z",
|
|
150
|
+
"2026-02-01T20:36:25.347Z",
|
|
151
|
+
"2026-02-01T20:42:38.861Z",
|
|
152
|
+
"2026-02-01T20:44:04.136Z",
|
|
153
|
+
"2026-02-01T20:49:37.949Z",
|
|
154
|
+
"2026-02-01T20:56:45.202Z",
|
|
155
|
+
"2026-02-01T20:57:01.788Z",
|
|
156
|
+
"2026-02-01T20:57:33.365Z"
|
|
93
157
|
],
|
|
94
158
|
"props": [],
|
|
95
159
|
"files": [
|
|
@@ -113,7 +177,23 @@
|
|
|
113
177
|
"updatedAt": [
|
|
114
178
|
"2026-01-25T17:58:24.377Z",
|
|
115
179
|
"2026-02-01T00:08:31.885Z",
|
|
116
|
-
"2026-02-01T00:09:47.523Z"
|
|
180
|
+
"2026-02-01T00:09:47.523Z",
|
|
181
|
+
"2026-02-01T19:46:48.500Z",
|
|
182
|
+
"2026-02-01T19:47:30.770Z",
|
|
183
|
+
"2026-02-01T19:52:30.415Z",
|
|
184
|
+
"2026-02-01T19:55:40.371Z",
|
|
185
|
+
"2026-02-01T19:59:12.314Z",
|
|
186
|
+
"2026-02-01T20:06:45.041Z",
|
|
187
|
+
"2026-02-01T20:11:01.381Z",
|
|
188
|
+
"2026-02-01T20:13:37.001Z",
|
|
189
|
+
"2026-02-01T20:24:55.036Z",
|
|
190
|
+
"2026-02-01T20:36:25.381Z",
|
|
191
|
+
"2026-02-01T20:42:38.899Z",
|
|
192
|
+
"2026-02-01T20:44:04.194Z",
|
|
193
|
+
"2026-02-01T20:49:37.990Z",
|
|
194
|
+
"2026-02-01T20:56:45.244Z",
|
|
195
|
+
"2026-02-01T20:57:01.826Z",
|
|
196
|
+
"2026-02-01T20:57:33.400Z"
|
|
117
197
|
],
|
|
118
198
|
"props": [],
|
|
119
199
|
"files": [
|
|
@@ -137,7 +217,23 @@
|
|
|
137
217
|
"updatedAt": [
|
|
138
218
|
"2026-01-25T17:59:55.957Z",
|
|
139
219
|
"2026-02-01T00:08:31.880Z",
|
|
140
|
-
"2026-02-01T00:09:47.518Z"
|
|
220
|
+
"2026-02-01T00:09:47.518Z",
|
|
221
|
+
"2026-02-01T19:46:48.496Z",
|
|
222
|
+
"2026-02-01T19:47:30.766Z",
|
|
223
|
+
"2026-02-01T19:52:30.411Z",
|
|
224
|
+
"2026-02-01T19:55:40.366Z",
|
|
225
|
+
"2026-02-01T19:59:12.310Z",
|
|
226
|
+
"2026-02-01T20:06:45.037Z",
|
|
227
|
+
"2026-02-01T20:11:01.377Z",
|
|
228
|
+
"2026-02-01T20:13:36.986Z",
|
|
229
|
+
"2026-02-01T20:24:55.032Z",
|
|
230
|
+
"2026-02-01T20:36:25.377Z",
|
|
231
|
+
"2026-02-01T20:42:38.895Z",
|
|
232
|
+
"2026-02-01T20:44:04.174Z",
|
|
233
|
+
"2026-02-01T20:49:37.985Z",
|
|
234
|
+
"2026-02-01T20:56:45.240Z",
|
|
235
|
+
"2026-02-01T20:57:01.821Z",
|
|
236
|
+
"2026-02-01T20:57:33.396Z"
|
|
141
237
|
],
|
|
142
238
|
"props": [
|
|
143
239
|
{
|
|
@@ -210,7 +306,23 @@
|
|
|
210
306
|
"2026-01-25T18:17:28.511Z",
|
|
211
307
|
"2026-01-25T18:18:30.562Z",
|
|
212
308
|
"2026-02-01T00:08:31.890Z",
|
|
213
|
-
"2026-02-01T00:09:47.527Z"
|
|
309
|
+
"2026-02-01T00:09:47.527Z",
|
|
310
|
+
"2026-02-01T19:46:48.509Z",
|
|
311
|
+
"2026-02-01T19:47:30.784Z",
|
|
312
|
+
"2026-02-01T19:52:30.431Z",
|
|
313
|
+
"2026-02-01T19:55:40.386Z",
|
|
314
|
+
"2026-02-01T19:59:12.322Z",
|
|
315
|
+
"2026-02-01T20:06:45.050Z",
|
|
316
|
+
"2026-02-01T20:11:01.390Z",
|
|
317
|
+
"2026-02-01T20:13:37.011Z",
|
|
318
|
+
"2026-02-01T20:24:55.045Z",
|
|
319
|
+
"2026-02-01T20:36:25.390Z",
|
|
320
|
+
"2026-02-01T20:42:38.919Z",
|
|
321
|
+
"2026-02-01T20:44:04.225Z",
|
|
322
|
+
"2026-02-01T20:49:38.013Z",
|
|
323
|
+
"2026-02-01T20:56:45.268Z",
|
|
324
|
+
"2026-02-01T20:57:01.841Z",
|
|
325
|
+
"2026-02-01T20:57:33.413Z"
|
|
214
326
|
],
|
|
215
327
|
"props": [
|
|
216
328
|
{
|
|
@@ -276,7 +388,23 @@
|
|
|
276
388
|
"2026-01-25T18:40:05.408Z",
|
|
277
389
|
"2026-01-29T22:55:03.697Z",
|
|
278
390
|
"2026-02-01T00:08:31.844Z",
|
|
279
|
-
"2026-02-01T00:09:47.491Z"
|
|
391
|
+
"2026-02-01T00:09:47.491Z",
|
|
392
|
+
"2026-02-01T19:46:48.454Z",
|
|
393
|
+
"2026-02-01T19:47:30.732Z",
|
|
394
|
+
"2026-02-01T19:52:30.375Z",
|
|
395
|
+
"2026-02-01T19:55:40.331Z",
|
|
396
|
+
"2026-02-01T19:59:12.276Z",
|
|
397
|
+
"2026-02-01T20:06:44.993Z",
|
|
398
|
+
"2026-02-01T20:11:01.336Z",
|
|
399
|
+
"2026-02-01T20:13:36.920Z",
|
|
400
|
+
"2026-02-01T20:24:54.994Z",
|
|
401
|
+
"2026-02-01T20:36:25.342Z",
|
|
402
|
+
"2026-02-01T20:42:38.857Z",
|
|
403
|
+
"2026-02-01T20:44:04.130Z",
|
|
404
|
+
"2026-02-01T20:49:37.943Z",
|
|
405
|
+
"2026-02-01T20:56:45.197Z",
|
|
406
|
+
"2026-02-01T20:57:01.783Z",
|
|
407
|
+
"2026-02-01T20:57:33.361Z"
|
|
280
408
|
],
|
|
281
409
|
"props": [
|
|
282
410
|
{
|
|
@@ -335,7 +463,23 @@
|
|
|
335
463
|
"2026-01-29T22:53:42.589Z",
|
|
336
464
|
"2026-01-30T23:19:35.699Z",
|
|
337
465
|
"2026-02-01T00:08:31.866Z",
|
|
338
|
-
"2026-02-01T00:09:47.509Z"
|
|
466
|
+
"2026-02-01T00:09:47.509Z",
|
|
467
|
+
"2026-02-01T19:46:48.479Z",
|
|
468
|
+
"2026-02-01T19:47:30.752Z",
|
|
469
|
+
"2026-02-01T19:52:30.398Z",
|
|
470
|
+
"2026-02-01T19:55:40.353Z",
|
|
471
|
+
"2026-02-01T19:59:12.296Z",
|
|
472
|
+
"2026-02-01T20:06:45.016Z",
|
|
473
|
+
"2026-02-01T20:11:01.358Z",
|
|
474
|
+
"2026-02-01T20:13:36.961Z",
|
|
475
|
+
"2026-02-01T20:24:55.018Z",
|
|
476
|
+
"2026-02-01T20:36:25.364Z",
|
|
477
|
+
"2026-02-01T20:42:38.881Z",
|
|
478
|
+
"2026-02-01T20:44:04.157Z",
|
|
479
|
+
"2026-02-01T20:49:37.970Z",
|
|
480
|
+
"2026-02-01T20:56:45.225Z",
|
|
481
|
+
"2026-02-01T20:57:01.807Z",
|
|
482
|
+
"2026-02-01T20:57:33.383Z"
|
|
339
483
|
],
|
|
340
484
|
"props": [
|
|
341
485
|
{
|
|
@@ -375,7 +519,23 @@
|
|
|
375
519
|
"2026-01-29T22:53:42.578Z",
|
|
376
520
|
"2026-01-29T22:56:53.315Z",
|
|
377
521
|
"2026-02-01T00:08:31.855Z",
|
|
378
|
-
"2026-02-01T00:09:47.500Z"
|
|
522
|
+
"2026-02-01T00:09:47.500Z",
|
|
523
|
+
"2026-02-01T19:46:48.464Z",
|
|
524
|
+
"2026-02-01T19:47:30.739Z",
|
|
525
|
+
"2026-02-01T19:52:30.385Z",
|
|
526
|
+
"2026-02-01T19:55:40.340Z",
|
|
527
|
+
"2026-02-01T19:59:12.284Z",
|
|
528
|
+
"2026-02-01T20:06:45.002Z",
|
|
529
|
+
"2026-02-01T20:11:01.344Z",
|
|
530
|
+
"2026-02-01T20:13:36.932Z",
|
|
531
|
+
"2026-02-01T20:24:55.003Z",
|
|
532
|
+
"2026-02-01T20:36:25.351Z",
|
|
533
|
+
"2026-02-01T20:42:38.865Z",
|
|
534
|
+
"2026-02-01T20:44:04.141Z",
|
|
535
|
+
"2026-02-01T20:49:37.955Z",
|
|
536
|
+
"2026-02-01T20:56:45.206Z",
|
|
537
|
+
"2026-02-01T20:57:01.792Z",
|
|
538
|
+
"2026-02-01T20:57:33.369Z"
|
|
379
539
|
],
|
|
380
540
|
"props": [],
|
|
381
541
|
"files": [
|
|
@@ -405,7 +565,23 @@
|
|
|
405
565
|
"2026-01-30T23:02:53.181Z",
|
|
406
566
|
"2026-01-30T23:12:46.899Z",
|
|
407
567
|
"2026-02-01T00:08:31.838Z",
|
|
408
|
-
"2026-02-01T00:09:47.486Z"
|
|
568
|
+
"2026-02-01T00:09:47.486Z",
|
|
569
|
+
"2026-02-01T19:46:48.448Z",
|
|
570
|
+
"2026-02-01T19:47:30.728Z",
|
|
571
|
+
"2026-02-01T19:52:30.370Z",
|
|
572
|
+
"2026-02-01T19:55:40.327Z",
|
|
573
|
+
"2026-02-01T19:59:12.271Z",
|
|
574
|
+
"2026-02-01T20:06:44.988Z",
|
|
575
|
+
"2026-02-01T20:11:01.332Z",
|
|
576
|
+
"2026-02-01T20:13:36.914Z",
|
|
577
|
+
"2026-02-01T20:24:54.989Z",
|
|
578
|
+
"2026-02-01T20:36:25.339Z",
|
|
579
|
+
"2026-02-01T20:42:38.853Z",
|
|
580
|
+
"2026-02-01T20:44:04.124Z",
|
|
581
|
+
"2026-02-01T20:49:37.938Z",
|
|
582
|
+
"2026-02-01T20:56:45.192Z",
|
|
583
|
+
"2026-02-01T20:57:01.779Z",
|
|
584
|
+
"2026-02-01T20:57:33.356Z"
|
|
409
585
|
],
|
|
410
586
|
"props": [],
|
|
411
587
|
"files": [
|
|
@@ -430,7 +606,23 @@
|
|
|
430
606
|
"updatedAt": [
|
|
431
607
|
"2026-01-31T00:27:20.190Z",
|
|
432
608
|
"2026-02-01T00:08:31.828Z",
|
|
433
|
-
"2026-02-01T00:09:47.477Z"
|
|
609
|
+
"2026-02-01T00:09:47.477Z",
|
|
610
|
+
"2026-02-01T19:46:48.430Z",
|
|
611
|
+
"2026-02-01T19:47:30.714Z",
|
|
612
|
+
"2026-02-01T19:52:30.356Z",
|
|
613
|
+
"2026-02-01T19:55:40.313Z",
|
|
614
|
+
"2026-02-01T19:59:12.254Z",
|
|
615
|
+
"2026-02-01T20:06:44.973Z",
|
|
616
|
+
"2026-02-01T20:11:01.318Z",
|
|
617
|
+
"2026-02-01T20:13:36.890Z",
|
|
618
|
+
"2026-02-01T20:24:54.977Z",
|
|
619
|
+
"2026-02-01T20:36:25.320Z",
|
|
620
|
+
"2026-02-01T20:42:38.838Z",
|
|
621
|
+
"2026-02-01T20:44:04.104Z",
|
|
622
|
+
"2026-02-01T20:49:37.921Z",
|
|
623
|
+
"2026-02-01T20:56:45.177Z",
|
|
624
|
+
"2026-02-01T20:57:01.764Z",
|
|
625
|
+
"2026-02-01T20:57:33.342Z"
|
|
434
626
|
],
|
|
435
627
|
"props": [
|
|
436
628
|
{
|
|
@@ -486,7 +678,23 @@
|
|
|
486
678
|
"updatedAt": [
|
|
487
679
|
"2026-01-31T15:27:14.994Z",
|
|
488
680
|
"2026-02-01T00:08:31.874Z",
|
|
489
|
-
"2026-02-01T00:09:47.514Z"
|
|
681
|
+
"2026-02-01T00:09:47.514Z",
|
|
682
|
+
"2026-02-01T19:46:48.485Z",
|
|
683
|
+
"2026-02-01T19:47:30.757Z",
|
|
684
|
+
"2026-02-01T19:52:30.402Z",
|
|
685
|
+
"2026-02-01T19:55:40.358Z",
|
|
686
|
+
"2026-02-01T19:59:12.301Z",
|
|
687
|
+
"2026-02-01T20:06:45.022Z",
|
|
688
|
+
"2026-02-01T20:11:01.363Z",
|
|
689
|
+
"2026-02-01T20:13:36.968Z",
|
|
690
|
+
"2026-02-01T20:24:55.023Z",
|
|
691
|
+
"2026-02-01T20:36:25.369Z",
|
|
692
|
+
"2026-02-01T20:42:38.886Z",
|
|
693
|
+
"2026-02-01T20:44:04.163Z",
|
|
694
|
+
"2026-02-01T20:49:37.974Z",
|
|
695
|
+
"2026-02-01T20:56:45.230Z",
|
|
696
|
+
"2026-02-01T20:57:01.812Z",
|
|
697
|
+
"2026-02-01T20:57:33.388Z"
|
|
490
698
|
],
|
|
491
699
|
"props": [],
|
|
492
700
|
"files": [
|
|
@@ -498,5 +706,373 @@
|
|
|
498
706
|
],
|
|
499
707
|
"dependencies": [],
|
|
500
708
|
"scope": []
|
|
709
|
+
},
|
|
710
|
+
"lib-title": {
|
|
711
|
+
"type": "snippet-component",
|
|
712
|
+
"version": "3.0.0",
|
|
713
|
+
"description": "liquid component scaffold",
|
|
714
|
+
"hash": "86ff1b35646d0defe4ef47ef33b27299",
|
|
715
|
+
"createdAt": "2026-02-01T19:38:46.686Z",
|
|
716
|
+
"updatedAt": [
|
|
717
|
+
"2026-02-01T19:47:30.780Z",
|
|
718
|
+
"2026-02-01T19:52:30.425Z",
|
|
719
|
+
"2026-02-01T19:55:40.380Z",
|
|
720
|
+
"2026-02-01T19:59:12.319Z",
|
|
721
|
+
"2026-02-01T20:06:45.046Z",
|
|
722
|
+
"2026-02-01T20:11:01.386Z",
|
|
723
|
+
"2026-02-01T20:13:37.006Z",
|
|
724
|
+
"2026-02-01T20:24:55.041Z",
|
|
725
|
+
"2026-02-01T20:36:25.386Z",
|
|
726
|
+
"2026-02-01T20:42:38.914Z",
|
|
727
|
+
"2026-02-01T20:44:04.219Z",
|
|
728
|
+
"2026-02-01T20:49:38.008Z",
|
|
729
|
+
"2026-02-01T20:56:45.256Z",
|
|
730
|
+
"2026-02-01T20:57:01.837Z",
|
|
731
|
+
"2026-02-01T20:57:33.409Z"
|
|
732
|
+
],
|
|
733
|
+
"props": [
|
|
734
|
+
{
|
|
735
|
+
"name": "_tag_type",
|
|
736
|
+
"type": "string",
|
|
737
|
+
"required": true,
|
|
738
|
+
"description": "The HTML tag type to use for the title (e.g., h1, h2, h3).",
|
|
739
|
+
"placeholder": "'h3'"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"name": "_title_content",
|
|
743
|
+
"type": "string",
|
|
744
|
+
"required": true,
|
|
745
|
+
"description": "The title to display.",
|
|
746
|
+
"placeholder": "product.title"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "_classes",
|
|
750
|
+
"type": "string",
|
|
751
|
+
"required": true,
|
|
752
|
+
"description": "The classes used to style the component.",
|
|
753
|
+
"placeholder": "'mb-4'"
|
|
754
|
+
}
|
|
755
|
+
],
|
|
756
|
+
"files": [
|
|
757
|
+
{
|
|
758
|
+
"src": "components/lib-title/lib-title.liquid",
|
|
759
|
+
"destDir": "snippets",
|
|
760
|
+
"hash": "86ff1b35646d0defe4ef47ef33b27299"
|
|
761
|
+
}
|
|
762
|
+
],
|
|
763
|
+
"dependencies": [],
|
|
764
|
+
"scope": [
|
|
765
|
+
"all"
|
|
766
|
+
]
|
|
767
|
+
},
|
|
768
|
+
"lib-price": {
|
|
769
|
+
"type": "snippet-component",
|
|
770
|
+
"version": "3.0.0",
|
|
771
|
+
"description": "liquid component scaffold",
|
|
772
|
+
"hash": "ac0af4dea88094e3bf7f3c6e6d3e2f19",
|
|
773
|
+
"createdAt": "2026-02-01T19:39:01.214Z",
|
|
774
|
+
"updatedAt": [
|
|
775
|
+
"2026-02-01T19:46:48.491Z",
|
|
776
|
+
"2026-02-01T19:47:30.762Z",
|
|
777
|
+
"2026-02-01T19:52:30.407Z",
|
|
778
|
+
"2026-02-01T19:55:40.362Z",
|
|
779
|
+
"2026-02-01T19:59:12.306Z",
|
|
780
|
+
"2026-02-01T20:06:45.032Z",
|
|
781
|
+
"2026-02-01T20:11:01.373Z",
|
|
782
|
+
"2026-02-01T20:13:36.980Z",
|
|
783
|
+
"2026-02-01T20:24:55.028Z",
|
|
784
|
+
"2026-02-01T20:36:25.373Z",
|
|
785
|
+
"2026-02-01T20:42:38.891Z",
|
|
786
|
+
"2026-02-01T20:44:04.169Z",
|
|
787
|
+
"2026-02-01T20:49:37.979Z",
|
|
788
|
+
"2026-02-01T20:56:45.235Z",
|
|
789
|
+
"2026-02-01T20:57:01.817Z",
|
|
790
|
+
"2026-02-01T20:57:33.392Z"
|
|
791
|
+
],
|
|
792
|
+
"props": [
|
|
793
|
+
{
|
|
794
|
+
"name": "_price",
|
|
795
|
+
"type": "string",
|
|
796
|
+
"required": true,
|
|
797
|
+
"description": "The products price to display.",
|
|
798
|
+
"placeholder": "product.selected_or_first_available_variant.price"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"name": "_classes",
|
|
802
|
+
"type": "string",
|
|
803
|
+
"required": true,
|
|
804
|
+
"description": "Whether to show the compare at price.",
|
|
805
|
+
"placeholder": "'m-4'"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"name": "_show_compare_at",
|
|
809
|
+
"type": "string",
|
|
810
|
+
"required": false,
|
|
811
|
+
"description": "Whether to show the compare at price."
|
|
812
|
+
}
|
|
813
|
+
],
|
|
814
|
+
"files": [
|
|
815
|
+
{
|
|
816
|
+
"src": "components/lib-price/lib-price.liquid",
|
|
817
|
+
"destDir": "snippets",
|
|
818
|
+
"hash": "ac0af4dea88094e3bf7f3c6e6d3e2f19"
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"dependencies": [],
|
|
822
|
+
"scope": [
|
|
823
|
+
"product",
|
|
824
|
+
"collection",
|
|
825
|
+
"search",
|
|
826
|
+
"cart"
|
|
827
|
+
]
|
|
828
|
+
},
|
|
829
|
+
"lib-image": {
|
|
830
|
+
"type": "snippet-component",
|
|
831
|
+
"version": "2.0.0",
|
|
832
|
+
"description": "liquid component scaffold",
|
|
833
|
+
"hash": "b09572f3fae5035571451de637535ea5",
|
|
834
|
+
"createdAt": "2026-02-01T19:39:23.857Z",
|
|
835
|
+
"updatedAt": [
|
|
836
|
+
"2026-02-01T19:46:48.474Z",
|
|
837
|
+
"2026-02-01T19:47:30.748Z",
|
|
838
|
+
"2026-02-01T19:52:30.393Z",
|
|
839
|
+
"2026-02-01T19:55:40.349Z",
|
|
840
|
+
"2026-02-01T19:59:12.292Z",
|
|
841
|
+
"2026-02-01T20:06:45.012Z",
|
|
842
|
+
"2026-02-01T20:11:01.353Z",
|
|
843
|
+
"2026-02-01T20:13:36.946Z",
|
|
844
|
+
"2026-02-01T20:24:55.013Z",
|
|
845
|
+
"2026-02-01T20:36:25.359Z",
|
|
846
|
+
"2026-02-01T20:42:38.876Z",
|
|
847
|
+
"2026-02-01T20:44:04.153Z",
|
|
848
|
+
"2026-02-01T20:49:37.965Z",
|
|
849
|
+
"2026-02-01T20:56:45.220Z",
|
|
850
|
+
"2026-02-01T20:57:01.803Z",
|
|
851
|
+
"2026-02-01T20:57:33.378Z"
|
|
852
|
+
],
|
|
853
|
+
"props": [
|
|
854
|
+
{
|
|
855
|
+
"name": "_image",
|
|
856
|
+
"type": "string",
|
|
857
|
+
"required": true,
|
|
858
|
+
"description": "The image to display.",
|
|
859
|
+
"placeholder": "''"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"name": "_alt_text",
|
|
863
|
+
"type": "string",
|
|
864
|
+
"required": true,
|
|
865
|
+
"description": "The alt text for the image.",
|
|
866
|
+
"placeholder": "''"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "_classes",
|
|
870
|
+
"type": "string",
|
|
871
|
+
"required": true,
|
|
872
|
+
"description": "Additional classes for the image styling.",
|
|
873
|
+
"placeholder": "''"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"name": "_width",
|
|
877
|
+
"type": "string",
|
|
878
|
+
"required": true,
|
|
879
|
+
"description": "The width of the image.",
|
|
880
|
+
"placeholder": "'500'"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"name": "_height",
|
|
884
|
+
"type": "string",
|
|
885
|
+
"required": true,
|
|
886
|
+
"description": "The height of the image.",
|
|
887
|
+
"placeholder": "'500'"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"files": [
|
|
891
|
+
{
|
|
892
|
+
"src": "components/lib-image/lib-image.liquid",
|
|
893
|
+
"destDir": "snippets",
|
|
894
|
+
"hash": "b09572f3fae5035571451de637535ea5"
|
|
895
|
+
}
|
|
896
|
+
],
|
|
897
|
+
"dependencies": [],
|
|
898
|
+
"scope": [
|
|
899
|
+
"all"
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
"lib-description": {
|
|
903
|
+
"type": "snippet-component",
|
|
904
|
+
"version": "1.0.0",
|
|
905
|
+
"description": "liquid component scaffold",
|
|
906
|
+
"hash": "5a6a8df310bd9b9307940552be08c281",
|
|
907
|
+
"createdAt": "2026-02-01T19:39:42.319Z",
|
|
908
|
+
"updatedAt": [
|
|
909
|
+
"2026-02-01T19:46:48.436Z",
|
|
910
|
+
"2026-02-01T19:47:30.720Z",
|
|
911
|
+
"2026-02-01T19:52:30.362Z",
|
|
912
|
+
"2026-02-01T19:55:40.318Z",
|
|
913
|
+
"2026-02-01T19:59:12.260Z",
|
|
914
|
+
"2026-02-01T20:06:44.979Z",
|
|
915
|
+
"2026-02-01T20:11:01.323Z",
|
|
916
|
+
"2026-02-01T20:13:36.896Z",
|
|
917
|
+
"2026-02-01T20:24:54.981Z",
|
|
918
|
+
"2026-02-01T20:36:25.330Z",
|
|
919
|
+
"2026-02-01T20:42:38.843Z",
|
|
920
|
+
"2026-02-01T20:44:04.112Z",
|
|
921
|
+
"2026-02-01T20:49:37.926Z",
|
|
922
|
+
"2026-02-01T20:56:45.182Z",
|
|
923
|
+
"2026-02-01T20:57:01.769Z",
|
|
924
|
+
"2026-02-01T20:57:33.347Z"
|
|
925
|
+
],
|
|
926
|
+
"props": [
|
|
927
|
+
{
|
|
928
|
+
"name": "_content",
|
|
929
|
+
"type": "string",
|
|
930
|
+
"required": true,
|
|
931
|
+
"description": "The item description you wish to display.",
|
|
932
|
+
"placeholder": "'Some random product description.'"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "_classes",
|
|
936
|
+
"type": "string",
|
|
937
|
+
"required": true,
|
|
938
|
+
"description": "Additional classes for the description styling.",
|
|
939
|
+
"placeholder": "'mb-4'"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"name": "_enable_truncate",
|
|
943
|
+
"type": "string",
|
|
944
|
+
"required": false,
|
|
945
|
+
"description": "Boolean to enable truncation of text."
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"name": "_enable_strip_html",
|
|
949
|
+
"type": "string",
|
|
950
|
+
"required": false,
|
|
951
|
+
"description": "Boolean to enable stripping HTML tags."
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
|
+
"files": [
|
|
955
|
+
{
|
|
956
|
+
"src": "components/lib-description/lib-description.liquid",
|
|
957
|
+
"destDir": "snippets",
|
|
958
|
+
"hash": "5a6a8df310bd9b9307940552be08c281"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"dependencies": [],
|
|
962
|
+
"scope": [
|
|
963
|
+
"all"
|
|
964
|
+
]
|
|
965
|
+
},
|
|
966
|
+
"lib-atc-button": {
|
|
967
|
+
"type": "snippet-component",
|
|
968
|
+
"version": "2.0.0",
|
|
969
|
+
"description": "liquid component scaffold",
|
|
970
|
+
"hash": "8a349e5812cbef6697f3f13cd7ec7580",
|
|
971
|
+
"createdAt": "2026-02-01T19:39:52.726Z",
|
|
972
|
+
"updatedAt": [
|
|
973
|
+
"2026-02-01T19:46:48.412Z",
|
|
974
|
+
"2026-02-01T19:47:30.701Z",
|
|
975
|
+
"2026-02-01T19:52:30.343Z",
|
|
976
|
+
"2026-02-01T19:55:40.299Z",
|
|
977
|
+
"2026-02-01T19:59:12.240Z",
|
|
978
|
+
"2026-02-01T20:06:44.958Z",
|
|
979
|
+
"2026-02-01T20:11:01.304Z",
|
|
980
|
+
"2026-02-01T20:13:36.876Z",
|
|
981
|
+
"2026-02-01T20:14:47.755Z",
|
|
982
|
+
"2026-02-01T20:24:54.965Z",
|
|
983
|
+
"2026-02-01T20:36:25.308Z",
|
|
984
|
+
"2026-02-01T20:42:38.823Z",
|
|
985
|
+
"2026-02-01T20:44:04.081Z",
|
|
986
|
+
"2026-02-01T20:49:37.906Z",
|
|
987
|
+
"2026-02-01T20:56:45.162Z",
|
|
988
|
+
"2026-02-01T20:57:01.748Z",
|
|
989
|
+
"2026-02-01T20:57:33.327Z"
|
|
990
|
+
],
|
|
991
|
+
"props": [
|
|
992
|
+
{
|
|
993
|
+
"name": "_content",
|
|
994
|
+
"type": "string",
|
|
995
|
+
"required": true,
|
|
996
|
+
"description": "The button label (e.g. \"Add to cart\").",
|
|
997
|
+
"placeholder": "'Add to cart'"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"name": "_id",
|
|
1001
|
+
"type": "string",
|
|
1002
|
+
"required": false,
|
|
1003
|
+
"description": "Optional id for the button."
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"name": "_classes",
|
|
1007
|
+
"type": "string",
|
|
1008
|
+
"required": true,
|
|
1009
|
+
"description": "Additional classes for the button styling.",
|
|
1010
|
+
"placeholder": "'bg-red-600 hover:bg-red-700 text-white font-semibold rounded px-5 py-3 shadow focus:outline-none focus:ring-2 focus:ring-red-400 transition'"
|
|
1011
|
+
}
|
|
1012
|
+
],
|
|
1013
|
+
"files": [
|
|
1014
|
+
{
|
|
1015
|
+
"src": "components/lib-atc-button/lib-atc-button.liquid",
|
|
1016
|
+
"destDir": "snippets",
|
|
1017
|
+
"hash": "8a349e5812cbef6697f3f13cd7ec7580"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"src": "components/lib-atc-button/lib-atc-button.js",
|
|
1021
|
+
"destDir": "assets"
|
|
1022
|
+
}
|
|
1023
|
+
],
|
|
1024
|
+
"dependencies": [],
|
|
1025
|
+
"scope": [
|
|
1026
|
+
"product",
|
|
1027
|
+
"collection"
|
|
1028
|
+
]
|
|
1029
|
+
},
|
|
1030
|
+
"lib-tags": {
|
|
1031
|
+
"type": "snippet-component",
|
|
1032
|
+
"version": "3.0.0",
|
|
1033
|
+
"description": "liquid component scaffold",
|
|
1034
|
+
"hash": "a83c3ca036b3a5fad09ee9dab4bbaef8",
|
|
1035
|
+
"createdAt": "2026-02-01T20:38:27.828Z",
|
|
1036
|
+
"updatedAt": [
|
|
1037
|
+
"2026-02-01T20:42:38.909Z",
|
|
1038
|
+
"2026-02-01T20:44:04.210Z",
|
|
1039
|
+
"2026-02-01T20:49:38.002Z",
|
|
1040
|
+
"2026-02-01T20:56:45.251Z",
|
|
1041
|
+
"2026-02-01T20:57:01.831Z",
|
|
1042
|
+
"2026-02-01T20:57:33.404Z"
|
|
1043
|
+
],
|
|
1044
|
+
"props": [
|
|
1045
|
+
{
|
|
1046
|
+
"name": "_classes",
|
|
1047
|
+
"type": "string",
|
|
1048
|
+
"required": true,
|
|
1049
|
+
"description": "Additional classes for the tags styling.",
|
|
1050
|
+
"placeholder": "'tag-list flex flex-wrap gap-2'"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"name": "_number_of_tags",
|
|
1054
|
+
"type": "string",
|
|
1055
|
+
"required": false,
|
|
1056
|
+
"description": "Determine how many tags to show."
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"name": "_tags",
|
|
1060
|
+
"type": "string",
|
|
1061
|
+
"required": true,
|
|
1062
|
+
"description": "The list of tags to display.",
|
|
1063
|
+
"placeholder": "product.tags"
|
|
1064
|
+
}
|
|
1065
|
+
],
|
|
1066
|
+
"files": [
|
|
1067
|
+
{
|
|
1068
|
+
"src": "components/lib-tags/lib-tags.liquid",
|
|
1069
|
+
"destDir": "snippets",
|
|
1070
|
+
"hash": "a83c3ca036b3a5fad09ee9dab4bbaef8"
|
|
1071
|
+
}
|
|
1072
|
+
],
|
|
1073
|
+
"dependencies": [],
|
|
1074
|
+
"scope": [
|
|
1075
|
+
"all"
|
|
1076
|
+
]
|
|
501
1077
|
}
|
|
502
1078
|
}
|