@levo-so/blocks 0.1.75 → 0.1.77
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/package.json +4 -4
- package/src/blocks/about-us/about-us-1.schema.ts +0 -3
- package/src/blocks/blogs/ClientOnly.tsx +24 -0
- package/src/blocks/blogs/blog-listing-1.schema.ts +750 -111
- package/src/blocks/blogs/blog-listing-1.tsx +123 -41
- package/src/blocks/blogs/blog-listing-2.schema.ts +1127 -2640
- package/src/blocks/blogs/blog-listing-2.tsx +110 -23
- package/src/blocks/blogs/blog-listing-3.schema.ts +713 -2010
- package/src/blocks/blogs/blog-listing-3.tsx +118 -20
- package/src/blocks/blogs/blog-post-1.schema.ts +262 -32
- package/src/blocks/blogs/blog-post-1.tsx +217 -28
- package/src/blocks/cards/cards-16.schema.ts +947 -0
- package/src/blocks/cards/cards-16.tsx +106 -0
- package/src/blocks/cards/cards-17.schema.ts +1945 -0
- package/src/blocks/cards/cards-17.tsx +112 -0
- package/src/blocks/cards/cards-18.schema.ts +1040 -0
- package/src/blocks/cards/cards-18.tsx +102 -0
- package/src/blocks/cards/cards-2.schema.ts +2 -2
- package/src/blocks/cards/cards-3.schema.ts +3 -16
- package/src/blocks/cards/cards-4.schema.ts +3 -28
- package/src/blocks/cards/cards-7.schema.ts +4 -7
- package/src/blocks/cards/cards-8.schema.ts +1 -10
- package/src/blocks/carousel/carousel-2.schema.ts +1 -2
- package/src/blocks/content/content-10.schema.ts +450 -0
- package/src/blocks/content/content-10.tsx +43 -0
- package/src/blocks/content/content-3.schema.ts +22 -28
- package/src/blocks/content/content-5.schema.ts +0 -4
- package/src/blocks/cta/cta-1.schema.ts +0 -3
- package/src/blocks/event/event-details.schema.ts +41 -175
- package/src/blocks/event/event-details.tsx +45 -50
- package/src/blocks/event/event-listing-2.schema.ts +437 -202
- package/src/blocks/event/event-listing-2.tsx +86 -22
- package/src/blocks/event/event-listing-3.schema.ts +232 -196
- package/src/blocks/event/event-listing-3.tsx +62 -29
- package/src/blocks/event/event-listing-4.schema.ts +314 -2824
- package/src/blocks/event/event-listing-4.tsx +68 -32
- package/src/blocks/event/event-listing.schema.ts +176 -1032
- package/src/blocks/event/event-listing.tsx +59 -25
- package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +0 -1
- package/src/blocks/features/features-4.schema.ts +4 -14
- package/src/blocks/features/features-5.schema.ts +30 -51
- package/src/blocks/features/features-6.schema.ts +0 -1
- package/src/blocks/filter-listing/filter-listing-1.schema.ts +1 -3
- package/src/blocks/footer/footer-3.schema.ts +6 -14
- package/src/blocks/hero/hero-11.schema.ts +25 -54
- package/src/blocks/hero/hero-5.schema.ts +2 -6
- package/src/blocks/hero/hero-6.schema.ts +1 -10
- package/src/blocks/index.ts +4 -0
- package/src/blocks/logos/logos-1.schema.ts +0 -30
- package/src/blocks/pricing/pricing-1.schema.ts +0 -3
- package/src/blocks/stats/variants/default.ts +4 -5
- package/src/blocks/team/team-2.schema.ts +57 -154
- package/src/blocks/team/team-3.schema.ts +14 -31
- package/src/blocks/testimonial/testimonial-4.schema.ts +67 -152
- package/src/blocks/testimonial/testimonial-5/variants/default.ts +0 -1
- package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +0 -1
- package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +0 -1
- package/src/schemas/blocks.ts +8 -0
package/src/schemas/blocks.ts
CHANGED
|
@@ -21,6 +21,9 @@ import { Cards12 } from "../blocks/cards/cards-12.schema";
|
|
|
21
21
|
import { Cards13 } from "../blocks/cards/cards-13.schema";
|
|
22
22
|
import { Cards14 } from "../blocks/cards/cards-14.schema";
|
|
23
23
|
import { Cards15 } from "../blocks/cards/cards-15.schema";
|
|
24
|
+
import { Cards16 } from "../blocks/cards/cards-16.schema";
|
|
25
|
+
import { Cards17 } from "../blocks/cards/cards-17.schema";
|
|
26
|
+
import { Cards18 } from "../blocks/cards/cards-18.schema";
|
|
24
27
|
import { Carousel1 } from "../blocks/carousel/carousel-1.schema";
|
|
25
28
|
import { Carousel2 } from "../blocks/carousel/carousel-2.schema";
|
|
26
29
|
import { Community1 } from "../blocks/community/community-1.schema";
|
|
@@ -36,6 +39,7 @@ import { Content6 } from "../blocks/content/content-6.schema";
|
|
|
36
39
|
import { Content7 } from "../blocks/content/content-7.schema";
|
|
37
40
|
import { Content8 } from "../blocks/content/content-8.schema";
|
|
38
41
|
import { Content9 } from "../blocks/content/content-9.schema";
|
|
42
|
+
import { Content10 } from "../blocks/content/content-10.schema";
|
|
39
43
|
import { Cta1 } from "../blocks/cta/cta-1.schema";
|
|
40
44
|
import { Cta2 } from "../blocks/cta/cta-2.schema";
|
|
41
45
|
import { Cta3 } from "../blocks/cta/cta-3.schema";
|
|
@@ -140,6 +144,9 @@ export const BlockList: IBlock[] = [
|
|
|
140
144
|
Cards13,
|
|
141
145
|
Cards14,
|
|
142
146
|
Cards15,
|
|
147
|
+
Cards16,
|
|
148
|
+
Cards17,
|
|
149
|
+
Cards18,
|
|
143
150
|
Carousel1,
|
|
144
151
|
Carousel2,
|
|
145
152
|
ContactUs1,
|
|
@@ -153,6 +160,7 @@ export const BlockList: IBlock[] = [
|
|
|
153
160
|
Content7,
|
|
154
161
|
Content8,
|
|
155
162
|
Content9,
|
|
163
|
+
Content10,
|
|
156
164
|
Cta1,
|
|
157
165
|
Cta2,
|
|
158
166
|
Cta3,
|