anima-ds-nucleus 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/LICENSE.md +20 -0
- package/README.md +109 -0
- package/dist/anima-ds.cjs.js +1332 -0
- package/dist/anima-ds.esm.js +88297 -0
- package/dist/vite.svg +1 -0
- package/package.json +76 -0
- package/src/assets/charly.png +0 -0
- package/src/components/Atoms/Alert/Alert.jsx +52 -0
- package/src/components/Atoms/Alert/Alert.stories.jsx +62 -0
- package/src/components/Atoms/Avatar/Avatar.jsx +60 -0
- package/src/components/Atoms/Avatar/Avatar.stories.jsx +61 -0
- package/src/components/Atoms/Badge/Badge.jsx +34 -0
- package/src/components/Atoms/Badge/Badge.stories.jsx +55 -0
- package/src/components/Atoms/Button/Button.jsx +281 -0
- package/src/components/Atoms/Button/Button.stories.jsx +365 -0
- package/src/components/Atoms/Divider/Divider.jsx +49 -0
- package/src/components/Atoms/Divider/Divider.stories.jsx +62 -0
- package/src/components/Atoms/Icon/Icon.jsx +361 -0
- package/src/components/Atoms/Icon/Icon.stories.jsx +115 -0
- package/src/components/Atoms/Label/Label.jsx +22 -0
- package/src/components/Atoms/Progress/Progress.jsx +49 -0
- package/src/components/Atoms/Progress/Progress.stories.jsx +88 -0
- package/src/components/Atoms/Radios/Radios.jsx +39 -0
- package/src/components/Atoms/Radios/Radios.stories.jsx +119 -0
- package/src/components/Atoms/Shadow/Shadow.stories.jsx +25 -0
- package/src/components/Atoms/Skeleton/Skeleton.jsx +50 -0
- package/src/components/Atoms/Skeleton/Skeleton.stories.jsx +55 -0
- package/src/components/Atoms/Spacing/Spacing.jsx +56 -0
- package/src/components/Atoms/Spacing/Spacing.stories.jsx +78 -0
- package/src/components/Atoms/Spinner/Spinner.jsx +47 -0
- package/src/components/Atoms/Spinner/Spinner.stories.jsx +56 -0
- package/src/components/Atoms/Toast/Toast.jsx +74 -0
- package/src/components/Atoms/Toast/Toast.stories.jsx +101 -0
- package/src/components/Atoms/Tooltip/Tooltip.jsx +49 -0
- package/src/components/Atoms/Tooltip/Tooltip.stories.jsx +58 -0
- package/src/components/Atoms/Typography/Typography.jsx +52 -0
- package/src/components/Atoms/Typography/Typography.stories.jsx +267 -0
- package/src/components/DataDisplay/AreaChart/AreaChart.jsx +95 -0
- package/src/components/DataDisplay/AreaChart/AreaChart.stories.jsx +51 -0
- package/src/components/DataDisplay/BarChart/BarChart.jsx +90 -0
- package/src/components/DataDisplay/BarChart/BarChart.stories.jsx +60 -0
- package/src/components/DataDisplay/Card/Card.jsx +31 -0
- package/src/components/DataDisplay/Card/Card.stories.jsx +50 -0
- package/src/components/DataDisplay/ColumnChart/ColumnChart.jsx +92 -0
- package/src/components/DataDisplay/ColumnChart/ColumnChart.stories.jsx +65 -0
- package/src/components/DataDisplay/DBGrid/DBGrid.jsx +138 -0
- package/src/components/DataDisplay/DBGrid/DBGrid.stories.jsx +126 -0
- package/src/components/DataDisplay/DonutChart/DonutChart.jsx +83 -0
- package/src/components/DataDisplay/DonutChart/DonutChart.stories.jsx +48 -0
- package/src/components/DataDisplay/EmptyState/EmptyState.jsx +30 -0
- package/src/components/DataDisplay/EmptyState/EmptyState.stories.jsx +42 -0
- package/src/components/DataDisplay/LineChart/LineChart.jsx +86 -0
- package/src/components/DataDisplay/LineChart/LineChart.stories.jsx +67 -0
- package/src/components/DataDisplay/List/List.jsx +30 -0
- package/src/components/DataDisplay/List/List.stories.jsx +59 -0
- package/src/components/DataDisplay/PieChart/PieChart.jsx +64 -0
- package/src/components/DataDisplay/PieChart/PieChart.stories.jsx +47 -0
- package/src/components/DataDisplay/StatCard/StatCard.jsx +55 -0
- package/src/components/DataDisplay/StatCard/StatCard.stories.jsx +59 -0
- package/src/components/DataDisplay/TagList/TagList.jsx +37 -0
- package/src/components/DataDisplay/TagList/TagList.stories.jsx +48 -0
- package/src/components/DataDisplay/Timeline/Timeline.jsx +41 -0
- package/src/components/DataDisplay/Timeline/Timeline.stories.jsx +64 -0
- package/src/components/Inputs/Checkbox/Checkbox.jsx +27 -0
- package/src/components/Inputs/Checkbox/Checkbox.stories.jsx +51 -0
- package/src/components/Inputs/DatePicker/DatePicker.jsx +55 -0
- package/src/components/Inputs/DatePicker/DatePicker.stories.jsx +52 -0
- package/src/components/Inputs/FileUpload/FileUpload.jsx +108 -0
- package/src/components/Inputs/FileUpload/FileUpload.stories.jsx +52 -0
- package/src/components/Inputs/Input/Input.jsx +50 -0
- package/src/components/Inputs/Input/Input.stories.jsx +63 -0
- package/src/components/Inputs/RadioButton/RadioButton.jsx +31 -0
- package/src/components/Inputs/RadioButton/RadioButton.stories.jsx +59 -0
- package/src/components/Inputs/Select/Select.jsx +59 -0
- package/src/components/Inputs/Select/Select.stories.jsx +66 -0
- package/src/components/Inputs/Switch/Switch.jsx +44 -0
- package/src/components/Inputs/Switch/Switch.stories.jsx +51 -0
- package/src/components/Inputs/Textarea/Textarea.jsx +51 -0
- package/src/components/Inputs/Textarea/Textarea.stories.jsx +65 -0
- package/src/components/Layout/Accordion/Accordion.jsx +58 -0
- package/src/components/Layout/Accordion/Accordion.stories.jsx +55 -0
- package/src/components/Layout/Breadcrumbs/Breadcrumbs.jsx +49 -0
- package/src/components/Layout/Breadcrumbs/Breadcrumbs.stories.jsx +44 -0
- package/src/components/Layout/Breakpoint/Breakpoint.jsx +35 -0
- package/src/components/Layout/Breakpoint/Breakpoint.stories.jsx +348 -0
- package/src/components/Layout/Drawer/Drawer.jsx +75 -0
- package/src/components/Layout/Drawer/Drawer.stories.jsx +77 -0
- package/src/components/Layout/Dropdown/Dropdown.jsx +83 -0
- package/src/components/Layout/Dropdown/Dropdown.stories.jsx +53 -0
- package/src/components/Layout/Grid/Grid.jsx +39 -0
- package/src/components/Layout/Grid/Grid.stories.jsx +546 -0
- package/src/components/Layout/Header/Header.jsx +50 -0
- package/src/components/Layout/Header/Header.stories.jsx +36 -0
- package/src/components/Layout/Layout/Layout.jsx +14 -0
- package/src/components/Layout/Layout/Layout.stories.jsx +34 -0
- package/src/components/Layout/Modal/Modal.jsx +78 -0
- package/src/components/Layout/Modal/Modal.stories.jsx +98 -0
- package/src/components/Layout/Pagination/Pagination.jsx +109 -0
- package/src/components/Layout/Pagination/Pagination.stories.jsx +62 -0
- package/src/components/Layout/Sidebar/Sidebar.jsx +57 -0
- package/src/components/Layout/Sidebar/Sidebar.stories.jsx +51 -0
- package/src/components/Layout/Stepper/Stepper.jsx +132 -0
- package/src/components/Layout/Stepper/Stepper.stories.jsx +78 -0
- package/src/components/Layout/Tabs/Tabs.jsx +63 -0
- package/src/components/Layout/Tabs/Tabs.stories.jsx +62 -0
- package/src/components/Views/ChangePasswordForm/ChangePasswordForm.jsx +125 -0
- package/src/components/Views/ChangePasswordForm/ChangePasswordForm.stories.jsx +55 -0
- package/src/components/Views/Chat/Chat.jsx +134 -0
- package/src/components/Views/Chat/Chat.stories.jsx +143 -0
- package/src/components/Views/LoginForm/LoginForm.jsx +98 -0
- package/src/components/Views/LoginForm/LoginForm.stories.jsx +55 -0
- package/src/i18n/config.js +209 -0
- package/src/index.js +60 -0
- package/src/main.jsx +510 -0
- package/src/providers/I18nProvider.jsx +13 -0
- package/src/style.css +721 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { LoginForm } from './LoginForm';
|
|
2
|
+
import { I18nProvider } from '../../../providers/I18nProvider';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Views/LoginForm',
|
|
6
|
+
component: LoginForm,
|
|
7
|
+
tags: ['autodocs'],
|
|
8
|
+
decorators: [
|
|
9
|
+
(Story) => (
|
|
10
|
+
<I18nProvider>
|
|
11
|
+
<Story />
|
|
12
|
+
</I18nProvider>
|
|
13
|
+
),
|
|
14
|
+
],
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const Default = {
|
|
18
|
+
args: {
|
|
19
|
+
onSubmit: (data) => {
|
|
20
|
+
console.log('Login data:', data);
|
|
21
|
+
alert('Login submitted!');
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export const Spanish = {
|
|
27
|
+
decorators: [
|
|
28
|
+
(Story) => (
|
|
29
|
+
<I18nProvider language="es-AR">
|
|
30
|
+
<Story />
|
|
31
|
+
</I18nProvider>
|
|
32
|
+
),
|
|
33
|
+
],
|
|
34
|
+
args: {
|
|
35
|
+
onSubmit: (data) => {
|
|
36
|
+
console.log('Login data:', data);
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export const Portuguese = {
|
|
42
|
+
decorators: [
|
|
43
|
+
(Story) => (
|
|
44
|
+
<I18nProvider language="pt-BR">
|
|
45
|
+
<Story />
|
|
46
|
+
</I18nProvider>
|
|
47
|
+
),
|
|
48
|
+
],
|
|
49
|
+
args: {
|
|
50
|
+
onSubmit: (data) => {
|
|
51
|
+
console.log('Login data:', data);
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import i18n from 'i18next';
|
|
2
|
+
import { initReactI18next } from 'react-i18next';
|
|
3
|
+
|
|
4
|
+
const resources = {
|
|
5
|
+
'es-AR': {
|
|
6
|
+
translation: {
|
|
7
|
+
// Common
|
|
8
|
+
'common.save': 'Guardar',
|
|
9
|
+
'common.cancel': 'Cancelar',
|
|
10
|
+
'common.delete': 'Eliminar',
|
|
11
|
+
'common.edit': 'Editar',
|
|
12
|
+
'common.search': 'Buscar',
|
|
13
|
+
'common.loading': 'Cargando...',
|
|
14
|
+
'common.submit': 'Enviar',
|
|
15
|
+
'common.back': 'Volver',
|
|
16
|
+
'common.next': 'Siguiente',
|
|
17
|
+
'common.previous': 'Anterior',
|
|
18
|
+
|
|
19
|
+
// Navigation
|
|
20
|
+
'nav.home': 'Inicio',
|
|
21
|
+
'nav.dashboard': 'Dashboard',
|
|
22
|
+
'nav.profile': 'Perfil',
|
|
23
|
+
'nav.settings': 'Configuración',
|
|
24
|
+
'nav.logout': 'Cerrar Sesión',
|
|
25
|
+
|
|
26
|
+
// Forms
|
|
27
|
+
'form.email': 'Correo electrónico',
|
|
28
|
+
'form.password': 'Contraseña',
|
|
29
|
+
'form.confirmPassword': 'Confirmar contraseña',
|
|
30
|
+
'form.currentPassword': 'Contraseña actual',
|
|
31
|
+
'form.newPassword': 'Nueva contraseña',
|
|
32
|
+
'form.rememberMe': 'Recordarme',
|
|
33
|
+
'form.login': 'Iniciar Sesión',
|
|
34
|
+
'form.changePassword': 'Cambiar Contraseña',
|
|
35
|
+
'form.forgotPassword': '¿Olvidaste tu contraseña?',
|
|
36
|
+
|
|
37
|
+
// Placeholders
|
|
38
|
+
'placeholder.email': 'Ingresa tu correo electrónico',
|
|
39
|
+
'placeholder.password': 'Ingresa tu contraseña',
|
|
40
|
+
'placeholder.search': 'Buscar...',
|
|
41
|
+
'placeholder.select': 'Selecciona una opción',
|
|
42
|
+
|
|
43
|
+
// Table
|
|
44
|
+
'table.actions': 'Acciones',
|
|
45
|
+
'table.noData': 'No hay datos disponibles',
|
|
46
|
+
'table.loading': 'Cargando datos...',
|
|
47
|
+
'table.id': 'ID',
|
|
48
|
+
'table.name': 'Nombre',
|
|
49
|
+
'table.email': 'Correo',
|
|
50
|
+
'table.role': 'Rol',
|
|
51
|
+
'table.status': 'Estado',
|
|
52
|
+
'table.date': 'Fecha',
|
|
53
|
+
'table.edit': 'Editar',
|
|
54
|
+
'table.delete': 'Eliminar',
|
|
55
|
+
'table.view': 'Ver',
|
|
56
|
+
// MUI DataGrid translations
|
|
57
|
+
'table.rowsPerPage': 'Filas por página',
|
|
58
|
+
'table.density': 'Densidad',
|
|
59
|
+
'table.densityLabel': 'Densidad',
|
|
60
|
+
'table.densityCompact': 'Compacta',
|
|
61
|
+
'table.densityStandard': 'Estándar',
|
|
62
|
+
'table.densityComfortable': 'Cómoda',
|
|
63
|
+
'table.filters': 'Filtros',
|
|
64
|
+
'table.filtersLabel': 'Mostrar filtros',
|
|
65
|
+
'table.filtersTooltipHide': 'Ocultar filtros',
|
|
66
|
+
'table.filtersTooltipShow': 'Mostrar filtros',
|
|
67
|
+
'table.export': 'Exportar',
|
|
68
|
+
'table.exportLabel': 'Exportar',
|
|
69
|
+
'table.exportCSV': 'Descargar como CSV',
|
|
70
|
+
'table.exportPrint': 'Imprimir',
|
|
71
|
+
'table.columns': 'Columnas',
|
|
72
|
+
'table.columnsLabel': 'Seleccionar columnas',
|
|
73
|
+
'table.filterPanelAddFilter': 'Agregar filtro',
|
|
74
|
+
'table.filterPanelDeleteIconLabel': 'Eliminar',
|
|
75
|
+
'table.filterPanelOperators': 'Operadores',
|
|
76
|
+
'table.filterPanelOperatorAnd': 'Y',
|
|
77
|
+
'table.filterPanelOperatorOr': 'O',
|
|
78
|
+
'table.filterPanelColumns': 'Columnas',
|
|
79
|
+
'table.filterPanelInputLabel': 'Valor',
|
|
80
|
+
'table.filterPanelInputPlaceholder': 'Valor del filtro',
|
|
81
|
+
'table.noResults': 'No se encontraron resultados',
|
|
82
|
+
'table.errorOverlayDefaultLabel': 'Ocurrió un error',
|
|
83
|
+
|
|
84
|
+
// Chat
|
|
85
|
+
'chat.typeMessage': 'Escribe un mensaje...',
|
|
86
|
+
'chat.send': 'Enviar',
|
|
87
|
+
'chat.user': 'Usuario',
|
|
88
|
+
'chat.ai': 'Asistente IA',
|
|
89
|
+
'chat.loading': 'Escribiendo...',
|
|
90
|
+
'chat.empty': 'No hay mensajes aún. Comienza la conversación.',
|
|
91
|
+
'chat.placeholder': 'Escribe tu mensaje aquí...',
|
|
92
|
+
|
|
93
|
+
// Alerts
|
|
94
|
+
'alert.success': 'Éxito',
|
|
95
|
+
'alert.error': 'Error',
|
|
96
|
+
'alert.warning': 'Advertencia',
|
|
97
|
+
'alert.info': 'Información',
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
'pt-BR': {
|
|
101
|
+
translation: {
|
|
102
|
+
// Common
|
|
103
|
+
'common.save': 'Salvar',
|
|
104
|
+
'common.cancel': 'Cancelar',
|
|
105
|
+
'common.delete': 'Excluir',
|
|
106
|
+
'common.edit': 'Editar',
|
|
107
|
+
'common.search': 'Buscar',
|
|
108
|
+
'common.loading': 'Carregando...',
|
|
109
|
+
'common.submit': 'Enviar',
|
|
110
|
+
'common.back': 'Voltar',
|
|
111
|
+
'common.next': 'Próximo',
|
|
112
|
+
'common.previous': 'Anterior',
|
|
113
|
+
|
|
114
|
+
// Navigation
|
|
115
|
+
'nav.home': 'Início',
|
|
116
|
+
'nav.dashboard': 'Painel',
|
|
117
|
+
'nav.profile': 'Perfil',
|
|
118
|
+
'nav.settings': 'Configurações',
|
|
119
|
+
'nav.logout': 'Sair',
|
|
120
|
+
|
|
121
|
+
// Forms
|
|
122
|
+
'form.email': 'E-mail',
|
|
123
|
+
'form.password': 'Senha',
|
|
124
|
+
'form.confirmPassword': 'Confirmar senha',
|
|
125
|
+
'form.currentPassword': 'Senha atual',
|
|
126
|
+
'form.newPassword': 'Nova senha',
|
|
127
|
+
'form.rememberMe': 'Lembrar-me',
|
|
128
|
+
'form.login': 'Entrar',
|
|
129
|
+
'form.changePassword': 'Alterar Senha',
|
|
130
|
+
'form.forgotPassword': 'Esqueceu sua senha?',
|
|
131
|
+
|
|
132
|
+
// Placeholders
|
|
133
|
+
'placeholder.email': 'Digite seu e-mail',
|
|
134
|
+
'placeholder.password': 'Digite sua senha',
|
|
135
|
+
'placeholder.search': 'Buscar...',
|
|
136
|
+
'placeholder.select': 'Selecione uma opção',
|
|
137
|
+
|
|
138
|
+
// Table
|
|
139
|
+
'table.actions': 'Ações',
|
|
140
|
+
'table.noData': 'Nenhum dado disponível',
|
|
141
|
+
'table.loading': 'Carregando dados...',
|
|
142
|
+
'table.id': 'ID',
|
|
143
|
+
'table.name': 'Nome',
|
|
144
|
+
'table.email': 'E-mail',
|
|
145
|
+
'table.role': 'Função',
|
|
146
|
+
'table.status': 'Status',
|
|
147
|
+
'table.date': 'Data',
|
|
148
|
+
'table.edit': 'Editar',
|
|
149
|
+
'table.delete': 'Excluir',
|
|
150
|
+
'table.view': 'Ver',
|
|
151
|
+
// MUI DataGrid translations
|
|
152
|
+
'table.rowsPerPage': 'Linhas por página',
|
|
153
|
+
'table.density': 'Densidade',
|
|
154
|
+
'table.densityLabel': 'Densidade',
|
|
155
|
+
'table.densityCompact': 'Compacta',
|
|
156
|
+
'table.densityStandard': 'Padrão',
|
|
157
|
+
'table.densityComfortable': 'Confortável',
|
|
158
|
+
'table.filters': 'Filtros',
|
|
159
|
+
'table.filtersLabel': 'Mostrar filtros',
|
|
160
|
+
'table.filtersTooltipHide': 'Ocultar filtros',
|
|
161
|
+
'table.filtersTooltipShow': 'Mostrar filtros',
|
|
162
|
+
'table.export': 'Exportar',
|
|
163
|
+
'table.exportLabel': 'Exportar',
|
|
164
|
+
'table.exportCSV': 'Baixar como CSV',
|
|
165
|
+
'table.exportPrint': 'Imprimir',
|
|
166
|
+
'table.columns': 'Colunas',
|
|
167
|
+
'table.columnsLabel': 'Selecionar colunas',
|
|
168
|
+
'table.filterPanelAddFilter': 'Adicionar filtro',
|
|
169
|
+
'table.filterPanelDeleteIconLabel': 'Excluir',
|
|
170
|
+
'table.filterPanelOperators': 'Operadores',
|
|
171
|
+
'table.filterPanelOperatorAnd': 'E',
|
|
172
|
+
'table.filterPanelOperatorOr': 'OU',
|
|
173
|
+
'table.filterPanelColumns': 'Colunas',
|
|
174
|
+
'table.filterPanelInputLabel': 'Valor',
|
|
175
|
+
'table.filterPanelInputPlaceholder': 'Valor do filtro',
|
|
176
|
+
'table.noResults': 'Nenhum resultado encontrado',
|
|
177
|
+
'table.errorOverlayDefaultLabel': 'Ocorreu um erro',
|
|
178
|
+
|
|
179
|
+
// Chat
|
|
180
|
+
'chat.typeMessage': 'Digite uma mensagem...',
|
|
181
|
+
'chat.send': 'Enviar',
|
|
182
|
+
'chat.user': 'Usuário',
|
|
183
|
+
'chat.ai': 'Assistente IA',
|
|
184
|
+
'chat.loading': 'Digitando...',
|
|
185
|
+
'chat.empty': 'Ainda não há mensagens. Comece a conversa.',
|
|
186
|
+
'chat.placeholder': 'Digite sua mensagem aqui...',
|
|
187
|
+
|
|
188
|
+
// Alerts
|
|
189
|
+
'alert.success': 'Sucesso',
|
|
190
|
+
'alert.error': 'Erro',
|
|
191
|
+
'alert.warning': 'Aviso',
|
|
192
|
+
'alert.info': 'Informação',
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
i18n
|
|
198
|
+
.use(initReactI18next)
|
|
199
|
+
.init({
|
|
200
|
+
resources,
|
|
201
|
+
lng: 'es-AR',
|
|
202
|
+
fallbackLng: 'es-AR',
|
|
203
|
+
interpolation: {
|
|
204
|
+
escapeValue: false,
|
|
205
|
+
},
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
export default i18n;
|
|
209
|
+
|
package/src/index.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// Atoms
|
|
2
|
+
export { Button } from './components/Atoms/Button/Button';
|
|
3
|
+
export { Typography } from './components/Atoms/Typography/Typography';
|
|
4
|
+
export { Badge } from './components/Atoms/Badge/Badge';
|
|
5
|
+
export { Alert } from './components/Atoms/Alert/Alert';
|
|
6
|
+
export { Icon } from './components/Atoms/Icon/Icon';
|
|
7
|
+
export { Avatar } from './components/Atoms/Avatar/Avatar';
|
|
8
|
+
export { Spinner } from './components/Atoms/Spinner/Spinner';
|
|
9
|
+
export { Progress } from './components/Atoms/Progress/Progress';
|
|
10
|
+
export { Divider } from './components/Atoms/Divider/Divider';
|
|
11
|
+
export { Skeleton } from './components/Atoms/Skeleton/Skeleton';
|
|
12
|
+
export { Toast } from './components/Atoms/Toast/Toast';
|
|
13
|
+
export { Tooltip } from './components/Atoms/Tooltip/Tooltip';
|
|
14
|
+
|
|
15
|
+
// Inputs
|
|
16
|
+
export { Input } from './components/Inputs/Input/Input';
|
|
17
|
+
export { Checkbox } from './components/Inputs/Checkbox/Checkbox';
|
|
18
|
+
export { RadioButton } from './components/Inputs/RadioButton/RadioButton';
|
|
19
|
+
export { Select } from './components/Inputs/Select/Select';
|
|
20
|
+
export { Textarea } from './components/Inputs/Textarea/Textarea';
|
|
21
|
+
export { Switch } from './components/Inputs/Switch/Switch';
|
|
22
|
+
export { DatePicker } from './components/Inputs/DatePicker/DatePicker';
|
|
23
|
+
export { FileUpload } from './components/Inputs/FileUpload/FileUpload';
|
|
24
|
+
|
|
25
|
+
// Layout
|
|
26
|
+
export { Layout } from './components/Layout/Layout/Layout';
|
|
27
|
+
export { Header } from './components/Layout/Header/Header';
|
|
28
|
+
export { Sidebar } from './components/Layout/Sidebar/Sidebar';
|
|
29
|
+
export { Modal } from './components/Layout/Modal/Modal';
|
|
30
|
+
export { Tabs } from './components/Layout/Tabs/Tabs';
|
|
31
|
+
export { Accordion } from './components/Layout/Accordion/Accordion';
|
|
32
|
+
export { Breadcrumbs } from './components/Layout/Breadcrumbs/Breadcrumbs';
|
|
33
|
+
export { Pagination } from './components/Layout/Pagination/Pagination';
|
|
34
|
+
export { Drawer } from './components/Layout/Drawer/Drawer';
|
|
35
|
+
export { Dropdown } from './components/Layout/Dropdown/Dropdown';
|
|
36
|
+
export { Stepper } from './components/Layout/Stepper/Stepper';
|
|
37
|
+
|
|
38
|
+
// DataDisplay
|
|
39
|
+
export { Card } from './components/DataDisplay/Card/Card';
|
|
40
|
+
export { DBGrid } from './components/DataDisplay/DBGrid/DBGrid';
|
|
41
|
+
export { LineChart } from './components/DataDisplay/LineChart/LineChart';
|
|
42
|
+
export { BarChart } from './components/DataDisplay/BarChart/BarChart';
|
|
43
|
+
export { AreaChart } from './components/DataDisplay/AreaChart/AreaChart';
|
|
44
|
+
export { PieChart } from './components/DataDisplay/PieChart/PieChart';
|
|
45
|
+
export { DonutChart } from './components/DataDisplay/DonutChart/DonutChart';
|
|
46
|
+
export { ColumnChart } from './components/DataDisplay/ColumnChart/ColumnChart';
|
|
47
|
+
export { EmptyState } from './components/DataDisplay/EmptyState/EmptyState';
|
|
48
|
+
export { StatCard } from './components/DataDisplay/StatCard/StatCard';
|
|
49
|
+
export { Timeline } from './components/DataDisplay/Timeline/Timeline';
|
|
50
|
+
export { List } from './components/DataDisplay/List/List';
|
|
51
|
+
export { TagList } from './components/DataDisplay/TagList/TagList';
|
|
52
|
+
|
|
53
|
+
// Views
|
|
54
|
+
export { LoginForm } from './components/Views/LoginForm/LoginForm';
|
|
55
|
+
export { ChangePasswordForm } from './components/Views/ChangePasswordForm/ChangePasswordForm';
|
|
56
|
+
export { Chat } from './components/Views/Chat/Chat';
|
|
57
|
+
|
|
58
|
+
// Providers
|
|
59
|
+
export { I18nProvider } from './providers/I18nProvider';
|
|
60
|
+
|