siesa-ui-kit 1.0.1 → 1.0.3
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/bin/install.cjs +502 -0
- package/bin/prepare-publish.cjs +28 -0
- package/bin/restore-folders.cjs +28 -0
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.d.ts +101 -0
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.d.ts.map +1 -0
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.types.d.ts +95 -0
- package/dist/components/DropdownItemCollapsible/DropdownItemCollapsible.types.d.ts.map +1 -0
- package/dist/components/DropdownItemCollapsible/icons.d.ts +19 -0
- package/dist/components/DropdownItemCollapsible/icons.d.ts.map +1 -0
- package/dist/components/DropdownItemCollapsible/index.d.ts +9 -0
- package/dist/components/DropdownItemCollapsible/index.d.ts.map +1 -0
- package/dist/components/DropdownItemHeading/DropdownItemHeading.d.ts +75 -0
- package/dist/components/DropdownItemHeading/DropdownItemHeading.d.ts.map +1 -0
- package/dist/components/DropdownItemHeading/DropdownItemHeading.types.d.ts +85 -0
- package/dist/components/DropdownItemHeading/DropdownItemHeading.types.d.ts.map +1 -0
- package/dist/components/DropdownItemHeading/icons.d.ts +48 -0
- package/dist/components/DropdownItemHeading/icons.d.ts.map +1 -0
- package/dist/components/DropdownItemHeading/index.d.ts +4 -0
- package/dist/components/DropdownItemHeading/index.d.ts.map +1 -0
- package/dist/components/LoginView/LoginView.d.ts +36 -0
- package/dist/components/LoginView/LoginView.d.ts.map +1 -0
- package/dist/components/LoginView/LoginView.types.d.ts +46 -0
- package/dist/components/LoginView/LoginView.types.d.ts.map +1 -0
- package/dist/components/LoginView/icons.d.ts +18 -0
- package/dist/components/LoginView/icons.d.ts.map +1 -0
- package/dist/components/LoginView/index.d.ts +4 -0
- package/dist/components/LoginView/index.d.ts.map +1 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.d.ts +90 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.d.ts.map +1 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.types.d.ts +155 -0
- package/dist/components/NavigationRailItem/NavigationRailItem.types.d.ts.map +1 -0
- package/dist/components/NavigationRailItem/index.d.ts +3 -0
- package/dist/components/NavigationRailItem/index.d.ts.map +1 -0
- package/dist/components/NavigationRailPanel/NavigationRailPanel.d.ts +124 -0
- package/dist/components/NavigationRailPanel/NavigationRailPanel.d.ts.map +1 -0
- package/dist/components/NavigationRailPanel/NavigationRailPanel.types.d.ts +154 -0
- package/dist/components/NavigationRailPanel/NavigationRailPanel.types.d.ts.map +1 -0
- package/dist/components/NavigationRailPanel/index.d.ts +3 -0
- package/dist/components/NavigationRailPanel/index.d.ts.map +1 -0
- package/dist/components/NavigationRailTypes/NavigationRailTypes.d.ts +99 -0
- package/dist/components/NavigationRailTypes/NavigationRailTypes.d.ts.map +1 -0
- package/dist/components/NavigationRailTypes/NavigationRailTypes.types.d.ts +111 -0
- package/dist/components/NavigationRailTypes/NavigationRailTypes.types.d.ts.map +1 -0
- package/dist/components/NavigationRailTypes/icons.d.ts +58 -0
- package/dist/components/NavigationRailTypes/icons.d.ts.map +1 -0
- package/dist/components/NavigationRailTypes/index.d.ts +4 -0
- package/dist/components/NavigationRailTypes/index.d.ts.map +1 -0
- package/dist/components/SignUpView/SignUpView.d.ts +38 -0
- package/dist/components/SignUpView/SignUpView.d.ts.map +1 -0
- package/dist/components/SignUpView/SignUpView.types.d.ts +51 -0
- package/dist/components/SignUpView/SignUpView.types.d.ts.map +1 -0
- package/dist/components/SignUpView/icons.d.ts +18 -0
- package/dist/components/SignUpView/icons.d.ts.map +1 -0
- package/dist/components/SignUpView/index.d.ts +4 -0
- package/dist/components/SignUpView/index.d.ts.map +1 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/siesa-ui-kit.cjs +906 -66
- package/dist/siesa-ui-kit.cjs.map +1 -1
- package/dist/siesa-ui-kit.mjs +3547 -411
- package/dist/siesa-ui-kit.mjs.map +1 -1
- package/package.json +14 -3
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Icono Chevron Right (apunta hacia la derecha)
|
|
4
|
+
* Usado en el botón de collapse
|
|
5
|
+
* Tamaño recomendado: 16x16px
|
|
6
|
+
*/
|
|
7
|
+
export declare const ChevronRightIcon: React.FC<{
|
|
8
|
+
className?: string;
|
|
9
|
+
}>;
|
|
10
|
+
/**
|
|
11
|
+
* Icono Chevron Left (apunta hacia la izquierda)
|
|
12
|
+
* Usado en el botón de expand
|
|
13
|
+
* Tamaño recomendado: 16x16px
|
|
14
|
+
*/
|
|
15
|
+
export declare const ChevronLeftIcon: React.FC<{
|
|
16
|
+
className?: string;
|
|
17
|
+
}>;
|
|
18
|
+
/**
|
|
19
|
+
* Icono Clock (reloj)
|
|
20
|
+
* Usado en el botón "Recientes"
|
|
21
|
+
* Tamaño recomendado: 16x16px
|
|
22
|
+
*/
|
|
23
|
+
export declare const ClockIcon: React.FC<{
|
|
24
|
+
className?: string;
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Icono Magnifying Glass (búsqueda)
|
|
28
|
+
* Usado en el botón de búsqueda
|
|
29
|
+
* Tamaño recomendado: 16x16px
|
|
30
|
+
*/
|
|
31
|
+
export declare const MagnifyingGlassIcon: React.FC<{
|
|
32
|
+
className?: string;
|
|
33
|
+
}>;
|
|
34
|
+
/**
|
|
35
|
+
* Icono Home
|
|
36
|
+
* Ejemplo para items de navegación
|
|
37
|
+
* Tamaño recomendado: 16x16px
|
|
38
|
+
*/
|
|
39
|
+
export declare const HomeIcon: React.FC<{
|
|
40
|
+
className?: string;
|
|
41
|
+
}>;
|
|
42
|
+
/**
|
|
43
|
+
* Icono Users
|
|
44
|
+
* Ejemplo para items de navegación
|
|
45
|
+
* Tamaño recomendado: 16x16px
|
|
46
|
+
*/
|
|
47
|
+
export declare const UsersIcon: React.FC<{
|
|
48
|
+
className?: string;
|
|
49
|
+
}>;
|
|
50
|
+
/**
|
|
51
|
+
* Icono Settings
|
|
52
|
+
* Ejemplo para items de navegación
|
|
53
|
+
* Tamaño recomendado: 16x16px
|
|
54
|
+
*/
|
|
55
|
+
export declare const SettingsIcon: React.FC<{
|
|
56
|
+
className?: string;
|
|
57
|
+
}>;
|
|
58
|
+
//# sourceMappingURL=icons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/NavigationRailTypes/icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAY7D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAY5D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAatD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAahE,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAarD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAetD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAazD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { NavigationRailTypes } from './NavigationRailTypes';
|
|
2
|
+
export { default } from './NavigationRailTypes';
|
|
3
|
+
export type { NavigationRailTypesProps, NavigationRailItem, NavigationRailCollapsibleItem, } from './NavigationRailTypes.types';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/NavigationRailTypes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAChD,YAAY,EACV,wBAAwB,EACxB,kBAAkB,EAClB,6BAA6B,GAC9B,MAAM,6BAA6B,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SignUpViewProps } from './SignUpView.types';
|
|
3
|
+
/**
|
|
4
|
+
* SignUpView - Vista de registro del sistema Siesa
|
|
5
|
+
*
|
|
6
|
+
* Vista completa de registro con formulario que incluye:
|
|
7
|
+
* - Logo de Siesa
|
|
8
|
+
* - Campos de nombre, email y contraseña
|
|
9
|
+
* - Botón de registro
|
|
10
|
+
* - Link para iniciar sesión
|
|
11
|
+
* - Texto de términos y condiciones
|
|
12
|
+
* - Fondo decorativo opcional
|
|
13
|
+
*
|
|
14
|
+
* Mejores prácticas implementadas:
|
|
15
|
+
* - Orden de modificadores: {responsive}:{dark}:{state}:{utility}
|
|
16
|
+
* - Dark mode con estrategia 'class' (darkMode: 'class')
|
|
17
|
+
* - Tokens de color consistentes con la documentación
|
|
18
|
+
* - Type safety con TypeScript estricto
|
|
19
|
+
* - Accesibilidad con ARIA labels y manejo de formulario semántico
|
|
20
|
+
* - Validación de email básica
|
|
21
|
+
*
|
|
22
|
+
* @see docs/colors.md - Sistema de colores
|
|
23
|
+
* @see docs/typography.md - Sistema tipográfico
|
|
24
|
+
* @see docs/spacing.md - Sistema de espaciado
|
|
25
|
+
* @see docs/shadows.md - Sistema de sombras
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```tsx
|
|
29
|
+
* <SignUpView
|
|
30
|
+
* onSubmit={(name, email, password) => console.log('Sign up', name, email, password)}
|
|
31
|
+
* onSignIn={() => console.log('Go to sign in')}
|
|
32
|
+
* onTermsClick={() => console.log('View terms')}
|
|
33
|
+
* onPrivacyClick={() => console.log('View privacy')}
|
|
34
|
+
* />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare const SignUpView: React.FC<SignUpViewProps>;
|
|
38
|
+
//# sourceMappingURL=SignUpView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignUpView.d.ts","sourceRoot":"","sources":["../../../src/components/SignUpView/SignUpView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAG1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+chD,CAAC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Props del componente SignUpView
|
|
3
|
+
*/
|
|
4
|
+
export interface SignUpViewProps {
|
|
5
|
+
/**
|
|
6
|
+
* Handler para el submit del formulario de registro
|
|
7
|
+
* @param name - Nombre ingresado por el usuario
|
|
8
|
+
* @param email - Email ingresado por el usuario
|
|
9
|
+
* @param password - Contraseña ingresada por el usuario
|
|
10
|
+
*/
|
|
11
|
+
onSubmit?: (name: string, email: string, password: string) => void;
|
|
12
|
+
/**
|
|
13
|
+
* Handler para el click en "Ya tengo una cuenta"
|
|
14
|
+
*/
|
|
15
|
+
onSignIn?: () => void;
|
|
16
|
+
/**
|
|
17
|
+
* Handler para el click en "Condiciones de Uso"
|
|
18
|
+
*/
|
|
19
|
+
onTermsClick?: () => void;
|
|
20
|
+
/**
|
|
21
|
+
* Handler para el click en "Políticas de Privacidad"
|
|
22
|
+
*/
|
|
23
|
+
onPrivacyClick?: () => void;
|
|
24
|
+
/**
|
|
25
|
+
* Estado de carga del botón de submit
|
|
26
|
+
* @default false
|
|
27
|
+
*/
|
|
28
|
+
isLoading?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Mensaje de error general para mostrar en el formulario
|
|
31
|
+
*/
|
|
32
|
+
errorMessage?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Clases CSS adicionales para el contenedor
|
|
35
|
+
*/
|
|
36
|
+
className?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Si se muestra el fondo decorativo con imagen
|
|
39
|
+
* @default true
|
|
40
|
+
*/
|
|
41
|
+
showBackground?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Variante de visualización
|
|
44
|
+
* - 'responsive': Se adapta según el viewport (default)
|
|
45
|
+
* - 'mobile': Siempre se muestra como mobile sin efectos de card
|
|
46
|
+
* - 'desktop': Siempre se muestra como desktop con card
|
|
47
|
+
* @default 'responsive'
|
|
48
|
+
*/
|
|
49
|
+
variant?: 'responsive' | 'mobile' | 'desktop';
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=SignUpView.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignUpView.types.d.ts","sourceRoot":"","sources":["../../../src/components/SignUpView/SignUpView.types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAEnE;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IAEtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAE1B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAE5B;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,SAAS,CAAC;CAC/C"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Icono de círculo de usuario para el input de nombre
|
|
4
|
+
*/
|
|
5
|
+
export declare const UserCircleIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
6
|
+
/**
|
|
7
|
+
* Icono de sobre (envelope) para el input de email
|
|
8
|
+
*/
|
|
9
|
+
export declare const EnvelopeIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
10
|
+
/**
|
|
11
|
+
* Icono de candado cerrado (lock) para el input de contraseña
|
|
12
|
+
*/
|
|
13
|
+
export declare const LockClosedIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
14
|
+
/**
|
|
15
|
+
* Icono de ojo (eye) para mostrar/ocultar contraseña
|
|
16
|
+
*/
|
|
17
|
+
export declare const EyeIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
18
|
+
//# sourceMappingURL=icons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/SignUpView/icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAalE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAUhE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAalE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAc3D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/SignUpView/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -22,5 +22,35 @@ export { Badge } from './components/Badge/Badge';
|
|
|
22
22
|
export type { BadgeProps, BadgeColor } from './components/Badge/Badge.types';
|
|
23
23
|
export { Quantity } from './components/Quantity/Quantity';
|
|
24
24
|
export type { QuantityProps } from './components/Quantity/Quantity.types';
|
|
25
|
+
export { Dropdown } from './components/Dropdown/Dropdown';
|
|
26
|
+
export type { DropdownProps, DropdownItemProps } from './components/Dropdown/Dropdown.types';
|
|
27
|
+
export { Notification } from './components/Notification/Notification';
|
|
28
|
+
export type { NotificationProps } from './components/Notification/Notification.types';
|
|
29
|
+
export { Pagination } from './components/Pagination/Pagination';
|
|
30
|
+
export type { PaginationProps } from './components/Pagination/Pagination.types';
|
|
31
|
+
export { Select } from './components/Select/Select';
|
|
32
|
+
export type { SelectProps, SelectOption } from './components/Select/Select.types';
|
|
33
|
+
export { Table } from './components/Table/Table';
|
|
34
|
+
export type { TableProps, TableColumn, SortDirection } from './components/Table/Table.types';
|
|
35
|
+
export { Tabs } from './components/Tabs/Tabs';
|
|
36
|
+
export type { TabsProps, TabItem } from './components/Tabs/Tabs.types';
|
|
37
|
+
export { Navbar } from './components/Navbar/Navbar';
|
|
38
|
+
export type { NavbarProps, NavbarVariant, UserDropdownProps } from './components/Navbar/Navbar.types';
|
|
39
|
+
export { NavigationBar } from './components/NavigationBar/NavigationBar';
|
|
40
|
+
export type { NavigationBarProps, NavigationBarItem } from './components/NavigationBar/NavigationBar.types';
|
|
41
|
+
export { POSConvention } from './components/POSConvention/POSConvention';
|
|
42
|
+
export type { POSConventionProps, ConventionStatus } from './components/POSConvention/POSConvention.types';
|
|
43
|
+
export { POSLocationButton } from './components/POSLocationButton/POSLocationButton';
|
|
44
|
+
export type { POSLocationButtonProps, POSLocationStatus, POSLocationState, POSLocationCapacity } from './components/POSLocationButton/POSLocationButton.types';
|
|
45
|
+
export { POSNumberButton } from './components/POSNumberButton/POSNumberButton';
|
|
46
|
+
export type { POSNumberButtonProps } from './components/POSNumberButton/POSNumberButton.types';
|
|
47
|
+
export { POSProductButton } from './components/POSProductButton/POSProductButton';
|
|
48
|
+
export type { POSProductButtonProps } from './components/POSProductButton/POSProductButton.types';
|
|
49
|
+
export { POSProductCard } from './components/POSProductCard/POSProductCard';
|
|
50
|
+
export type { POSProductCardProps } from './components/POSProductCard/POSProductCard.types';
|
|
51
|
+
export { POSProductSidebarItems } from './components/POSProductSidebarItems/POSProductSidebarItems';
|
|
52
|
+
export type { POSProductSidebarItemsProps, DescriptionItem } from './components/POSProductSidebarItems/POSProductSidebarItems.types';
|
|
53
|
+
export { POSTable } from './components/POSTable/POSTable';
|
|
54
|
+
export type { POSTableProps, TableStatus, TableShape, ChairCount } from './components/POSTable/POSTable.types';
|
|
25
55
|
export { ThemeProvider, useTheme, type Theme } from './context';
|
|
26
56
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAEzG,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAE7E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAEzF,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAEzF,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAE7E,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAEjF,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAE5F,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAEpF,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAE/F,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAEjE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAE7E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|