@myissue/vue-website-page-builder 3.0.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.
Files changed (95) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +470 -0
  3. package/dist/android-chrome-192x192.png +0 -0
  4. package/dist/android-chrome-512x512.png +0 -0
  5. package/dist/apple-touch-icon.png +0 -0
  6. package/dist/browserconfig.xml +9 -0
  7. package/dist/components.json +36 -0
  8. package/dist/favicon-16x16.png +0 -0
  9. package/dist/favicon-32x32.png +0 -0
  10. package/dist/favicon.ico +0 -0
  11. package/dist/home/features.jpg +0 -0
  12. package/dist/home/page-builder-example.jpg +0 -0
  13. package/dist/logo/logo.svg +49 -0
  14. package/dist/mstile-310x150.png +0 -0
  15. package/dist/mstile-310x310.png +0 -0
  16. package/dist/page-builder/2-images-text-top.png +0 -0
  17. package/dist/page-builder/2-images.png +0 -0
  18. package/dist/page-builder/3-images.png +0 -0
  19. package/dist/page-builder/6-images.png +0 -0
  20. package/dist/page-builder/image.png +0 -0
  21. package/dist/page-builder/placeholder.jpg +0 -0
  22. package/dist/page-builder/two-vertical-images.png +0 -0
  23. package/dist/placeholder_image.jpg +0 -0
  24. package/dist/robots.txt +2 -0
  25. package/dist/vue-website-page-builder.css +1 -0
  26. package/dist/vue-website-page-builder.js +24794 -0
  27. package/dist/vue-website-page-builder.umd.cjs +195 -0
  28. package/package.json +99 -0
  29. package/src/App.vue +122 -0
  30. package/src/Components/Homepage/Footer.vue +42 -0
  31. package/src/Components/Homepage/HomeSection.vue +540 -0
  32. package/src/Components/Homepage/Navbar.vue +30 -0
  33. package/src/Components/Layouts/FullWidthElement.vue +34 -0
  34. package/src/Components/Loaders/FullScreenSpinner.vue +13 -0
  35. package/src/Components/Loaders/SmallUniversalSpinner.vue +26 -0
  36. package/src/Components/MediaLibrary/SidebarUnsplash.vue +40 -0
  37. package/src/Components/MediaLibrary/Unsplash.vue +306 -0
  38. package/src/Components/Modals/DynamicModal.vue +476 -0
  39. package/src/Components/Modals/MediaLibraryModal.vue +418 -0
  40. package/src/Components/Modals/Modal.vue +102 -0
  41. package/src/Components/Modals/PageBuilderModal.vue +233 -0
  42. package/src/Components/Modals/PageBuilderPreviewModal.vue +123 -0
  43. package/src/Components/PageBuilder/DropdownsPlusToggles/OptionsDropdown.vue +202 -0
  44. package/src/Components/PageBuilder/DropdownsPlusToggles/SaveDesign.vue +7 -0
  45. package/src/Components/PageBuilder/EditorMenu/Editables/BackgroundColorEditor.vue +91 -0
  46. package/src/Components/PageBuilder/EditorMenu/Editables/BorderRadius.vue +163 -0
  47. package/src/Components/PageBuilder/EditorMenu/Editables/Borders.vue +164 -0
  48. package/src/Components/PageBuilder/EditorMenu/Editables/ClassEditor.vue +80 -0
  49. package/src/Components/PageBuilder/EditorMenu/Editables/ComponentTopMenu.vue +93 -0
  50. package/src/Components/PageBuilder/EditorMenu/Editables/DeleteElement.vue +42 -0
  51. package/src/Components/PageBuilder/EditorMenu/Editables/EditGetElement.vue +338 -0
  52. package/src/Components/PageBuilder/EditorMenu/Editables/ElementEditor.vue +58 -0
  53. package/src/Components/PageBuilder/EditorMenu/Editables/ImageEditor.vue +82 -0
  54. package/src/Components/PageBuilder/EditorMenu/Editables/LinkEditor.vue +301 -0
  55. package/src/Components/PageBuilder/EditorMenu/Editables/ManageBackgroundOpacity.vue +109 -0
  56. package/src/Components/PageBuilder/EditorMenu/Editables/ManageOpacity.vue +107 -0
  57. package/src/Components/PageBuilder/EditorMenu/Editables/OpacityEditor.vue +16 -0
  58. package/src/Components/PageBuilder/EditorMenu/Editables/PaddingPlusMargin.vue +134 -0
  59. package/src/Components/PageBuilder/EditorMenu/Editables/TextColorEditor.vue +91 -0
  60. package/src/Components/PageBuilder/EditorMenu/Editables/Typography.vue +199 -0
  61. package/src/Components/PageBuilder/EditorMenu/EditorAccordion.vue +42 -0
  62. package/src/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue +113 -0
  63. package/src/Components/PageBuilder/Settings/AdvancedPageBuilderSettings.vue +229 -0
  64. package/src/Components/PageBuilder/Settings/PageBuilderSettings.vue +101 -0
  65. package/src/Components/PageBuilder/Slidebars/SlideOverRight.vue +91 -0
  66. package/src/Components/PageBuilder/Slidebars/SlideOverRightParent.vue +91 -0
  67. package/src/Components/Search/SearchComponents.vue +259 -0
  68. package/src/Components/TipTap/TipTap.vue +32 -0
  69. package/src/Components/TipTap/TipTapInput.vue +325 -0
  70. package/src/PageBuilder/PageBuilder.vue +347 -0
  71. package/src/PageBuilder/Preview.vue +24 -0
  72. package/src/composables/PageBuilder.ts +1483 -0
  73. package/src/composables/delay.ts +5 -0
  74. package/src/composables/extract-text-content-html.ts +34 -0
  75. package/src/composables/isObject.ts +6 -0
  76. package/src/composables/usePromise.ts +10 -0
  77. package/src/composables/vueFetch.ts +278 -0
  78. package/src/css/app.css +614 -0
  79. package/src/index.ts +16 -0
  80. package/src/main.ts +11 -0
  81. package/src/stores/media-library.ts +34 -0
  82. package/src/stores/page-builder-state.ts +461 -0
  83. package/src/stores/unsplash.ts +107 -0
  84. package/src/stores/user.ts +30 -0
  85. package/src/types/global.d.ts +49 -0
  86. package/src/utils/builder/compiledCSS.ts +2205 -0
  87. package/src/utils/builder/html-doc-declaration-with-components.ts +7 -0
  88. package/src/utils/builder/html-elements/componentHelpers.ts +101 -0
  89. package/src/utils/builder/tailwaind-colors.ts +503 -0
  90. package/src/utils/builder/tailwind-border-radius.ts +67 -0
  91. package/src/utils/builder/tailwind-border-style-width-color.ts +272 -0
  92. package/src/utils/builder/tailwind-font-sizes.ts +76 -0
  93. package/src/utils/builder/tailwind-font-styles.ts +24 -0
  94. package/src/utils/builder/tailwind-opacities.ts +45 -0
  95. package/src/utils/builder/tailwind-padding-margin.ts +159 -0
