siesa-ui-kit 1.0.3 → 1.0.4
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 +115 -115
- package/bin/install.cjs +502 -502
- package/bin/prepare-publish.cjs +28 -28
- package/bin/restore-folders.cjs +28 -28
- package/claude/agents/siesa-ui-kit-specialist.md +2445 -0
- package/claude/prompts/component-template.md +121 -0
- package/claude/prompts/siesa-ui-kit.md +28 -0
- package/claude/settings.local.json +72 -0
- package/dist/components/Button/icons.d.ts +6 -5
- package/dist/components/Button/icons.d.ts.map +1 -1
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.d.ts.map +1 -1
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.types.d.ts +21 -0
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.types.d.ts.map +1 -1
- package/dist/components/NavigationRailCommercial/NavigationRailCommercial.d.ts +122 -0
- package/dist/components/NavigationRailCommercial/NavigationRailCommercial.d.ts.map +1 -0
- package/dist/components/NavigationRailCommercial/NavigationRailCommercial.types.d.ts +139 -0
- package/dist/components/NavigationRailCommercial/NavigationRailCommercial.types.d.ts.map +1 -0
- package/dist/components/NavigationRailCommercial/icons.d.ts +33 -0
- package/dist/components/NavigationRailCommercial/icons.d.ts.map +1 -0
- package/dist/components/NavigationRailCommercial/index.d.ts +4 -0
- package/dist/components/NavigationRailCommercial/index.d.ts.map +1 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.d.ts.map +1 -1
- package/dist/components/NavigationRailItem/NavigationRailItem.types.d.ts +7 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.types.d.ts.map +1 -1
- package/dist/components/NavigationRailTypes/NavigationRailTypes.d.ts.map +1 -1
- package/dist/components/NavigationRailTypes/NavigationRailTypes.types.d.ts +41 -0
- package/dist/components/NavigationRailTypes/NavigationRailTypes.types.d.ts.map +1 -1
- package/dist/components/NavigationRailTypes/icons.d.ts +15 -29
- package/dist/components/NavigationRailTypes/icons.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Select/icons.d.ts +6 -2
- package/dist/components/Select/icons.d.ts.map +1 -1
- package/dist/index.d.ts +32 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/siesa-ui-kit.cjs +404 -190
- package/dist/siesa-ui-kit.cjs.map +1 -1
- package/dist/siesa-ui-kit.mjs +6590 -1506
- package/dist/siesa-ui-kit.mjs.map +1 -1
- package/dist/views/LayoutCommercial/LayoutCommercial.d.ts +48 -0
- package/dist/views/LayoutCommercial/LayoutCommercial.d.ts.map +1 -0
- package/dist/views/LayoutCommercial/LayoutCommercial.types.d.ts +49 -0
- package/dist/views/LayoutCommercial/LayoutCommercial.types.d.ts.map +1 -0
- package/dist/views/LayoutCommercial/index.d.ts +3 -0
- package/dist/views/LayoutCommercial/index.d.ts.map +1 -0
- package/docs/border-radius.md +1261 -0
- package/docs/colors.md +832 -0
- package/docs/dark-mode-guide.md +1426 -0
- package/docs/filters.md +1243 -0
- package/docs/icons.md +1264 -0
- package/docs/shadows.md +1377 -0
- package/docs/spacing.md +1684 -0
- package/docs/typography.md +1268 -0
- package/package.json +111 -103
- package/postcss.config.cjs +6 -0
- package/public/,Business Logo.png +0 -0
- package/public/.Siesa Logo.png +0 -0
- package/public/bg_siesa.png +0 -0
- package/public/siesa_logo_mobile.png +0 -0
- package/public/vite.svg +1 -0
- package/src/App.css +42 -0
- package/src/App.tsx +8 -0
- package/src/ButtonTest.tsx +147 -0
- package/src/assets/fonts/README.md +261 -0
- package/src/assets/fonts/SiesaBT/SiesaBT-Bold.otf +0 -0
- package/src/assets/fonts/SiesaBT/SiesaBT-Light.otf +0 -0
- package/src/assets/fonts/SiesaBT/SiesaBT-Regular.otf +0 -0
- package/src/assets/react.svg +1 -0
- package/src/components/Alert/Alert.stories.tsx +332 -0
- package/src/components/Alert/Alert.tsx +106 -0
- package/src/components/Alert/Alert.types.ts +54 -0
- package/src/components/Avatar/Avatar.stories.tsx +494 -0
- package/src/components/Avatar/Avatar.tsx +143 -0
- package/src/components/Avatar/Avatar.types.ts +53 -0
- package/src/components/Badge/Badge.stories.tsx +339 -0
- package/src/components/Badge/Badge.tsx +278 -0
- package/src/components/Badge/Badge.types.ts +58 -0
- package/src/components/Button/Button.stories.tsx +950 -0
- package/src/components/Button/Button.tsx +337 -0
- package/src/components/Button/Button.types.ts +180 -0
- package/src/components/Button/icons.tsx +48 -0
- package/src/components/Button/index.ts +3 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +453 -0
- package/src/components/Checkbox/Checkbox.tsx +208 -0
- package/src/components/Checkbox/Checkbox.types.ts +61 -0
- package/src/components/DescriptionList/DescriptionList.stories.tsx +250 -0
- package/src/components/DescriptionList/DescriptionList.tsx +96 -0
- package/src/components/DescriptionList/DescriptionList.types.ts +29 -0
- package/src/components/Divider/Divider.stories.tsx +263 -0
- package/src/components/Divider/Divider.tsx +80 -0
- package/src/components/Divider/Divider.types.ts +24 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +552 -0
- package/src/components/Dropdown/Dropdown.tsx +422 -0
- package/src/components/Dropdown/Dropdown.types.ts +146 -0
- package/src/components/Dropdown/README.md +266 -0
- package/src/components/Dropdown/icons.tsx +72 -0
- package/src/components/Dropdown/index.ts +8 -0
- package/src/components/DropdownItemCollapsible/DropdownItemCollapsible.stories.tsx +317 -0
- package/src/components/DropdownItemCollapsible/DropdownItemCollapsible.tsx +307 -0
- package/src/components/DropdownItemCollapsible/DropdownItemCollapsible.types.ts +136 -0
- package/src/components/DropdownItemCollapsible/README.md +264 -0
- package/src/components/DropdownItemCollapsible/icons.tsx +57 -0
- package/src/components/DropdownItemCollapsible/index.ts +12 -0
- package/src/components/DropdownItemHeading/DropdownItemHeading.stories.tsx +386 -0
- package/src/components/DropdownItemHeading/DropdownItemHeading.tsx +216 -0
- package/src/components/DropdownItemHeading/DropdownItemHeading.types.ts +93 -0
- package/src/components/DropdownItemHeading/README.md +573 -0
- package/src/components/DropdownItemHeading/icons.tsx +125 -0
- package/src/components/DropdownItemHeading/index.ts +3 -0
- package/src/components/Input/Input.stories.tsx +583 -0
- package/src/components/Input/Input.tsx +204 -0
- package/src/components/Input/Input.types.ts +80 -0
- package/src/components/Input/icons.tsx +145 -0
- package/src/components/Input/index.ts +2 -0
- package/src/components/LoginView/LoginView.stories.tsx +148 -0
- package/src/components/LoginView/LoginView.tsx +426 -0
- package/src/components/LoginView/LoginView.types.ts +52 -0
- package/src/components/LoginView/README.md +396 -0
- package/src/components/LoginView/icons.tsx +85 -0
- package/src/components/LoginView/index.ts +3 -0
- package/src/components/Navbar/Navbar.stories.tsx +810 -0
- package/src/components/Navbar/Navbar.tsx +755 -0
- package/src/components/Navbar/Navbar.types.ts +219 -0
- package/src/components/Navbar/README.md +279 -0
- package/src/components/Navbar/icons.tsx +102 -0
- package/src/components/Navbar/index.ts +8 -0
- package/src/components/NavigationBar/NavigationBar.stories.tsx +406 -0
- package/src/components/NavigationBar/NavigationBar.tsx +246 -0
- package/src/components/NavigationBar/NavigationBar.types.ts +74 -0
- package/src/components/NavigationBar/README.md +469 -0
- package/src/components/NavigationBar/index.ts +2 -0
- package/src/components/NavigationRail/NavigationRail.stories.tsx +417 -0
- package/src/components/NavigationRail/NavigationRail.tsx +418 -0
- package/src/components/NavigationRail/NavigationRail.types.ts +109 -0
- package/src/components/NavigationRail/README.md +224 -0
- package/src/components/NavigationRail/index.ts +2 -0
- package/src/components/NavigationRailCommercial/NavigationRailCommercial.stories.tsx +464 -0
- package/src/components/NavigationRailCommercial/NavigationRailCommercial.tsx +301 -0
- package/src/components/NavigationRailCommercial/NavigationRailCommercial.types.ts +162 -0
- package/src/components/NavigationRailCommercial/README.md +251 -0
- package/src/components/NavigationRailCommercial/icons.tsx +54 -0
- package/src/components/NavigationRailCommercial/index.ts +6 -0
- package/src/components/NavigationRailItem/NavigationRailItem.stories.tsx +667 -0
- package/src/components/NavigationRailItem/NavigationRailItem.tsx +314 -0
- package/src/components/NavigationRailItem/NavigationRailItem.types.ts +175 -0
- package/src/components/NavigationRailItem/README.md +476 -0
- package/src/components/NavigationRailItem/index.ts +2 -0
- package/src/components/NavigationRailPanel/NavigationRailPanel.stories.tsx +462 -0
- package/src/components/NavigationRailPanel/NavigationRailPanel.tsx +332 -0
- package/src/components/NavigationRailPanel/NavigationRailPanel.types.ts +178 -0
- package/src/components/NavigationRailPanel/README.md +461 -0
- package/src/components/NavigationRailPanel/index.ts +6 -0
- package/src/components/NavigationRailTypes/NavigationRailTypes.stories.tsx +682 -0
- package/src/components/NavigationRailTypes/NavigationRailTypes.tsx +363 -0
- package/src/components/NavigationRailTypes/NavigationRailTypes.types.ts +178 -0
- package/src/components/NavigationRailTypes/README.md +573 -0
- package/src/components/NavigationRailTypes/icons.tsx +76 -0
- package/src/components/NavigationRailTypes/index.ts +7 -0
- package/src/components/Notification/Notification.stories.tsx +513 -0
- package/src/components/Notification/Notification.tsx +145 -0
- package/src/components/Notification/Notification.types.ts +142 -0
- package/src/components/Notification/README.md +409 -0
- package/src/components/Notification/index.ts +3 -0
- package/src/components/POSConvention/POSConvention.stories.tsx +235 -0
- package/src/components/POSConvention/POSConvention.tsx +129 -0
- package/src/components/POSConvention/POSConvention.types.ts +38 -0
- package/src/components/POSConvention/README.md +123 -0
- package/src/components/POSConvention/icons.tsx +45 -0
- package/src/components/POSConvention/index.ts +3 -0
- package/src/components/POSLocationButton/POSLocationButton.stories.tsx +531 -0
- package/src/components/POSLocationButton/POSLocationButton.tsx +247 -0
- package/src/components/POSLocationButton/POSLocationButton.types.ts +87 -0
- package/src/components/POSLocationButton/README.md +253 -0
- package/src/components/POSLocationButton/icons.tsx +120 -0
- package/src/components/POSLocationButton/index.ts +14 -0
- package/src/components/POSNumberButton/POSNumberButton.stories.tsx +415 -0
- package/src/components/POSNumberButton/POSNumberButton.tsx +179 -0
- package/src/components/POSNumberButton/POSNumberButton.types.ts +51 -0
- package/src/components/POSNumberButton/README.md +321 -0
- package/src/components/POSNumberButton/index.ts +3 -0
- package/src/components/POSProductButton/POSProductButton.stories.tsx +318 -0
- package/src/components/POSProductButton/POSProductButton.tsx +152 -0
- package/src/components/POSProductButton/POSProductButton.types.ts +46 -0
- package/src/components/POSProductButton/README.md +269 -0
- package/src/components/POSProductButton/index.ts +2 -0
- package/src/components/POSProductCard/POSProductCard.stories.tsx +642 -0
- package/src/components/POSProductCard/POSProductCard.tsx +208 -0
- package/src/components/POSProductCard/POSProductCard.types.ts +76 -0
- package/src/components/POSProductCard/README.md +179 -0
- package/src/components/POSProductCard/icons.tsx +26 -0
- package/src/components/POSProductCard/index.ts +2 -0
- package/src/components/POSProductSidebarItems/POSProductSidebarItems.stories.tsx +753 -0
- package/src/components/POSProductSidebarItems/POSProductSidebarItems.tsx +332 -0
- package/src/components/POSProductSidebarItems/POSProductSidebarItems.types.ts +119 -0
- package/src/components/POSProductSidebarItems/README.md +198 -0
- package/src/components/POSProductSidebarItems/icons.tsx +21 -0
- package/src/components/POSProductSidebarItems/index.ts +3 -0
- package/src/components/POSTable/POSTable.stories.tsx +737 -0
- package/src/components/POSTable/POSTable.tsx +401 -0
- package/src/components/POSTable/POSTable.types.ts +83 -0
- package/src/components/POSTable/README.md +286 -0
- package/src/components/POSTable/index.ts +7 -0
- package/src/components/Pagination/Pagination.stories.tsx +555 -0
- package/src/components/Pagination/Pagination.tsx +286 -0
- package/src/components/Pagination/Pagination.types.ts +93 -0
- package/src/components/Pagination/README.md +298 -0
- package/src/components/Pagination/icons.tsx +47 -0
- package/src/components/Pagination/index.ts +3 -0
- package/src/components/Quantity/Quantity.stories.tsx +457 -0
- package/src/components/Quantity/Quantity.tsx +289 -0
- package/src/components/Quantity/Quantity.types.ts +70 -0
- package/src/components/Radio/Radio.stories.tsx +523 -0
- package/src/components/Radio/Radio.tsx +170 -0
- package/src/components/Radio/Radio.types.ts +122 -0
- package/src/components/Select/README.md +299 -0
- package/src/components/Select/Select.stories.tsx +705 -0
- package/src/components/Select/Select.tsx +457 -0
- package/src/components/Select/Select.types.ts +148 -0
- package/src/components/Select/icons.tsx +25 -0
- package/src/components/Select/index.ts +3 -0
- package/src/components/SignUpView/SignUpView.stories.tsx +129 -0
- package/src/components/SignUpView/SignUpView.tsx +503 -0
- package/src/components/SignUpView/SignUpView.types.ts +58 -0
- package/src/components/SignUpView/icons.tsx +71 -0
- package/src/components/SignUpView/index.ts +3 -0
- package/src/components/Switch/README.md +112 -0
- package/src/components/Switch/Switch.stories.tsx +550 -0
- package/src/components/Switch/Switch.tsx +246 -0
- package/src/components/Switch/Switch.types.ts +67 -0
- package/src/components/Table/README.md +369 -0
- package/src/components/Table/Table.stories.tsx +805 -0
- package/src/components/Table/Table.tsx +688 -0
- package/src/components/Table/Table.types.ts +204 -0
- package/src/components/Table/index.ts +9 -0
- package/src/components/Tabs/README.md +201 -0
- package/src/components/Tabs/Tabs.stories.tsx +580 -0
- package/src/components/Tabs/Tabs.tsx +356 -0
- package/src/components/Tabs/Tabs.types.ts +127 -0
- package/src/components/Tabs/icons.tsx +129 -0
- package/src/components/Tabs/index.ts +11 -0
- package/src/components/Textarea/Textarea.stories.tsx +535 -0
- package/src/components/Textarea/Textarea.tsx +188 -0
- package/src/components/Textarea/Textarea.types.ts +54 -0
- package/src/context/ThemeContext.tsx +99 -0
- package/src/context/index.ts +1 -0
- package/src/index.css +29 -0
- package/src/index.ts +133 -0
- package/src/main.tsx +10 -0
- package/src/views/LayoutCommercial/LayoutCommercial.stories.tsx +374 -0
- package/src/views/LayoutCommercial/LayoutCommercial.tsx +125 -0
- package/src/views/LayoutCommercial/LayoutCommercial.types.ts +54 -0
- package/src/views/LayoutCommercial/README.md +286 -0
- package/src/views/LayoutCommercial/index.ts +2 -0
- package/src/views/ListView/ListView.stories.tsx +329 -0
- package/src/views/ListView/ListView.tsx +570 -0
- package/src/views/ListView/ListView.types.ts +211 -0
- package/src/views/ListView/icons.tsx +282 -0
- package/src/views/ListView/index.ts +11 -0
- package/src/views/LoginView/LoginView.stories.tsx +148 -0
- package/src/views/LoginView/LoginView.tsx +426 -0
- package/src/views/LoginView/LoginView.types.ts +52 -0
- package/src/views/LoginView/README.md +396 -0
- package/src/views/LoginView/icons.tsx +85 -0
- package/src/views/LoginView/index.ts +3 -0
- package/src/views/ProductsView/ProductsView.stories.tsx +344 -0
- package/src/views/ProductsView/ProductsView.tsx +480 -0
- package/src/views/ProductsView/ProductsView.types.ts +238 -0
- package/src/views/ProductsView/README.md +312 -0
- package/src/views/ProductsView/icons.tsx +38 -0
- package/src/views/ProductsView/index.ts +8 -0
- package/src/views/RecoverPasswordView/README.md +269 -0
- package/src/views/RecoverPasswordView/RecoverPasswordView.stories.tsx +131 -0
- package/src/views/RecoverPasswordView/RecoverPasswordView.tsx +376 -0
- package/src/views/RecoverPasswordView/RecoverPasswordView.types.ts +56 -0
- package/src/views/RecoverPasswordView/icons.tsx +17 -0
- package/src/views/RecoverPasswordView/index.ts +2 -0
- package/src/views/SignUpView/SignUpView.stories.tsx +129 -0
- package/src/views/SignUpView/SignUpView.tsx +503 -0
- package/src/views/SignUpView/SignUpView.types.ts +58 -0
- package/src/views/SignUpView/icons.tsx +71 -0
- package/src/views/SignUpView/index.ts +3 -0
- package/src/views/TableLayoutView/README.md +268 -0
- package/src/views/TableLayoutView/TableLayoutView.stories.tsx +235 -0
- package/src/views/TableLayoutView/TableLayoutView.tsx +461 -0
- package/src/views/TableLayoutView/TableLayoutView.types.ts +209 -0
- package/src/views/TableLayoutView/icons.tsx +113 -0
- package/src/views/TableLayoutView/index.ts +6 -0
- package/storybook/main.ts +20 -0
- package/storybook/preview.tsx +84 -0
- package/storybook/vitest.setup.ts +7 -0
- package/tailwind.config.js +128 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { forwardRef } from 'react';
|
|
2
|
+
import type { AvatarProps } from './Avatar.types';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Avatar - Componente de avatar del sistema de diseño Siesa
|
|
6
|
+
*
|
|
7
|
+
* Componente para mostrar imágenes de usuario o iniciales con soporte para:
|
|
8
|
+
* - Tamaños: 4 (20px), 6 (24px), 8 (32px), 10 (40px)
|
|
9
|
+
* - Tipos: circular (completamente redondo) y rounded (esquinas redondeadas)
|
|
10
|
+
* - Imagen o iniciales
|
|
11
|
+
* - Dark mode completo
|
|
12
|
+
*
|
|
13
|
+
* Mejores prácticas implementadas:
|
|
14
|
+
* - Orden de modificadores: {responsive}:{dark}:{state}:{utility}
|
|
15
|
+
* - Dark mode con estrategia 'class' (darkMode: 'class')
|
|
16
|
+
* - Tokens de color consistentes con la documentación
|
|
17
|
+
* - Tipografía adaptativa según tamaño
|
|
18
|
+
* - Type safety con TypeScript estricto
|
|
19
|
+
*
|
|
20
|
+
* @see docs/colors.md - Sistema de colores
|
|
21
|
+
* @see docs/typography.md - Sistema tipográfico
|
|
22
|
+
* @see docs/spacing.md - Sistema de espaciado
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```tsx
|
|
26
|
+
* // Con imagen
|
|
27
|
+
* <Avatar
|
|
28
|
+
* src="/path/to/image.jpg"
|
|
29
|
+
* alt="John Doe"
|
|
30
|
+
* size="10"
|
|
31
|
+
* type="circular"
|
|
32
|
+
* />
|
|
33
|
+
*
|
|
34
|
+
* // Con iniciales
|
|
35
|
+
* <Avatar
|
|
36
|
+
* initials="JD"
|
|
37
|
+
* size="10"
|
|
38
|
+
* type="circular"
|
|
39
|
+
* />
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
export const Avatar = forwardRef<HTMLDivElement, AvatarProps>(
|
|
43
|
+
(
|
|
44
|
+
{
|
|
45
|
+
size = '10',
|
|
46
|
+
type = 'circular',
|
|
47
|
+
src,
|
|
48
|
+
alt = '',
|
|
49
|
+
initials,
|
|
50
|
+
className = '',
|
|
51
|
+
...props
|
|
52
|
+
},
|
|
53
|
+
ref
|
|
54
|
+
) => {
|
|
55
|
+
// ===== CLASES DE TAMAÑO =====
|
|
56
|
+
// Tamaño del contenedor del avatar
|
|
57
|
+
const containerSizeClasses = {
|
|
58
|
+
'4': 'w-5 h-5',
|
|
59
|
+
'6': 'w-6 h-6',
|
|
60
|
+
'8': 'w-8 h-8',
|
|
61
|
+
'10': 'w-10 h-10',
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
// ===== CLASES DE TEXTO =====
|
|
65
|
+
// Tamaño de texto para iniciales (basado en sistema tipográfico)
|
|
66
|
+
const textSizeClasses = {
|
|
67
|
+
'4': 'text-xs', // 12px - Paragraph Tiny
|
|
68
|
+
'6': 'text-xs', // 12px - Paragraph Tiny
|
|
69
|
+
'8': 'text-sm', // 14px - Paragraph Small
|
|
70
|
+
'10': 'text-base', // 16px - Paragraph Base
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
// ===== CLASES DE TIPO (Forma) =====
|
|
74
|
+
const typeClasses = {
|
|
75
|
+
circular: 'rounded-full',
|
|
76
|
+
rounded: 'rounded-md',
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
// ===== CLASES BASE =====
|
|
80
|
+
const baseClasses = `
|
|
81
|
+
relative
|
|
82
|
+
inline-flex
|
|
83
|
+
items-center
|
|
84
|
+
justify-center
|
|
85
|
+
overflow-hidden
|
|
86
|
+
${containerSizeClasses[size]}
|
|
87
|
+
${typeClasses[type]}
|
|
88
|
+
`;
|
|
89
|
+
|
|
90
|
+
// Si hay imagen, mostrarla
|
|
91
|
+
if (src) {
|
|
92
|
+
return (
|
|
93
|
+
<div
|
|
94
|
+
ref={ref}
|
|
95
|
+
className={`${baseClasses} ${className}`.trim().replace(/\s+/g, ' ')}
|
|
96
|
+
>
|
|
97
|
+
<img
|
|
98
|
+
src={src}
|
|
99
|
+
alt={alt}
|
|
100
|
+
className="w-full h-full object-cover"
|
|
101
|
+
{...(props as any)}
|
|
102
|
+
/>
|
|
103
|
+
</div>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Si hay iniciales, mostrarlas
|
|
108
|
+
if (initials) {
|
|
109
|
+
return (
|
|
110
|
+
<div
|
|
111
|
+
ref={ref}
|
|
112
|
+
className={`
|
|
113
|
+
${baseClasses}
|
|
114
|
+
${textSizeClasses[size]}
|
|
115
|
+
bg-content-primary
|
|
116
|
+
text-white
|
|
117
|
+
font-normal
|
|
118
|
+
dark:bg-dark-bg-inverse
|
|
119
|
+
dark:text-dark-content-inverse
|
|
120
|
+
${className}
|
|
121
|
+
`.trim().replace(/\s+/g, ' ')}
|
|
122
|
+
>
|
|
123
|
+
<span className="leading-none">{initials}</span>
|
|
124
|
+
</div>
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Fallback: avatar vacío
|
|
129
|
+
return (
|
|
130
|
+
<div
|
|
131
|
+
ref={ref}
|
|
132
|
+
className={`
|
|
133
|
+
${baseClasses}
|
|
134
|
+
bg-background-secondary
|
|
135
|
+
dark:bg-dark-bg-primary
|
|
136
|
+
${className}
|
|
137
|
+
`.trim().replace(/\s+/g, ' ')}
|
|
138
|
+
/>
|
|
139
|
+
);
|
|
140
|
+
}
|
|
141
|
+
);
|
|
142
|
+
|
|
143
|
+
Avatar.displayName = 'Avatar';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { ImgHTMLAttributes } from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Tamaños del Avatar
|
|
5
|
+
* Basado en el sistema de espaciado de Siesa
|
|
6
|
+
*/
|
|
7
|
+
export type AvatarSize = '4' | '6' | '8' | '10';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Tipo de forma del Avatar
|
|
11
|
+
*/
|
|
12
|
+
export type AvatarType = 'circular' | 'rounded';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Props del componente Avatar
|
|
16
|
+
*/
|
|
17
|
+
export interface AvatarProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'size'> {
|
|
18
|
+
/**
|
|
19
|
+
* Tamaño del avatar
|
|
20
|
+
* - 4: 20px
|
|
21
|
+
* - 6: 24px
|
|
22
|
+
* - 8: 32px
|
|
23
|
+
* - 10: 40px
|
|
24
|
+
* @default '10'
|
|
25
|
+
*/
|
|
26
|
+
size?: AvatarSize;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Tipo de forma del avatar
|
|
30
|
+
* @default 'circular'
|
|
31
|
+
*/
|
|
32
|
+
type?: AvatarType;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* URL de la imagen del avatar
|
|
36
|
+
*/
|
|
37
|
+
src?: string;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Texto alternativo para la imagen
|
|
41
|
+
*/
|
|
42
|
+
alt?: string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Iniciales a mostrar cuando no hay imagen
|
|
46
|
+
*/
|
|
47
|
+
initials?: string;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Clases CSS adicionales
|
|
51
|
+
*/
|
|
52
|
+
className?: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Badge } from './Badge';
|
|
3
|
+
|
|
4
|
+
// Icon de check simple para los ejemplos
|
|
5
|
+
const CheckIcon = () => (
|
|
6
|
+
<svg
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
viewBox="0 0 12 12"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
className="w-3 h-3"
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
d="M9.707 3.293a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L5 6.586l3.293-3.293a1 1 0 0 1 1.414 0z"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Badge - Componente de badge del sistema de diseño Siesa
|
|
22
|
+
*
|
|
23
|
+
* Sistema completo de badges con soporte para:
|
|
24
|
+
* - **21 variantes de color**: Zinc, Red, Orange, Amber, Yellow, Lime, Green, Emerald, Teal, Cyan, Sky, Blue, Indigo, Violet, Purple, Fuchsia, Pink, Rose, Primary, Secondary, Tertiary
|
|
25
|
+
* - **Icono opcional**: A la izquierda del label
|
|
26
|
+
* - **Contador**: Notification badge con número
|
|
27
|
+
* - **Estados hover**: Transiciones suaves
|
|
28
|
+
* - **Dark mode**: Adaptación completa al tema oscuro
|
|
29
|
+
*/
|
|
30
|
+
const meta = {
|
|
31
|
+
title: 'Siesa UI Kit/Badge',
|
|
32
|
+
component: Badge,
|
|
33
|
+
parameters: {
|
|
34
|
+
layout: 'centered',
|
|
35
|
+
docs: {
|
|
36
|
+
description: {
|
|
37
|
+
component:
|
|
38
|
+
'Componente para mostrar badges/etiquetas con múltiples variantes de color. Ideal para estados, categorías, tags, notificaciones, etc.',
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
backgrounds: {
|
|
42
|
+
default: 'light',
|
|
43
|
+
values: [
|
|
44
|
+
{ name: 'light', value: '#ffffff' },
|
|
45
|
+
{ name: 'gray', value: '#f3f4f6' },
|
|
46
|
+
{ name: 'dark', value: '#1f2937' },
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
tags: ['autodocs'],
|
|
51
|
+
argTypes: {
|
|
52
|
+
color: {
|
|
53
|
+
control: 'select',
|
|
54
|
+
options: [
|
|
55
|
+
'zinc',
|
|
56
|
+
'red',
|
|
57
|
+
'orange',
|
|
58
|
+
'amber',
|
|
59
|
+
'yellow',
|
|
60
|
+
'lime',
|
|
61
|
+
'green',
|
|
62
|
+
'emerald',
|
|
63
|
+
'teal',
|
|
64
|
+
'cyan',
|
|
65
|
+
'sky',
|
|
66
|
+
'blue',
|
|
67
|
+
'indigo',
|
|
68
|
+
'violet',
|
|
69
|
+
'purple',
|
|
70
|
+
'fuchsia',
|
|
71
|
+
'pink',
|
|
72
|
+
'rose',
|
|
73
|
+
'primary',
|
|
74
|
+
'secondary',
|
|
75
|
+
'tertiary',
|
|
76
|
+
],
|
|
77
|
+
description: 'Color del badge',
|
|
78
|
+
table: {
|
|
79
|
+
type: { summary: 'BadgeColor' },
|
|
80
|
+
defaultValue: { summary: 'zinc' },
|
|
81
|
+
category: 'Appearance',
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
label: {
|
|
85
|
+
control: 'text',
|
|
86
|
+
description: 'Texto del badge',
|
|
87
|
+
table: {
|
|
88
|
+
type: { summary: 'string' },
|
|
89
|
+
category: 'Content',
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
leftIcon: {
|
|
93
|
+
control: false,
|
|
94
|
+
description: 'Icono opcional a la izquierda',
|
|
95
|
+
table: {
|
|
96
|
+
type: { summary: 'ReactElement' },
|
|
97
|
+
category: 'Content',
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
count: {
|
|
101
|
+
control: 'number',
|
|
102
|
+
description: 'Número para el notification badge',
|
|
103
|
+
table: {
|
|
104
|
+
type: { summary: 'number' },
|
|
105
|
+
category: 'Content',
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
} satisfies Meta<typeof Badge>;
|
|
110
|
+
|
|
111
|
+
export default meta;
|
|
112
|
+
type Story = StoryObj<typeof meta>;
|
|
113
|
+
|
|
114
|
+
// ============================================
|
|
115
|
+
// 1. PLAYGROUND INTERACTIVO
|
|
116
|
+
// ============================================
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Playground Interactivo
|
|
120
|
+
*
|
|
121
|
+
* Usa los controles para experimentar con el Badge en tiempo real.
|
|
122
|
+
*/
|
|
123
|
+
export const Playground: Story = {
|
|
124
|
+
name: 'Playground',
|
|
125
|
+
args: {
|
|
126
|
+
color: 'blue',
|
|
127
|
+
label: 'Etiqueta',
|
|
128
|
+
leftIcon: <CheckIcon />,
|
|
129
|
+
count: 3,
|
|
130
|
+
},
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
// ============================================
|
|
134
|
+
// 2. TODAS LAS VARIANTES DE COLOR
|
|
135
|
+
// ============================================
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Todas las Variantes de Color
|
|
139
|
+
*
|
|
140
|
+
* Vista de todas las 21 variantes de color disponibles.
|
|
141
|
+
*/
|
|
142
|
+
export const AllColors: Story = {
|
|
143
|
+
name: 'Todas las Variantes de Color',
|
|
144
|
+
args: {
|
|
145
|
+
label: '',
|
|
146
|
+
},
|
|
147
|
+
render: () => (
|
|
148
|
+
<div className="space-y-6">
|
|
149
|
+
{/* Zinc to Rose */}
|
|
150
|
+
<div>
|
|
151
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Paleta de Colores</h3>
|
|
152
|
+
<div className="flex flex-wrap gap-2">
|
|
153
|
+
<Badge color="zinc" label="Label" leftIcon={<CheckIcon />} />
|
|
154
|
+
<Badge color="red" label="Label" leftIcon={<CheckIcon />} />
|
|
155
|
+
<Badge color="orange" label="Label" leftIcon={<CheckIcon />} />
|
|
156
|
+
<Badge color="amber" label="Label" leftIcon={<CheckIcon />} />
|
|
157
|
+
<Badge color="yellow" label="Label" leftIcon={<CheckIcon />} />
|
|
158
|
+
<Badge color="lime" label="Label" leftIcon={<CheckIcon />} />
|
|
159
|
+
<Badge color="green" label="Label" leftIcon={<CheckIcon />} />
|
|
160
|
+
<Badge color="emerald" label="Label" leftIcon={<CheckIcon />} />
|
|
161
|
+
<Badge color="teal" label="Label" leftIcon={<CheckIcon />} />
|
|
162
|
+
<Badge color="cyan" label="Label" leftIcon={<CheckIcon />} />
|
|
163
|
+
<Badge color="sky" label="Label" leftIcon={<CheckIcon />} />
|
|
164
|
+
<Badge color="blue" label="Label" leftIcon={<CheckIcon />} />
|
|
165
|
+
<Badge color="indigo" label="Label" leftIcon={<CheckIcon />} />
|
|
166
|
+
<Badge color="violet" label="Label" leftIcon={<CheckIcon />} />
|
|
167
|
+
<Badge color="purple" label="Label" leftIcon={<CheckIcon />} />
|
|
168
|
+
<Badge color="fuchsia" label="Label" leftIcon={<CheckIcon />} />
|
|
169
|
+
<Badge color="pink" label="Label" leftIcon={<CheckIcon />} />
|
|
170
|
+
<Badge color="rose" label="Label" leftIcon={<CheckIcon />} />
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
|
|
174
|
+
{/* System Colors */}
|
|
175
|
+
<div>
|
|
176
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Colores del Sistema</h3>
|
|
177
|
+
<div className="flex flex-wrap gap-2">
|
|
178
|
+
<Badge color="primary" label="Label" leftIcon={<CheckIcon />} />
|
|
179
|
+
<Badge color="secondary" label="Label" leftIcon={<CheckIcon />} />
|
|
180
|
+
<Badge color="tertiary" label="Label" leftIcon={<CheckIcon />} />
|
|
181
|
+
</div>
|
|
182
|
+
</div>
|
|
183
|
+
</div>
|
|
184
|
+
),
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
// ============================================
|
|
188
|
+
// 3. CON Y SIN ICONO
|
|
189
|
+
// ============================================
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Con y Sin Icono
|
|
193
|
+
*
|
|
194
|
+
* Ejemplos de badges con icono y sin icono.
|
|
195
|
+
*/
|
|
196
|
+
export const WithAndWithoutIcon: Story = {
|
|
197
|
+
name: 'Con y Sin Icono',
|
|
198
|
+
args: {
|
|
199
|
+
label: '',
|
|
200
|
+
},
|
|
201
|
+
render: () => (
|
|
202
|
+
<div className="space-y-6">
|
|
203
|
+
{/* Con icono */}
|
|
204
|
+
<div>
|
|
205
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Con Icono</h3>
|
|
206
|
+
<div className="flex flex-wrap gap-2">
|
|
207
|
+
<Badge color="green" label="Éxito" leftIcon={<CheckIcon />} />
|
|
208
|
+
<Badge color="blue" label="Info" leftIcon={<CheckIcon />} />
|
|
209
|
+
<Badge color="red" label="Error" leftIcon={<CheckIcon />} />
|
|
210
|
+
</div>
|
|
211
|
+
</div>
|
|
212
|
+
|
|
213
|
+
{/* Sin icono */}
|
|
214
|
+
<div>
|
|
215
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Sin Icono</h3>
|
|
216
|
+
<div className="flex flex-wrap gap-2">
|
|
217
|
+
<Badge color="green" label="Éxito" />
|
|
218
|
+
<Badge color="blue" label="Info" />
|
|
219
|
+
<Badge color="red" label="Error" />
|
|
220
|
+
</div>
|
|
221
|
+
</div>
|
|
222
|
+
</div>
|
|
223
|
+
),
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
// ============================================
|
|
227
|
+
// 4. CON CONTADOR
|
|
228
|
+
// ============================================
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Con Contador
|
|
232
|
+
*
|
|
233
|
+
* Ejemplos de badges con notification badge mostrando un número.
|
|
234
|
+
*/
|
|
235
|
+
export const WithCount: Story = {
|
|
236
|
+
name: 'Con Contador',
|
|
237
|
+
args: {
|
|
238
|
+
label: '',
|
|
239
|
+
},
|
|
240
|
+
render: () => (
|
|
241
|
+
<div className="space-y-6">
|
|
242
|
+
<div>
|
|
243
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Con Contador</h3>
|
|
244
|
+
<div className="flex flex-wrap gap-2">
|
|
245
|
+
<Badge color="blue" label="Mensajes" leftIcon={<CheckIcon />} count={3} />
|
|
246
|
+
<Badge color="red" label="Errores" leftIcon={<CheckIcon />} count={12} />
|
|
247
|
+
<Badge color="green" label="Tareas" leftIcon={<CheckIcon />} count={5} />
|
|
248
|
+
<Badge color="purple" label="Notificaciones" count={99} />
|
|
249
|
+
</div>
|
|
250
|
+
</div>
|
|
251
|
+
</div>
|
|
252
|
+
),
|
|
253
|
+
};
|
|
254
|
+
|
|
255
|
+
// ============================================
|
|
256
|
+
// 5. CASOS DE USO REALES
|
|
257
|
+
// ============================================
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Casos de Uso Reales
|
|
261
|
+
*
|
|
262
|
+
* Ejemplos prácticos de cómo usar badges en situaciones reales.
|
|
263
|
+
*/
|
|
264
|
+
export const UseCases: Story = {
|
|
265
|
+
name: 'Casos de Uso Reales',
|
|
266
|
+
args: {
|
|
267
|
+
label: '',
|
|
268
|
+
},
|
|
269
|
+
render: () => (
|
|
270
|
+
<div className="space-y-6">
|
|
271
|
+
{/* Estados */}
|
|
272
|
+
<div>
|
|
273
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Estados de Pedidos</h3>
|
|
274
|
+
<div className="flex flex-wrap gap-2">
|
|
275
|
+
<Badge color="green" label="Entregado" leftIcon={<CheckIcon />} />
|
|
276
|
+
<Badge color="blue" label="En Tránsito" />
|
|
277
|
+
<Badge color="yellow" label="Pendiente" />
|
|
278
|
+
<Badge color="red" label="Cancelado" />
|
|
279
|
+
</div>
|
|
280
|
+
</div>
|
|
281
|
+
|
|
282
|
+
{/* Categorías */}
|
|
283
|
+
<div>
|
|
284
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Categorías de Productos</h3>
|
|
285
|
+
<div className="flex flex-wrap gap-2">
|
|
286
|
+
<Badge color="purple" label="Electrónica" />
|
|
287
|
+
<Badge color="pink" label="Moda" />
|
|
288
|
+
<Badge color="cyan" label="Hogar" />
|
|
289
|
+
<Badge color="orange" label="Comida" />
|
|
290
|
+
<Badge color="lime" label="Deportes" />
|
|
291
|
+
</div>
|
|
292
|
+
</div>
|
|
293
|
+
|
|
294
|
+
{/* Prioridades */}
|
|
295
|
+
<div>
|
|
296
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Prioridades de Tickets</h3>
|
|
297
|
+
<div className="flex flex-wrap gap-2">
|
|
298
|
+
<Badge color="red" label="Crítico" count={5} />
|
|
299
|
+
<Badge color="orange" label="Alto" count={12} />
|
|
300
|
+
<Badge color="yellow" label="Medio" count={23} />
|
|
301
|
+
<Badge color="green" label="Bajo" count={8} />
|
|
302
|
+
</div>
|
|
303
|
+
</div>
|
|
304
|
+
|
|
305
|
+
{/* Roles */}
|
|
306
|
+
<div>
|
|
307
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Roles de Usuario</h3>
|
|
308
|
+
<div className="flex flex-wrap gap-2">
|
|
309
|
+
<Badge color="primary" label="Administrador" leftIcon={<CheckIcon />} />
|
|
310
|
+
<Badge color="blue" label="Editor" />
|
|
311
|
+
<Badge color="secondary" label="Visualizador" />
|
|
312
|
+
<Badge color="tertiary" label="Invitado" />
|
|
313
|
+
</div>
|
|
314
|
+
</div>
|
|
315
|
+
|
|
316
|
+
{/* Tags */}
|
|
317
|
+
<div>
|
|
318
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Tags de Artículos</h3>
|
|
319
|
+
<div className="flex flex-wrap gap-2">
|
|
320
|
+
<Badge color="indigo" label="React" />
|
|
321
|
+
<Badge color="sky" label="TypeScript" />
|
|
322
|
+
<Badge color="emerald" label="Tailwind" />
|
|
323
|
+
<Badge color="violet" label="Storybook" />
|
|
324
|
+
</div>
|
|
325
|
+
</div>
|
|
326
|
+
|
|
327
|
+
{/* Notificaciones */}
|
|
328
|
+
<div>
|
|
329
|
+
<h3 className="text-sm font-bold mb-4 text-gray-700 dark:text-white">Notificaciones</h3>
|
|
330
|
+
<div className="flex flex-wrap gap-2">
|
|
331
|
+
<Badge color="blue" label="Bandeja" count={24} />
|
|
332
|
+
<Badge color="green" label="Actualizaciones" count={3} />
|
|
333
|
+
<Badge color="red" label="Alertas" count={7} />
|
|
334
|
+
<Badge color="purple" label="Mensajes" count={15} />
|
|
335
|
+
</div>
|
|
336
|
+
</div>
|
|
337
|
+
</div>
|
|
338
|
+
),
|
|
339
|
+
};
|