prometeo-design-system 1.0.10 → 1.0.12
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/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
export { default as Avatar } from './components/Avatar/Avatar';
|
|
1
2
|
export { default as Button } from './components/Button/Button';
|
|
2
3
|
export { default as Input } from './components/Input/Input';
|
|
4
|
+
export { default as InputFormik } from './components/InputFormik/InputFormik';
|
|
3
5
|
export { default as Menu } from './components/Menu/Menu';
|
|
4
|
-
export { default as Spinner } from './components/Spinner/Spinner';
|
|
5
6
|
export { default as Pagination } from './components/Pagination/Pagination';
|
|
6
|
-
export { default as Avatar } from './components/Avatar/Avatar';
|
|
7
7
|
export { default as Select } from './components/Select/Select';
|
|
8
|
+
export { default as Spinner } from './components/Spinner/Spinner';
|
|
8
9
|
export { LayoutGeneric } from './components/Layout/LayoutGeneric';
|
|
9
10
|
export * from './components/Sidebar';
|
|
10
11
|
export { Badge } from './components/Sidebar/components/badge';
|
|
@@ -13,18 +14,19 @@ export { CompanyLogo } from './components/Sidebar/components/company-logo';
|
|
|
13
14
|
export { NavbarLinks } from './components/Sidebar/components/nav-links';
|
|
14
15
|
export { UserProfile } from './components/Sidebar/components/user-profile';
|
|
15
16
|
export { useClickOutside } from './hooks/useClickOutside';
|
|
16
|
-
export type { ButtonColor, ButtonSize, ButtonVariant
|
|
17
|
-
export type { InputProps,
|
|
17
|
+
export type { ButtonColor, ButtonSize, ButtonVariant } from './components/Button/Button';
|
|
18
|
+
export type { InputProps, InputSize, InputVariant } from './components/Input/Input';
|
|
19
|
+
export type { IInputFormik } from './components/InputFormik/InputFormik';
|
|
18
20
|
export type { MenuProps } from './components/Menu/Menu';
|
|
19
|
-
export type { SidebarContextValue } from './components/Sidebar/hooks/useSidebar';
|
|
20
21
|
export type { BadgeProps } from './components/Sidebar/components/badge';
|
|
21
22
|
export type { NavbarCollapseButtonProps } from './components/Sidebar/components/collapse-button';
|
|
22
23
|
export type { CompanyLogoProps } from './components/Sidebar/components/company-logo';
|
|
23
24
|
export type { NavbarLinksProps } from './components/Sidebar/components/nav-links';
|
|
24
25
|
export type { UserProfileProps } from './components/Sidebar/components/user-profile';
|
|
25
|
-
export type { INavLink, Role, RoleLevels
|
|
26
|
+
export type { INavLink, Role, RoleLevels } from './components/Sidebar/hooks/useNavLinks';
|
|
27
|
+
export type { SidebarContextValue } from './components/Sidebar/hooks/useSidebar';
|
|
26
28
|
export type { SessionLocalStorage } from './interfaces/User/SessionLocalStorage';
|
|
27
|
-
export type { SpinnerProps,
|
|
29
|
+
export type { SpinnerProps, SpinnerSize, SpinnerVariant } from './components/Spinner/Spinner';
|
|
28
30
|
export type { PaginationProps } from './components/Pagination/Pagination';
|
|
29
|
-
export type {
|
|
31
|
+
export type { SelectionDisplayProps, SelectOptionRendererProps, SelectProps } from './components/Select/Select';
|
|
30
32
|
export { Icons } from './Icons/Icons';
|