@grupo-elo-editorial/shared-ui-react 1.0.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.
- package/README.md +184 -0
- package/dist/components/atoms/Avatar.d.ts +12 -0
- package/dist/components/atoms/Badge.d.ts +12 -0
- package/dist/components/atoms/Button.d.ts +14 -0
- package/dist/components/atoms/Divider.d.ts +8 -0
- package/dist/components/atoms/Rating.d.ts +11 -0
- package/dist/components/atoms/Spinner.d.ts +10 -0
- package/dist/components/atoms/Textarea.d.ts +7 -0
- package/dist/components/atoms/index.d.ts +19 -0
- package/dist/components/figma/ImageWithFallback.d.ts +2 -0
- package/dist/components/molecules/FormGroup.d.ts +11 -0
- package/dist/components/molecules/PriceDisplay.d.ts +14 -0
- package/dist/components/molecules/ProductCard.d.ts +18 -0
- package/dist/components/molecules/QuantitySelector.d.ts +12 -0
- package/dist/components/molecules/SearchBar.d.ts +9 -0
- package/dist/components/molecules/index.d.ts +15 -0
- package/dist/components/organisms/EmptyState.d.ts +13 -0
- package/dist/components/organisms/ErrorState.d.ts +12 -0
- package/dist/components/organisms/Hero.d.ts +20 -0
- package/dist/components/organisms/ProductGrid.d.ts +13 -0
- package/dist/components/organisms/index.d.ts +10 -0
- package/dist/components/prd/HeroCarousel.d.ts +20 -0
- package/dist/components/prd/TopAccessibilityBar.d.ts +7 -0
- package/dist/components/prd/index.d.ts +4 -0
- package/dist/components/ui/accordion.d.ts +7 -0
- package/dist/components/ui/alert-dialog.d.ts +14 -0
- package/dist/components/ui/alert.d.ts +9 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/avatar.d.ts +6 -0
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/breadcrumb.d.ts +11 -0
- package/dist/components/ui/button.d.ts +10 -0
- package/dist/components/ui/calendar.d.ts +4 -0
- package/dist/components/ui/card.d.ts +9 -0
- package/dist/components/ui/carousel.d.ts +19 -0
- package/dist/components/ui/chart.d.ts +40 -0
- package/dist/components/ui/checkbox.d.ts +4 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/command.d.ts +16 -0
- package/dist/components/ui/context-menu.d.ts +25 -0
- package/dist/components/ui/dialog.d.ts +13 -0
- package/dist/components/ui/drawer.d.ts +13 -0
- package/dist/components/ui/dropdown-menu.d.ts +25 -0
- package/dist/components/ui/form.d.ts +24 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/input-otp.d.ts +11 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +4 -0
- package/dist/components/ui/menubar.d.ts +26 -0
- package/dist/components/ui/navigation-menu.d.ts +14 -0
- package/dist/components/ui/pagination.d.ts +13 -0
- package/dist/components/ui/popover.d.ts +7 -0
- package/dist/components/ui/progress.d.ts +4 -0
- package/dist/components/ui/radio-group.d.ts +5 -0
- package/dist/components/ui/resizable.d.ts +8 -0
- package/dist/components/ui/scroll-area.d.ts +5 -0
- package/dist/components/ui/select.d.ts +15 -0
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/sheet.d.ts +13 -0
- package/dist/components/ui/sidebar.d.ts +69 -0
- package/dist/components/ui/skeleton.d.ts +2 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/sonner.d.ts +3 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/tabs.d.ts +7 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/toggle-group.d.ts +7 -0
- package/dist/components/ui/toggle.d.ts +9 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/components/ui/use-mobile.d.ts +1 -0
- package/dist/components/ui/utils.d.ts +2 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1914 -0
- package/dist/index.js.map +1 -0
- package/dist/style.css +1 -0
- package/package.json +116 -0
package/package.json
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grupo-elo-editorial/shared-ui-react",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Grupo ELO Editorial — React component library. Multibrand-aware primitives (atoms/molecules/organisms) and domain components, built on Radix UI + shadcn/ui, consuming @grupo-elo-editorial/design-tokens. Tailwind CSS v4 bundled.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"private": false,
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/datametria/ELOEDITORIAL-ecosystem/tree/main/packages/shared-ui-react",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/datametria/ELOEDITORIAL-ecosystem.git",
|
|
14
|
+
"directory": "packages/shared-ui-react"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"design-system",
|
|
18
|
+
"react",
|
|
19
|
+
"radix-ui",
|
|
20
|
+
"shadcn",
|
|
21
|
+
"tailwindcss",
|
|
22
|
+
"components",
|
|
23
|
+
"multi-brand",
|
|
24
|
+
"elo-editora",
|
|
25
|
+
"perabook",
|
|
26
|
+
"grupo-elo-editorial"
|
|
27
|
+
],
|
|
28
|
+
"type": "module",
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"module": "./dist/index.js",
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"sideEffects": [
|
|
33
|
+
"*.css"
|
|
34
|
+
],
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"development": {
|
|
38
|
+
"types": "./src/index.ts",
|
|
39
|
+
"default": "./src/index.ts"
|
|
40
|
+
},
|
|
41
|
+
"types": "./dist/index.d.ts",
|
|
42
|
+
"import": "./dist/index.js"
|
|
43
|
+
},
|
|
44
|
+
"./style.css": "./dist/style.css",
|
|
45
|
+
"./package.json": "./package.json"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"README.md",
|
|
50
|
+
"CHANGELOG.md"
|
|
51
|
+
],
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "vite build && tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
54
|
+
"type-check": "tsc --noEmit",
|
|
55
|
+
"play": "vite --config playground/vite.config.ts",
|
|
56
|
+
"prepack": "npm run build"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
60
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@grupo-elo-editorial/design-tokens": "workspace:*",
|
|
64
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
65
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
66
|
+
"@radix-ui/react-aspect-ratio": "^1.1.2",
|
|
67
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
68
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
69
|
+
"@radix-ui/react-collapsible": "^1.1.3",
|
|
70
|
+
"@radix-ui/react-context-menu": "^2.2.6",
|
|
71
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
72
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
73
|
+
"@radix-ui/react-hover-card": "^1.1.6",
|
|
74
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
75
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
76
|
+
"@radix-ui/react-navigation-menu": "^1.2.5",
|
|
77
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
78
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
79
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
80
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
81
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
82
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
83
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
84
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
85
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
86
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
87
|
+
"@radix-ui/react-toggle": "^1.1.2",
|
|
88
|
+
"@radix-ui/react-toggle-group": "^1.1.2",
|
|
89
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
90
|
+
"class-variance-authority": "^0.7.1",
|
|
91
|
+
"clsx": "^2.1.1",
|
|
92
|
+
"cmdk": "^1.1.1",
|
|
93
|
+
"embla-carousel-react": "^8.6.0",
|
|
94
|
+
"input-otp": "^1.4.2",
|
|
95
|
+
"lucide-react": "^0.487.0",
|
|
96
|
+
"next-themes": "^0.4.6",
|
|
97
|
+
"react-day-picker": "^8.10.1",
|
|
98
|
+
"react-hook-form": "^7.55.0",
|
|
99
|
+
"react-resizable-panels": "^2.1.7",
|
|
100
|
+
"recharts": "^2.15.2",
|
|
101
|
+
"sonner": "^2.0.3",
|
|
102
|
+
"tailwind-merge": "^3.2.0",
|
|
103
|
+
"vaul": "^1.1.2"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
107
|
+
"@types/react": "~19.1.10",
|
|
108
|
+
"@types/react-dom": "~19.1.10",
|
|
109
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
110
|
+
"react": "^19.1.0",
|
|
111
|
+
"react-dom": "^19.1.0",
|
|
112
|
+
"tailwindcss": "^4.1.12",
|
|
113
|
+
"typescript": "~5.9.2",
|
|
114
|
+
"vite": "^6.3.5"
|
|
115
|
+
}
|
|
116
|
+
}
|