@rbxts/react-clean-ui 1.0.36 → 1.1.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.
Files changed (91) hide show
  1. package/out/Components/Decorator/Corners.luau +5 -1
  2. package/out/Components/Decorator/Padding.luau +1 -1
  3. package/out/Components/Input/Button.d.ts +9 -0
  4. package/out/Components/Input/Button.luau +155 -46
  5. package/out/Components/Input/Checkbox.luau +22 -6
  6. package/out/Components/Input/Increment.d.ts +11 -0
  7. package/out/Components/Input/Increment.luau +107 -0
  8. package/out/Components/Input/Increment.step.d.ts +1 -0
  9. package/out/Components/Input/Increment.step.luau +25 -0
  10. package/out/Components/Input/Input.d.ts +4 -3
  11. package/out/Components/Input/Input.luau +115 -18
  12. package/out/Components/Input/Input.validation.d.ts +4 -0
  13. package/out/Components/Input/Input.validation.luau +42 -0
  14. package/out/Components/Input/Select.d.ts +4 -3
  15. package/out/Components/Input/Select.luau +23 -18
  16. package/out/Components/Input/Slider.d.ts +1 -1
  17. package/out/Components/Input/Slider.luau +68 -34
  18. package/out/Components/Input/index.d.ts +1 -0
  19. package/out/Components/Input/init.luau +3 -0
  20. package/out/Components/Layout/Accordion.d.ts +4 -4
  21. package/out/Components/Layout/Accordion.luau +75 -23
  22. package/out/Components/Layout/Container.d.ts +4 -2
  23. package/out/Components/Layout/Container.luau +12 -3
  24. package/out/Components/Layout/Draggable.luau +1 -1
  25. package/out/Components/Layout/Fieldset.d.ts +1 -1
  26. package/out/Components/Layout/Fieldset.luau +40 -6
  27. package/out/Components/Layout/FlexItem.d.ts +2 -1
  28. package/out/Components/Layout/FlexItem.luau +1 -0
  29. package/out/Components/Layout/Group.luau +30 -8
  30. package/out/Components/Layout/HStack.luau +1 -0
  31. package/out/Components/Layout/Row.luau +43 -9
  32. package/out/Components/Layout/Scroller.d.ts +1 -0
  33. package/out/Components/Layout/Scroller.luau +20 -5
  34. package/out/Components/Layout/Tabs.d.ts +5 -3
  35. package/out/Components/Layout/Tabs.luau +48 -16
  36. package/out/Components/Navigation/Menu.d.ts +1 -1
  37. package/out/Components/Navigation/Menu.luau +2 -0
  38. package/out/Components/Surface/Box.d.ts +4 -2
  39. package/out/Components/Surface/Box.luau +25 -22
  40. package/out/Components/Surface/Card.d.ts +12 -6
  41. package/out/Components/Surface/Card.luau +456 -26
  42. package/out/Components/Surface/Icon.luau +42 -4
  43. package/out/Components/Typography/Text.d.ts +1 -0
  44. package/out/Components/Typography/Text.luau +119 -10
  45. package/out/Contexts/row.context.d.ts +1 -1
  46. package/out/Contexts/theme.context.d.ts +2 -2
  47. package/out/Helpers/color.helper.d.ts +5 -3
  48. package/out/Helpers/color.helper.luau +62 -34
  49. package/out/Helpers/create-ui-story.d.ts +2 -2
  50. package/out/Helpers/create-ui-story.luau +33 -1
  51. package/out/Helpers/css.helper.d.ts +28 -2
  52. package/out/Helpers/css.helper.luau +208 -0
  53. package/out/Helpers/index.d.ts +1 -0
  54. package/out/Helpers/init.luau +3 -0
  55. package/out/Helpers/size.helper.d.ts +3 -1
  56. package/out/Helpers/size.helper.luau +10 -9
  57. package/out/Helpers/spacing.helper.d.ts +5 -4
  58. package/out/Helpers/spacing.helper.luau +102 -18
  59. package/out/Helpers/typography.helper.d.ts +2 -2
  60. package/out/Interfaces/css.types.d.ts +30 -0
  61. package/out/Interfaces/css.types.luau +21 -0
  62. package/out/Interfaces/element.props.d.ts +61 -0
  63. package/out/Interfaces/element.props.luau +1 -0
  64. package/out/Interfaces/index.d.ts +5 -3
  65. package/out/Interfaces/init.luau +1 -7
  66. package/out/Interfaces/responsive.types.d.ts +26 -0
  67. package/out/Interfaces/semantics.d.ts +3 -0
  68. package/out/Interfaces/semantics.luau +2 -0
  69. package/out/Providers/app.provider.d.ts +2 -2
  70. package/out/Providers/theme.provider.d.ts +2 -2
  71. package/out/Theme/index.d.ts +1 -0
  72. package/out/Theme/theme.factory.d.ts +3 -3
  73. package/out/Theme/theme.style.d.ts +48 -0
  74. package/out/Theme/theme.style.luau +1 -0
  75. package/out/Theme/theme.template.d.ts +34 -26
  76. package/out/Theme/themes/dark.theme.d.ts +1 -1
  77. package/out/Theme/themes/dark.theme.luau +28 -0
  78. package/out/Theme/themes/default.theme.d.ts +2 -2
  79. package/out/Theme/themes/default.theme.luau +11 -1
  80. package/out/Theme/themes/index.d.ts +1 -0
  81. package/out/Theme/themes/init.luau +3 -0
  82. package/out/Theme/themes/sandstone.theme.d.ts +1 -1
  83. package/out/Theme/themes/sandstone.theme.luau +25 -0
  84. package/out/Theme/themes/wooden.theme.d.ts +1 -0
  85. package/out/Theme/themes/wooden.theme.luau +554 -0
  86. package/out/index.d.ts +8 -8
  87. package/package.json +19 -7
  88. package/out/Interfaces/clean.element.props.d.ts +0 -114
  89. /package/out/{Interfaces/userinput.d.ts → Helpers/input.helper.d.ts} +0 -0
  90. /package/out/{Interfaces/userinput.luau → Helpers/input.helper.luau} +0 -0
  91. /package/out/Interfaces/{clean.element.props.luau → responsive.types.luau} +0 -0
