@g4rcez/components 4.0.0 → 4.0.2

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 (63) hide show
  1. package/dist/components/core/typography.d.ts +1 -0
  2. package/dist/components/core/typography.d.ts.map +1 -1
  3. package/dist/components/display/progress.d.ts +1 -1
  4. package/dist/components/page-calendar/day-view.d.ts.map +1 -1
  5. package/dist/components/page-calendar/month-view.d.ts.map +1 -1
  6. package/dist/components/page-calendar/page-calendar.utils.d.ts +6 -0
  7. package/dist/components/page-calendar/page-calendar.utils.d.ts.map +1 -1
  8. package/dist/components/page-calendar/week-view.d.ts.map +1 -1
  9. package/dist/index.css +1 -1
  10. package/dist/index.js +751 -700
  11. package/dist/index.js.map +1 -1
  12. package/package.json +4 -4
  13. /package/{dist/ai → ai}/SKILL.md +0 -0
  14. /package/{dist/ai → ai}/docs/Alert.md +0 -0
  15. /package/{dist/ai → ai}/docs/AnimatedList.md +0 -0
  16. /package/{dist/ai → ai}/docs/Autocomplete.md +0 -0
  17. /package/{dist/ai → ai}/docs/Button.md +0 -0
  18. /package/{dist/ai → ai}/docs/Calendar.md +0 -0
  19. /package/{dist/ai → ai}/docs/Card.md +0 -0
  20. /package/{dist/ai → ai}/docs/Checkbox.md +0 -0
  21. /package/{dist/ai → ai}/docs/CommandPalette.md +0 -0
  22. /package/{dist/ai → ai}/docs/DatePicker.md +0 -0
  23. /package/{dist/ai → ai}/docs/Dropdown.md +0 -0
  24. /package/{dist/ai → ai}/docs/Empty.md +0 -0
  25. /package/{dist/ai → ai}/docs/Expand.md +0 -0
  26. /package/{dist/ai → ai}/docs/FileUpload.md +0 -0
  27. /package/{dist/ai → ai}/docs/Form.md +0 -0
  28. /package/{dist/ai → ai}/docs/FormReset.md +0 -0
  29. /package/{dist/ai → ai}/docs/Heading.md +0 -0
  30. /package/{dist/ai → ai}/docs/Input.md +0 -0
  31. /package/{dist/ai → ai}/docs/InputField.md +0 -0
  32. /package/{dist/ai → ai}/docs/List.md +0 -0
  33. /package/{dist/ai → ai}/docs/Menu.md +0 -0
  34. /package/{dist/ai → ai}/docs/Modal.md +0 -0
  35. /package/{dist/ai → ai}/docs/MultiSelect.md +0 -0
  36. /package/{dist/ai → ai}/docs/Notifications.md +0 -0
  37. /package/{dist/ai → ai}/docs/PageCalendar.md +0 -0
  38. /package/{dist/ai → ai}/docs/Polymorph.md +0 -0
  39. /package/{dist/ai → ai}/docs/Progress.md +0 -0
  40. /package/{dist/ai → ai}/docs/Radiobox.md +0 -0
  41. /package/{dist/ai → ai}/docs/RenderOnView.md +0 -0
  42. /package/{dist/ai → ai}/docs/Resizable.md +0 -0
  43. /package/{dist/ai → ai}/docs/Select.md +0 -0
  44. /package/{dist/ai → ai}/docs/Shortcut.md +0 -0
  45. /package/{dist/ai → ai}/docs/Skeleton.md +0 -0
  46. /package/{dist/ai → ai}/docs/Slider.md +0 -0
  47. /package/{dist/ai → ai}/docs/Slot.md +0 -0
  48. /package/{dist/ai → ai}/docs/Spinner.md +0 -0
  49. /package/{dist/ai → ai}/docs/Stats.md +0 -0
  50. /package/{dist/ai → ai}/docs/Step.md +0 -0
  51. /package/{dist/ai → ai}/docs/Switch.md +0 -0
  52. /package/{dist/ai → ai}/docs/Table.md +0 -0
  53. /package/{dist/ai → ai}/docs/Tabs.md +0 -0
  54. /package/{dist/ai → ai}/docs/Tag.md +0 -0
  55. /package/{dist/ai → ai}/docs/TaskList.md +0 -0
  56. /package/{dist/ai → ai}/docs/Textarea.md +0 -0
  57. /package/{dist/ai → ai}/docs/Timeline.md +0 -0
  58. /package/{dist/ai → ai}/docs/Toolbar.md +0 -0
  59. /package/{dist/ai → ai}/docs/Tooltip.md +0 -0
  60. /package/{dist/ai → ai}/docs/TransferList.md +0 -0
  61. /package/{dist/ai → ai}/docs/Typography.md +0 -0
  62. /package/{dist/ai → ai}/docs/Wizard.md +0 -0
  63. /package/{dist/ai → ai}/docs/index.md +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@g4rcez/components",
3
3
  "description": "Customizable react components.",
4
- "version": "4.0.0",
4
+ "version": "4.0.2",
5
5
  "sideEffects": false,
6
6
  "private": false,
7
7
  "packageManager": "pnpm@10.12.3",
@@ -24,7 +24,7 @@
24
24
  "scripts": {
25
25
  "watch": "vite build --watch --minify false",
26
26
  "prepublishOnly": "npm run build",
27
- "build": "rm -rf ./dist; vite build; npm run lib:types; npm run preset; npm run lib:css; cp -r ai dist",
27
+ "build": "cp ../../skills/g4rcez-components/SKILL.md ./ai/SKILL.md; rm -rf ./dist; vite build; npm run lib:types; npm run preset; npm run lib:css",
28
28
  "format": "npx prettier --write .",
29
29
  "lib:css": "BUILD_LIB=true tailwind -i ./src/index.css -o ./dist/index.css --minify",
30
30
  "lib:tailwind": "tsc -p tsconfig.tailwind.json",
@@ -92,7 +92,7 @@
92
92
  "files": [
93
93
  "dist",
94
94
  "dist/index.css",
95
- "dist/ai"
95
+ "ai"
96
96
  ],
97
97
  "exports": {
98
98
  ".": {
@@ -296,6 +296,6 @@
296
296
  "require": "./dist/components/display/alert.js",
297
297
  "default": "./dist/components/display/alert.js"
298
298
  },
299
- "./ai/*": "./**"
299
+ "./ai/*": "./ai/*"
300
300
  }
301
301
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes