bord-design-system 0.0.7 → 0.0.9
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 +194 -1
- package/dist/components/BordBadge/BordBadge.d.ts +2 -1
- package/dist/components/BordBadge/BordBadge.d.ts.map +1 -1
- package/dist/components/BordButton/BordButton.types.d.ts +0 -1
- package/dist/components/BordButton/BordButton.types.d.ts.map +1 -1
- package/dist/components/BordCheckBox/BordCheckBox.d.ts +2 -2
- package/dist/components/BordFilters/BordFilters.d.ts +2 -2
- package/dist/components/BordFilters/BordFilters.d.ts.map +1 -1
- package/dist/components/BordFilters/BordFilters.types.d.ts +3 -3
- package/dist/components/BordFilters/BordFilters.types.d.ts.map +1 -1
- package/dist/components/BordModal/BordModal.d.ts +3 -3
- package/dist/components/BordModal/BordModal.d.ts.map +1 -1
- package/dist/components/BordModal/BordModal.types.d.ts +28 -6
- package/dist/components/BordModal/BordModal.types.d.ts.map +1 -1
- package/dist/components/BordModal/components/ModalContent.d.ts +3 -3
- package/dist/components/BordModal/components/ModalContent.d.ts.map +1 -1
- package/dist/components/BordOneToneIcon/Icons/BordGradientModalHeaderIcon.d.ts +3 -0
- package/dist/components/BordOneToneIcon/Icons/BordGradientModalHeaderIcon.d.ts.map +1 -0
- package/dist/components/BordTooltip/BordTooltip.d.ts +3 -3
- package/dist/components/BordTooltip/BordTooltip.d.ts.map +1 -1
- package/dist/components/BordTwoToneIcon/BordTwoToneIcon.types.d.ts +8 -2
- package/dist/components/BordTwoToneIcon/BordTwoToneIcon.types.d.ts.map +1 -1
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneComputerPhoneIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneComputerPhoneIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneEntryIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneEntryIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneExitIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneExitIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneMovingIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneMovingIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneQrCodeIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneQrCodeIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneTimerIcon.d.ts +4 -0
- package/dist/components/BordTwoToneIcon/Icons/BordTwoToneTimerIcon.d.ts.map +1 -0
- package/dist/components/BordTwoToneIcon/Icons/listOfBordTwoToneIcons.d.ts.map +1 -1
- package/dist/components/index.d.ts +7 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.d.ts +116 -5
- package/dist/index.esm.js +258 -42
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +261 -40
- package/dist/index.js.map +1 -1
- package/dist/index.webpack.js +258 -42
- package/dist/index.webpack.js.map +1 -1
- package/dist/provider/themeProvider.d.ts +5 -3
- package/dist/provider/themeProvider.d.ts.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1 +1,194 @@
|
|
|
1
|
-
Welcome to .Bord design system
|
|
1
|
+
# ⚡Welcome to .Bord design system ⚡
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## 📕📕 StoryBook
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
✨ Crea, documenta y valida tus componentes con Storybook al instante.
|
|
9
|
+
|
|
10
|
+
🚀 Entorno aislado, recarga rápida y configuración lista para escalar tu Design System sin fricción.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 1️⃣ Clonar el repositorio
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Primero, clona el proyecto a tu máquina local:
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
git clone https://github.com/somosnudos/bord-design-system.git
|
|
24
|
+
```
|
|
25
|
+
```
|
|
26
|
+
cd bord-design-system
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 2️⃣ Preparar tu entorno
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
Para que **bord-design-system** funcione correctamente, incluimos un archivo `.nvmrc` en la raíz del proyecto.
|
|
35
|
+
|
|
36
|
+
Este archivo define la **versión de Node recomendada** para usar con este proyecto.
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Pasos:
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
1. Asegúrate de tener instalado [**nvm**](https://github.com/nvm-sh/nvm).
|
|
45
|
+
|
|
46
|
+
2. En la carpeta del proyecto, ejecuta:
|
|
47
|
+
```bash
|
|
48
|
+
nvm use
|
|
49
|
+
```
|
|
50
|
+
Esto hará que tu terminal use la versión de Node indicada en `.nvmrc`.
|
|
51
|
+
Si la versión no está instalada, nvm te indicará cómo instalarla.
|
|
52
|
+
|
|
53
|
+
3. Instala las dependencias:
|
|
54
|
+
```bash
|
|
55
|
+
yarn install
|
|
56
|
+
```
|
|
57
|
+
⚠️ Usamos **solo yarn** para instalar dependencias y ejecutar scripts, porque el repo está configurado específicamente para yarn.
|
|
58
|
+
4. Inicia el servidor de desarrollo:
|
|
59
|
+
```bash
|
|
60
|
+
npm run storybook
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
⚡ Ahora tu entorno está listo y todos los colaboradores usarán la misma versión de Node, evitando problemas de compatibilidad.
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## 📂 Estructura del Proyecto
|
|
68
|
+
|
|
69
|
+
La carpeta principal es `src/`. Cada directorio tiene una responsabilidad única para mantener el proyecto escalable:
|
|
70
|
+
|
|
71
|
+
- 🖼️ **assets/** — Archivos estáticos como imágenes, fuentes y vectores.
|
|
72
|
+
|
|
73
|
+
### 📂 Estructura de Componentes (Design System)
|
|
74
|
+
|
|
75
|
+
- 🧩 **components/** — Componentes pertenecienstes al DesingSystem
|
|
76
|
+
Estructura components
|
|
77
|
+
```text
|
|
78
|
+
components/
|
|
79
|
+
└── ComponentName/
|
|
80
|
+
├── ComponentName.tsx # 🧠 Lógica y estructura
|
|
81
|
+
├── ComponentName.scss # 🎨 Estilos encapsulados
|
|
82
|
+
├── ComponentName.types.ts # 🔎 Tipado fuerte de props
|
|
83
|
+
└── ComponentName.stories.tsx # 📚 Documentación en Storybook
|
|
84
|
+
index.tsx Punto de entrada del componente. Centraliza y exporta el componentes (y sus tipos si es necesario) para facilitar imports limpios y organizados desde el exterior. (si no exportas tu componente aqui no lo vas a poder utilizar en ningun proyecto).
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
- 🔢 **constants/** — Enums, mensajes fijos y configuraciones que no cambian.
|
|
88
|
+
|
|
89
|
+
- ⚓ **hooks/** — Custom hooks globales para lógica compartida.
|
|
90
|
+
|
|
91
|
+
- 🛣️ **providers/** — componentes que envuelven tus stories para darles **contexto global**, igual que en tu aplicación real.
|
|
92
|
+
|
|
93
|
+
- 🎨 **styles/** — Configuración global, mixins y variables (**Solo archivos SCSS**).
|
|
94
|
+
|
|
95
|
+
- 🏷️ **types/** — Interfaces y tipos de TypeScript compartidos.
|
|
96
|
+
|
|
97
|
+
- 🛠️ **utils/** — Funciones de ayuda, formateadores y helpers generales.
|
|
98
|
+
-
|
|
99
|
+
# 🚀 Guía de Estilo y Flujo de Trabajo (Git Workflow)
|
|
100
|
+
|
|
101
|
+
Para garantizar la calidad y consistencia del código, este proyecto implementa un sistema automatizado de validación utilizando **Husky**, **Lint-Staged**, **ESLint 9 (Flat Config)** y **TypeScript**.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## 📝 1. Convención de Mensajes de Commit
|
|
106
|
+
Contamos con un hook de validación que bloquea mensajes genéricos. Los commits deben seguir el estándar de **Conventional Commits**.
|
|
107
|
+
|
|
108
|
+
**Formato:** `tipo: descripción en minúsculas`
|
|
109
|
+
|
|
110
|
+
| Tipo | Descripción |
|
|
111
|
+
| :--- | :--- |
|
|
112
|
+
| `feat` | Nueva funcionalidad |
|
|
113
|
+
| `fix` | Corrección de un error (bug) |
|
|
114
|
+
| `docs` | Cambios solo en la documentación |
|
|
115
|
+
| `style` | Formato (puntos y comas, espacios, etc.) sin cambiar lógica |
|
|
116
|
+
| `refactor` | Cambio en el código que ni arregla un bug ni añade una función |
|
|
117
|
+
| `perf` | Mejora de rendimiento |
|
|
118
|
+
| `test` | Añadir o corregir pruebas |
|
|
119
|
+
| `build` | Cambios en el sistema de compilación o dependencias |
|
|
120
|
+
| `chore` | Tareas de mantenimiento o herramientas |
|
|
121
|
+
| `revert` | Revertir un commit previo |
|
|
122
|
+
|
|
123
|
+
> **Ejemplo correcto:** `feat: implementar el filtrado de desarrolladores`
|
|
124
|
+
> **Ejemplo incorrecto:** `ajustes realizados` (El commit será rechazado automáticamente).
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## 🏗 2. Orden de Importaciones (ESLint)
|
|
129
|
+
El linter organiza automáticamente los bloques de importación para maximizar la legibilidad. El orden jerárquico es de lo más **"externo"** a lo más **"interno"**, con una línea en blanco entre grupos de distinta categoría.
|
|
130
|
+
|
|
131
|
+
### Jerarquía de orden:
|
|
132
|
+
1. **Librerías Externas:** `react` siempre debe ser la primera línea.
|
|
133
|
+
2. **Lógica Interna:** Hooks personalizados, estados globales (Zustand/Redux), servicios o API.
|
|
134
|
+
3. **Componentes y Assets:** Componentes locales e imágenes.
|
|
135
|
+
4. **Tipos:** Importaciones de interfaces o tipos de TypeScript (`import type`).
|
|
136
|
+
5. **Estilos:** Archivos `.scss` o `.css` **siempre al final**.
|
|
137
|
+
|
|
138
|
+
#### Ejemplo visual:
|
|
139
|
+
```
|
|
140
|
+
// 1. Externos
|
|
141
|
+
import React, { useState } from 'react';
|
|
142
|
+
import { useQuery } from '@tanstack/react-query';
|
|
143
|
+
|
|
144
|
+
// 2. Internos (Lógica y Estado)
|
|
145
|
+
import { useAuth } from '@/hooks/useAuth';
|
|
146
|
+
import { api } from '@/services/api';
|
|
147
|
+
|
|
148
|
+
// 3. Componentes y Assets
|
|
149
|
+
import { Button } from '@/components/Button';
|
|
150
|
+
import logo from '@/assets/logo.svg';
|
|
151
|
+
|
|
152
|
+
// 4. Tipos
|
|
153
|
+
import type { UserProfile } from '@/types/user';
|
|
154
|
+
|
|
155
|
+
// 5. Estilos
|
|
156
|
+
import './ProfileCard.scss';
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## 3. 🚀 Estrategia de Versionado (SemVer)
|
|
160
|
+
Para desplegar en **npm**, es obligatorio seguir el sistema de versiones `$X.Y.Z$`. Cada número tiene un propósito específico dependiendo del impacto del cambio:
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
Plaintext
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
v MAJOR . MINOR . PATCH
|
|
167
|
+
^ ^ ^
|
|
168
|
+
1 . 2 . 3
|
|
169
|
+
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
#### 🛠️ ¿Cuándo aumentar cada número?
|
|
173
|
+
|
|
174
|
+
1. **MAJOR (1.x.x) — Cambios Mayores** * **Cuándo:** Cuando hay cambios que **rompen la compatibilidad** (Breaking Changes).
|
|
175
|
+
|
|
176
|
+
- **Ejemplos:** Cambiar configuraciones base, modificar la API de componentes existentes, o actualizar versiones de React/Tailwind que obliguen a refactorizar el código.
|
|
177
|
+
|
|
178
|
+
2. **MINOR (x.2.x) — Nuevas Funcionalidades** * **Cuándo:** Despliegue de **nuevos componentes** o funcionalidades adicionales por sprint.
|
|
179
|
+
|
|
180
|
+
- **Regla:** Siempre que **no rompan** nada de lo que ya existe (retrocompatible).
|
|
181
|
+
|
|
182
|
+
3. **PATCH (x.x.3) — Correcciones (Fixes)** * **Cuándo:** Ajustes menores, **bug fixes** o mejoras visuales en componentes que ya funcionan.
|
|
183
|
+
|
|
184
|
+
- **Regla:** No cambia la forma en que se usan los componentes, solo mejora su funcionamiento interno.
|
|
185
|
+
|
|
186
|
+
### ⚠️ Nota sobre Despliegue y Ciclo de Vida
|
|
187
|
+
|
|
188
|
+
No es obligatorio incrementar la versión de la librería para actualizaciones exclusivas de **GitHub Pages** (documentación o Storybook). El versionado semántico se reservará estrictamente para el registro en **npm**.
|
|
189
|
+
|
|
190
|
+
> [!IMPORTANT] **Consenso de Versionado:** Antes de realizar un `release` en la librería, se debe validar en equipo la versión resultante. El objetivo es evitar el **versionado arbitrario** y prevenir conflictos de dependencias en los proyectos que consumen el Design System.
|
|
191
|
+
|
|
192
|
+
URL GIT-PAGES
|
|
193
|
+
|
|
194
|
+
[https://somosnudos.github.io/bord-design-system/?path=/story/bordactionbutton--active](https://somosnudos.github.io/bord-design-system/?path=/story/bordactionbutton--active)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ComponentProps, FC, ReactNode } from 'react';
|
|
2
2
|
import { TSemanticColors } from '../../types/global.types';
|
|
3
3
|
import './BordBadge.scss';
|
|
4
|
+
type TBadgeVariants = 'default' | 'gradient' | 'outlined';
|
|
4
5
|
export interface IBordBadgeProps {
|
|
5
6
|
label: ReactNode;
|
|
6
|
-
variant?:
|
|
7
|
+
variant?: TBadgeVariants;
|
|
7
8
|
color?: TSemanticColors | 'default';
|
|
8
9
|
className?: string;
|
|
9
10
|
filled?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordBadge.d.ts","sourceRoot":"","sources":["../../../src/components/BordBadge/BordBadge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,kBAAkB,CAAC;AAE1B,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"BordBadge.d.ts","sourceRoot":"","sources":["../../../src/components/BordBadge/BordBadge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,kBAAkB,CAAC;AAE1B,KAAK,cAAc,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,CAAC;AAO1D,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,KAAK,CAAC,EAAE,eAAe,GAAG,SAAS,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,cAAc,CAAC,KAAK,CAAC,CAAC;CACnC;AAED,QAAA,MAAM,SAAS,EAAE,EAAE,CAAC,eAAe,CAqClC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -19,7 +19,6 @@ export interface IBordButton extends ComponentProps<'button'> {
|
|
|
19
19
|
buttonIconTwoProps?: IbordOneToneIconProps;
|
|
20
20
|
buttonIconOne?: TbordOneToneIcon;
|
|
21
21
|
buttonIconTwo?: TbordOneToneIcon;
|
|
22
|
-
theme?: 'light' | 'dark';
|
|
23
22
|
}
|
|
24
23
|
export {};
|
|
25
24
|
//# sourceMappingURL=BordButton.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordButton.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordButton/BordButton.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAE5E,KAAK,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;AAE7B,MAAM,WAAW,WAAY,SAAQ,cAAc,CAAC,QAAQ,CAAC;IAC3D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,4BAA4B,GAAG,MAAM,CAAC;IACpD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IACxC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,CAAC;IAC5E,mBAAmB,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAChD,kBAAkB,CAAC,EAAE,qBAAqB,CAAC;IAC3C,kBAAkB,CAAC,EAAE,qBAAqB,CAAC;IAC3C,aAAa,CAAC,EAAE,gBAAgB,CAAC;IACjC,aAAa,CAAC,EAAE,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"BordButton.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordButton/BordButton.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAE5E,KAAK,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;AAE7B,MAAM,WAAW,WAAY,SAAQ,cAAc,CAAC,QAAQ,CAAC;IAC3D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,4BAA4B,GAAG,MAAM,CAAC;IACpD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IACxC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,CAAC;IAC5E,mBAAmB,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAChD,kBAAkB,CAAC,EAAE,qBAAqB,CAAC;IAC3C,kBAAkB,CAAC,EAAE,qBAAqB,CAAC;IAC3C,aAAa,CAAC,EAAE,gBAAgB,CAAC;IACjC,aAAa,CAAC,EAAE,gBAAgB,CAAC;CAClC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BordFiltersProps } from
|
|
2
|
-
import
|
|
1
|
+
import { BordFiltersProps } from './BordFilters.types';
|
|
2
|
+
import './BordFilters.scss';
|
|
3
3
|
declare const BordFilters: ({ filtersList, filtersTitle, handleResetFilters, filtersActiveStyle, filtersContainerStyles, filterIcon, isLoading, flexDirection, }: BordFiltersProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default BordFilters;
|
|
5
5
|
//# sourceMappingURL=BordFilters.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordFilters.d.ts","sourceRoot":"","sources":["../../../src/components/BordFilters/BordFilters.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"BordFilters.d.ts","sourceRoot":"","sources":["../../../src/components/BordFilters/BordFilters.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAIvD,OAAO,oBAAoB,CAAC;AAE5B,QAAA,MAAM,WAAW,yIASd,gBAAgB,4CA8BlB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IrawSelectOption, TFlexDirection } from
|
|
2
|
-
import { TbordOneToneIcon } from
|
|
1
|
+
import { IrawSelectOption, TFlexDirection } from '../BordFiltersExpandableSelect/BordFiltersExpandableSelect.types';
|
|
2
|
+
import { TbordOneToneIcon } from '../BordOneToneIcon/BordOneToneIcon.types';
|
|
3
3
|
export interface IModuleFilterInfo {
|
|
4
4
|
title: string;
|
|
5
5
|
openFunction: React.Dispatch<React.SetStateAction<boolean>>;
|
|
@@ -9,7 +9,7 @@ export interface IModuleFilterInfo {
|
|
|
9
9
|
isFilterActive: boolean;
|
|
10
10
|
}
|
|
11
11
|
export interface BordFiltersProps {
|
|
12
|
-
filtersTitle
|
|
12
|
+
filtersTitle?: string;
|
|
13
13
|
filtersList: IModuleFilterInfo[];
|
|
14
14
|
handleResetFilters: () => void;
|
|
15
15
|
filtersActiveStyle: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordFilters.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordFilters/BordFilters.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAC;AACpH,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAE5E,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC5D,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,0BAA0B,EAAE,CAAC,MAAM,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAC/D,cAAc,EAAE,OAAO,CAAC;CACzB;AACD,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"BordFilters.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordFilters/BordFilters.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAC;AACpH,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAE5E,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC5D,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,0BAA0B,EAAE,CAAC,MAAM,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAC/D,cAAc,EAAE,OAAO,CAAC;CACzB;AACD,MAAM,WAAW,gBAAgB;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,iBAAiB,EAAE,CAAC;IACjC,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,sBAAsB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAClD,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { IBordModalProps } from
|
|
3
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IBordModalProps } from './BordModal.types';
|
|
3
|
+
import './BordModal.scss';
|
|
4
4
|
declare const BordModal: React.FC<IBordModalProps>;
|
|
5
5
|
export default BordModal;
|
|
6
6
|
//# sourceMappingURL=BordModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordModal.d.ts","sourceRoot":"","sources":["../../../src/components/BordModal/BordModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,kBAAkB,CAAC;AAE1B,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"BordModal.d.ts","sourceRoot":"","sources":["../../../src/components/BordModal/BordModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,kBAAkB,CAAC;AAE1B,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA0CxC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { TformComponentsStandardSizes } from '../../types/global.types';
|
|
2
|
+
import { IBordButton } from '../BordButton/BordButton.types';
|
|
3
|
+
import { TbordilustrationIcon } from '../BordIlustrationIcon/BordIlustration.types';
|
|
3
4
|
export interface IBordModalProps {
|
|
4
5
|
modalContent: JSX.Element;
|
|
5
6
|
closesOnClickOutside?: boolean;
|
|
@@ -7,28 +8,49 @@ export interface IBordModalProps {
|
|
|
7
8
|
clickOutsideCallback?: () => void;
|
|
8
9
|
shouldCloseModal?: boolean;
|
|
9
10
|
customZIndex?: number;
|
|
11
|
+
customClassName?: string;
|
|
10
12
|
}
|
|
11
|
-
export interface
|
|
13
|
+
export interface IBordModalContent {
|
|
12
14
|
CustomModalComponent?: JSX.Element;
|
|
13
|
-
toCloseModal?:
|
|
15
|
+
toCloseModal?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
14
16
|
modalContentTitle?: string;
|
|
15
17
|
customWidth?: string;
|
|
16
18
|
customHeight?: string;
|
|
17
19
|
customHeaderClass?: string;
|
|
18
20
|
closeIconColor?: string;
|
|
21
|
+
excludeCloseButton?: boolean;
|
|
19
22
|
excludeHeader?: boolean;
|
|
20
23
|
leftAlignmentTitle?: boolean;
|
|
21
|
-
title?:
|
|
24
|
+
title?: React.ReactNode;
|
|
22
25
|
subTitle?: string;
|
|
23
26
|
showButtonOne?: boolean;
|
|
24
27
|
showButtonTwo?: boolean;
|
|
25
28
|
onClickButtonOne?: () => void;
|
|
26
29
|
onClickButtonTwo?: () => void;
|
|
30
|
+
onClickBackButton?: () => void;
|
|
27
31
|
textButtonOne?: string;
|
|
28
32
|
textButtonTwo?: string;
|
|
29
33
|
sizeButtonOne?: TformComponentsStandardSizes;
|
|
30
34
|
sizeButtonTwo?: TformComponentsStandardSizes;
|
|
31
|
-
|
|
35
|
+
customClassButtonOne?: string;
|
|
36
|
+
customClassButtonTwo?: string;
|
|
37
|
+
modalSize?: 'sm' | 'md' | 'lg';
|
|
38
|
+
buttonOneProps?: IBordButton;
|
|
39
|
+
buttonTwoProps?: IBordButton;
|
|
40
|
+
customSubtitleClass?: string;
|
|
41
|
+
customModalContent?: string;
|
|
42
|
+
withoutHeaderCustomClass?: string;
|
|
43
|
+
noPadding?: boolean;
|
|
44
|
+
stylesCustomHeaderProps?: {
|
|
45
|
+
[key: string]: string;
|
|
46
|
+
};
|
|
47
|
+
gradientBackground?: boolean;
|
|
48
|
+
customIconContainerClass?: string;
|
|
49
|
+
iconIllustration?: boolean;
|
|
50
|
+
iconIllustrationVariant?: TbordilustrationIcon;
|
|
51
|
+
iconIllustrationWidth?: string;
|
|
52
|
+
customButtonsContainerClass?: string;
|
|
53
|
+
textBackButton?: string;
|
|
32
54
|
}
|
|
33
55
|
export type TfunctionOneToVoid = () => void;
|
|
34
56
|
//# sourceMappingURL=BordModal.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordModal.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordModal/BordModal.types.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"BordModal.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordModal/BordModal.types.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AAEpF,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC;IAC1B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC;IAChC,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAC;IAClC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,iBAAiB;IAChC,oBAAoB,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IACnC,YAAY,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC7D,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC9B,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC9B,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,4BAA4B,CAAC;IAC7C,aAAa,CAAC,EAAE,4BAA4B,CAAC;IAC7C,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC/B,cAAc,CAAC,EAAE,WAAW,CAAC;IAC7B,cAAc,CAAC,EAAE,WAAW,CAAC;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,uBAAuB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACpD,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,oBAAoB,CAAC;IAC/C,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AACD,MAAM,MAAM,kBAAkB,GAAG,MAAM,IAAI,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
declare const ModalContent: ({ CustomModalComponent, toCloseModal, customWidth, customHeight, leftAlignmentTitle, customHeaderClass, excludeHeader, title, subTitle, showButtonOne, showButtonTwo, sizeButtonOne, sizeButtonTwo, textButtonOne, textButtonTwo, modalSize, onClickButtonTwo, }:
|
|
1
|
+
import { IBordModalContent } from '../BordModal.types';
|
|
2
|
+
import './ModalContent.scss';
|
|
3
|
+
declare const ModalContent: ({ CustomModalComponent, toCloseModal, customWidth, customHeight, leftAlignmentTitle, customHeaderClass, excludeHeader, title, subTitle, showButtonOne, showButtonTwo, sizeButtonOne, sizeButtonTwo, textButtonOne, textButtonTwo, modalSize, onClickButtonTwo, onClickBackButton, buttonOneProps, buttonTwoProps, customClassButtonOne, customClassButtonTwo, customSubtitleClass, customModalContent, withoutHeaderCustomClass, noPadding, excludeCloseButton, stylesCustomHeaderProps, gradientBackground, customIconContainerClass, iconIllustration, iconIllustrationVariant, iconIllustrationWidth, customButtonsContainerClass, textBackButton }: IBordModalContent) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default ModalContent;
|
|
5
5
|
//# sourceMappingURL=ModalContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalContent.d.ts","sourceRoot":"","sources":["../../../../src/components/BordModal/components/ModalContent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"ModalContent.d.ts","sourceRoot":"","sources":["../../../../src/components/BordModal/components/ModalContent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAKvD,OAAO,qBAAqB,CAAC;AAE7B,QAAA,MAAM,YAAY,2nBAoCf,iBAAiB,4CAmFnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordGradientModalHeaderIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordOneToneIcon/Icons/BordGradientModalHeaderIcon.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,2BAA2B,+CAkFhC,CAAC;AAEF,eAAe,2BAA2B,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FC } from
|
|
2
|
-
import { IBordTooltipProps } from
|
|
3
|
-
import
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IBordTooltipProps } from './BordTooltip.type';
|
|
3
|
+
import '../BordTooltip/BordTooltip.scss';
|
|
4
4
|
declare const BordTooltip: FC<IBordTooltipProps>;
|
|
5
5
|
export default BordTooltip;
|
|
6
6
|
//# sourceMappingURL=BordTooltip.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordTooltip.d.ts","sourceRoot":"","sources":["../../../src/components/BordTooltip/BordTooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAa,MAAM,OAAO,CAAC;AAGtC,OAAO,EAAY,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAEjE,OAAO,iCAAiC,CAAC;AAEzC,QAAA,MAAM,WAAW,EAAE,EAAE,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"BordTooltip.d.ts","sourceRoot":"","sources":["../../../src/components/BordTooltip/BordTooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAa,MAAM,OAAO,CAAC;AAGtC,OAAO,EAAY,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAEjE,OAAO,iCAAiC,CAAC;AAEzC,QAAA,MAAM,WAAW,EAAE,EAAE,CAAC,iBAAiB,CA4DtC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -16,9 +16,15 @@ export declare enum BORD_TWO_TONE_ICONS {
|
|
|
16
16
|
"laptopSettings" = "laptopSettings",
|
|
17
17
|
"computer" = "computer",
|
|
18
18
|
"computerDesk" = "computerDesk",
|
|
19
|
-
"headset" = "headset"
|
|
19
|
+
"headset" = "headset",
|
|
20
|
+
"computerPhone" = "computerPhone",
|
|
21
|
+
"entry" = "entry",
|
|
22
|
+
"exit" = "exit",
|
|
23
|
+
"qrCode" = "qrCode",
|
|
24
|
+
"moving" = "moving",
|
|
25
|
+
"timer" = "timer"
|
|
20
26
|
}
|
|
21
|
-
export type TbordTwoToneIcon = "employee" | "global" | "helpCircle" | "inventory" | "logout1" | "menuSquare" | "pieChart" | "settings" | "shoppingCartCheck2" | "shoppingCart" | "trackingTruck" | "laptopCharging" | "macLaptopSettings" | "laptopSettings" | "computer" | "computerDesk" | "headset";
|
|
27
|
+
export type TbordTwoToneIcon = "employee" | "global" | "helpCircle" | "inventory" | "logout1" | "menuSquare" | "pieChart" | "settings" | "shoppingCartCheck2" | "shoppingCart" | "trackingTruck" | "laptopCharging" | "macLaptopSettings" | "laptopSettings" | "computer" | "computerDesk" | "headset" | "computerPhone" | "entry" | "exit" | "qrCode" | "moving" | "timer";
|
|
22
28
|
export interface IBordTwoToneIconProps extends ComponentProps<"svg"> {
|
|
23
29
|
variant: TbordTwoToneIcon;
|
|
24
30
|
colorTones?: IcolorTones;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BordTwoToneIcon.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordTwoToneIcon/BordTwoToneIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvC,oBAAY,mBAAmB;IAC7B,UAAU,aAAa;IACvB,QAAQ,WAAW;IACnB,YAAY,eAAe;IAC3B,WAAW,cAAc;IACzB,SAAS,YAAY;IACrB,YAAY,eAAe;IAC3B,UAAU,aAAa;IACvB,UAAU,aAAa;IACvB,oBAAoB,uBAAuB;IAC3C,cAAc,iBAAiB;IAC/B,eAAe,kBAAkB;IACjC,gBAAgB,mBAAmB;IACnC,mBAAmB,sBAAsB;IACzC,gBAAgB,mBAAmB;IACnC,UAAU,aAAa;IACvB,cAAc,iBAAiB;IAC/B,SAAS,YAAY;
|
|
1
|
+
{"version":3,"file":"BordTwoToneIcon.types.d.ts","sourceRoot":"","sources":["../../../src/components/BordTwoToneIcon/BordTwoToneIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvC,oBAAY,mBAAmB;IAC7B,UAAU,aAAa;IACvB,QAAQ,WAAW;IACnB,YAAY,eAAe;IAC3B,WAAW,cAAc;IACzB,SAAS,YAAY;IACrB,YAAY,eAAe;IAC3B,UAAU,aAAa;IACvB,UAAU,aAAa;IACvB,oBAAoB,uBAAuB;IAC3C,cAAc,iBAAiB;IAC/B,eAAe,kBAAkB;IACjC,gBAAgB,mBAAmB;IACnC,mBAAmB,sBAAsB;IACzC,gBAAgB,mBAAmB;IACnC,UAAU,aAAa;IACvB,cAAc,iBAAiB;IAC/B,SAAS,YAAY;IACrB,eAAe,kBAAkB;IACjC,OAAO,UAAU;IACjB,MAAM,SAAS;IACf,QAAQ,WAAW;IACnB,QAAQ,WAAW;IACnB,OAAO,UAAU;CAClB;AAED,MAAM,MAAM,gBAAgB,GACxB,UAAU,GACV,QAAQ,GACR,YAAY,GACZ,WAAW,GACX,SAAS,GACT,YAAY,GACZ,UAAU,GACV,UAAU,GACV,oBAAoB,GACpB,cAAc,GACd,eAAe,GACf,gBAAgB,GAChB,mBAAmB,GACnB,gBAAgB,GAChB,UAAU,GACV,cAAc,GACd,SAAS,GACT,eAAe,GACf,OAAO,GACP,MAAM,GACN,QAAQ,GACR,QAAQ,GACR,OAAO,CAAC;AAEZ,MAAM,WAAW,qBAAsB,SAAQ,cAAc,CAAC,KAAK,CAAC;IAClE,OAAO,EAAE,gBAAgB,CAAC;IAC1B,UAAU,CAAC,EAAE,WAAW,CAAC;IACzB,YAAY,CAAC,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACtC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,iBAAkB,SAAQ,cAAc,CAAC,KAAK,CAAC;IAC9D,UAAU,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ITwoToneIconProps } from "../BordTwoToneIcon.types";
|
|
2
|
+
declare const BordTwoToneComputerPhoneIcon: (props: ITwoToneIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export default BordTwoToneComputerPhoneIcon;
|
|
4
|
+
//# sourceMappingURL=BordTwoToneComputerPhoneIcon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneComputerPhoneIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneComputerPhoneIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,4BAA4B,UAAW,iBAAiB,4CAsB7D,CAAC;AAEF,eAAe,4BAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneEntryIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneEntryIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,oBAAoB,UAAW,iBAAiB,4CAuBrD,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneExitIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneExitIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,mBAAmB,UAAW,iBAAiB,4CAuBpD,CAAC;AAEF,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneMovingIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneMovingIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,qBAAqB,UAAW,iBAAiB,4CAiBtD,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneQrCodeIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneQrCodeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,qBAAqB,UAAW,iBAAiB,4CAoBtD,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BordTwoToneTimerIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/BordTwoToneTimerIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAG7D,QAAA,MAAM,oBAAoB,UAAW,iBAAiB,4CAuBrD,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"listOfBordTwoToneIcons.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/listOfBordTwoToneIcons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EAClB,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"listOfBordTwoToneIcons.d.ts","sourceRoot":"","sources":["../../../../src/components/BordTwoToneIcon/Icons/listOfBordTwoToneIcons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EAClB,MAAM,0BAA0B,CAAC;AAyBlC,eAAO,MAAM,sBAAsB,EAAE;KAClC,GAAG,IAAI,mBAAmB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;CAyBnE,CAAC"}
|
|
@@ -13,5 +13,11 @@ import BordMetricCard from './BordMetricCard/BordMetricCard';
|
|
|
13
13
|
import { BordTabBar } from './BordTabBar/BordTabBar';
|
|
14
14
|
import { BordTab } from './BordTab/BordTab';
|
|
15
15
|
import { BordTabsGroupWithBadge } from './BordTabsGroup/BordTabsGroupWithBadge';
|
|
16
|
-
|
|
16
|
+
import BordFloatDropdown from './BordFloatDropdown/BordFloatDropdown';
|
|
17
|
+
import BordModal from './BordModal/BordModal';
|
|
18
|
+
import ModalContent from './BordModal/components/ModalContent';
|
|
19
|
+
import BordIlustrationIcon from './BordIlustrationIcon/BordIlustrationIcon';
|
|
20
|
+
import BordToast from './BordToast/BordToast';
|
|
21
|
+
import '../styles/index.scss';
|
|
22
|
+
export { BordAvatar, BordFlag, BordOneToneIcon, BordTextInput, BordTwoToneIcon, BordBackButton, BordAttentionButton, BordInfoBanner, BordButton, BordTabs, BordInfoCard, BordMetricCard, BordTabBar, BordTab, BordTabsGroupWithBadge, BordFloatDropdown, BordModal, ModalContent, BordIlustrationIcon, BordToast };
|
|
17
23
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,eAAe,MAAM,mCAAmC,CAAC;AAChE,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAC1D,OAAO,eAAe,MAAM,mCAAmC,CAAC;AAChE,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,mBAAmB,MAAM,2CAA2C,CAAC;AAC5E,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,YAAY,MAAM,6BAA6B,CAAC;AACvD,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,eAAe,MAAM,mCAAmC,CAAC;AAChE,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAC1D,OAAO,eAAe,MAAM,mCAAmC,CAAC;AAChE,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,mBAAmB,MAAM,2CAA2C,CAAC;AAC5E,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,YAAY,MAAM,6BAA6B,CAAC;AACvD,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,iBAAiB,MAAM,uCAAuC,CAAC;AACtE,OAAO,SAAS,MAAM,uBAAuB,CAAC;AAC9C,OAAO,YAAY,MAAM,qCAAqC,CAAC;AAC/D,OAAO,mBAAmB,MAAM,2CAA2C,CAAC;AAC5E,OAAO,SAAS,MAAM,uBAAuB,CAAC;AAE9C,OAAO,sBAAsB,CAAA;AAE7B,OAAO,EACL,UAAU,EACV,QAAQ,EACR,eAAe,EACf,aAAa,EACb,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,cAAc,EACd,UAAU,EACV,QAAQ,EACR,YAAY,EACZ,cAAc,EACd,UAAU,EACV,OAAO,EACP,sBAAsB,EACtB,iBAAiB,EACjB,SAAS,EACT,YAAY,EACZ,mBAAmB,EACnB,SAAS,EACV,CAAC"}
|