zz-shopify-components 0.6.0 → 0.7.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.
@@ -100,17 +100,6 @@
100
100
  "default": "#000000",
101
101
  "label": "标题颜色"
102
102
  },
103
- {
104
- "type": "richtext",
105
- "id": "slide_content",
106
- "label": "内容"
107
- },
108
- {
109
- "type": "color",
110
- "id": "slide_content_color",
111
- "default": "#170B01",
112
- "label": "内容颜色"
113
- },
114
103
  {
115
104
  "type": "text",
116
105
  "id": "btn_text",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zz-shopify-components",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Reusable Shopify components for theme projects",
5
5
  "keywords": [
6
6
  "shopify",
@@ -0,0 +1,35 @@
1
+ {% comment %} Products {% endcomment %}
2
+ {% assign is_edu_product = false %}
3
+ {% if product.tags contains 'edu-product' %}
4
+ {% assign is_edu_product = true %}
5
+ {% endif %}
6
+
7
+ {% assign is_logged_in = false %}
8
+ {% assign is_edu_verified = false %}
9
+ {% if customer %}
10
+ {% assign is_logged_in = true %}
11
+ {% if customer.tags contains 'edu-verified' %}
12
+ {% assign is_edu_verified = true %}
13
+ {% endif %}
14
+ {% endif %}
15
+
16
+ <button class='tw-flex tw-items-center tw-justify-center tw-text-white tw-border-none tw-h-full tw-px-6 tw-py-4 tw-bg-[#FC6C0F] tw-rounded-full tw-font-semibold tw-text-[16px] {{ button_class }}'>
17
+ <span
18
+ class='buy-loading tw-hidden tw-daisy-loading tw-daisy-loading-spinner '
19
+ ></span>
20
+ <span class='buy-bottom-bar-btn-text'>
21
+ {% if is_edu_product %}
22
+ {% if is_logged_in %}
23
+ {% if is_edu_verified %}
24
+ {{ btn }}
25
+ {% else %}
26
+ {{ bar_btn_edu_not_verified }}
27
+ {% endif %}
28
+ {% else %}
29
+ {{ bar_btn_edu_not_logged_in }}
30
+ {% endif %}
31
+ {% else %}
32
+ {{ btn }}
33
+ {% endif %}
34
+ </span>
35
+ </button>