plataforma-fundacao-componentes 2.26.5 → 2.26.7

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.
Files changed (38) hide show
  1. package/dist/assets/icons/Bell16Icon.d.ts +3 -0
  2. package/dist/assets/icons/BellIcon.d.ts +3 -0
  3. package/dist/assets/icons/PercentLoaderIcon.d.ts +5 -3
  4. package/dist/assets/icons/Settings16Icon.d.ts +3 -0
  5. package/dist/components/button/Button.d.ts +1 -2
  6. package/dist/components/checkbox/Checkbox.d.ts +3 -3
  7. package/dist/components/container/Container.d.ts +3 -6
  8. package/dist/components/dropdownMenu/DropdownMenu.d.ts +5 -10
  9. package/dist/components/floatingPanel/FloatingPanel.d.ts +18 -11
  10. package/dist/components/fullHeightContainer/FullHeightContainer.d.ts +2 -8
  11. package/dist/components/fullHeightContainer/FullHeightContainer.stories.d.ts +4 -4
  12. package/dist/components/header/Header.d.ts +2 -3
  13. package/dist/components/iconButton/IconButton.d.ts +2 -10
  14. package/dist/components/input/Input.d.ts +1 -14
  15. package/dist/components/itemDropdownDownload/ItemDropdownDownload.d.ts +4 -10
  16. package/dist/components/notification/Notification.d.ts +5 -12
  17. package/dist/components/notification/Notification.stories.d.ts +7 -8
  18. package/dist/components/notificationPanel/NotificationPanel.d.ts +21 -0
  19. package/dist/components/notificationPanel/NotificationPanel.stories.d.ts +6 -0
  20. package/dist/components/select/Select.d.ts +0 -1
  21. package/dist/components/select/Select.stories.d.ts +3 -1
  22. package/dist/components/videoModal/VideoModal.d.ts +4 -4
  23. package/dist/hooks/useEvent/useEvent.d.ts +6 -0
  24. package/dist/hooks/useFloatingPanel/useFloatingPanel.d.ts +21 -0
  25. package/dist/hooks/useFloatingPanel/useFloatingPanel.stories.d.ts +8 -0
  26. package/dist/hooks/useSystemInfo/useSystemInfo.d.ts +6 -0
  27. package/dist/hooks/useSystemInfo/useSystemInfo.stories.d.ts +6 -0
  28. package/dist/index.css +247 -206
  29. package/dist/index.d.ts +11 -3
  30. package/dist/index.js +821 -697
  31. package/dist/index.js.map +1 -1
  32. package/dist/index.modern.js +818 -699
  33. package/dist/index.modern.js.map +1 -1
  34. package/dist/libraries/Notification.d.ts +1 -0
  35. package/dist/libraries/System.d.ts +19 -0
  36. package/dist/utils/HTMLutils.d.ts +0 -1
  37. package/dist/utils/MaskUtils.d.ts +1 -1
  38. package/package.json +1 -1
@@ -9,6 +9,7 @@ export declare enum NotificationType {
9
9
  PrimaryDark = "primary-dark",
10
10
  PrimaryInvert = "primary-invert",
11
11
  Error = "error",
12
+ ErrorLight = "error-light",
12
13
  Default = "default",
13
14
  Disabled = "disabled"
14
15
  }
@@ -0,0 +1,19 @@
1
+ export declare enum OS {
2
+ Windows = "Windows",
3
+ Linux = "Linux",
4
+ MacOS = "MacOS",
5
+ iOS = "iOS",
6
+ Android = "Android",
7
+ ChromeOS = "ChromeOS",
8
+ Other = "Other"
9
+ }
10
+ export declare enum Browser {
11
+ Brave = "Brave",
12
+ Chrome = "Chrome",
13
+ Firefox = "Firefox",
14
+ Opera = "Opera",
15
+ Safari = "Safari",
16
+ Edge = "Edge",
17
+ IE = "IE",
18
+ Other = "Other"
19
+ }
@@ -2,7 +2,6 @@ export declare const getMergedClassNames: (arr: unknown[]) => string;
2
2
  export declare function useMergedClassNames(arr: unknown[]): string;
3
3
  export declare const getUniqueKey: () => string;
4
4
  export declare const isMobile: () => boolean;
5
- export declare const isiPhone: () => boolean;
6
5
  export declare const getIdProgramaFromHash: (hash: string) => string;
7
6
  export declare const getIdTurmaFromHash: (hash: string) => string;
8
7
  export declare class TimeOut {
@@ -5,5 +5,5 @@ export declare const formatCPFCNPJ: (input: string) => string;
5
5
  export declare const formatTelefone: (input: string) => string;
6
6
  export declare const formatDataNascimento: (input: string) => string;
7
7
  export declare const formatHexadecimalColor: (input: string) => string;
8
- export declare const getStringWithoutSpecialChar: (input: string | number) => string;
8
+ export declare const getStringWithoutSpecialChar: (input: string) => string;
9
9
  export declare const captalizeFirtLetter: (value?: string | undefined) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plataforma-fundacao-componentes",
3
- "version": "2.26.5",
3
+ "version": "2.26.7",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "Guvidaletti",
6
6
  "license": "MIT",