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.
- package/dist/assets/icons/Bell16Icon.d.ts +3 -0
- package/dist/assets/icons/BellIcon.d.ts +3 -0
- package/dist/assets/icons/PercentLoaderIcon.d.ts +5 -3
- package/dist/assets/icons/Settings16Icon.d.ts +3 -0
- package/dist/components/button/Button.d.ts +1 -2
- package/dist/components/checkbox/Checkbox.d.ts +3 -3
- package/dist/components/container/Container.d.ts +3 -6
- package/dist/components/dropdownMenu/DropdownMenu.d.ts +5 -10
- package/dist/components/floatingPanel/FloatingPanel.d.ts +18 -11
- package/dist/components/fullHeightContainer/FullHeightContainer.d.ts +2 -8
- package/dist/components/fullHeightContainer/FullHeightContainer.stories.d.ts +4 -4
- package/dist/components/header/Header.d.ts +2 -3
- package/dist/components/iconButton/IconButton.d.ts +2 -10
- package/dist/components/input/Input.d.ts +1 -14
- package/dist/components/itemDropdownDownload/ItemDropdownDownload.d.ts +4 -10
- package/dist/components/notification/Notification.d.ts +5 -12
- package/dist/components/notification/Notification.stories.d.ts +7 -8
- package/dist/components/notificationPanel/NotificationPanel.d.ts +21 -0
- package/dist/components/notificationPanel/NotificationPanel.stories.d.ts +6 -0
- package/dist/components/select/Select.d.ts +0 -1
- package/dist/components/select/Select.stories.d.ts +3 -1
- package/dist/components/videoModal/VideoModal.d.ts +4 -4
- package/dist/hooks/useEvent/useEvent.d.ts +6 -0
- package/dist/hooks/useFloatingPanel/useFloatingPanel.d.ts +21 -0
- package/dist/hooks/useFloatingPanel/useFloatingPanel.stories.d.ts +8 -0
- package/dist/hooks/useSystemInfo/useSystemInfo.d.ts +6 -0
- package/dist/hooks/useSystemInfo/useSystemInfo.stories.d.ts +6 -0
- package/dist/index.css +247 -206
- package/dist/index.d.ts +11 -3
- package/dist/index.js +821 -697
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +818 -699
- package/dist/index.modern.js.map +1 -1
- package/dist/libraries/Notification.d.ts +1 -0
- package/dist/libraries/System.d.ts +19 -0
- package/dist/utils/HTMLutils.d.ts +0 -1
- package/dist/utils/MaskUtils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
8
|
+
export declare const getStringWithoutSpecialChar: (input: string) => string;
|
|
9
9
|
export declare const captalizeFirtLetter: (value?: string | undefined) => string;
|