@@ -0,0 +1,7 @@
1
+ import tailwindCSS from '@/css/app.css?inline'
2
+
3
+ const fullHTMLContent = function (HTML: string): string {
4
+ return `<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><style>${tailwindCSS}</style></head><body>${HTML}</body></html>`
5
+ }
6
+
7
+ export default fullHTMLContent
@@ -0,0 +1,101 @@
1
+ interface ComponentHelper {
2
+ html_code: string
3
+ id: string | null
4
+ title: string
5
+ icon: string
6
+ }
7
+
8
+ const componentHelpers: ComponentHelper[] = [
9
+ {
10
+ html_code: `
11
+ <section>
12
+ <div class="relative py-4">
13
+ <div class="mx-auto max-w-7xl lg:px-4 px-2">
14
+ <div>
15
+ <p><strong>Text</strong></p><p>Tempus imperdiet nulla malesuada pellentesque elit eget gravida cum sociis. Erat nam at lectus urna duis convallis convallis. Congue mauris rhoncus aenean vel elit scelerisque.
16
+ Turpis tincidunt id aliquet risus feugiat in ante. Tincidunt dui ut ornare lectus sit. Ipsum dolor sit amet consectetur. Viverra ipsum nunc aliquet bibendum enim facilisis gravida neque convallis.<br><br>Dignissim sodales ut eu sem integer vitae justo eget magna.
17
+ Ac turpis egestas maecenas pharetra convallis. Mauris sit amet massa vitae. Ut tellus elementum sagittis vitae et. Sed risus ultricies tristique nulla aliquet enim tortor. Nunc mattis enim ut tellus elementum sagittis vitae et leo. Quis vel eros donec ac odio tempor.
18
+ Faucibus scelerisque eleifend donec pretium. <br><br>Adipiscing bibendum est ultricies integer quis auctor elit. Vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet. Id porta nibh venenatis cras sed felis eget. Gravida dictum fusce ut placerat orci nulla.
19
+ Consequat mauris nunc congue nisi vitae suscipit tellus mauris. <br><br></p><p><strong>List</strong></p><ul><li><p>Integer enim neque volutpat ac tincidunt vitae semper quis. Sit amet consectetur adipiscing elit pellentesque.</p></li><li><p>Urna cursus eget nunc scelerisque viverra.
20
+ Cursus metus aliquam eleifend mi in nulla posuere. Lobortis elementum nibh tellus molestie nunc non blandit massa.</p></li><li><p>Sodales ut eu sem integer vitae justo eget magna. Scelerisque felis imperdiet proin fermentum leo vel orci. Nunc id cursus metus aliquam eleifend.</p></li></ul>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ </section>`,
25
+ id: null,
26
+ title: 'Text',
27
+ icon: `
28
+ <span class="material-symbols-outlined">
29
+ text_fields
30
+ </span>
31
+ `,
32
+ },
33
+ {
34
+ html_code: `<section><div class="relative py-4"><div class="mx-auto max-w-7xl lg:px-4 px-2"><div class="break-words"><h2>Consequat mauris nunc congue</h2></div></div></div></section>`,
35
+ id: null,
36
+ title: 'Header H2',
37
+ icon: `
38
+ <span class="material-symbols-outlined">
39
+ format_h2
40
+ </span>
41
+ `,
42
+ },
43
+ {
44
+ html_code: `<section><div class="relative py-4"><div class="mx-auto max-w-7xl lg:px-4 px-2"><div class="break-words"><h3>Consequat mauris nunc congue</h3></div></div></div></section>`,
45
+ id: null,
46
+ title: 'Header H3',
47
+ icon: `
48
+ <span class="material-symbols-outlined">
49
+ format_h3
50
+ </span>
51
+ `,
52
+ },
53
+ {
54
+ html_code: `
55
+ <section>
56
+ <div class="py-4">
57
+ <div class="mx-auto max-w-7xl lg:px-4 px-2">
58
+ <div id="youtube-video" class="w-full aspect-video bg-slate-100 border border-slate-200 rounded-xl lg:p-8 md:p-6 p-4">
59
+
60
+ <iframe
61
+ frameborder="0"
62
+ allowfullscreen
63
+ class="w-full aspect-video bg-gray-600 border border-slate-800 rounded-xl"
64
+ src=""
65
+ allow="accelerometer; autoplay; clipboard-write;" allowfullscreen>
66
+ </iframe>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </section>`,
71
+ id: null,
72
+ title: 'YouTube Video',
73
+ icon: `
74
+ <span class="material-symbols-outlined">
75
+ play_circle
76
+ </span>
77
+ `,
78
+ },
79
+ {
80
+ html_code: `<section><div class="relative py-8"><div class="absolute inset-0 flex items-center" aria-hidden="true"><div class="w-full border-4 border-gray-800 leading-none"></div></div><div class="relative flex justify-start"></div></div></section>`,
81
+ id: null,
82
+ title: 'Break Divider',
83
+ icon: `
84
+ <span class="material-symbols-outlined">
85
+ horizontal_rule
86
+ </span>
87
+ `,
88
+ },
89
+ {
90
+ html_code: `<section>\n<div class=\"w-full md:pt-2 md:pb-2 pt-4 pb-4 lg:px-4 px-2\">\n<div class=\"mx-auto max-w-7xl\">\n<div id=\"linktree\"\nclass=\"border-2 border-gray-600 flex items-centre justify-start rounded-md font-medium text-black\">\n<p>\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://www.google.com\">Link to landing page</a>\n</p>\n</div>\n</div>\n</div>\n</section>`,
91
+ id: null,
92
+ title: 'Link',
93
+ icon: `
94
+ <span class="material-symbols-outlined">
95
+ horizontal_rule
96
+ </span>
97
+ `,
98
+ },
99
+ ]
100
+
101
+ export default componentHelpers
@@ -0,0 +1,503 @@
1
+ interface TailwindColors {
2
+ backgroundColorVariables: string[]
3
+ textColorVariables: string[]
4
+ }
5
+
6
+ const tailwindColors: TailwindColors = {
7
+ backgroundColorVariables: [
8
+ 'none',
9
+ 'bg-white',
10
+ 'bg-black',
11
+
12
+ 'bg-slate-50',
13
+ 'bg-slate-100',
14
+ 'bg-slate-200',
15
+ 'bg-slate-300',
16
+ 'bg-slate-400',
17
+ 'bg-slate-500',
18
+ 'bg-slate-600',
19
+ 'bg-slate-700',
20
+ 'bg-slate-800',
21
+ 'bg-slate-900',
22
+
23
+ 'bg-gray-50',
24
+ 'bg-gray-100',
25
+ 'bg-gray-200',
26
+ 'bg-gray-300',
27
+ 'bg-gray-400',
28
+ 'bg-gray-500',
29
+ 'bg-gray-600',
30
+ 'bg-gray-700',
31
+ 'bg-gray-800',
32
+ 'bg-gray-900',
33
+
34
+ 'bg-zinc-50',
35
+ 'bg-zinc-100',
36
+ 'bg-zinc-200',
37
+ 'bg-zinc-300',
38
+ 'bg-zinc-400',
39
+ 'bg-zinc-500',
40
+ 'bg-zinc-600',
41
+ 'bg-zinc-700',
42
+ 'bg-zinc-800',
43
+ 'bg-zinc-900',
44
+
45
+ 'bg-neutral-50',
46
+ 'bg-neutral-100',
47
+ 'bg-neutral-200',
48
+ 'bg-neutral-300',
49
+ 'bg-neutral-400',
50
+ 'bg-neutral-500',
51
+ 'bg-neutral-600',
52
+ 'bg-neutral-700',
53
+ 'bg-neutral-800',
54
+ 'bg-neutral-900',
55
+
56
+ 'bg-stone-50',
57
+ 'bg-stone-100',
58
+ 'bg-stone-200',
59
+ 'bg-stone-300',
60
+ 'bg-stone-400',
61
+ 'bg-stone-500',
62
+ 'bg-stone-600',
63
+ 'bg-stone-700',
64
+ 'bg-stone-800',
65
+ 'bg-stone-900',
66
+
67
+ 'bg-red-50',
68
+ 'bg-red-100',
69
+ 'bg-red-200',
70
+ 'bg-red-300',
71
+ 'bg-red-400',
72
+ 'bg-red-500',
73
+ 'bg-red-600',
74
+ 'bg-red-700',
75
+ 'bg-red-800',
76
+ 'bg-red-900',
77
+
78
+ 'bg-orange-50',
79
+ 'bg-orange-100',
80
+ 'bg-orange-200',
81
+ 'bg-orange-300',
82
+ 'bg-orange-400',
83
+ 'bg-orange-500',
84
+ 'bg-orange-600',
85
+ 'bg-orange-700',
86
+ 'bg-orange-800',
87
+ 'bg-orange-900',
88
+
89
+ 'bg-amber-50',
90
+ 'bg-amber-100',
91
+ 'bg-amber-200',
92
+ 'bg-amber-300',
93
+ 'bg-amber-400',
94
+ 'bg-amber-500',
95
+ 'bg-amber-600',
96
+ 'bg-amber-700',
97
+ 'bg-amber-800',
98
+ 'bg-amber-900',
99
+
100
+ 'bg-yellow-50',
101
+ 'bg-yellow-100',
102
+ 'bg-yellow-200',
103
+ 'bg-yellow-300',
104
+ 'bg-yellow-400',
105
+ 'bg-yellow-500',
106
+ 'bg-yellow-600',
107
+ 'bg-yellow-700',
108
+ 'bg-yellow-800',
109
+ 'bg-yellow-900',
110
+
111
+ 'bg-lime-50',
112
+ 'bg-lime-100',
113
+ 'bg-lime-200',
114
+ 'bg-lime-300',
115
+ 'bg-lime-400',
116
+ 'bg-lime-500',
117
+ 'bg-lime-600',
118
+ 'bg-lime-700',
119
+ 'bg-lime-800',
120
+ 'bg-lime-900',
121
+
122
+ 'bg-green-50',
123
+ 'bg-green-100',
124
+ 'bg-green-200',
125
+ 'bg-green-300',
126
+ 'bg-green-400',
127
+ 'bg-green-500',
128
+ 'bg-green-600',
129
+ 'bg-green-700',
130
+ 'bg-green-800',
131
+ 'bg-green-900',
132
+
133
+ 'bg-emerald-50',
134
+ 'bg-emerald-100',
135
+ 'bg-emerald-200',
136
+ 'bg-emerald-300',
137
+ 'bg-emerald-400',
138
+ 'bg-emerald-500',
139
+ 'bg-emerald-600',
140
+ 'bg-emerald-700',
141
+ 'bg-emerald-800',
142
+ 'bg-emerald-900',
143
+
144
+ 'bg-teal-50',
145
+ 'bg-teal-100',
146
+ 'bg-teal-200',
147
+ 'bg-teal-300',
148
+ 'bg-teal-400',
149
+ 'bg-teal-500',
150
+ 'bg-teal-600',
151
+ 'bg-teal-700',
152
+ 'bg-teal-800',
153
+ 'bg-teal-900',
154
+
155
+ 'bg-cyan-50',
156
+ 'bg-cyan-100',
157
+ 'bg-cyan-200',
158
+ 'bg-cyan-300',
159
+ 'bg-cyan-400',
160
+ 'bg-cyan-500',
161
+ 'bg-cyan-600',
162
+ 'bg-cyan-700',
163
+ 'bg-cyan-800',
164
+ 'bg-cyan-900',
165
+
166
+ 'bg-sky-50',
167
+ 'bg-sky-100',
168
+ 'bg-sky-200',
169
+ 'bg-sky-300',
170
+ 'bg-sky-400',
171
+ 'bg-sky-500',
172
+ 'bg-sky-600',
173
+ 'bg-sky-700',
174
+ 'bg-sky-800',
175
+ 'bg-sky-900',
176
+
177
+ 'bg-blue-50',
178
+ 'bg-blue-100',
179
+ 'bg-blue-200',
180
+ 'bg-blue-300',
181
+ 'bg-blue-400',
182
+ 'bg-blue-500',
183
+ 'bg-blue-600',
184
+ 'bg-blue-700',
185
+ 'bg-blue-800',
186
+ 'bg-blue-900',
187
+
188
+ 'bg-indigo-50',
189
+ 'bg-indigo-100',
190
+ 'bg-indigo-200',
191
+ 'bg-indigo-300',
192
+ 'bg-indigo-400',
193
+ 'bg-indigo-500',
194
+ 'bg-indigo-600',
195
+ 'bg-indigo-700',
196
+ 'bg-indigo-800',
197
+ 'bg-indigo-900',
198
+
199
+ 'bg-violet-50',
200
+ 'bg-violet-100',
201
+ 'bg-violet-200',
202
+ 'bg-violet-300',
203
+ 'bg-violet-400',
204
+ 'bg-violet-500',
205
+ 'bg-violet-600',
206
+ 'bg-violet-700',
207
+ 'bg-violet-800',
208
+ 'bg-violet-900',
209
+
210
+ 'bg-purple-50',
211
+ 'bg-purple-100',
212
+ 'bg-purple-200',
213
+ 'bg-purple-300',
214
+ 'bg-purple-400',
215
+ 'bg-purple-500',
216
+ 'bg-purple-600',
217
+ 'bg-purple-700',
218
+ 'bg-purple-800',
219
+ 'bg-purple-900',
220
+
221
+ 'bg-fuchsia-50',
222
+ 'bg-fuchsia-100',
223
+ 'bg-fuchsia-200',
224
+ 'bg-fuchsia-300',
225
+ 'bg-fuchsia-400',
226
+ 'bg-fuchsia-500',
227
+ 'bg-fuchsia-600',
228
+ 'bg-fuchsia-700',
229
+ 'bg-fuchsia-800',
230
+ 'bg-fuchsia-900',
231
+
232
+ 'bg-pink-50',
233
+ 'bg-pink-100',
234
+ 'bg-pink-200',
235
+ 'bg-pink-300',
236
+ 'bg-pink-400',
237
+ 'bg-pink-500',
238
+ 'bg-pink-600',
239
+ 'bg-pink-700',
240
+ 'bg-pink-800',
241
+ 'bg-pink-900',
242
+
243
+ 'bg-rose-50',
244
+ 'bg-rose-100',
245
+ 'bg-rose-200',
246
+ 'bg-rose-300',
247
+ 'bg-rose-400',
248
+ 'bg-rose-500',
249
+ 'bg-rose-600',
250
+ 'bg-rose-700',
251
+ 'bg-rose-800',
252
+ 'bg-rose-900',
253
+ ],
254
+ textColorVariables: [
255
+ 'none',
256
+ 'text-white',
257
+ 'text-black',
258
+
259
+ 'text-slate-50',
260
+ 'text-slate-100',
261
+ 'text-slate-200',
262
+ 'text-slate-300',
263
+ 'text-slate-400',
264
+ 'text-slate-500',
265
+ 'text-slate-600',
266
+ 'text-slate-700',
267
+ 'text-slate-800',
268
+ 'text-slate-900',
269
+
270
+ 'text-gray-50',
271
+ 'text-gray-100',
272
+ 'text-gray-200',
273
+ 'text-gray-300',
274
+ 'text-gray-400',
275
+ 'text-gray-500',
276
+ 'text-gray-600',
277
+ 'text-gray-700',
278
+ 'text-gray-800',
279
+ 'text-gray-900',
280
+
281
+ 'text-zinc-50',
282
+ 'text-zinc-100',
283
+ 'text-zinc-200',
284
+ 'text-zinc-300',
285
+ 'text-zinc-400',
286
+ 'text-zinc-500',
287
+ 'text-zinc-600',
288
+ 'text-zinc-700',
289
+ 'text-zinc-800',
290
+ 'text-zinc-900',
291
+
292
+ 'text-neutral-50',
293
+ 'text-neutral-100',
294
+ 'text-neutral-200',
295
+ 'text-neutral-300',
296
+ 'text-neutral-400',
297
+ 'text-neutral-500',
298
+ 'text-neutral-600',
299
+ 'text-neutral-700',
300
+ 'text-neutral-800',
301
+ 'text-neutral-900',
302
+
303
+ 'text-stone-50',
304
+ 'text-stone-100',
305
+ 'text-stone-200',
306
+ 'text-stone-300',
307
+ 'text-stone-400',
308
+ 'text-stone-500',
309
+ 'text-stone-600',
310
+ 'text-stone-700',
311
+ 'text-stone-800',
312
+ 'text-stone-900',
313
+
314
+ 'text-red-50',
315
+ 'text-red-100',
316
+ 'text-red-200',
317
+ 'text-red-300',
318
+ 'text-red-400',
319
+ 'text-red-500',
320
+ 'text-red-600',
321
+ 'text-red-700',
322
+ 'text-red-800',
323
+ 'text-red-900',
324
+
325
+ 'text-orange-50',
326
+ 'text-orange-100',
327
+ 'text-orange-200',
328
+ 'text-orange-300',
329
+ 'text-orange-400',
330
+ 'text-orange-500',
331
+ 'text-orange-600',
332
+ 'text-orange-700',
333
+ 'text-orange-800',
334
+ 'text-orange-900',
335
+
336
+ 'text-amber-50',
337
+ 'text-amber-100',
338
+ 'text-amber-200',
339
+ 'text-amber-300',
340
+ 'text-amber-400',
341
+ 'text-amber-500',
342
+ 'text-amber-600',
343
+ 'text-amber-700',
344
+ 'text-amber-800',
345
+ 'text-amber-900',
346
+
347
+ 'text-yellow-50',
348
+ 'text-yellow-100',
349
+ 'text-yellow-200',
350
+ 'text-yellow-300',
351
+ 'text-yellow-400',
352
+ 'text-yellow-500',
353
+ 'text-yellow-600',
354
+ 'text-yellow-700',
355
+ 'text-yellow-800',
356
+ 'text-yellow-900',
357
+
358
+ 'text-lime-50',
359
+ 'text-lime-100',
360
+ 'text-lime-200',
361
+ 'text-lime-300',
362
+ 'text-lime-400',
363
+ 'text-lime-500',
364
+ 'text-lime-600',
365
+ 'text-lime-700',
366
+ 'text-lime-800',
367
+ 'text-lime-900',
368
+
369
+ 'text-green-50',
370
+ 'text-green-100',
371
+ 'text-green-200',
372
+ 'text-green-300',
373
+ 'text-green-400',
374
+ 'text-green-500',
375
+ 'text-green-600',
376
+ 'text-green-700',
377
+ 'text-green-800',
378
+ 'text-green-900',
379
+
380
+ 'text-emerald-50',
381
+ 'text-emerald-100',
382
+ 'text-emerald-200',
383
+ 'text-emerald-300',
384
+ 'text-emerald-400',
385
+ 'text-emerald-500',
386
+ 'text-emerald-600',
387
+ 'text-emerald-700',
388
+ 'text-emerald-800',
389
+ 'text-emerald-900',
390
+
391
+ 'text-teal-50',
392
+ 'text-teal-100',
393
+ 'text-teal-200',
394
+ 'text-teal-300',
395
+ 'text-teal-400',
396
+ 'text-teal-500',
397
+ 'text-teal-600',
398
+ 'text-teal-700',
399
+ 'text-teal-800',
400
+ 'text-teal-900',
401
+
402
+ 'text-cyan-50',
403
+ 'text-cyan-100',
404
+ 'text-cyan-200',
405
+ 'text-cyan-300',
406
+ 'text-cyan-400',
407
+ 'text-cyan-500',
408
+ 'text-cyan-600',
409
+ 'text-cyan-700',
410
+ 'text-cyan-800',
411
+ 'text-cyan-900',
412
+
413
+ 'text-sky-50',
414
+ 'text-sky-100',
415
+ 'text-sky-200',
416
+ 'text-sky-300',
417
+ 'text-sky-400',
418
+ 'text-sky-500',
419
+ 'text-sky-600',
420
+ 'text-sky-700',
421
+ 'text-sky-800',
422
+ 'text-sky-900',
423
+
424
+ 'text-blue-50',
425
+ 'text-blue-100',
426
+ 'text-blue-200',
427
+ 'text-blue-300',
428
+ 'text-blue-400',
429
+ 'text-blue-500',
430
+ 'text-blue-600',
431
+ 'text-blue-700',
432
+ 'text-blue-800',
433
+ 'text-blue-900',
434
+
435
+ 'text-indigo-50',
436
+ 'text-indigo-100',
437
+ 'text-indigo-200',
438
+ 'text-indigo-300',
439
+ 'text-indigo-400',
440
+ 'text-indigo-500',
441
+ 'text-indigo-600',
442
+ 'text-indigo-700',
443
+ 'text-indigo-800',
444
+ 'text-indigo-900',
445
+
446
+ 'text-violet-50',
447
+ 'text-violet-100',
448
+ 'text-violet-200',
449
+ 'text-violet-300',
450
+ 'text-violet-400',
451
+ 'text-violet-500',
452
+ 'text-violet-600',
453
+ 'text-violet-700',
454
+ 'text-violet-800',
455
+ 'text-violet-900',
456
+
457
+ 'text-purple-50',
458
+ 'text-purple-100',
459
+ 'text-purple-200',
460
+ 'text-purple-300',
461
+ 'text-purple-400',
462
+ 'text-purple-500',
463
+ 'text-purple-600',
464
+ 'text-purple-700',
465
+ 'text-purple-800',
466
+ 'text-purple-900',
467
+
468
+ 'text-fuchsia-50',
469
+ 'text-fuchsia-100',
470
+ 'text-fuchsia-200',
471
+ 'text-fuchsia-300',
472
+ 'text-fuchsia-400',
473
+ 'text-fuchsia-500',
474
+ 'text-fuchsia-600',
475
+ 'text-fuchsia-700',
476
+ 'text-fuchsia-800',
477
+ 'text-fuchsia-900',
478
+
479
+ 'text-pink-50',
480
+ 'text-pink-100',
481
+ 'text-pink-200',
482
+ 'text-pink-300',
483
+ 'text-pink-400',
484
+ 'text-pink-500',
485
+ 'text-pink-600',
486
+ 'text-pink-700',
487
+ 'text-pink-800',
488
+ 'text-pink-900',
489
+
490
+ 'text-rose-50',
491
+ 'text-rose-100',
492
+ 'text-rose-200',
493
+ 'text-rose-300',
494
+ 'text-rose-400',
495
+ 'text-rose-500',
496
+ 'text-rose-600',
497
+ 'text-rose-700',
498
+ 'text-rose-800',
499
+ 'text-rose-900',
500
+ ],
501
+ }
502
+
503
+ export default tailwindColors
@@ -0,0 +1,67 @@
1
+ interface TailwindBorderRadius {
2
+ roundedGlobal: string[]
3
+ roundedTopLeft: string[]
4
+ roundedTopRight: string[]
5
+ roundedBottomLeft: string[]
6
+ roundedBottomRight: string[]
7
+ }
8
+
9
+ const tailwindBorderRadius: TailwindBorderRadius = {
10
+ roundedGlobal: [
11
+ 'none',
12
+ 'rounded-sm',
13
+ 'rounded',
14
+ 'rounded-md',
15
+ 'rounded-lg',
16
+ 'rounded-xl',
17
+ 'rounded-2xl',
18
+ 'rounded-3xl',
19
+ 'rounded-full',
20
+ ],
21
+ roundedTopLeft: [
22
+ 'none',
23
+ 'rounded-tl-sm',
24
+ 'rounded-tl',
25
+ 'rounded-tl-md',
26
+ 'rounded-tl-lg',
27
+ 'rounded-tl-xl',
28
+ 'rounded-tl-2xl',
29
+ 'rounded-tl-3xl',
30
+ 'rounded-tl-full',
31
+ ],
32
+ roundedTopRight: [
33
+ 'none',
34
+ 'rounded-tr-sm',
35
+ 'rounded-tr',
36
+ 'rounded-tr-md',
37
+ 'rounded-tr-lg',
38
+ 'rounded-tr-xl',
39
+ 'rounded-tr-2xl',
40
+ 'rounded-tr-3xl',
41
+ 'rounded-tr-full',
42
+ ],
43
+ roundedBottomLeft: [
44
+ 'none',
45
+ 'rounded-bl-sm',
46
+ 'rounded-bl',
47
+ 'rounded-bl-md',
48
+ 'rounded-bl-lg',
49
+ 'rounded-bl-xl',
50
+ 'rounded-bl-2xl',
51
+ 'rounded-bl-3xl',
52
+ 'rounded-bl-full',
53
+ ],
54
+ roundedBottomRight: [
55
+ 'none',
56
+ 'rounded-br-sm',
57
+ 'rounded-br',
58
+ 'rounded-br-md',
59
+ 'rounded-br-lg',
60
+ 'rounded-br-xl',
61
+ 'rounded-br-2xl',
62
+ 'rounded-br-3xl',
63
+ 'rounded-br-full',
64
+ ],
65
+ }
66
+
67
+ export default tailwindBorderRadius