@@ -0,0 +1,554 @@
1
+ -- Compiled with roblox-ts v3.0.0
2
+ local TS = _G[script]
3
+ local createTheme = TS.import(script, script.Parent.Parent, "theme.factory").createTheme
4
+ local font = Enum.Font.PatrickHand
5
+ local WoodenTheme = createTheme({
6
+ typography = {
7
+ display = {
8
+ font = font,
9
+ size = Enum.FontSize.Size60,
10
+ letterSpacing = 5,
11
+ },
12
+ title = {
13
+ font = font,
14
+ size = Enum.FontSize.Size48,
15
+ letterSpacing = 3,
16
+ },
17
+ heading = {
18
+ font = font,
19
+ size = Enum.FontSize.Size32,
20
+ letterSpacing = 2,
21
+ },
22
+ body = {
23
+ font = font,
24
+ size = Enum.FontSize.Size24,
25
+ },
26
+ label = {
27
+ font = font,
28
+ size = Enum.FontSize.Size18,
29
+ },
30
+ caption = {
31
+ font = font,
32
+ size = Enum.FontSize.Size14,
33
+ },
34
+ },
35
+ colors = {
36
+ intents = {
37
+ primary = {
38
+ default = {
39
+ textColor = Color3.fromHex("#FFF7CF"),
40
+ },
41
+ },
42
+ },
43
+ },
44
+ components = {
45
+ button = {
46
+ cornerRadius = 0,
47
+ backgroundTransparency = 1,
48
+ borderThickness = 0,
49
+ intents = {
50
+ primary = {
51
+ default = {
52
+ textColor = Color3.fromHex("#FFF7CF"),
53
+ backgroundImage = {
54
+ image = 92016395170536,
55
+ slice = "10 5 240 40",
56
+ tintColor = Color3.fromHex("#A16B30"),
57
+ },
58
+ },
59
+ hover = {
60
+ backgroundImage = {
61
+ tintColor = Color3.fromHex("#BA854A"),
62
+ },
63
+ },
64
+ disabled = {
65
+ textColor = Color3.fromHex("#a4a29f"),
66
+ backgroundImage = {
67
+ transparency = 0.3,
68
+ },
69
+ },
70
+ },
71
+ success = {
72
+ default = {
73
+ backgroundImage = {
74
+ tintColor = Color3.fromHex("#63ff00"),
75
+ },
76
+ },
77
+ hover = {
78
+ backgroundImage = {
79
+ tintColor = Color3.fromHex("#29ff52"),
80
+ },
81
+ },
82
+ },
83
+ info = {
84
+ default = {
85
+ backgroundImage = {
86
+ tintColor = Color3.fromHex("#00bfff"),
87
+ },
88
+ },
89
+ hover = {
90
+ backgroundImage = {
91
+ tintColor = Color3.fromHex("#29d4ff"),
92
+ },
93
+ },
94
+ },
95
+ warning = {
96
+ default = {
97
+ backgroundImage = {
98
+ tintColor = Color3.fromHex("#ffbf00"),
99
+ },
100
+ },
101
+ hover = {
102
+ backgroundImage = {
103
+ tintColor = Color3.fromHex("#ffd429"),
104
+ },
105
+ },
106
+ },
107
+ danger = {
108
+ default = {
109
+ backgroundImage = {
110
+ tintColor = Color3.fromHex("#ff0000"),
111
+ },
112
+ },
113
+ hover = {
114
+ backgroundImage = {
115
+ tintColor = Color3.fromHex("#ff2929"),
116
+ },
117
+ },
118
+ },
119
+ },
120
+ },
121
+ accordion = {
122
+ borderColor = Color3.fromHex("#3D2712"),
123
+ borderThickness = 2,
124
+ cornerRadius = 0,
125
+ header = {
126
+ indicatorSize = 14,
127
+ indicatorColor = Color3.fromHex("#FFF7CF"),
128
+ intents = {
129
+ primary = {
130
+ default = {
131
+ textColor = Color3.fromHex("#FFF7CF"),
132
+ backgroundTransparency = 1,
133
+ backgroundImage = {
134
+ image = 92016395170536,
135
+ slice = "10 5 240 40",
136
+ tintColor = Color3.fromHex("#7A4A20"),
137
+ },
138
+ },
139
+ hover = {
140
+ textColor = Color3.fromHex("#FFF7CF"),
141
+ backgroundImage = {
142
+ tintColor = Color3.fromHex("#A16B30"),
143
+ },
144
+ },
145
+ focus = {
146
+ textColor = Color3.fromHex("#FFF7CF"),
147
+ backgroundImage = {
148
+ tintColor = Color3.fromHex("#BA854A"),
149
+ },
150
+ },
151
+ disabled = {
152
+ textColor = Color3.fromHex("#a4a29f"),
153
+ backgroundTransparency = 1,
154
+ backgroundImage = {
155
+ transparency = 0.3,
156
+ },
157
+ },
158
+ },
159
+ },
160
+ },
161
+ content = {
162
+ backgroundColor = Color3.fromHex("#5C3A18"),
163
+ backgroundTransparency = 0,
164
+ },
165
+ },
166
+ tabs = {
167
+ backgroundImage = {
168
+ image = 137043424796720,
169
+ tintColor = Color3.fromHex("#8a5a28"),
170
+ size = "Tile",
171
+ tileSize = "200px",
172
+ },
173
+ borderColor = Color3.fromHex("#331d07"),
174
+ cornerRadius = 8,
175
+ list = {
176
+ borderThickness = 0,
177
+ cornerRadius = 0,
178
+ backgroundTransparency = 1,
179
+ backgroundImage = {
180
+ image = 92016395170536,
181
+ slice = "10 5 240 40",
182
+ tintColor = Color3.fromHex("#5C3A18"),
183
+ },
184
+ },
185
+ button = {
186
+ cornerRadius = 0,
187
+ borderThickness = 0,
188
+ intents = {
189
+ primary = {
190
+ default = {
191
+ textColor = Color3.fromHex("#FFF7CF"),
192
+ backgroundTransparency = 1,
193
+ backgroundImage = {
194
+ image = 92016395170536,
195
+ slice = "10 5 240 40",
196
+ tintColor = Color3.fromHex("#A16B30"),
197
+ },
198
+ },
199
+ hover = {
200
+ textColor = Color3.fromHex("#d3cba3"),
201
+ backgroundTransparency = 1,
202
+ backgroundImage = {
203
+ tintColor = Color3.fromHex("#BA854A"),
204
+ },
205
+ },
206
+ focus = {
207
+ textColor = Color3.fromHex("#FFF7CF"),
208
+ backgroundTransparency = 1,
209
+ backgroundImage = {
210
+ tintColor = Color3.fromHex("#7A4A20"),
211
+ },
212
+ },
213
+ },
214
+ success = {
215
+ default = {
216
+ backgroundTransparency = 1,
217
+ backgroundImage = {
218
+ tintColor = Color3.fromHex("#63ff00"),
219
+ },
220
+ },
221
+ hover = {
222
+ backgroundTransparency = 1,
223
+ backgroundImage = {
224
+ tintColor = Color3.fromHex("#29ff52"),
225
+ },
226
+ },
227
+ },
228
+ info = {
229
+ default = {
230
+ backgroundTransparency = 1,
231
+ backgroundImage = {
232
+ tintColor = Color3.fromHex("#00bfff"),
233
+ },
234
+ },
235
+ hover = {
236
+ backgroundTransparency = 1,
237
+ backgroundImage = {
238
+ tintColor = Color3.fromHex("#29d4ff"),
239
+ },
240
+ },
241
+ },
242
+ warning = {
243
+ default = {
244
+ backgroundTransparency = 1,
245
+ backgroundImage = {
246
+ tintColor = Color3.fromHex("#ffbf00"),
247
+ },
248
+ },
249
+ hover = {
250
+ backgroundTransparency = 1,
251
+ backgroundImage = {
252
+ tintColor = Color3.fromHex("#ffd429"),
253
+ },
254
+ },
255
+ },
256
+ danger = {
257
+ default = {
258
+ backgroundTransparency = 1,
259
+ backgroundImage = {
260
+ tintColor = Color3.fromHex("#ff0000"),
261
+ },
262
+ },
263
+ hover = {
264
+ backgroundTransparency = 1,
265
+ backgroundImage = {
266
+ tintColor = Color3.fromHex("#ff2929"),
267
+ },
268
+ },
269
+ },
270
+ },
271
+ },
272
+ },
273
+ box = {
274
+ borderThickness = 0,
275
+ boxShadow = 0,
276
+ cornerRadius = 0,
277
+ backgroundTransparency = 1,
278
+ padding = "35px 40px 40px 40px",
279
+ backgroundImage = {
280
+ image = 89050878990049,
281
+ slice = "54 55 969 565",
282
+ },
283
+ },
284
+ input = {
285
+ cornerRadius = 0,
286
+ borderThickness = 0,
287
+ backgroundImage = {
288
+ image = 92016395170536,
289
+ slice = "10 5 248 44",
290
+ tintColor = Color3.fromHex("#295896"),
291
+ },
292
+ placeholder = {
293
+ color = Color3.fromHex("#546b8a"),
294
+ },
295
+ },
296
+ card = {
297
+ borderThickness = 0,
298
+ cornerRadius = 0,
299
+ body = {
300
+ padding = "10px 40px",
301
+ },
302
+ header = {
303
+ intents = {
304
+ primary = {
305
+ default = {
306
+ textColor = Color3.fromHex("#FFF7CF"),
307
+ borderColor = Color3.fromHex("#3D2712"),
308
+ backgroundTransparency = 1,
309
+ backgroundImage = {
310
+ image = 92016395170536,
311
+ slice = "10 5 240 40",
312
+ tintColor = Color3.fromHex("#7A4A20"),
313
+ },
314
+ },
315
+ },
316
+ success = {
317
+ default = {
318
+ backgroundTransparency = 1,
319
+ backgroundImage = {
320
+ tintColor = Color3.fromHex("#4E6A24"),
321
+ },
322
+ },
323
+ },
324
+ info = {
325
+ default = {
326
+ backgroundTransparency = 1,
327
+ backgroundImage = {
328
+ tintColor = Color3.fromHex("#2C5270"),
329
+ },
330
+ },
331
+ },
332
+ warning = {
333
+ default = {
334
+ backgroundTransparency = 1,
335
+ backgroundImage = {
336
+ tintColor = Color3.fromHex("#A67A20"),
337
+ },
338
+ },
339
+ },
340
+ danger = {
341
+ default = {
342
+ backgroundTransparency = 1,
343
+ backgroundImage = {
344
+ tintColor = Color3.fromHex("#7A3220"),
345
+ },
346
+ },
347
+ },
348
+ },
349
+ position = {
350
+ position = "absolute",
351
+ center = "x",
352
+ top = "0px",
353
+ zIndex = 2,
354
+ },
355
+ },
356
+ footer = {
357
+ spacing = {
358
+ xs = 1,
359
+ sm = 2,
360
+ md = 4,
361
+ lg = 6,
362
+ xl = 6,
363
+ },
364
+ intents = {
365
+ primary = {
366
+ default = {
367
+ textColor = Color3.fromHex("#FFF7CF"),
368
+ borderColor = Color3.fromHex("#3D2712"),
369
+ backgroundTransparency = 1,
370
+ backgroundImage = {
371
+ image = 92016395170536,
372
+ slice = "10 5 240 40",
373
+ tintColor = Color3.fromHex("#7A4A20"),
374
+ },
375
+ },
376
+ },
377
+ success = {
378
+ default = {
379
+ backgroundTransparency = 1,
380
+ backgroundImage = {
381
+ tintColor = Color3.fromHex("#4E6A24"),
382
+ },
383
+ },
384
+ },
385
+ info = {
386
+ default = {
387
+ backgroundTransparency = 1,
388
+ backgroundImage = {
389
+ tintColor = Color3.fromHex("#2C5270"),
390
+ },
391
+ },
392
+ },
393
+ warning = {
394
+ default = {
395
+ backgroundTransparency = 1,
396
+ backgroundImage = {
397
+ tintColor = Color3.fromHex("#A67A20"),
398
+ },
399
+ },
400
+ },
401
+ danger = {
402
+ default = {
403
+ backgroundTransparency = 1,
404
+ backgroundImage = {
405
+ tintColor = Color3.fromHex("#7A3220"),
406
+ },
407
+ },
408
+ },
409
+ },
410
+ position = {
411
+ position = "absolute",
412
+ bottom = "0px",
413
+ left = "50px",
414
+ right = "50px",
415
+ zIndex = 2,
416
+ },
417
+ },
418
+ },
419
+ select = {
420
+ cornerRadius = 0,
421
+ borderThickness = 0,
422
+ dropDownBackgroundColor = Color3.fromHex("#295896"),
423
+ backgroundImage = {
424
+ image = 92016395170536,
425
+ slice = "10 5 248 44",
426
+ tintColor = Color3.fromHex("#295896"),
427
+ },
428
+ intents = {
429
+ primary = {
430
+ default = {
431
+ textColor = Color3.fromHex("#FFF7CF"),
432
+ backgroundColor = Color3.fromHex("#295896"),
433
+ },
434
+ hover = {
435
+ textColor = Color3.fromHex("#FFF7CF"),
436
+ backgroundColor = Color3.fromHex("#376FAF"),
437
+ },
438
+ focus = {
439
+ textColor = Color3.fromHex("#FFF7CF"),
440
+ backgroundColor = Color3.fromHex("#1F477D"),
441
+ },
442
+ },
443
+ },
444
+ },
445
+ increment = {
446
+ button = {
447
+ intents = {
448
+ primary = {
449
+ default = {
450
+ backgroundImage = {
451
+ tintColor = Color3.fromHex("#6c6c6c"),
452
+ },
453
+ },
454
+ hover = {
455
+ backgroundImage = {
456
+ tintColor = Color3.fromHex("#847f7f"),
457
+ },
458
+ },
459
+ },
460
+ },
461
+ },
462
+ },
463
+ checkbox = {
464
+ cornerRadius = 4,
465
+ borderThickness = 3,
466
+ borderTransparency = 0,
467
+ backgroundImage = {
468
+ image = 84686427750506,
469
+ tintColor = Color3.fromHex("#A16B30"),
470
+ },
471
+ intents = {
472
+ primary = {
473
+ default = {
474
+ borderColor = Color3.fromHex("#3D2712"),
475
+ textColor = Color3.fromHex("#FFF7CF"),
476
+ },
477
+ },
478
+ success = {
479
+ default = {
480
+ borderColor = Color3.fromHex("#311f0e"),
481
+ },
482
+ },
483
+ info = {
484
+ default = {
485
+ textColor = Color3.fromHex("#00bfff"),
486
+ },
487
+ },
488
+ danger = {
489
+ default = {
490
+ textColor = Color3.fromHex("#ff0000"),
491
+ },
492
+ },
493
+ },
494
+ },
495
+ slider = {
496
+ height = 20,
497
+ bar = {
498
+ height = "50%",
499
+ padding = 10,
500
+ backgroundColor = Color3.fromHex("#5C3A18"),
501
+ backgroundTransparency = 0,
502
+ borderThickness = 1,
503
+ borderColor = Color3.fromHex("#3D2712"),
504
+ cornerRadius = 4,
505
+ highlight = {
506
+ backgroundColor = Color3.fromHex("#A16B30"),
507
+ backgroundTransparency = 0,
508
+ borderColor = Color3.fromHex("#3D2712"),
509
+ },
510
+ },
511
+ handle = {
512
+ boxShadow = "0px 0px 5px 5px",
513
+ backgroundColor = Color3.fromHex("#BA854A"),
514
+ backgroundTransparency = 0,
515
+ borderThickness = 2,
516
+ borderColor = Color3.fromHex("#3D2712"),
517
+ cornerRadius = "100%",
518
+ },
519
+ },
520
+ toast = {
521
+ intents = {
522
+ primary = {
523
+ backgroundTransparency = 1,
524
+ },
525
+ },
526
+ },
527
+ tooltip = {
528
+ cornerRadius = 0,
529
+ intents = {
530
+ primary = {
531
+ textColor = Color3.fromHex("#FFF7CF"),
532
+ backgroundColor = Color3.fromHex("#7A4A20"),
533
+ borderColor = Color3.fromHex("#3D2712"),
534
+ backgroundTransparency = 0,
535
+ },
536
+ success = {
537
+ backgroundColor = Color3.fromHex("#4E6A24"),
538
+ },
539
+ info = {
540
+ backgroundColor = Color3.fromHex("#2C5270"),
541
+ },
542
+ warning = {
543
+ backgroundColor = Color3.fromHex("#A67A20"),
544
+ },
545
+ danger = {
546
+ backgroundColor = Color3.fromHex("#7A3220"),
547
+ },
548
+ },
549
+ },
550
+ },
551
+ })
552
+ return {
553
+ WoodenTheme = WoodenTheme,
554
+ }
package/out/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export * from "./Components";
2
- export * from "./Helpers";
3
- export * from "./Helpers/create-ui-story";
4
- export * from "./Theme";
5
- export * from "./Interfaces";
6
- export * from "./Providers";
7
- export * from "./Providers/app.provider";
8
- export * from "./Contexts";
1
+ export * from './Components';
2
+ export * from './Helpers';
3
+ export * from './Helpers/create-ui-story';
4
+ export * from './Theme';
5
+ export * from './Interfaces';
6
+ export * from './Providers';
7
+ export * from './Providers/app.provider';
8
+ export * from './Contexts';
package/package.json CHANGED
@@ -1,29 +1,41 @@
1
1
  {
2
2
  "name": "@rbxts/react-clean-ui",
3
- "version": "1.0.36",
4
- "description": "",
3
+ "version": "1.1.0",
4
+ "description": "A clean UI library for Roblox TypeScript projects",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {
7
7
  "build": "rbxtsc",
8
8
  "watch": "rbxtsc -w",
9
9
  "prepublishOnly": "npm run build",
10
- "screenshots": "node scripts/generate-screenshots.js"
10
+ "screenshots": "node scripts/generate-screenshots.js",
11
+ "lint": "eslint src/",
12
+ "typecheck": "tsc --noEmit",
13
+ "format": "prettier --write .",
14
+ "format:check": "prettier --check ."
11
15
  },
12
- "keywords": [],
13
- "author": "",
16
+ "keywords": [
17
+ "rbxts",
18
+ "react",
19
+ "ui",
20
+ "clean",
21
+ "shadercloud"
22
+ ],
23
+ "author": "ShaderCloud",
14
24
  "license": "ISC",
15
25
  "type": "commonjs",
16
26
  "types": "out/index.d.ts",
17
27
  "files": [
18
28
  "out",
19
- "!**/*.tsbuildinfo"
29
+ "!**/*.tsbuildinfo",
30
+ "!out/Tests/**"
20
31
  ],
21
32
  "publishConfig": {
22
33
  "access": "public"
23
34
  },
24
35
  "devDependencies": {
25
36
  "@rbxts/compiler-types": "^3.0.0-types.0",
26
- "@rbxts/react-screenshot-plugin": "^0.1.6",
37
+ "@rbxts/lunit": "^4.0.2",
38
+ "@rbxts/react-screenshot-plugin": "^0.1.7",
27
39
  "@rbxts/types": "^1.0.938",
28
40
  "@typescript-eslint/eslint-plugin": "^8.63.0",
29
41
  "@typescript-eslint/parser": "^8.63.0",