luaniverse 4.2.1 → 4.2.3
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/dist/index.cjs +286 -228
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +285 -229
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +12 -6
- package/dist/safelist.txt +11 -7
- package/package.json +1 -1
package/dist/safelist.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Luaniverse Design System - Tailwind CSS Safelist
|
|
3
|
-
*
|
|
3
|
+
*
|
|
4
4
|
* This file contains all the classes that should be safelisted in consumer applications
|
|
5
5
|
* to ensure they are included in the final CSS build even if not detected by content scanning.
|
|
6
6
|
*/
|
|
@@ -95,7 +95,6 @@ export const luaniverseSafelist = [
|
|
|
95
95
|
'lua:md:table',
|
|
96
96
|
'lua:md:table-header-group',
|
|
97
97
|
'lua:md:table-cell',
|
|
98
|
-
'lua:py-2',
|
|
99
98
|
'lua:[&_tr]:border-none',
|
|
100
99
|
'lua:hidden',
|
|
101
100
|
'lua:shadow-sm',
|
|
@@ -154,6 +153,14 @@ export const luaniverseSafelist = [
|
|
|
154
153
|
'lua:focus-visible:outline-hidden',
|
|
155
154
|
'lua:whitespace-nowrap',
|
|
156
155
|
'lua:gap-2',
|
|
156
|
+
'lua:font-onest',
|
|
157
|
+
'lua:inline-flex',
|
|
158
|
+
'lua:rounded-full',
|
|
159
|
+
'lua:py-1',
|
|
160
|
+
'lua:data-[state=active]:bg-blue-50',
|
|
161
|
+
'lua:data-[state=active]:text-blue-800',
|
|
162
|
+
'lua:data-[state=active]:hover:bg-blue-100',
|
|
163
|
+
'lua:hover:bg-gray-100',
|
|
157
164
|
|
|
158
165
|
// carousel
|
|
159
166
|
'lua:justify-center',
|
|
@@ -244,7 +251,6 @@ export const luaniverseSafelist = [
|
|
|
244
251
|
'lua:text-gray-600',
|
|
245
252
|
'lua:cursor-not-allowed',
|
|
246
253
|
'lua:mb-2',
|
|
247
|
-
'lua:text-gray-900',
|
|
248
254
|
'lua:left-3',
|
|
249
255
|
'lua:top-1/2',
|
|
250
256
|
'lua:-translate-y-1/2',
|
|
@@ -255,10 +261,7 @@ export const luaniverseSafelist = [
|
|
|
255
261
|
'lua:rounded-md',
|
|
256
262
|
'lua:bg-transparent',
|
|
257
263
|
'lua:px-3',
|
|
258
|
-
'lua:py-2',
|
|
259
264
|
'lua:text-base',
|
|
260
|
-
'lua:transition-all',
|
|
261
|
-
'lua:duration-200',
|
|
262
265
|
'file:lua:border-0',
|
|
263
266
|
'file:lua:bg-transparent',
|
|
264
267
|
'file:lua:text-sm',
|
|
@@ -283,6 +286,9 @@ export const luaniverseSafelist = [
|
|
|
283
286
|
'lua:mt-2',
|
|
284
287
|
'lua:text-red-600',
|
|
285
288
|
'lua:text-green-600',
|
|
289
|
+
|
|
290
|
+
// Tooltip
|
|
291
|
+
'lua:rounded-lg',
|
|
286
292
|
];
|
|
287
293
|
|
|
288
294
|
export default luaniverseSafelist;
|
package/dist/safelist.txt
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Usage in your CSS:
|
|
6
6
|
# @source "./node_modules/@lua-ai-global/luaniverse/dist/safelist.txt";
|
|
7
7
|
#
|
|
8
|
-
# Total classes:
|
|
8
|
+
# Total classes: 255
|
|
9
9
|
|
|
10
10
|
left-[50%]
|
|
11
11
|
top-[50%]
|
|
@@ -87,7 +87,6 @@ lua:md:table-row-group
|
|
|
87
87
|
lua:md:table
|
|
88
88
|
lua:md:table-header-group
|
|
89
89
|
lua:md:table-cell
|
|
90
|
-
lua:py-2
|
|
91
90
|
lua:[&_tr]:border-none
|
|
92
91
|
lua:hidden
|
|
93
92
|
lua:shadow-sm
|
|
@@ -141,6 +140,14 @@ lua:disabled:pointer-events-none
|
|
|
141
140
|
lua:focus-visible:outline-hidden
|
|
142
141
|
lua:whitespace-nowrap
|
|
143
142
|
lua:gap-2
|
|
143
|
+
lua:font-onest
|
|
144
|
+
lua:inline-flex
|
|
145
|
+
lua:rounded-full
|
|
146
|
+
lua:py-1
|
|
147
|
+
lua:data-[state=active]:bg-blue-50
|
|
148
|
+
lua:data-[state=active]:text-blue-800
|
|
149
|
+
lua:data-[state=active]:hover:bg-blue-100
|
|
150
|
+
lua:hover:bg-gray-100
|
|
144
151
|
lua:justify-center
|
|
145
152
|
lua:overflow-hidden
|
|
146
153
|
lua:max-w-5xl
|
|
@@ -219,7 +226,6 @@ lua:bg-purple-600
|
|
|
219
226
|
lua:text-gray-600
|
|
220
227
|
lua:cursor-not-allowed
|
|
221
228
|
lua:mb-2
|
|
222
|
-
lua:text-gray-900
|
|
223
229
|
lua:left-3
|
|
224
230
|
lua:top-1/2
|
|
225
231
|
lua:-translate-y-1/2
|
|
@@ -230,10 +236,7 @@ lua:h-10
|
|
|
230
236
|
lua:rounded-md
|
|
231
237
|
lua:bg-transparent
|
|
232
238
|
lua:px-3
|
|
233
|
-
lua:py-2
|
|
234
239
|
lua:text-base
|
|
235
|
-
lua:transition-all
|
|
236
|
-
lua:duration-200
|
|
237
240
|
file:lua:border-0
|
|
238
241
|
file:lua:bg-transparent
|
|
239
242
|
file:lua:text-sm
|
|
@@ -257,4 +260,5 @@ md:lua:text-sm
|
|
|
257
260
|
lua:right-3
|
|
258
261
|
lua:mt-2
|
|
259
262
|
lua:text-red-600
|
|
260
|
-
lua:text-green-600
|
|
263
|
+
lua:text-green-600
|
|
264
|
+
lua:rounded-lg
|