@arkyn/components 3.0.1-beta.154 → 3.0.1-beta.156
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.js +4694 -75
- package/dist/modules/components/alert/alertContainer/index.js +22 -0
- package/dist/modules/components/alert/alertContent/index.js +9 -0
- package/dist/modules/components/alert/alertDescription/index.js +9 -0
- package/dist/modules/components/alert/alertIcon/index.js +20 -0
- package/dist/modules/components/alert/alertTitle/index.js +9 -0
- package/dist/modules/components/audioPlayer/index.js +76 -0
- package/dist/modules/components/audioUpload/hasFileContent/index.js +63 -0
- package/dist/modules/components/audioUpload/index.js +80 -0
- package/dist/modules/components/audioUpload/noFileContent/index.js +46 -0
- package/dist/modules/components/badge/index.js +23 -0
- package/dist/modules/components/button/index.js +33 -0
- package/dist/modules/components/calendar/_calendarProvider.js +65 -0
- package/dist/modules/components/calendar/_viewService.js +141 -0
- package/dist/modules/components/calendar/calendarContainer/index.js +8 -0
- package/dist/modules/components/calendar/calendarHeader/index.js +73 -0
- package/dist/modules/components/calendar/calendarTableBody/index.js +11 -0
- package/dist/modules/components/calendar/calendarTableContainer/index.js +8 -0
- package/dist/modules/components/calendar/calendarTableHeader/index.js +11 -0
- package/dist/modules/components/calendar/calendarTableTd/index.js +24 -0
- package/dist/modules/components/calendar/index.js +50 -0
- package/dist/modules/components/cardTab/cardTabButton/index.js +30 -0
- package/dist/modules/components/cardTab/cardTabContainer/index.js +29 -0
- package/dist/modules/components/cardTab/cardTabContext.js +13 -0
- package/dist/modules/components/checkbox/index.js +65 -0
- package/dist/modules/components/clientOnly.js +9 -0
- package/dist/modules/components/currencyInput/index.js +140 -0
- package/dist/modules/components/divider/index.js +13 -0
- package/dist/modules/components/drawer/drawerContainer/index.js +44 -0
- package/dist/modules/components/drawer/drawerContext.js +13 -0
- package/dist/modules/components/drawer/drawerHeader/index.js +28 -0
- package/dist/modules/components/facebookPixel/facebookPixel.client.js +19 -0
- package/dist/modules/components/facebookPixel/index.js +9 -0
- package/dist/modules/components/facebookPixel/pixel.js +53 -0
- package/dist/modules/components/fieldError/index.js +9 -0
- package/dist/modules/components/fieldLabel/index.js +13 -0
- package/dist/modules/components/fieldWrapper/index.js +14 -0
- package/dist/modules/components/fileUpload/hasFileContent/index.js +68 -0
- package/dist/modules/components/fileUpload/index.js +73 -0
- package/dist/modules/components/fileUpload/noFileContent/index.js +46 -0
- package/dist/modules/components/fullCalendar/_fullCalendarProvider.js +48 -0
- package/dist/modules/components/fullCalendar/_viewService.js +106 -0
- package/dist/modules/components/fullCalendar/dayCalendar/dayCalendarContainer/index.js +8 -0
- package/dist/modules/components/fullCalendar/dayCalendar/dayCalendarEvent/index.js +79 -0
- package/dist/modules/components/fullCalendar/dayCalendar/dayCalendarRow/index.js +34 -0
- package/dist/modules/components/fullCalendar/dayCalendar/index.js +11 -0
- package/dist/modules/components/fullCalendar/fullCalendarContainer/index.js +8 -0
- package/dist/modules/components/fullCalendar/fullCalendarHeader/index.js +72 -0
- package/dist/modules/components/fullCalendar/index.js +31 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/index.js +13 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/monthlyCalendarEvent/index.js +37 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/monthlyCalendarTableBody/index.js +11 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/monthlyCalendarTableContainer/index.js +10 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/monthlyCalendarTableHeader/index.js +11 -0
- package/dist/modules/components/fullCalendar/monthlyCalendar/monthlyCalendarTableTd/index.js +37 -0
- package/dist/modules/components/fullCalendar/weekCalendar/index.js +13 -0
- package/dist/modules/components/fullCalendar/weekCalendar/weekCalendarEvent/index.js +79 -0
- package/dist/modules/components/fullCalendar/weekCalendar/weekCalendarTableBody/index.js +21 -0
- package/dist/modules/components/fullCalendar/weekCalendar/weekCalendarTableContainer/index.js +10 -0
- package/dist/modules/components/fullCalendar/weekCalendar/weekCalendarTableHeader/index.js +20 -0
- package/dist/modules/components/fullCalendar/weekCalendar/weekCalendarTableTd/index.js +40 -0
- package/dist/modules/components/googleAnalytics/googleAnalytics.client.js +8 -0
- package/dist/modules/components/googleAnalytics/googleAnalytics.js +18 -0
- package/dist/modules/components/googleAnalytics/index.js +10 -0
- package/dist/modules/components/googleAnalytics/snippets/generateGAElements.js +16 -0
- package/dist/modules/components/googleTagManager/googleTagManager.client.js +8 -0
- package/dist/modules/components/googleTagManager/googleTagManager.js +49 -0
- package/dist/modules/components/googleTagManager/index.js +28 -0
- package/dist/modules/components/googleTagManager/snippets/appendToDataLayer.js +9 -0
- package/dist/modules/components/googleTagManager/snippets/generateGTMElements.js +24 -0
- package/dist/modules/components/iconButton/index.js +30 -0
- package/dist/modules/components/imageUpload/hasFileContent/index.js +64 -0
- package/dist/modules/components/imageUpload/index.js +83 -0
- package/dist/modules/components/imageUpload/noFileContent/index.js +46 -0
- package/dist/modules/components/input/index.js +121 -0
- package/dist/modules/components/mapView/index.js +33 -0
- package/dist/modules/components/mapView/mapView.client.js +52 -0
- package/dist/modules/components/maskedInput/index.js +113 -0
- package/dist/modules/components/modal/modalContainer/index.js +43 -0
- package/dist/modules/components/modal/modalContext.js +13 -0
- package/dist/modules/components/modal/modalFooter/index.js +9 -0
- package/dist/modules/components/modal/modalHeader/index.js +28 -0
- package/dist/modules/components/multiSelect/index.js +155 -0
- package/dist/modules/components/multiSelect/multiSelectChevron/index.js +22 -0
- package/dist/modules/components/multiSelect/multiSelectContainer/index.js +30 -0
- package/dist/modules/components/multiSelect/multiSelectContent/index.js +9 -0
- package/dist/modules/components/multiSelect/multiSelectMark/index.js +23 -0
- package/dist/modules/components/multiSelect/multiSelectOption/index.js +14 -0
- package/dist/modules/components/multiSelect/multiSelectOptionsContainer/index.js +46 -0
- package/dist/modules/components/multiSelect/multiSelectOverlay/index.js +9 -0
- package/dist/modules/components/multiSelect/multiSelectSpinner/index.js +17 -0
- package/dist/modules/components/pagination/chevronButton/index.js +18 -0
- package/dist/modules/components/pagination/currentButton/index.js +8 -0
- package/dist/modules/components/pagination/index.js +84 -0
- package/dist/modules/components/pagination/pageButton/index.js +9 -0
- package/dist/modules/components/pagination/paginationService.js +49 -0
- package/dist/modules/components/pagination/spread/index.js +9 -0
- package/dist/modules/components/phoneInput/index.js +152 -0
- package/dist/modules/components/phoneInput/phoneInputContainer/index.js +20 -0
- package/dist/modules/components/phoneInput/phoneInputCountriesOverlay/index.js +9 -0
- package/dist/modules/components/phoneInput/phoneInputCountryOption/index.js +16 -0
- package/dist/modules/components/phoneInput/phoneInputCountryOptionsContainer/index.js +44 -0
- package/dist/modules/components/phoneInput/phoneInputCountrySelector/index.js +22 -0
- package/dist/modules/components/phoneInput/phoneInputMask/index.js +62 -0
- package/dist/modules/components/popover/index.js +37 -0
- package/dist/modules/components/radio/radioBox/index.js +43 -0
- package/dist/modules/components/radio/radioContext.js +20 -0
- package/dist/modules/components/radio/radioGroup/index.js +65 -0
- package/dist/modules/components/richText/blockButton/index.js +24 -0
- package/dist/modules/components/richText/element/index.js +59 -0
- package/dist/modules/components/richText/index.js +136 -0
- package/dist/modules/components/richText/insertImage/index.js +106 -0
- package/dist/modules/components/richText/insertVideo/index.js +98 -0
- package/dist/modules/components/richText/leaf/index.js +7 -0
- package/dist/modules/components/richText/markButton/index.js +23 -0
- package/dist/modules/components/richText/toolbar/index.js +8 -0
- package/dist/modules/components/searchPlaces.js +67 -0
- package/dist/modules/components/select/index.js +145 -0
- package/dist/modules/components/select/selectChevron/index.js +22 -0
- package/dist/modules/components/select/selectContainer/index.js +30 -0
- package/dist/modules/components/select/selectContent/index.js +9 -0
- package/dist/modules/components/select/selectOption/index.js +14 -0
- package/dist/modules/components/select/selectOptionsContainer/index.js +46 -0
- package/dist/modules/components/select/selectOverlay/index.js +9 -0
- package/dist/modules/components/select/selectSpinner/index.js +10 -0
- package/dist/modules/components/slider/index.js +42 -0
- package/dist/modules/components/switch/index.js +63 -0
- package/dist/modules/components/tab/tabButton/index.js +30 -0
- package/dist/modules/components/tab/tabContainer/index.js +29 -0
- package/dist/modules/components/tab/tabContext.js +13 -0
- package/dist/modules/components/table/tableBody/index.js +15 -0
- package/dist/modules/components/table/tableCaption/index.js +9 -0
- package/dist/modules/components/table/tableContainer/index.js +9 -0
- package/dist/modules/components/table/tableFooter/index.js +12 -0
- package/dist/modules/components/table/tableHeader/index.js +12 -0
- package/dist/modules/components/textarea/index.js +70 -0
- package/dist/modules/components/tooltip/index.js +46 -0
- package/dist/modules/hooks/useAutomation.js +28 -0
- package/dist/modules/hooks/useDrawer.js +20 -0
- package/dist/modules/hooks/useForm.js +8 -0
- package/dist/modules/hooks/useHydrated.js +15 -0
- package/dist/modules/hooks/useModal.js +20 -0
- package/dist/modules/hooks/useScopedParams.js +18 -0
- package/dist/modules/hooks/useScrollLock.js +21 -0
- package/dist/modules/hooks/useSearchAutomation.js +15 -0
- package/dist/modules/hooks/useSlider.js +14 -0
- package/dist/modules/hooks/useToast.js +11 -0
- package/dist/modules/index.js +144 -0
- package/dist/modules/providers/drawerProvider.js +31 -0
- package/dist/modules/providers/formProvider.js +18 -0
- package/dist/modules/providers/modalProvider.js +34 -0
- package/dist/modules/providers/placesProvider.js +18 -0
- package/dist/modules/providers/toastProvider.js +52 -0
- package/dist/modules/services/extractTextFromNode.js +7 -0
- package/dist/modules/services/fieldTemplate.js +24 -0
- package/dist/modules/services/iconRenderer.js +8 -0
- package/dist/modules/services/isBlockActive.js +15 -0
- package/dist/modules/services/isMarkActive.js +8 -0
- package/dist/modules/services/maskCurrencyValues.js +14 -0
- package/dist/modules/services/toHtml.js +7 -0
- package/dist/modules/services/toRichTextValue.js +9 -0
- package/dist/modules/services/toggleBlock.js +20 -0
- package/dist/modules/services/toggleMark.js +8 -0
- package/dist/modules/style.css +1 -0
- package/dist/modules/templates/badResponses.js +14 -0
- package/dist/modules/templates/richTextTemplates.js +14 -0
- package/dist/modules/templates/successResponses.js +4 -0
- package/dist/modules/utils/phoneInputUtilities.js +32 -0
- package/dist/modules/utils/richTextUtilities.js +77 -0
- package/package.json +208 -208
- package/dist/components/alert/alertContainer/index.js +0 -71
- package/dist/components/alert/alertContent/index.js +0 -26
- package/dist/components/alert/alertDescription/index.js +0 -25
- package/dist/components/alert/alertIcon/index.js +0 -43
- package/dist/components/alert/alertTitle/index.js +0 -27
- package/dist/components/audioPlayer/index.js +0 -112
- package/dist/components/audioUpload/hasFileContent/index.js +0 -26
- package/dist/components/audioUpload/index.js +0 -95
- package/dist/components/audioUpload/noFileContent/index.js +0 -29
- package/dist/components/badge/index.js +0 -41
- package/dist/components/button/index.js +0 -51
- package/dist/components/calendar/_calendarProvider.js +0 -58
- package/dist/components/calendar/_viewService.js +0 -179
- package/dist/components/calendar/calendarContainer/index.js +0 -6
- package/dist/components/calendar/calendarHeader/index.js +0 -13
- package/dist/components/calendar/calendarTableBody/index.js +0 -9
- package/dist/components/calendar/calendarTableContainer/index.js +0 -6
- package/dist/components/calendar/calendarTableHeader/index.js +0 -9
- package/dist/components/calendar/calendarTableTd/index.js +0 -15
- package/dist/components/calendar/index.js +0 -54
- package/dist/components/cardTab/cardTabButton/index.js +0 -40
- package/dist/components/cardTab/cardTabContainer/index.js +0 -42
- package/dist/components/cardTab/cardTabContext.js +0 -10
- package/dist/components/checkbox/index.js +0 -71
- package/dist/components/clientOnly.js +0 -31
- package/dist/components/currencyInput/index.js +0 -126
- package/dist/components/divider/index.js +0 -28
- package/dist/components/drawer/drawerContainer/index.js +0 -38
- package/dist/components/drawer/drawerContext.js +0 -10
- package/dist/components/drawer/drawerHeader/index.js +0 -33
- package/dist/components/facebookPixel/facebookPixel.client.js +0 -23
- package/dist/components/facebookPixel/index.js +0 -45
- package/dist/components/facebookPixel/pixel.js +0 -111
- package/dist/components/fieldError/index.js +0 -26
- package/dist/components/fieldLabel/index.js +0 -23
- package/dist/components/fieldWrapper/index.js +0 -27
- package/dist/components/fileUpload/hasFileContent/index.js +0 -34
- package/dist/components/fileUpload/index.js +0 -89
- package/dist/components/fileUpload/noFileContent/index.js +0 -29
- package/dist/components/fullCalendar/_fullCalendarProvider.js +0 -36
- package/dist/components/fullCalendar/_viewService.js +0 -144
- package/dist/components/fullCalendar/dayCalendar/dayCalendarContainer/index.js +0 -6
- package/dist/components/fullCalendar/dayCalendar/dayCalendarEvent/index.js +0 -105
- package/dist/components/fullCalendar/dayCalendar/dayCalendarRow/index.js +0 -24
- package/dist/components/fullCalendar/dayCalendar/index.js +0 -9
- package/dist/components/fullCalendar/fullCalendarContainer/index.js +0 -6
- package/dist/components/fullCalendar/fullCalendarHeader/index.js +0 -37
- package/dist/components/fullCalendar/index.js +0 -52
- package/dist/components/fullCalendar/monthlyCalendar/index.js +0 -8
- package/dist/components/fullCalendar/monthlyCalendar/monthlyCalendarEvent/index.js +0 -29
- package/dist/components/fullCalendar/monthlyCalendar/monthlyCalendarTableBody/index.js +0 -9
- package/dist/components/fullCalendar/monthlyCalendar/monthlyCalendarTableContainer/index.js +0 -6
- package/dist/components/fullCalendar/monthlyCalendar/monthlyCalendarTableHeader/index.js +0 -9
- package/dist/components/fullCalendar/monthlyCalendar/monthlyCalendarTableTd/index.js +0 -30
- package/dist/components/fullCalendar/weekCalendar/index.js +0 -8
- package/dist/components/fullCalendar/weekCalendar/weekCalendarEvent/index.js +0 -102
- package/dist/components/fullCalendar/weekCalendar/weekCalendarTableBody/index.js +0 -11
- package/dist/components/fullCalendar/weekCalendar/weekCalendarTableContainer/index.js +0 -6
- package/dist/components/fullCalendar/weekCalendar/weekCalendarTableHeader/index.js +0 -10
- package/dist/components/fullCalendar/weekCalendar/weekCalendarTableTd/index.js +0 -25
- package/dist/components/googleAnalytics/googleAnalytics.client.js +0 -8
- package/dist/components/googleAnalytics/googleAnalytics.js +0 -23
- package/dist/components/googleAnalytics/index.js +0 -31
- package/dist/components/googleAnalytics/snippets/generateGAElements.js +0 -16
- package/dist/components/googleTagManager/googleTagManager.client.js +0 -8
- package/dist/components/googleTagManager/googleTagManager.js +0 -52
- package/dist/components/googleTagManager/index.js +0 -47
- package/dist/components/googleTagManager/snippets/appendToDataLayer.js +0 -7
- package/dist/components/googleTagManager/snippets/generateGTMElements.js +0 -25
- package/dist/components/iconButton/index.js +0 -38
- package/dist/components/imageUpload/hasFileContent/index.js +0 -24
- package/dist/components/imageUpload/index.js +0 -101
- package/dist/components/imageUpload/noFileContent/index.js +0 -29
- package/dist/components/input/index.js +0 -94
- package/dist/components/mapView/index.js +0 -53
- package/dist/components/mapView/mapView.client.js +0 -51
- package/dist/components/maskedInput/index.js +0 -108
- package/dist/components/modal/modalContainer/index.js +0 -40
- package/dist/components/modal/modalContext.js +0 -10
- package/dist/components/modal/modalFooter/index.js +0 -32
- package/dist/components/modal/modalHeader/index.js +0 -34
- package/dist/components/multiSelect/index.js +0 -135
- package/dist/components/multiSelect/multiSelectChevron/index.js +0 -18
- package/dist/components/multiSelect/multiSelectContainer/index.js +0 -11
- package/dist/components/multiSelect/multiSelectContent/index.js +0 -8
- package/dist/components/multiSelect/multiSelectMark/index.js +0 -11
- package/dist/components/multiSelect/multiSelectOption/index.js +0 -10
- package/dist/components/multiSelect/multiSelectOptionsContainer/index.js +0 -44
- package/dist/components/multiSelect/multiSelectOverlay/index.js +0 -9
- package/dist/components/multiSelect/multiSelectSpinner/index.js +0 -10
- package/dist/components/pagination/chevronButton/index.js +0 -9
- package/dist/components/pagination/currentButton/index.js +0 -6
- package/dist/components/pagination/index.js +0 -46
- package/dist/components/pagination/pageButton/index.js +0 -7
- package/dist/components/pagination/paginationService.js +0 -62
- package/dist/components/pagination/spread/index.js +0 -7
- package/dist/components/phoneInput/index.js +0 -127
- package/dist/components/phoneInput/phoneInputContainer/index.js +0 -11
- package/dist/components/phoneInput/phoneInputCountriesOverlay/index.js +0 -9
- package/dist/components/phoneInput/phoneInputCountryOption/index.js +0 -10
- package/dist/components/phoneInput/phoneInputCountryOptionsContainer/index.js +0 -40
- package/dist/components/phoneInput/phoneInputCountrySelector/index.js +0 -9
- package/dist/components/phoneInput/phoneInputMask/index.js +0 -37
- package/dist/components/popover/index.js +0 -62
- package/dist/components/radio/radioBox/index.js +0 -48
- package/dist/components/radio/radioContext.js +0 -11
- package/dist/components/radio/radioGroup/index.js +0 -58
- package/dist/components/richText/blockButton/index.js +0 -18
- package/dist/components/richText/element/index.js +0 -26
- package/dist/components/richText/index.js +0 -136
- package/dist/components/richText/insertImage/index.js +0 -33
- package/dist/components/richText/insertVideo/index.js +0 -51
- package/dist/components/richText/leaf/index.js +0 -13
- package/dist/components/richText/markButton/index.js +0 -16
- package/dist/components/richText/toolbar/index.js +0 -6
- package/dist/components/searchPlaces.js +0 -99
- package/dist/components/select/index.js +0 -134
- package/dist/components/select/selectChevron/index.js +0 -18
- package/dist/components/select/selectContainer/index.js +0 -11
- package/dist/components/select/selectContent/index.js +0 -8
- package/dist/components/select/selectOption/index.js +0 -10
- package/dist/components/select/selectOptionsContainer/index.js +0 -44
- package/dist/components/select/selectOverlay/index.js +0 -9
- package/dist/components/select/selectSpinner/index.js +0 -10
- package/dist/components/slider/index.js +0 -79
- package/dist/components/switch/index.js +0 -66
- package/dist/components/tab/tabButton/index.js +0 -40
- package/dist/components/tab/tabContainer/index.js +0 -42
- package/dist/components/tab/tabContext.js +0 -10
- package/dist/components/table/tableBody/index.js +0 -34
- package/dist/components/table/tableCaption/index.js +0 -24
- package/dist/components/table/tableContainer/index.js +0 -37
- package/dist/components/table/tableFooter/index.js +0 -23
- package/dist/components/table/tableHeader/index.js +0 -25
- package/dist/components/textarea/index.js +0 -80
- package/dist/components/tooltip/index.js +0 -96
- package/dist/hooks/useAutomation.js +0 -74
- package/dist/hooks/useDrawer.js +0 -20
- package/dist/hooks/useForm.js +0 -35
- package/dist/hooks/useHydrated.js +0 -26
- package/dist/hooks/useModal.js +0 -20
- package/dist/hooks/useScopedParams.js +0 -55
- package/dist/hooks/useScrollLock.js +0 -46
- package/dist/hooks/useSearchAutomation.js +0 -64
- package/dist/hooks/useSlider.js +0 -35
- package/dist/hooks/useToast.js +0 -28
- package/dist/providers/drawerProvider.js +0 -54
- package/dist/providers/formProvider.js +0 -34
- package/dist/providers/modalProvider.js +0 -58
- package/dist/providers/placesProvider.js +0 -40
- package/dist/providers/toastProvider.js +0 -62
- package/dist/services/extractTextFromNode.js +0 -5
- package/dist/services/fieldTemplate.js +0 -11
- package/dist/services/iconRenderer.js +0 -13
- package/dist/services/isBlockActive.js +0 -14
- package/dist/services/isMarkActive.js +0 -6
- package/dist/services/maskCurrencyValues.js +0 -23
- package/dist/services/toHtml.js +0 -22
- package/dist/services/toRichTextValue.js +0 -34
- package/dist/services/toggleBlock.js +0 -32
- package/dist/services/toggleMark.js +0 -10
- package/dist/templates/badResponses.js +0 -12
- package/dist/templates/richTextTemplates.js +0 -12
- package/dist/templates/successResponses.js +0 -2
- package/dist/types/richTextTypes.js +0 -1
- package/dist/utils/phoneInputUtilities.js +0 -37
- package/dist/utils/richTextUtilities.js +0 -89
package/dist/index.js
CHANGED
|
@@ -1,75 +1,4694 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
var Xt = Object.defineProperty;
|
|
2
|
+
var Kt = (n, e, t) => e in n ? Xt(n, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[e] = t;
|
|
3
|
+
var Z = (n, e, t) => Kt(n, typeof e != "symbol" ? e + "" : e, t);
|
|
4
|
+
import { jsx as a, jsxs as b, Fragment as W } from "react/jsx-runtime";
|
|
5
|
+
import { createContext as ie, useContext as se, useState as N, useRef as X, useEffect as ee, cloneElement as Jt, useId as ce, useSyncExternalStore as Qt, forwardRef as Ke, useMemo as Zt, useCallback as rt, Children as en } from "react";
|
|
6
|
+
import { Info as tn, AlertTriangle as nn, XCircle as an, CheckCircle2 as rn, Pause as sn, Play as on, Loader2 as ue, RefreshCw as Je, ChevronDown as Qe, Check as Be, Search as kt, ChevronLeft as Ve, ChevronRight as Le, X as Ze, FileImage as cn, FileAudio as ln, FileArchive as un, File as dn, MapPinned as hn, Ellipsis as fn, Image as mn, Video as gn, Heading1 as pn, Heading2 as yn, Quote as Cn, Bold as bn, Italic as kn, Underline as wn, Code as vn, AlignLeft as Nn, AlignRight as Mn, AlignCenter as Tn, AlignJustify as Dn } from "lucide-react";
|
|
7
|
+
import { formatToCapitalizeFirstWordLetter as Ne, formatToCurrency as it, removeNonNumeric as Ye, formatToPhone as Sn, findCountryMask as xn } from "@arkyn/shared";
|
|
8
|
+
import { AnimatePresence as wt, motion as we } from "framer-motion";
|
|
9
|
+
import Ie from "mapbox-gl";
|
|
10
|
+
import { createRoot as $n } from "react-dom/client";
|
|
11
|
+
import { InputMask as vt } from "@react-input/mask";
|
|
12
|
+
import { countries as We } from "@arkyn/templates";
|
|
13
|
+
import In from "is-hotkey";
|
|
14
|
+
import { Editor as pe, Element as et, Transforms as Oe, Node as Pn, createEditor as Fn, Text as En } from "slate";
|
|
15
|
+
import { withHistory as On } from "slate-history";
|
|
16
|
+
import { useSlate as ze, withReact as An, Slate as Vn, Editable as Ln } from "slate-react";
|
|
17
|
+
import { StandaloneSearchBox as Bn, useLoadScript as zn } from "@react-google-maps/api";
|
|
18
|
+
import { scroller as Hn } from "react-scroll";
|
|
19
|
+
import st, { Toaster as Rn } from "react-hot-toast";
|
|
20
|
+
import Wn from "html-react-parser";
|
|
21
|
+
function Un(n) {
|
|
22
|
+
const { className: e, ...t } = n, r = `arkynAlertTitle ${e}`;
|
|
23
|
+
return /* @__PURE__ */ a("div", { className: r.trim(), ...t });
|
|
24
|
+
}
|
|
25
|
+
const Nt = ie({});
|
|
26
|
+
function _n() {
|
|
27
|
+
return se(Nt);
|
|
28
|
+
}
|
|
29
|
+
function Gr(n) {
|
|
30
|
+
const { schema: e, children: t, className: r, ...i } = n, h = !((c) => {
|
|
31
|
+
let d = !1;
|
|
32
|
+
const u = (f) => {
|
|
33
|
+
Array.isArray(f) ? f.forEach(u) : f && typeof f == "object" && "type" in f && (f.type === Un ? d = !0 : f.props && typeof f.props == "object" && f.props !== null && "children" in f.props && u(f.props.children));
|
|
34
|
+
};
|
|
35
|
+
return u(c), d;
|
|
36
|
+
})(t) ? "nonExistsAlertTitle" : "existsAlertTitle", l = `arkynAlertContainer ${e} ${h} ${r}`;
|
|
37
|
+
return /* @__PURE__ */ a(Nt.Provider, { value: n, children: /* @__PURE__ */ a("div", { className: l.trim(), ...i, children: t }) });
|
|
38
|
+
}
|
|
39
|
+
function Xr(n) {
|
|
40
|
+
const { className: e, ...t } = n, r = `arkynAlertContent ${e}`;
|
|
41
|
+
return /* @__PURE__ */ a("div", { className: r.trim(), ...t });
|
|
42
|
+
}
|
|
43
|
+
function Kr(n) {
|
|
44
|
+
const { className: e, ...t } = n, r = `arkynAlertDescription ${e}`;
|
|
45
|
+
return /* @__PURE__ */ a("div", { className: r.trim(), ...t });
|
|
46
|
+
}
|
|
47
|
+
function Jr(n) {
|
|
48
|
+
const { className: e, ...t } = n, { schema: r } = _n(), i = `arkynAlertIcon ${r} ${e}`;
|
|
49
|
+
switch (r) {
|
|
50
|
+
case "success":
|
|
51
|
+
return /* @__PURE__ */ a(rn, { className: i, ...t });
|
|
52
|
+
case "danger":
|
|
53
|
+
return /* @__PURE__ */ a(an, { className: i, ...t });
|
|
54
|
+
case "warning":
|
|
55
|
+
return /* @__PURE__ */ a(nn, { className: i, ...t });
|
|
56
|
+
case "info":
|
|
57
|
+
return /* @__PURE__ */ a(tn, { className: i, ...t });
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
function qn(n) {
|
|
61
|
+
function e() {
|
|
62
|
+
return !n || n <= 0 ? 0 : n >= 100 ? 100 : n;
|
|
63
|
+
}
|
|
64
|
+
const [t, r] = N(e());
|
|
65
|
+
function i(o) {
|
|
66
|
+
return o <= 0 ? r(0) : o >= 100 ? r(100) : r(o);
|
|
67
|
+
}
|
|
68
|
+
return [t, i];
|
|
69
|
+
}
|
|
70
|
+
function Yn(n) {
|
|
71
|
+
const {
|
|
72
|
+
onChange: e,
|
|
73
|
+
value: t,
|
|
74
|
+
disabled: r = !1,
|
|
75
|
+
onDragging: i,
|
|
76
|
+
className: o = "",
|
|
77
|
+
...s
|
|
78
|
+
} = n, [h, l] = N(!1), c = X(null), d = () => l(!0), u = () => l(!1), f = (C) => {
|
|
79
|
+
if (r || !h || !c.current) return;
|
|
80
|
+
const v = c.current.getBoundingClientRect(), k = C.clientX - v.left, w = Math.min(Math.max(k / v.width * 100, 0), 100);
|
|
81
|
+
e(w);
|
|
82
|
+
}, g = (C) => {
|
|
83
|
+
if (r || !c.current) return;
|
|
84
|
+
const v = c.current.getBoundingClientRect(), k = C.clientX - v.left, w = Math.min(Math.max(k / v.width * 100, 0), 100);
|
|
85
|
+
e(w);
|
|
86
|
+
};
|
|
87
|
+
ee(() => (h ? (i && i(!0), document.addEventListener("mousemove", f), document.addEventListener("mouseup", u)) : (i && i(!1), document.removeEventListener("mousemove", f), document.removeEventListener("mouseup", u)), () => {
|
|
88
|
+
document.removeEventListener("mousemove", f), document.removeEventListener("mouseup", u);
|
|
89
|
+
}), [h]);
|
|
90
|
+
const p = `arkynSliderTrack ${h ? "isDragging" : "isNotDragging"} ${r ? "isDisabled" : "isEnabled"} ${o}`;
|
|
91
|
+
return /* @__PURE__ */ b(
|
|
92
|
+
"div",
|
|
93
|
+
{
|
|
94
|
+
...s,
|
|
95
|
+
className: p,
|
|
96
|
+
onMouseDown: d,
|
|
97
|
+
onClick: g,
|
|
98
|
+
ref: c,
|
|
99
|
+
children: [
|
|
100
|
+
/* @__PURE__ */ a("div", { className: "arkynSliderFill", style: { width: `${t}%` } }),
|
|
101
|
+
/* @__PURE__ */ a("div", { className: "arkynSliderThumb", style: { left: `${t}%` } })
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
function jn(n) {
|
|
107
|
+
var D, O, R, A;
|
|
108
|
+
const { onPlayAudio: e, onPauseAudio: t, disabled: r, style: i, ...o } = n, [s, h] = qn(0), [l, c] = N(!1), [d, u] = N(!1), f = X(null), g = ((D = f.current) == null ? void 0 : D.currentTime) || 0, y = ((O = f.current) == null ? void 0 : O.duration) || 0, m = v(g), p = v(y), C = {
|
|
109
|
+
totalTime: y,
|
|
110
|
+
currentTime: g,
|
|
111
|
+
formattedCurrentTime: m,
|
|
112
|
+
formattedTotalTime: p
|
|
113
|
+
};
|
|
114
|
+
function v(x) {
|
|
115
|
+
if (!x) return "00:00";
|
|
116
|
+
const I = Math.floor(x / 60), S = Math.floor(x % 60), z = String(I).padStart(2, "0"), L = String(S).padStart(2, "0");
|
|
117
|
+
return `${z}:${L}`;
|
|
118
|
+
}
|
|
119
|
+
function k() {
|
|
120
|
+
const x = f.current;
|
|
121
|
+
x && (n.onPlayAudio && n.onPlayAudio(C), x.play(), c(!0));
|
|
122
|
+
}
|
|
123
|
+
function w() {
|
|
124
|
+
const x = f.current;
|
|
125
|
+
x && (n.onPauseAudio && n.onPauseAudio(C), x.pause(), c(!1));
|
|
126
|
+
}
|
|
127
|
+
function M() {
|
|
128
|
+
l ? w() : k();
|
|
129
|
+
}
|
|
130
|
+
function T(x) {
|
|
131
|
+
const I = f.current;
|
|
132
|
+
if (!I) return;
|
|
133
|
+
const S = I.duration, z = x / 100 * S;
|
|
134
|
+
I.currentTime = z;
|
|
135
|
+
}
|
|
136
|
+
return d || !l ? (R = f.current) == null || R.pause() : l && ((A = f.current) == null || A.play()), ee(() => {
|
|
137
|
+
const x = f.current;
|
|
138
|
+
if (!x) return;
|
|
139
|
+
const I = () => {
|
|
140
|
+
const S = x.duration, L = x.currentTime / S * 100;
|
|
141
|
+
h(L);
|
|
142
|
+
};
|
|
143
|
+
return x.addEventListener("timeupdate", I), () => {
|
|
144
|
+
x.removeEventListener("timeupdate", I);
|
|
145
|
+
};
|
|
146
|
+
}, []), /* @__PURE__ */ b("div", { className: "arkynAudioPlayer", style: i, children: [
|
|
147
|
+
/* @__PURE__ */ a(
|
|
148
|
+
"audio",
|
|
149
|
+
{
|
|
150
|
+
...o,
|
|
151
|
+
ref: f,
|
|
152
|
+
src: n.src,
|
|
153
|
+
onEnded: w
|
|
154
|
+
}
|
|
155
|
+
),
|
|
156
|
+
/* @__PURE__ */ b("button", { type: "button", disabled: r, onClick: M, children: [
|
|
157
|
+
l && /* @__PURE__ */ a(sn, {}),
|
|
158
|
+
!l && /* @__PURE__ */ a(on, {})
|
|
159
|
+
] }),
|
|
160
|
+
/* @__PURE__ */ a("p", { children: m }),
|
|
161
|
+
/* @__PURE__ */ a(
|
|
162
|
+
Yn,
|
|
163
|
+
{
|
|
164
|
+
value: s,
|
|
165
|
+
onChange: T,
|
|
166
|
+
onDragging: u,
|
|
167
|
+
disabled: r
|
|
168
|
+
}
|
|
169
|
+
),
|
|
170
|
+
/* @__PURE__ */ a("p", { children: p })
|
|
171
|
+
] });
|
|
172
|
+
}
|
|
173
|
+
const Mt = ie({});
|
|
174
|
+
function Qr(n) {
|
|
175
|
+
const { children: e, fieldErrors: t, form: r } = n;
|
|
176
|
+
return /* @__PURE__ */ b(Mt.Provider, { value: { fieldErrors: t }, children: [
|
|
177
|
+
!r && e,
|
|
178
|
+
r && Jt(
|
|
179
|
+
r,
|
|
180
|
+
r.props,
|
|
181
|
+
e
|
|
182
|
+
)
|
|
183
|
+
] });
|
|
184
|
+
}
|
|
185
|
+
function te() {
|
|
186
|
+
return se(Mt);
|
|
187
|
+
}
|
|
188
|
+
function Me(n) {
|
|
189
|
+
const { children: e, className: t, ...r } = n, i = `arkynFieldError ${t}`;
|
|
190
|
+
return e ? /* @__PURE__ */ a("strong", { className: i.trim(), ...r, children: e }) : /* @__PURE__ */ a(W, {});
|
|
191
|
+
}
|
|
192
|
+
function Te(n) {
|
|
193
|
+
const {
|
|
194
|
+
showAsterisk: e = !1,
|
|
195
|
+
className: t = "",
|
|
196
|
+
...r
|
|
197
|
+
} = n, o = `arkynFieldLabel ${e ? "asteriskTrue" : "asteriskFalse"} ${t}`;
|
|
198
|
+
return /* @__PURE__ */ a("label", { className: o.trim(), ...r });
|
|
199
|
+
}
|
|
200
|
+
function De(n) {
|
|
201
|
+
const {
|
|
202
|
+
children: e,
|
|
203
|
+
className: t,
|
|
204
|
+
orientation: r = "vertical",
|
|
205
|
+
...i
|
|
206
|
+
} = n, o = `arkynFieldWrapper ${t} ${r}`;
|
|
207
|
+
return /* @__PURE__ */ a("section", { className: o.trim(), ...i, children: e });
|
|
208
|
+
}
|
|
209
|
+
function Y(n) {
|
|
210
|
+
const { iconSize: e, icon: t, className: r, show: i = !0 } = n;
|
|
211
|
+
return i ? t ? typeof t == "string" ? /* @__PURE__ */ a("p", { className: r, children: t }) : /* @__PURE__ */ a(t, { size: e, strokeWidth: 2.5, className: r }) : /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(W, {});
|
|
212
|
+
}
|
|
213
|
+
function de(n) {
|
|
214
|
+
const {
|
|
215
|
+
isLoading: e = !1,
|
|
216
|
+
scheme: t = "primary",
|
|
217
|
+
variant: r = "solid",
|
|
218
|
+
loadingText: i,
|
|
219
|
+
size: o = "md",
|
|
220
|
+
leftIcon: s,
|
|
221
|
+
rightIcon: h,
|
|
222
|
+
disabled: l,
|
|
223
|
+
className: c = "",
|
|
224
|
+
children: d,
|
|
225
|
+
...u
|
|
226
|
+
} = n, g = { xs: 12, sm: 16, md: 20, lg: 24 }[o], p = `arkynButton ${e ? "loadingTrue" : "loadingFalse"} ${r} ${t} ${o} ${i ? "loadingTextTrue" : "loadingTextFalse"} ${c}`;
|
|
227
|
+
return /* @__PURE__ */ b("button", { className: p, disabled: l || e, ...u, children: [
|
|
228
|
+
/* @__PURE__ */ b("div", { className: "arkynButtonSpinner", children: [
|
|
229
|
+
/* @__PURE__ */ a(ue, { size: g, strokeWidth: 2.5 }),
|
|
230
|
+
i && i
|
|
231
|
+
] }),
|
|
232
|
+
/* @__PURE__ */ b("div", { className: "arkynButtonContent", children: [
|
|
233
|
+
/* @__PURE__ */ a(Y, { iconSize: g, icon: s }),
|
|
234
|
+
d,
|
|
235
|
+
/* @__PURE__ */ a(Y, { iconSize: g, icon: h })
|
|
236
|
+
] })
|
|
237
|
+
] });
|
|
238
|
+
}
|
|
239
|
+
function tt(n) {
|
|
240
|
+
const {
|
|
241
|
+
className: e,
|
|
242
|
+
orientation: t = "horizontal",
|
|
243
|
+
...r
|
|
244
|
+
} = n, i = `arkynDivider ${t} ${e}`;
|
|
245
|
+
return /* @__PURE__ */ a("div", { className: i.trim(), ...r });
|
|
246
|
+
}
|
|
247
|
+
function ve(n) {
|
|
248
|
+
const {
|
|
249
|
+
isLoading: e = !1,
|
|
250
|
+
scheme: t = "primary",
|
|
251
|
+
variant: r = "solid",
|
|
252
|
+
size: i = "md",
|
|
253
|
+
icon: o,
|
|
254
|
+
disabled: s,
|
|
255
|
+
className: h = "",
|
|
256
|
+
...l
|
|
257
|
+
} = n, c = { xs: 12, sm: 16, md: 20, lg: 24 }, u = `arkynIconButton ${r} ${t} ${i} ${e ? "loadingTrue" : "loadingFalse"} ${h}`;
|
|
258
|
+
return /* @__PURE__ */ b(
|
|
259
|
+
"button",
|
|
260
|
+
{
|
|
261
|
+
disabled: s || e,
|
|
262
|
+
className: u.trim(),
|
|
263
|
+
...l,
|
|
264
|
+
children: [
|
|
265
|
+
/* @__PURE__ */ a("div", { className: "arkynIconButtonSpinner", children: /* @__PURE__ */ a(ue, { size: c[i], strokeWidth: 2.5 }) }),
|
|
266
|
+
/* @__PURE__ */ a("div", { className: "arkynIconButtonContent", children: /* @__PURE__ */ a(o, { size: c[i], strokeWidth: 2.5 }) })
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
);
|
|
270
|
+
}
|
|
271
|
+
function nt(n) {
|
|
272
|
+
const {
|
|
273
|
+
text: e,
|
|
274
|
+
size: t = "lg",
|
|
275
|
+
children: r,
|
|
276
|
+
orientation: i = "top",
|
|
277
|
+
className: o = "",
|
|
278
|
+
...s
|
|
279
|
+
} = n, h = ce(), l = X(null), [c, d] = N(i);
|
|
280
|
+
ee(() => {
|
|
281
|
+
const f = () => {
|
|
282
|
+
if (!l.current) return;
|
|
283
|
+
const m = document.getElementById(h);
|
|
284
|
+
m && (d(i), requestAnimationFrame(() => {
|
|
285
|
+
const p = m.getBoundingClientRect(), C = window.innerWidth, v = window.innerHeight;
|
|
286
|
+
let k = i;
|
|
287
|
+
i === "left" && p.left < 0 ? k = "right" : i === "right" && p.right > C ? k = "left" : i === "top" && p.top < 0 ? k = "bottom" : i === "bottom" && p.bottom > v && (k = "top"), k === "right" && p.right > C ? k = "left" : k === "left" && p.left < 0 ? k = "right" : k === "bottom" && p.bottom > v ? k = "top" : k === "top" && p.top < 0 && (k = "bottom"), d(k);
|
|
288
|
+
}));
|
|
289
|
+
}, g = l.current;
|
|
290
|
+
if (!g) return;
|
|
291
|
+
const y = () => {
|
|
292
|
+
setTimeout(f, 1);
|
|
293
|
+
};
|
|
294
|
+
return g.addEventListener("mouseenter", y), window.addEventListener("resize", f), () => {
|
|
295
|
+
g.removeEventListener("mouseenter", y), window.removeEventListener("resize", f);
|
|
296
|
+
};
|
|
297
|
+
}, [i, h]);
|
|
298
|
+
const u = `arkynTooltip ${t} ${c} ${o}`;
|
|
299
|
+
return /* @__PURE__ */ b("div", { className: u.trim(), ...s, ref: l, children: [
|
|
300
|
+
r,
|
|
301
|
+
/* @__PURE__ */ a(
|
|
302
|
+
"div",
|
|
303
|
+
{
|
|
304
|
+
className: "arkynTooltipText",
|
|
305
|
+
id: h,
|
|
306
|
+
dangerouslySetInnerHTML: { __html: e }
|
|
307
|
+
}
|
|
308
|
+
)
|
|
309
|
+
] });
|
|
310
|
+
}
|
|
311
|
+
function Gn(n) {
|
|
312
|
+
const {
|
|
313
|
+
filePath: e,
|
|
314
|
+
disabled: t,
|
|
315
|
+
acceptAudio: r,
|
|
316
|
+
handleSelectFile: i,
|
|
317
|
+
isLoading: o,
|
|
318
|
+
reSendAudio: s,
|
|
319
|
+
changeAudioButtonText: h
|
|
320
|
+
} = n;
|
|
321
|
+
function l() {
|
|
322
|
+
if (t) return;
|
|
323
|
+
const c = document.createElement("input");
|
|
324
|
+
c.type = "file", c.accept = r, c.onchange = (d) => {
|
|
325
|
+
var f;
|
|
326
|
+
const u = (f = d.target.files) == null ? void 0 : f[0];
|
|
327
|
+
u && i(u);
|
|
328
|
+
}, c.click();
|
|
329
|
+
}
|
|
330
|
+
return /* @__PURE__ */ b("div", { className: "arkynAudioUploadHasFileContentContainer", children: [
|
|
331
|
+
/* @__PURE__ */ a(jn, { src: e }),
|
|
332
|
+
/* @__PURE__ */ a(tt, {}),
|
|
333
|
+
/* @__PURE__ */ b("div", { className: "arkynAudioUploadButtonsContainer", children: [
|
|
334
|
+
!!s && /* @__PURE__ */ a(nt, { orientation: "bottom", text: "Reenviar áudio", children: /* @__PURE__ */ a(
|
|
335
|
+
ve,
|
|
336
|
+
{
|
|
337
|
+
type: "button",
|
|
338
|
+
"aria-label": "resend image",
|
|
339
|
+
variant: "outline",
|
|
340
|
+
scheme: "danger",
|
|
341
|
+
size: "sm",
|
|
342
|
+
isLoading: o,
|
|
343
|
+
onClick: s,
|
|
344
|
+
icon: Je,
|
|
345
|
+
disabled: t
|
|
346
|
+
}
|
|
347
|
+
) }),
|
|
348
|
+
/* @__PURE__ */ a(
|
|
349
|
+
de,
|
|
350
|
+
{
|
|
351
|
+
isLoading: o,
|
|
352
|
+
onClick: l,
|
|
353
|
+
variant: "outline",
|
|
354
|
+
size: "sm",
|
|
355
|
+
type: "button",
|
|
356
|
+
disabled: t,
|
|
357
|
+
children: h
|
|
358
|
+
}
|
|
359
|
+
)
|
|
360
|
+
] })
|
|
361
|
+
] });
|
|
362
|
+
}
|
|
363
|
+
function Xn(n) {
|
|
364
|
+
const {
|
|
365
|
+
dropAudioText: e,
|
|
366
|
+
isLoading: t,
|
|
367
|
+
acceptAudio: r,
|
|
368
|
+
handleSelectFile: i,
|
|
369
|
+
selectAudioButtonText: o,
|
|
370
|
+
disabled: s
|
|
371
|
+
} = n;
|
|
372
|
+
function h(c) {
|
|
373
|
+
if (s) return;
|
|
374
|
+
c.preventDefault();
|
|
375
|
+
const d = c.dataTransfer.files[0];
|
|
376
|
+
d && i(d);
|
|
377
|
+
}
|
|
378
|
+
function l() {
|
|
379
|
+
if (s) return;
|
|
380
|
+
const c = document.createElement("input");
|
|
381
|
+
c.type = "file", c.accept = r, c.onchange = (d) => {
|
|
382
|
+
var f;
|
|
383
|
+
const u = (f = d.target.files) == null ? void 0 : f[0];
|
|
384
|
+
u && i(u);
|
|
385
|
+
}, c.click();
|
|
386
|
+
}
|
|
387
|
+
return /* @__PURE__ */ b("div", { onDrop: h, className: "arkynAudioUploadNoFileContent", children: [
|
|
388
|
+
/* @__PURE__ */ a(
|
|
389
|
+
de,
|
|
390
|
+
{
|
|
391
|
+
isLoading: t,
|
|
392
|
+
onClick: l,
|
|
393
|
+
variant: "ghost",
|
|
394
|
+
size: "sm",
|
|
395
|
+
type: "button",
|
|
396
|
+
disabled: s,
|
|
397
|
+
children: o
|
|
398
|
+
}
|
|
399
|
+
),
|
|
400
|
+
/* @__PURE__ */ a("p", { children: e })
|
|
401
|
+
] });
|
|
402
|
+
}
|
|
403
|
+
function Zr(n) {
|
|
404
|
+
const {
|
|
405
|
+
name: e,
|
|
406
|
+
label: t,
|
|
407
|
+
fileName: r = "file",
|
|
408
|
+
method: i = "POST",
|
|
409
|
+
onChange: o,
|
|
410
|
+
fileResponseName: s = "url",
|
|
411
|
+
selectAudioButtonText: h = "Selecionar arquivo de áudio",
|
|
412
|
+
dropAudioText: l = "Ou arraste e solte um arquivo de áudio aqui",
|
|
413
|
+
changeAudioButtonText: c = "Trocar arquivo de áudio",
|
|
414
|
+
acceptAudio: d = "audio/*",
|
|
415
|
+
action: u,
|
|
416
|
+
defaultValue: f = "",
|
|
417
|
+
showAsterisk: g = !1,
|
|
418
|
+
disabled: y = !1
|
|
419
|
+
} = n, { fieldErrors: m } = te(), p = m == null ? void 0 : m[e], [C, v] = N(f), [k, w] = N(""), [M, T] = N(null), [D, O] = N(f), [R, A] = N(!1);
|
|
420
|
+
async function x(F) {
|
|
421
|
+
if (y) return;
|
|
422
|
+
A(!0), T(F), w("");
|
|
423
|
+
const J = new FormData();
|
|
424
|
+
J.append(r, F), await fetch(u, { method: i, body: J }).then(async ($) => await $.json()).then(($) => {
|
|
425
|
+
$ != null && $.error ? w($.error) : v($ == null ? void 0 : $[s]), o && o($ == null ? void 0 : $[s]);
|
|
426
|
+
}).catch(($) => {
|
|
427
|
+
console.error($), w("Erro ao enviar audio");
|
|
428
|
+
}).finally(() => A(!1));
|
|
429
|
+
}
|
|
430
|
+
function I(F) {
|
|
431
|
+
if (!y) {
|
|
432
|
+
if (F.type.indexOf("audio") === -1) {
|
|
433
|
+
w("O arquivo selecionado não é um arquivo de áudio");
|
|
434
|
+
return;
|
|
435
|
+
}
|
|
436
|
+
O(URL.createObjectURL(F)), x(F);
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
const S = p || k;
|
|
440
|
+
return /* @__PURE__ */ b(De, { children: [
|
|
441
|
+
t && /* @__PURE__ */ a(Te, { showAsterisk: g, children: t }),
|
|
442
|
+
/* @__PURE__ */ b("div", { className: `arkynAudioUpload ${S ? "hasError" : "noHasError"} ${D ? "hasAudio" : "noHasAudio"}`, children: [
|
|
443
|
+
/* @__PURE__ */ a("input", { type: "hidden", name: e, value: C || "" }),
|
|
444
|
+
!D && /* @__PURE__ */ a(
|
|
445
|
+
Xn,
|
|
446
|
+
{
|
|
447
|
+
disabled: y,
|
|
448
|
+
isLoading: R,
|
|
449
|
+
acceptAudio: d,
|
|
450
|
+
dropAudioText: l,
|
|
451
|
+
handleSelectFile: I,
|
|
452
|
+
selectAudioButtonText: h
|
|
453
|
+
}
|
|
454
|
+
),
|
|
455
|
+
D && /* @__PURE__ */ a(
|
|
456
|
+
Gn,
|
|
457
|
+
{
|
|
458
|
+
filePath: D,
|
|
459
|
+
acceptAudio: d,
|
|
460
|
+
changeAudioButtonText: c,
|
|
461
|
+
disabled: y,
|
|
462
|
+
handleSelectFile: I,
|
|
463
|
+
isLoading: R,
|
|
464
|
+
reSendAudio: S && M ? () => x(M) : void 0
|
|
465
|
+
}
|
|
466
|
+
)
|
|
467
|
+
] }),
|
|
468
|
+
S && /* @__PURE__ */ a(Me, { children: S })
|
|
469
|
+
] });
|
|
470
|
+
}
|
|
471
|
+
function ei(n) {
|
|
472
|
+
const {
|
|
473
|
+
variant: e = "ghost",
|
|
474
|
+
scheme: t = "primary",
|
|
475
|
+
size: r = "lg",
|
|
476
|
+
leftIcon: i,
|
|
477
|
+
rightIcon: o,
|
|
478
|
+
className: s = "",
|
|
479
|
+
children: h,
|
|
480
|
+
...l
|
|
481
|
+
} = n, d = { md: 12, lg: 14 }[r], u = `arkynBadge ${e} ${t} ${r} ${s}`;
|
|
482
|
+
return /* @__PURE__ */ b("div", { className: u.trim(), ...l, children: [
|
|
483
|
+
/* @__PURE__ */ a(Y, { iconSize: d, icon: i }),
|
|
484
|
+
/* @__PURE__ */ a("p", { children: h }),
|
|
485
|
+
/* @__PURE__ */ a(Y, { iconSize: d, icon: o })
|
|
486
|
+
] });
|
|
487
|
+
}
|
|
488
|
+
let Kn = class {
|
|
489
|
+
currentDay(e) {
|
|
490
|
+
return String(e.getDate()).padStart(2, "0");
|
|
491
|
+
}
|
|
492
|
+
currentMonth(e) {
|
|
493
|
+
return String(e.getMonth() + 1).padStart(2, "0");
|
|
494
|
+
}
|
|
495
|
+
currentYear(e) {
|
|
496
|
+
return String(e.getFullYear());
|
|
497
|
+
}
|
|
498
|
+
capitalize(e) {
|
|
499
|
+
return Ne(e);
|
|
500
|
+
}
|
|
501
|
+
parseDayType(e, t, r, i) {
|
|
502
|
+
const o = i[0].getDate(), s = i[0].getMonth(), h = i[0].getFullYear(), l = i[1].getDate(), c = i[1].getMonth(), d = i[1].getFullYear(), u = new Date(h, s, o), f = new Date(d, c, l), g = new Date(r, t, e);
|
|
503
|
+
return u.getTime() === g.getTime() || f.getTime() === g.getTime() ? "checkedDay" : g > u && g < f ? "middleDay" : "uncheckedDay";
|
|
504
|
+
}
|
|
505
|
+
listWeek(e) {
|
|
506
|
+
const t = [], r = new Date(Date.UTC(2023, 0, 1));
|
|
507
|
+
for (let i = 0; i < 7; i++) {
|
|
508
|
+
const o = new Date(r);
|
|
509
|
+
o.setUTCDate(r.getUTCDate() + i);
|
|
510
|
+
const s = o.toLocaleDateString(e, {
|
|
511
|
+
weekday: "short",
|
|
512
|
+
timeZone: "UTC"
|
|
513
|
+
});
|
|
514
|
+
t.push(s);
|
|
515
|
+
}
|
|
516
|
+
return t;
|
|
517
|
+
}
|
|
518
|
+
listMonths(e, t) {
|
|
519
|
+
const r = new Intl.DateTimeFormat(t, {
|
|
520
|
+
month: "long"
|
|
521
|
+
});
|
|
522
|
+
return Array.from({ length: 12 }, (i, o) => {
|
|
523
|
+
const s = new Date(e.getFullYear(), o, 1), h = r.format(s);
|
|
524
|
+
return {
|
|
525
|
+
label: this.capitalize(h),
|
|
526
|
+
value: String(o).padStart(2, "0")
|
|
527
|
+
};
|
|
528
|
+
});
|
|
529
|
+
}
|
|
530
|
+
listYears(e) {
|
|
531
|
+
const t = (/* @__PURE__ */ new Date()).getFullYear();
|
|
532
|
+
return Array.from({ length: e + 1 }, (r, i) => {
|
|
533
|
+
const o = t - e + i;
|
|
534
|
+
return { label: String(o), value: String(o) };
|
|
535
|
+
}).reverse();
|
|
536
|
+
}
|
|
537
|
+
listMatrix(e, t) {
|
|
538
|
+
const r = e.getFullYear(), i = e.getMonth(), s = new Date(r, i, 1).getDay(), h = new Date(r, i + 1, 0).getDate(), l = new Date(r, i, 0).getDate(), c = Math.ceil((s + h) / 7) * 7, d = [];
|
|
539
|
+
let u = 1, f = 1;
|
|
540
|
+
for (let g = 0; g < c; g++) {
|
|
541
|
+
const y = Math.floor(g / 7);
|
|
542
|
+
if (d[y] || (d[y] = []), g < s) {
|
|
543
|
+
const m = l - (s - g - 1), p = i === 0 ? 11 : i - 1, C = i === 0 ? r - 1 : r;
|
|
544
|
+
d[y].push({
|
|
545
|
+
day: m,
|
|
546
|
+
month: p,
|
|
547
|
+
year: C,
|
|
548
|
+
dayOwner: "previous",
|
|
549
|
+
dayType: this.parseDayType(m, p, C, t)
|
|
550
|
+
});
|
|
551
|
+
} else if (u <= h)
|
|
552
|
+
d[y].push({
|
|
553
|
+
day: u,
|
|
554
|
+
month: i,
|
|
555
|
+
year: r,
|
|
556
|
+
dayOwner: "current",
|
|
557
|
+
dayType: this.parseDayType(
|
|
558
|
+
u,
|
|
559
|
+
i,
|
|
560
|
+
r,
|
|
561
|
+
t
|
|
562
|
+
)
|
|
563
|
+
}), u++;
|
|
564
|
+
else {
|
|
565
|
+
const m = i === 11 ? 0 : i + 1, p = i === 11 ? r + 1 : r;
|
|
566
|
+
d[y].push({
|
|
567
|
+
day: f,
|
|
568
|
+
month: m,
|
|
569
|
+
year: p,
|
|
570
|
+
dayOwner: "next",
|
|
571
|
+
dayType: this.parseDayType(f, m, p, t)
|
|
572
|
+
}), f++;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
return d;
|
|
576
|
+
}
|
|
577
|
+
changeDay(e, t, r, i, o, s, h) {
|
|
578
|
+
const l = (C) => new Date(C.getFullYear(), C.getMonth(), C.getDate()), c = l(new Date(r, t, e));
|
|
579
|
+
if (h(c), i === "single") {
|
|
580
|
+
s([c, c]);
|
|
581
|
+
return;
|
|
582
|
+
}
|
|
583
|
+
let d = l(o[0]), u = l(o[1]);
|
|
584
|
+
const f = c.getTime(), g = d.getTime(), y = u.getTime();
|
|
585
|
+
if (f === g) {
|
|
586
|
+
s([c, c]);
|
|
587
|
+
return;
|
|
588
|
+
}
|
|
589
|
+
if (f === y) {
|
|
590
|
+
s([c, c]);
|
|
591
|
+
return;
|
|
592
|
+
}
|
|
593
|
+
if (c < d) {
|
|
594
|
+
s([c, u]);
|
|
595
|
+
return;
|
|
596
|
+
}
|
|
597
|
+
if (c > u) {
|
|
598
|
+
s([d, c]);
|
|
599
|
+
return;
|
|
600
|
+
}
|
|
601
|
+
const m = Math.abs(f - g), p = Math.abs(y - f);
|
|
602
|
+
if (m <= p) {
|
|
603
|
+
s([c, u]);
|
|
604
|
+
return;
|
|
605
|
+
}
|
|
606
|
+
s([d, c]);
|
|
607
|
+
}
|
|
608
|
+
changeMonth(e, t, r) {
|
|
609
|
+
const i = new Date(t);
|
|
610
|
+
i.setMonth(e), r(i);
|
|
611
|
+
}
|
|
612
|
+
changeYear(e, t, r) {
|
|
613
|
+
const i = new Date(t);
|
|
614
|
+
i.setFullYear(e), r(i);
|
|
615
|
+
}
|
|
616
|
+
nextMonth(e, t) {
|
|
617
|
+
const r = new Date(e);
|
|
618
|
+
r.setDate(1), r.setMonth(r.getMonth() + 1), t(r);
|
|
619
|
+
}
|
|
620
|
+
previousMonth(e, t) {
|
|
621
|
+
const r = new Date(e);
|
|
622
|
+
r.setDate(1), r.setMonth(r.getMonth() - 1), t(r);
|
|
623
|
+
}
|
|
624
|
+
};
|
|
625
|
+
const Tt = ie({});
|
|
626
|
+
function He() {
|
|
627
|
+
return se(Tt);
|
|
628
|
+
}
|
|
629
|
+
function ot(n) {
|
|
630
|
+
const {
|
|
631
|
+
calendarType: e,
|
|
632
|
+
children: t,
|
|
633
|
+
defaultValue: r,
|
|
634
|
+
defaultViewValue: i = /* @__PURE__ */ new Date(),
|
|
635
|
+
language: o = "pt-BR",
|
|
636
|
+
onChange: s,
|
|
637
|
+
onChangeView: h,
|
|
638
|
+
value: l,
|
|
639
|
+
viewValue: c
|
|
640
|
+
} = n, d = e === "single" ? [r || /* @__PURE__ */ new Date(), r || /* @__PURE__ */ new Date()] : r || [/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()], [u, f] = N(i), [g, y] = N(d), m = c || u, p = l ? e === "single" ? [l, l] : l : g, C = new Kn();
|
|
641
|
+
function v(w) {
|
|
642
|
+
const M = [
|
|
643
|
+
new Date(w[0]),
|
|
644
|
+
new Date(w[1])
|
|
645
|
+
];
|
|
646
|
+
s && e === "range" && s(M), s && e === "single" && s(M[0]), y(M);
|
|
647
|
+
}
|
|
648
|
+
function k(w) {
|
|
649
|
+
h && h(w), f(w);
|
|
650
|
+
}
|
|
651
|
+
return /* @__PURE__ */ a(
|
|
652
|
+
Tt.Provider,
|
|
653
|
+
{
|
|
654
|
+
value: {
|
|
655
|
+
valueDate: p,
|
|
656
|
+
viewDate: m,
|
|
657
|
+
currentDate: m.toLocaleDateString(o).slice(3),
|
|
658
|
+
currentDay: C.currentDay(m),
|
|
659
|
+
currentMonth: C.currentMonth(m),
|
|
660
|
+
currentYear: C.currentYear(m),
|
|
661
|
+
listWeek: C.listWeek(o),
|
|
662
|
+
listMonths: C.listMonths(m, o),
|
|
663
|
+
listYears: C.listYears(100),
|
|
664
|
+
listMatrix: C.listMatrix(m, p),
|
|
665
|
+
changeDay: (w, M, T) => C.changeDay(
|
|
666
|
+
w,
|
|
667
|
+
M,
|
|
668
|
+
T,
|
|
669
|
+
e,
|
|
670
|
+
p,
|
|
671
|
+
v,
|
|
672
|
+
k
|
|
673
|
+
),
|
|
674
|
+
changeMonth: (w) => C.changeMonth(w, m, k),
|
|
675
|
+
changeYear: (w) => C.changeYear(w, m, k),
|
|
676
|
+
nextMonth: () => C.nextMonth(m, k),
|
|
677
|
+
previousMonth: () => C.previousMonth(m, k)
|
|
678
|
+
},
|
|
679
|
+
children: t
|
|
680
|
+
}
|
|
681
|
+
);
|
|
682
|
+
}
|
|
683
|
+
function ct({ children: n }) {
|
|
684
|
+
return /* @__PURE__ */ a("div", { className: "arkynCalendarContainer", children: n });
|
|
685
|
+
}
|
|
686
|
+
function he(n) {
|
|
687
|
+
const {
|
|
688
|
+
name: e,
|
|
689
|
+
label: t,
|
|
690
|
+
showAsterisk: r,
|
|
691
|
+
className: i,
|
|
692
|
+
unShowFieldTemplate: o,
|
|
693
|
+
errorMessage: s,
|
|
694
|
+
children: h,
|
|
695
|
+
orientation: l
|
|
696
|
+
} = n;
|
|
697
|
+
return o ? h : /* @__PURE__ */ b(De, { id: e, className: i, orientation: l, children: [
|
|
698
|
+
t && /* @__PURE__ */ a(Te, { showAsterisk: r, children: t }),
|
|
699
|
+
h,
|
|
700
|
+
s && /* @__PURE__ */ a(Me, { children: s })
|
|
701
|
+
] });
|
|
702
|
+
}
|
|
703
|
+
function Jn(n) {
|
|
704
|
+
const { iconSize: e, isLoading: t, disabled: r, readOnly: i, isFocused: o } = n, l = `arkynSelectChevron ${r || i ? "notAnimate" : ""} ${o ? "focused" : ""}`;
|
|
705
|
+
return t ? /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(
|
|
706
|
+
Qe,
|
|
707
|
+
{
|
|
708
|
+
className: l,
|
|
709
|
+
strokeWidth: 2.5,
|
|
710
|
+
style: {
|
|
711
|
+
minWidth: e,
|
|
712
|
+
minHeight: e,
|
|
713
|
+
maxWidth: e,
|
|
714
|
+
maxHeight: e
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
);
|
|
718
|
+
}
|
|
719
|
+
function Qn(n) {
|
|
720
|
+
const {
|
|
721
|
+
children: e,
|
|
722
|
+
handleContainerFocus: t,
|
|
723
|
+
disabled: r,
|
|
724
|
+
isError: i,
|
|
725
|
+
isLoading: o,
|
|
726
|
+
isFocused: s,
|
|
727
|
+
className: h,
|
|
728
|
+
readOnly: l,
|
|
729
|
+
variant: c,
|
|
730
|
+
size: d,
|
|
731
|
+
id: u,
|
|
732
|
+
prefixExists: f
|
|
733
|
+
} = n;
|
|
734
|
+
return /* @__PURE__ */ a(
|
|
735
|
+
"section",
|
|
736
|
+
{
|
|
737
|
+
id: u,
|
|
738
|
+
className: `arkynSelectContainer ${f ? "hasPrefix" : ""} ${c} ${d} ${r || l || o ? "opacity" : ""} ${i ? "errored" : ""} ${s ? "focused" : ""} ${h}`,
|
|
739
|
+
onClick: t,
|
|
740
|
+
children: e
|
|
741
|
+
}
|
|
742
|
+
);
|
|
743
|
+
}
|
|
744
|
+
function Zn(n) {
|
|
745
|
+
const { children: e, size: t } = n, r = `arkynSelectContent ${t}`;
|
|
746
|
+
return /* @__PURE__ */ a("div", { className: r, children: e });
|
|
747
|
+
}
|
|
748
|
+
function ea(n) {
|
|
749
|
+
const { label: e, optionHasSelected: t, handleChangeValue: r, value: i, size: o } = n, s = t(i) ? "active" : "", h = `arkynSelectOption ${o} ${s}`;
|
|
750
|
+
return /* @__PURE__ */ b("div", { onClick: () => r(i), className: h, children: [
|
|
751
|
+
e,
|
|
752
|
+
" ",
|
|
753
|
+
/* @__PURE__ */ a(Be, {})
|
|
754
|
+
] });
|
|
755
|
+
}
|
|
756
|
+
function ta() {
|
|
757
|
+
return typeof window > "u" ? 0 : window.innerWidth - document.documentElement.clientWidth;
|
|
758
|
+
}
|
|
759
|
+
function Ce(n) {
|
|
760
|
+
ee(() => {
|
|
761
|
+
if (n) {
|
|
762
|
+
const e = document.body.style.overflow, t = document.body.style.paddingRight, r = ta();
|
|
763
|
+
if (r > 0) {
|
|
764
|
+
const i = window.getComputedStyle(document.body), o = parseInt(i.paddingRight) || 0;
|
|
765
|
+
document.body.style.paddingRight = `${o + r}px`;
|
|
766
|
+
}
|
|
767
|
+
return document.body.style.overflow = "hidden", () => {
|
|
768
|
+
document.body.style.overflow = e, document.body.style.paddingRight = t;
|
|
769
|
+
};
|
|
770
|
+
}
|
|
771
|
+
}, [n]);
|
|
772
|
+
}
|
|
773
|
+
function Se(n) {
|
|
774
|
+
const {
|
|
775
|
+
name: e,
|
|
776
|
+
disabled: t,
|
|
777
|
+
title: r,
|
|
778
|
+
style: i,
|
|
779
|
+
variant: o = "solid",
|
|
780
|
+
label: s,
|
|
781
|
+
className: h = "",
|
|
782
|
+
prefix: l,
|
|
783
|
+
suffix: c,
|
|
784
|
+
isLoading: d = !1,
|
|
785
|
+
leftIcon: u,
|
|
786
|
+
readOnly: f,
|
|
787
|
+
onFocus: g,
|
|
788
|
+
onBlur: y,
|
|
789
|
+
unShowFieldTemplate: m = !1,
|
|
790
|
+
errorMessage: p,
|
|
791
|
+
showAsterisk: C,
|
|
792
|
+
rightIcon: v,
|
|
793
|
+
type: k = "text",
|
|
794
|
+
size: w = "md",
|
|
795
|
+
id: M,
|
|
796
|
+
value: T,
|
|
797
|
+
placeholder: D,
|
|
798
|
+
orientation: O,
|
|
799
|
+
...R
|
|
800
|
+
} = n, { fieldErrors: A } = te(), [x, I] = N(!1), S = X(null), z = M || ce(), L = p || (A == null ? void 0 : A[e]), P = !!L, F = t || d, $ = { md: 20, lg: 20 }[w], G = v ? "right" : "left", U = G === "left" && d, V = G === "right" && d;
|
|
801
|
+
function B() {
|
|
802
|
+
F || !(S != null && S.current) || (I(!0), S.current.focus());
|
|
803
|
+
}
|
|
804
|
+
function H(Q) {
|
|
805
|
+
I(!0), g && g(Q);
|
|
806
|
+
}
|
|
807
|
+
function j(Q) {
|
|
808
|
+
I(!1), y && y(Q);
|
|
809
|
+
}
|
|
810
|
+
if (k === "hidden")
|
|
811
|
+
return /* @__PURE__ */ a(
|
|
812
|
+
"input",
|
|
813
|
+
{
|
|
814
|
+
style: { display: "none" },
|
|
815
|
+
readOnly: !0,
|
|
816
|
+
type: "text",
|
|
817
|
+
ref: S,
|
|
818
|
+
...R
|
|
819
|
+
}
|
|
820
|
+
);
|
|
821
|
+
const _ = `arkynInput ${l ? "hasPrefix" : ""} ${t ? "disabled" : ""} ${c ? "hasSuffix" : ""} ${o} ${w} ${F || f || d ? "opacity" : ""} ${P ? "errored" : ""} ${x ? "focused" : ""}`;
|
|
822
|
+
return /* @__PURE__ */ a(
|
|
823
|
+
he,
|
|
824
|
+
{
|
|
825
|
+
name: e,
|
|
826
|
+
label: s,
|
|
827
|
+
showAsterisk: C,
|
|
828
|
+
className: h,
|
|
829
|
+
errorMessage: L,
|
|
830
|
+
unShowFieldTemplate: m,
|
|
831
|
+
orientation: O,
|
|
832
|
+
children: /* @__PURE__ */ b(
|
|
833
|
+
"section",
|
|
834
|
+
{
|
|
835
|
+
title: r,
|
|
836
|
+
style: i,
|
|
837
|
+
onClick: B,
|
|
838
|
+
className: _,
|
|
839
|
+
children: [
|
|
840
|
+
/* @__PURE__ */ a(Y, { iconSize: $, icon: l, className: "prefix" }),
|
|
841
|
+
/* @__PURE__ */ a(
|
|
842
|
+
Y,
|
|
843
|
+
{
|
|
844
|
+
show: U,
|
|
845
|
+
iconSize: $,
|
|
846
|
+
className: "spinner",
|
|
847
|
+
icon: ue
|
|
848
|
+
}
|
|
849
|
+
),
|
|
850
|
+
/* @__PURE__ */ a(Y, { show: !d, icon: u, iconSize: $ }),
|
|
851
|
+
/* @__PURE__ */ a(
|
|
852
|
+
"input",
|
|
853
|
+
{
|
|
854
|
+
disabled: F,
|
|
855
|
+
readOnly: f,
|
|
856
|
+
ref: S,
|
|
857
|
+
onFocus: H,
|
|
858
|
+
onBlur: j,
|
|
859
|
+
type: k,
|
|
860
|
+
id: z,
|
|
861
|
+
name: e,
|
|
862
|
+
placeholder: F && T || D,
|
|
863
|
+
value: F ? void 0 : T,
|
|
864
|
+
...R
|
|
865
|
+
}
|
|
866
|
+
),
|
|
867
|
+
/* @__PURE__ */ a(Y, { show: !d, icon: v, iconSize: $ }),
|
|
868
|
+
/* @__PURE__ */ a(
|
|
869
|
+
Y,
|
|
870
|
+
{
|
|
871
|
+
show: V,
|
|
872
|
+
iconSize: $,
|
|
873
|
+
className: "spinner",
|
|
874
|
+
icon: ue
|
|
875
|
+
}
|
|
876
|
+
),
|
|
877
|
+
/* @__PURE__ */ a(Y, { iconSize: $, icon: c, className: "suffix" })
|
|
878
|
+
]
|
|
879
|
+
}
|
|
880
|
+
)
|
|
881
|
+
}
|
|
882
|
+
);
|
|
883
|
+
}
|
|
884
|
+
function na(n) {
|
|
885
|
+
const { children: e, isFocused: t, isSearchable: r, search: i, onSearch: o } = n, s = X(null), [h, l] = N("bottom");
|
|
886
|
+
Ce(t), ee(() => {
|
|
887
|
+
if (!t) return;
|
|
888
|
+
(() => {
|
|
889
|
+
if (!s.current) return;
|
|
890
|
+
const u = s.current.parentElement;
|
|
891
|
+
if (!u) return;
|
|
892
|
+
const f = u.getBoundingClientRect(), g = window.innerHeight, y = 300;
|
|
893
|
+
g - f.bottom < y && f.top > y ? l("top") : l("bottom");
|
|
894
|
+
})();
|
|
895
|
+
}, [t]);
|
|
896
|
+
function c(d) {
|
|
897
|
+
r && o(d.target.value);
|
|
898
|
+
}
|
|
899
|
+
return t ? /* @__PURE__ */ b(
|
|
900
|
+
"div",
|
|
901
|
+
{
|
|
902
|
+
ref: s,
|
|
903
|
+
className: `arkynSelectOptionsContainer ${h}`,
|
|
904
|
+
children: [
|
|
905
|
+
r && /* @__PURE__ */ a(
|
|
906
|
+
Se,
|
|
907
|
+
{
|
|
908
|
+
type: "search",
|
|
909
|
+
name: "search-select",
|
|
910
|
+
variant: "underline",
|
|
911
|
+
leftIcon: kt,
|
|
912
|
+
value: i,
|
|
913
|
+
onChange: c
|
|
914
|
+
}
|
|
915
|
+
),
|
|
916
|
+
e
|
|
917
|
+
]
|
|
918
|
+
}
|
|
919
|
+
) : /* @__PURE__ */ a(W, {});
|
|
920
|
+
}
|
|
921
|
+
function aa(n) {
|
|
922
|
+
const { isFocused: e, handleBlur: t } = n;
|
|
923
|
+
return e ? /* @__PURE__ */ a("aside", { className: "arkynSelectOverlay", onClick: t }) : /* @__PURE__ */ a(W, {});
|
|
924
|
+
}
|
|
925
|
+
function ra(n) {
|
|
926
|
+
const { iconSize: e, isLoading: t } = n;
|
|
927
|
+
return t ? /* @__PURE__ */ a(ue, { className: "arkynSelectSpinner", size: e, strokeWidth: 2.5 }) : /* @__PURE__ */ a(W, {});
|
|
928
|
+
}
|
|
929
|
+
function lt(n) {
|
|
930
|
+
const {
|
|
931
|
+
name: e,
|
|
932
|
+
options: t,
|
|
933
|
+
className: r = "",
|
|
934
|
+
placeholder: i = "Selecione...",
|
|
935
|
+
closeOnSelect: o = !0,
|
|
936
|
+
defaultValue: s = "",
|
|
937
|
+
errorMessage: h,
|
|
938
|
+
isLoading: l = !1,
|
|
939
|
+
readOnly: c = !1,
|
|
940
|
+
isSearchable: d = !1,
|
|
941
|
+
id: u,
|
|
942
|
+
label: f,
|
|
943
|
+
optionMaxHeight: g,
|
|
944
|
+
showAsterisk: y,
|
|
945
|
+
leftIcon: m,
|
|
946
|
+
onSearch: p,
|
|
947
|
+
onChange: C,
|
|
948
|
+
onBlur: v,
|
|
949
|
+
notFoundText: k = "Sem opções disponíveis",
|
|
950
|
+
onFocus: w,
|
|
951
|
+
disabled: M = !1,
|
|
952
|
+
prefix: T,
|
|
953
|
+
size: D = "md",
|
|
954
|
+
value: O,
|
|
955
|
+
variant: R = "solid",
|
|
956
|
+
orientation: A = "vertical",
|
|
957
|
+
unShowFieldTemplate: x = !1
|
|
958
|
+
} = n, { fieldErrors: I } = te(), S = X(null), z = u || ce(), L = h || (I == null ? void 0 : I[e]), P = !!L, F = M || l || c, $ = { md: 20, lg: 20 }[D], [G, U] = N(""), [V, B] = N(!1), [H, j] = N(s), q = O || H;
|
|
959
|
+
function ne(E) {
|
|
960
|
+
return q === E;
|
|
961
|
+
}
|
|
962
|
+
function fe(E) {
|
|
963
|
+
const K = t.find((xe) => xe.value === E);
|
|
964
|
+
return (K == null ? void 0 : K.label) || "";
|
|
965
|
+
}
|
|
966
|
+
function me() {
|
|
967
|
+
F || !(S != null && S.current) || V || (B(!0), S.current.focus(), w && w());
|
|
968
|
+
}
|
|
969
|
+
function ae() {
|
|
970
|
+
B(!1), v && S.current && S.current.blur();
|
|
971
|
+
}
|
|
972
|
+
function le(E) {
|
|
973
|
+
U(E), p && p(E);
|
|
974
|
+
}
|
|
975
|
+
function _(E) {
|
|
976
|
+
ne(E) ? (j(""), C && C("")) : (j(E), C && C(E)), o && ae();
|
|
977
|
+
}
|
|
978
|
+
const Q = t.filter((E) => !!(n.onSearch || !n.isSearchable || E.label.toLowerCase().includes(G.toLowerCase())));
|
|
979
|
+
return /* @__PURE__ */ a(
|
|
980
|
+
he,
|
|
981
|
+
{
|
|
982
|
+
name: e,
|
|
983
|
+
label: f,
|
|
984
|
+
showAsterisk: y,
|
|
985
|
+
className: r,
|
|
986
|
+
errorMessage: L,
|
|
987
|
+
unShowFieldTemplate: x,
|
|
988
|
+
orientation: A,
|
|
989
|
+
children: /* @__PURE__ */ b(
|
|
990
|
+
Qn,
|
|
991
|
+
{
|
|
992
|
+
handleContainerFocus: me,
|
|
993
|
+
disabled: F,
|
|
994
|
+
isError: P,
|
|
995
|
+
isFocused: V,
|
|
996
|
+
isLoading: l,
|
|
997
|
+
readOnly: c,
|
|
998
|
+
size: D,
|
|
999
|
+
variant: R,
|
|
1000
|
+
prefixExists: !!T,
|
|
1001
|
+
id: z,
|
|
1002
|
+
children: [
|
|
1003
|
+
/* @__PURE__ */ a(
|
|
1004
|
+
"input",
|
|
1005
|
+
{
|
|
1006
|
+
ref: S,
|
|
1007
|
+
name: e,
|
|
1008
|
+
value: q,
|
|
1009
|
+
type: "hidden"
|
|
1010
|
+
}
|
|
1011
|
+
),
|
|
1012
|
+
/* @__PURE__ */ a(Y, { iconSize: $, icon: T, className: "prefix" }),
|
|
1013
|
+
m && /* @__PURE__ */ a(m, { size: $, strokeWidth: 2.5 }),
|
|
1014
|
+
/* @__PURE__ */ b(Zn, { size: D, children: [
|
|
1015
|
+
q !== "" && /* @__PURE__ */ a("p", { className: "hasValue", children: fe(q) }),
|
|
1016
|
+
q === "" && /* @__PURE__ */ a("p", { children: i })
|
|
1017
|
+
] }),
|
|
1018
|
+
/* @__PURE__ */ b(
|
|
1019
|
+
na,
|
|
1020
|
+
{
|
|
1021
|
+
isFocused: V,
|
|
1022
|
+
isSearchable: d,
|
|
1023
|
+
search: G,
|
|
1024
|
+
onSearch: le,
|
|
1025
|
+
children: [
|
|
1026
|
+
Q.map(({ label: E, value: K }) => /* @__PURE__ */ a(
|
|
1027
|
+
ea,
|
|
1028
|
+
{
|
|
1029
|
+
label: E,
|
|
1030
|
+
value: K,
|
|
1031
|
+
size: D,
|
|
1032
|
+
handleChangeValue: _,
|
|
1033
|
+
optionHasSelected: ne
|
|
1034
|
+
},
|
|
1035
|
+
K
|
|
1036
|
+
)),
|
|
1037
|
+
Q.length <= 0 && /* @__PURE__ */ a("p", { children: k })
|
|
1038
|
+
]
|
|
1039
|
+
}
|
|
1040
|
+
),
|
|
1041
|
+
/* @__PURE__ */ a(
|
|
1042
|
+
Jn,
|
|
1043
|
+
{
|
|
1044
|
+
disabled: F,
|
|
1045
|
+
isFocused: V,
|
|
1046
|
+
readOnly: c,
|
|
1047
|
+
iconSize: $,
|
|
1048
|
+
isLoading: l
|
|
1049
|
+
}
|
|
1050
|
+
),
|
|
1051
|
+
/* @__PURE__ */ a(ra, { iconSize: $, isLoading: l }),
|
|
1052
|
+
/* @__PURE__ */ a(aa, { handleBlur: ae, isFocused: V })
|
|
1053
|
+
]
|
|
1054
|
+
}
|
|
1055
|
+
)
|
|
1056
|
+
}
|
|
1057
|
+
);
|
|
1058
|
+
}
|
|
1059
|
+
function ut({ basicMode: n }) {
|
|
1060
|
+
const e = He();
|
|
1061
|
+
return n ? /* @__PURE__ */ b("div", { className: "arkynCalendarHeader", children: [
|
|
1062
|
+
/* @__PURE__ */ a(
|
|
1063
|
+
"button",
|
|
1064
|
+
{
|
|
1065
|
+
className: "arkynCalendarButton",
|
|
1066
|
+
onClick: () => e.previousMonth(),
|
|
1067
|
+
children: /* @__PURE__ */ a(Ve, {})
|
|
1068
|
+
}
|
|
1069
|
+
),
|
|
1070
|
+
/* @__PURE__ */ a("p", { children: e.currentDate }),
|
|
1071
|
+
/* @__PURE__ */ a(
|
|
1072
|
+
"button",
|
|
1073
|
+
{
|
|
1074
|
+
className: "arkynCalendarButton",
|
|
1075
|
+
onClick: () => e.nextMonth(),
|
|
1076
|
+
children: /* @__PURE__ */ a(Le, {})
|
|
1077
|
+
}
|
|
1078
|
+
)
|
|
1079
|
+
] }) : /* @__PURE__ */ b("div", { className: "arkynCalendarHeader", children: [
|
|
1080
|
+
/* @__PURE__ */ b("div", { children: [
|
|
1081
|
+
/* @__PURE__ */ a(
|
|
1082
|
+
"button",
|
|
1083
|
+
{
|
|
1084
|
+
className: "arkynCalendarButton",
|
|
1085
|
+
onClick: () => e.previousMonth(),
|
|
1086
|
+
children: /* @__PURE__ */ a(Ve, {})
|
|
1087
|
+
}
|
|
1088
|
+
),
|
|
1089
|
+
/* @__PURE__ */ a(
|
|
1090
|
+
"button",
|
|
1091
|
+
{
|
|
1092
|
+
className: "arkynCalendarButton",
|
|
1093
|
+
onClick: () => e.nextMonth(),
|
|
1094
|
+
children: /* @__PURE__ */ a(Le, {})
|
|
1095
|
+
}
|
|
1096
|
+
)
|
|
1097
|
+
] }),
|
|
1098
|
+
/* @__PURE__ */ b("div", { children: [
|
|
1099
|
+
/* @__PURE__ */ a(
|
|
1100
|
+
lt,
|
|
1101
|
+
{
|
|
1102
|
+
name: "calendarMonth",
|
|
1103
|
+
variant: "underline",
|
|
1104
|
+
className: "calendarMonthSelect",
|
|
1105
|
+
value: e.currentMonth,
|
|
1106
|
+
options: e.listMonths,
|
|
1107
|
+
onChange: (t) => e.changeMonth(+t)
|
|
1108
|
+
}
|
|
1109
|
+
),
|
|
1110
|
+
/* @__PURE__ */ a(
|
|
1111
|
+
lt,
|
|
1112
|
+
{
|
|
1113
|
+
name: "calendarYear",
|
|
1114
|
+
variant: "underline",
|
|
1115
|
+
className: "calendarYearSelect",
|
|
1116
|
+
value: e.currentYear,
|
|
1117
|
+
options: e.listYears,
|
|
1118
|
+
onChange: (t) => e.changeYear(+t)
|
|
1119
|
+
}
|
|
1120
|
+
)
|
|
1121
|
+
] })
|
|
1122
|
+
] });
|
|
1123
|
+
}
|
|
1124
|
+
function ia(n) {
|
|
1125
|
+
const { day: e, month: t, year: r, dayOwner: i, dayType: o } = n, { changeDay: s } = He();
|
|
1126
|
+
function h() {
|
|
1127
|
+
const l = /* @__PURE__ */ new Date();
|
|
1128
|
+
return e === l.getDate() && t === l.getMonth() && r === l.getFullYear();
|
|
1129
|
+
}
|
|
1130
|
+
return /* @__PURE__ */ a(
|
|
1131
|
+
"td",
|
|
1132
|
+
{
|
|
1133
|
+
onClick: () => s(e, t, r),
|
|
1134
|
+
className: `arkynCalendarTableTd ${i} ${o} ${h() ? "today" : ""}`,
|
|
1135
|
+
children: /* @__PURE__ */ b("div", { className: "textGroup", children: [
|
|
1136
|
+
/* @__PURE__ */ a("span", {}),
|
|
1137
|
+
/* @__PURE__ */ a("p", { children: e })
|
|
1138
|
+
] })
|
|
1139
|
+
}
|
|
1140
|
+
);
|
|
1141
|
+
}
|
|
1142
|
+
function dt() {
|
|
1143
|
+
const n = He();
|
|
1144
|
+
return /* @__PURE__ */ a("tbody", { className: "arkynCalendarTableBody", children: n.listMatrix.map((e, t) => /* @__PURE__ */ a("tr", { children: e.map((r, i) => /* @__PURE__ */ a(ia, { ...r }, i)) }, t)) });
|
|
1145
|
+
}
|
|
1146
|
+
function ht({ children: n }) {
|
|
1147
|
+
return /* @__PURE__ */ a("table", { className: "arkynCalendarTableContainer", children: n });
|
|
1148
|
+
}
|
|
1149
|
+
function ft() {
|
|
1150
|
+
const { listWeek: n } = He();
|
|
1151
|
+
return /* @__PURE__ */ a("thead", { className: "arkynCalendarTableHeader", children: /* @__PURE__ */ a("tr", { children: n.map((e, t) => /* @__PURE__ */ a("th", { children: Ne(e) }, t)) }) });
|
|
1152
|
+
}
|
|
1153
|
+
function ni(n) {
|
|
1154
|
+
const e = n.variant || "complete";
|
|
1155
|
+
return n.type === "range" ? /* @__PURE__ */ a(
|
|
1156
|
+
ot,
|
|
1157
|
+
{
|
|
1158
|
+
value: n.value,
|
|
1159
|
+
viewValue: n.viewValue,
|
|
1160
|
+
defaultViewValue: n.defaultViewValue,
|
|
1161
|
+
defaultValue: n.defaultValue,
|
|
1162
|
+
calendarType: "range",
|
|
1163
|
+
onChange: n.onChange,
|
|
1164
|
+
onChangeView: n.onChangeView,
|
|
1165
|
+
children: /* @__PURE__ */ b(ct, { children: [
|
|
1166
|
+
/* @__PURE__ */ a(ut, { basicMode: e.includes("basic") }),
|
|
1167
|
+
/* @__PURE__ */ b(ht, { children: [
|
|
1168
|
+
/* @__PURE__ */ a(ft, {}),
|
|
1169
|
+
/* @__PURE__ */ a(dt, {})
|
|
1170
|
+
] })
|
|
1171
|
+
] })
|
|
1172
|
+
}
|
|
1173
|
+
) : /* @__PURE__ */ a(
|
|
1174
|
+
ot,
|
|
1175
|
+
{
|
|
1176
|
+
value: n.value,
|
|
1177
|
+
viewValue: n.viewValue,
|
|
1178
|
+
defaultViewValue: n.defaultViewValue,
|
|
1179
|
+
defaultValue: n.defaultValue,
|
|
1180
|
+
calendarType: "single",
|
|
1181
|
+
onChange: n.onChange,
|
|
1182
|
+
onChangeView: n.onChangeView,
|
|
1183
|
+
children: /* @__PURE__ */ b(ct, { children: [
|
|
1184
|
+
/* @__PURE__ */ a(ut, { basicMode: e.includes("basic") }),
|
|
1185
|
+
/* @__PURE__ */ b(ht, { children: [
|
|
1186
|
+
/* @__PURE__ */ a(ft, {}),
|
|
1187
|
+
/* @__PURE__ */ a(dt, {})
|
|
1188
|
+
] })
|
|
1189
|
+
] })
|
|
1190
|
+
}
|
|
1191
|
+
);
|
|
1192
|
+
}
|
|
1193
|
+
const Dt = ie({});
|
|
1194
|
+
function sa() {
|
|
1195
|
+
return se(Dt);
|
|
1196
|
+
}
|
|
1197
|
+
function oa(n) {
|
|
1198
|
+
return /* @__PURE__ */ a(Dt.Provider, { value: n, children: n.children });
|
|
1199
|
+
}
|
|
1200
|
+
function Ue(n) {
|
|
1201
|
+
const {
|
|
1202
|
+
children: e,
|
|
1203
|
+
disabled: t = !1,
|
|
1204
|
+
className: r = "",
|
|
1205
|
+
onClick: i,
|
|
1206
|
+
value: o,
|
|
1207
|
+
...s
|
|
1208
|
+
} = n, { disabled: h, currentTab: l, changeCurrentTab: c } = sa(), d = h || t, g = `arkynCardTabButton ${d ? "isDisabled" : ""} ${l === o && o ? "isActive" : ""} ${r}`;
|
|
1209
|
+
function y(m) {
|
|
1210
|
+
c(o), i && i(m);
|
|
1211
|
+
}
|
|
1212
|
+
return /* @__PURE__ */ a(
|
|
1213
|
+
"button",
|
|
1214
|
+
{
|
|
1215
|
+
onClick: y,
|
|
1216
|
+
className: g.trim(),
|
|
1217
|
+
...s,
|
|
1218
|
+
disabled: d,
|
|
1219
|
+
type: "button",
|
|
1220
|
+
children: e
|
|
1221
|
+
}
|
|
1222
|
+
);
|
|
1223
|
+
}
|
|
1224
|
+
function ca(n) {
|
|
1225
|
+
const {
|
|
1226
|
+
children: e,
|
|
1227
|
+
onChange: t,
|
|
1228
|
+
defaultValue: r,
|
|
1229
|
+
disabled: i = !1,
|
|
1230
|
+
className: o,
|
|
1231
|
+
...s
|
|
1232
|
+
} = n, [h, l] = N(r || ""), c = `arkynCardTabContainer ${o || ""}`;
|
|
1233
|
+
function d(u) {
|
|
1234
|
+
l(u), t && t(u);
|
|
1235
|
+
}
|
|
1236
|
+
return /* @__PURE__ */ a(
|
|
1237
|
+
oa,
|
|
1238
|
+
{
|
|
1239
|
+
disabled: i,
|
|
1240
|
+
currentTab: h,
|
|
1241
|
+
changeCurrentTab: d,
|
|
1242
|
+
children: /* @__PURE__ */ a("nav", { className: c.trim(), ...s, children: e })
|
|
1243
|
+
}
|
|
1244
|
+
);
|
|
1245
|
+
}
|
|
1246
|
+
function ai(n) {
|
|
1247
|
+
const {
|
|
1248
|
+
id: e,
|
|
1249
|
+
name: t,
|
|
1250
|
+
className: r = "",
|
|
1251
|
+
size: i = "md",
|
|
1252
|
+
errorMessage: o,
|
|
1253
|
+
defaultChecked: s = !1,
|
|
1254
|
+
label: h,
|
|
1255
|
+
checked: l = null,
|
|
1256
|
+
onCheck: c,
|
|
1257
|
+
orientation: d = "horizontalReverse",
|
|
1258
|
+
showAsterisk: u,
|
|
1259
|
+
unShowFieldTemplate: f,
|
|
1260
|
+
value: g,
|
|
1261
|
+
...y
|
|
1262
|
+
} = n, { fieldErrors: m } = te(), p = X(null), C = e || ce(), v = o || (m == null ? void 0 : m[t]), k = !!v, [w, M] = N(s || !1), T = typeof l == "boolean" ? l : w, R = `arkynCheckbox ${i} ${k ? "errorTrue" : "errorFalse"} ${T ? "checkedTrue" : "checkedFalse"}`;
|
|
1263
|
+
function A() {
|
|
1264
|
+
const x = w;
|
|
1265
|
+
M(!x), c && c(x ? "" : g || "checked");
|
|
1266
|
+
}
|
|
1267
|
+
return /* @__PURE__ */ a(
|
|
1268
|
+
he,
|
|
1269
|
+
{
|
|
1270
|
+
name: t,
|
|
1271
|
+
label: h,
|
|
1272
|
+
showAsterisk: u,
|
|
1273
|
+
className: r,
|
|
1274
|
+
errorMessage: v,
|
|
1275
|
+
unShowFieldTemplate: f,
|
|
1276
|
+
orientation: d,
|
|
1277
|
+
children: /* @__PURE__ */ b(
|
|
1278
|
+
"button",
|
|
1279
|
+
{
|
|
1280
|
+
id: C,
|
|
1281
|
+
type: "button",
|
|
1282
|
+
className: R,
|
|
1283
|
+
onClick: A,
|
|
1284
|
+
...y,
|
|
1285
|
+
children: [
|
|
1286
|
+
/* @__PURE__ */ a(
|
|
1287
|
+
"input",
|
|
1288
|
+
{
|
|
1289
|
+
type: "hidden",
|
|
1290
|
+
name: t,
|
|
1291
|
+
ref: p,
|
|
1292
|
+
value: T ? g || "checked" : ""
|
|
1293
|
+
}
|
|
1294
|
+
),
|
|
1295
|
+
/* @__PURE__ */ a(Be, {})
|
|
1296
|
+
]
|
|
1297
|
+
}
|
|
1298
|
+
)
|
|
1299
|
+
}
|
|
1300
|
+
);
|
|
1301
|
+
}
|
|
1302
|
+
function la() {
|
|
1303
|
+
return () => {
|
|
1304
|
+
};
|
|
1305
|
+
}
|
|
1306
|
+
function ua() {
|
|
1307
|
+
return Qt(
|
|
1308
|
+
la,
|
|
1309
|
+
() => !0,
|
|
1310
|
+
() => !1
|
|
1311
|
+
);
|
|
1312
|
+
}
|
|
1313
|
+
function Re(n) {
|
|
1314
|
+
const { children: e, fallback: t = null } = n;
|
|
1315
|
+
return ua() ? /* @__PURE__ */ a(W, { children: e() }) : /* @__PURE__ */ a(W, { children: t });
|
|
1316
|
+
}
|
|
1317
|
+
function St(n) {
|
|
1318
|
+
let e = n;
|
|
1319
|
+
return typeof n == "string" ? (e = +Ye(n), e % 1 !== 0 && (e = e.toFixed(2))) : e = Number.isInteger(n) ? Number(n) * 10 ** 2 : n.toFixed(2), +Ye(String(e)) / 10 ** 2;
|
|
1320
|
+
}
|
|
1321
|
+
function _e(n, e) {
|
|
1322
|
+
if (!n) return [0, it(0, e)];
|
|
1323
|
+
const t = St(n), r = it(t, e);
|
|
1324
|
+
return [t, r];
|
|
1325
|
+
}
|
|
1326
|
+
function ri(n) {
|
|
1327
|
+
const {
|
|
1328
|
+
name: e,
|
|
1329
|
+
disabled: t,
|
|
1330
|
+
title: r,
|
|
1331
|
+
style: i,
|
|
1332
|
+
variant: o = "solid",
|
|
1333
|
+
label: s,
|
|
1334
|
+
className: h = "",
|
|
1335
|
+
value: l,
|
|
1336
|
+
defaultValue: c,
|
|
1337
|
+
max: d = 1e9,
|
|
1338
|
+
locale: u,
|
|
1339
|
+
onChange: f,
|
|
1340
|
+
prefix: g,
|
|
1341
|
+
suffix: y,
|
|
1342
|
+
isLoading: m = !1,
|
|
1343
|
+
leftIcon: p,
|
|
1344
|
+
readOnly: C,
|
|
1345
|
+
onFocus: v,
|
|
1346
|
+
onBlur: k,
|
|
1347
|
+
errorMessage: w,
|
|
1348
|
+
unShowFieldTemplate: M,
|
|
1349
|
+
orientation: T,
|
|
1350
|
+
showAsterisk: D,
|
|
1351
|
+
rightIcon: O,
|
|
1352
|
+
size: R = "md",
|
|
1353
|
+
id: A,
|
|
1354
|
+
...x
|
|
1355
|
+
} = n, { fieldErrors: I } = te(), [S, z] = N(!1), [L, P] = N("0"), F = X(null), J = A || ce(), $ = w || (I == null ? void 0 : I[e]), G = !!$, U = t || m, B = { md: 20, lg: 20 }[R], H = O ? "right" : "left", j = H === "left" && m, q = H === "right" && m;
|
|
1356
|
+
function ne() {
|
|
1357
|
+
U || !(F != null && F.current) || (z(!0), F.current.focus());
|
|
1358
|
+
}
|
|
1359
|
+
function fe(re) {
|
|
1360
|
+
z(!0), v && v(re);
|
|
1361
|
+
}
|
|
1362
|
+
function me(re) {
|
|
1363
|
+
z(!1), k && k(re);
|
|
1364
|
+
}
|
|
1365
|
+
const ae = (re) => {
|
|
1366
|
+
const [ye, $e] = _e(
|
|
1367
|
+
re,
|
|
1368
|
+
u
|
|
1369
|
+
);
|
|
1370
|
+
return !d || ye <= d ? (P($e), [ye, $e]) : _e(re, u);
|
|
1371
|
+
}, le = (re) => {
|
|
1372
|
+
re.preventDefault();
|
|
1373
|
+
const [ye, $e] = ae(re.target.value);
|
|
1374
|
+
f && f(re, String(ye), String($e));
|
|
1375
|
+
};
|
|
1376
|
+
ee(() => {
|
|
1377
|
+
function re() {
|
|
1378
|
+
if (typeof l == "number") return l;
|
|
1379
|
+
if (typeof c == "number") return c;
|
|
1380
|
+
}
|
|
1381
|
+
const [, ye] = _e(re(), u);
|
|
1382
|
+
P(ye);
|
|
1383
|
+
}, [u, c, l]);
|
|
1384
|
+
const Gt = `arkynCurrencyInput ${g ? "hasPrefix" : ""} ${y ? "hasSuffix" : ""} ${o} ${R} ${U || C || m ? "opacity" : ""} ${G ? "errored" : ""} ${S ? "focused" : ""}`;
|
|
1385
|
+
return /* @__PURE__ */ a(
|
|
1386
|
+
he,
|
|
1387
|
+
{
|
|
1388
|
+
name: e,
|
|
1389
|
+
label: s,
|
|
1390
|
+
showAsterisk: D,
|
|
1391
|
+
className: h,
|
|
1392
|
+
errorMessage: $,
|
|
1393
|
+
unShowFieldTemplate: M,
|
|
1394
|
+
orientation: T,
|
|
1395
|
+
children: /* @__PURE__ */ b(
|
|
1396
|
+
"section",
|
|
1397
|
+
{
|
|
1398
|
+
title: r,
|
|
1399
|
+
style: i,
|
|
1400
|
+
className: Gt,
|
|
1401
|
+
onClick: ne,
|
|
1402
|
+
children: [
|
|
1403
|
+
/* @__PURE__ */ a(Y, { iconSize: B, icon: g, className: "prefix" }),
|
|
1404
|
+
/* @__PURE__ */ a(
|
|
1405
|
+
Y,
|
|
1406
|
+
{
|
|
1407
|
+
show: j,
|
|
1408
|
+
iconSize: B,
|
|
1409
|
+
className: "spinner",
|
|
1410
|
+
icon: ue
|
|
1411
|
+
}
|
|
1412
|
+
),
|
|
1413
|
+
/* @__PURE__ */ a(Y, { show: !m, icon: p, iconSize: B }),
|
|
1414
|
+
/* @__PURE__ */ a(
|
|
1415
|
+
"input",
|
|
1416
|
+
{
|
|
1417
|
+
disabled: U,
|
|
1418
|
+
readOnly: C,
|
|
1419
|
+
ref: F,
|
|
1420
|
+
onFocus: fe,
|
|
1421
|
+
onBlur: me,
|
|
1422
|
+
onChange: le,
|
|
1423
|
+
id: J,
|
|
1424
|
+
placeholder: U ? L : void 0,
|
|
1425
|
+
value: U ? void 0 : L,
|
|
1426
|
+
...x
|
|
1427
|
+
}
|
|
1428
|
+
),
|
|
1429
|
+
/* @__PURE__ */ a(
|
|
1430
|
+
"input",
|
|
1431
|
+
{
|
|
1432
|
+
type: "hidden",
|
|
1433
|
+
name: e,
|
|
1434
|
+
value: St(L),
|
|
1435
|
+
readOnly: !0
|
|
1436
|
+
}
|
|
1437
|
+
),
|
|
1438
|
+
/* @__PURE__ */ a(Y, { show: !m, icon: O, iconSize: B }),
|
|
1439
|
+
/* @__PURE__ */ a(
|
|
1440
|
+
Y,
|
|
1441
|
+
{
|
|
1442
|
+
show: q,
|
|
1443
|
+
iconSize: B,
|
|
1444
|
+
className: "spinner",
|
|
1445
|
+
icon: ue
|
|
1446
|
+
}
|
|
1447
|
+
),
|
|
1448
|
+
/* @__PURE__ */ a(Y, { iconSize: B, icon: y, className: "suffix" })
|
|
1449
|
+
]
|
|
1450
|
+
}
|
|
1451
|
+
)
|
|
1452
|
+
}
|
|
1453
|
+
);
|
|
1454
|
+
}
|
|
1455
|
+
const xt = ie({});
|
|
1456
|
+
function da(n) {
|
|
1457
|
+
return /* @__PURE__ */ a(xt.Provider, { value: { makeInvisible: n.makeInvisible }, children: n.children });
|
|
1458
|
+
}
|
|
1459
|
+
function ha() {
|
|
1460
|
+
return se(xt);
|
|
1461
|
+
}
|
|
1462
|
+
function ii(n) {
|
|
1463
|
+
const {
|
|
1464
|
+
isVisible: e,
|
|
1465
|
+
makeInvisible: t,
|
|
1466
|
+
orientation: r = "left",
|
|
1467
|
+
children: i,
|
|
1468
|
+
className: o,
|
|
1469
|
+
...s
|
|
1470
|
+
} = n;
|
|
1471
|
+
Ce(e);
|
|
1472
|
+
const h = r === "left" ? "-100%" : "100%", c = `arkynDrawerContainer ${r} ${e ? "visibleTrue" : "visibleFalse"} ${o}`;
|
|
1473
|
+
return /* @__PURE__ */ a(da, { makeInvisible: t, children: /* @__PURE__ */ a(wt, { children: e && /* @__PURE__ */ b("aside", { className: c.trim(), ...s, children: [
|
|
1474
|
+
/* @__PURE__ */ a(
|
|
1475
|
+
we.div,
|
|
1476
|
+
{
|
|
1477
|
+
className: "arkynDrawerContainerOverlay",
|
|
1478
|
+
transition: { duration: 0.15, ease: "easeOut" },
|
|
1479
|
+
initial: { opacity: 0 },
|
|
1480
|
+
animate: { opacity: 1 },
|
|
1481
|
+
exit: { opacity: 0 },
|
|
1482
|
+
onClick: t
|
|
1483
|
+
}
|
|
1484
|
+
),
|
|
1485
|
+
/* @__PURE__ */ a(
|
|
1486
|
+
we.div,
|
|
1487
|
+
{
|
|
1488
|
+
className: "arkynDrawerContainerContent",
|
|
1489
|
+
transition: { ease: "easeOut", duration: 0.15 },
|
|
1490
|
+
initial: { transform: `translateX(${h})` },
|
|
1491
|
+
animate: { transform: "translateX(0px)" },
|
|
1492
|
+
exit: { transform: `translateX(${h})` },
|
|
1493
|
+
children: i
|
|
1494
|
+
}
|
|
1495
|
+
)
|
|
1496
|
+
] }) }) });
|
|
1497
|
+
}
|
|
1498
|
+
function si(n) {
|
|
1499
|
+
const {
|
|
1500
|
+
showCloseButton: e = !0,
|
|
1501
|
+
className: t,
|
|
1502
|
+
children: r,
|
|
1503
|
+
...i
|
|
1504
|
+
} = n, { makeInvisible: o } = ha(), s = `arkynDrawerHeader ${t}`;
|
|
1505
|
+
return /* @__PURE__ */ b("header", { className: s.trim(), ...i, children: [
|
|
1506
|
+
r,
|
|
1507
|
+
e && /* @__PURE__ */ a(
|
|
1508
|
+
"button",
|
|
1509
|
+
{
|
|
1510
|
+
className: "arkynDrawerHeaderCloseButton",
|
|
1511
|
+
type: "button",
|
|
1512
|
+
onClick: o,
|
|
1513
|
+
"aria-label": "Close drawer",
|
|
1514
|
+
children: /* @__PURE__ */ a(Ze, { size: 24 })
|
|
1515
|
+
}
|
|
1516
|
+
)
|
|
1517
|
+
] });
|
|
1518
|
+
}
|
|
1519
|
+
let fa = class {
|
|
1520
|
+
constructor(e, t) {
|
|
1521
|
+
Z(this, "pixelId");
|
|
1522
|
+
Z(this, "autoConfig");
|
|
1523
|
+
Z(this, "initialized");
|
|
1524
|
+
this.pixelId = e, this.autoConfig = (t == null ? void 0 : t.autoConfig) || !0, this.initialized = !1;
|
|
1525
|
+
}
|
|
1526
|
+
loadFacebookPixel() {
|
|
1527
|
+
if (window.fbq) return;
|
|
1528
|
+
const e = function(...i) {
|
|
1529
|
+
e.callMethod ? e.callMethod.apply(e, i) : e.queue.push(i);
|
|
1530
|
+
};
|
|
1531
|
+
window._fbq || (window._fbq = e), e.push = e, e.loaded = !0, e.version = "2.0", e.queue = [];
|
|
1532
|
+
const t = document.createElement("script");
|
|
1533
|
+
t.async = !0, t.src = "https://connect.facebook.net/en_US/fbevents.js";
|
|
1534
|
+
const r = document.getElementsByTagName("script")[0];
|
|
1535
|
+
if (!r.parentNode)
|
|
1536
|
+
throw new Error("No script tag found in the document");
|
|
1537
|
+
r.parentNode.insertBefore(t, r), window.fbq = e;
|
|
1538
|
+
}
|
|
1539
|
+
init(e = {}) {
|
|
1540
|
+
if (this.initialized = typeof window < "u" && !!window.fbq, this.loadFacebookPixel(), !window.fbq)
|
|
1541
|
+
throw new Error("window.fbq is not defined");
|
|
1542
|
+
this.autoConfig === !1 ? window.fbq("set", "autoConfig", !1, this.pixelId) : window.fbq("init", this.pixelId, e), this.initialized = !0;
|
|
1543
|
+
}
|
|
1544
|
+
pageView() {
|
|
1545
|
+
this.initialized && window.fbq && window.fbq("track", "PageView");
|
|
1546
|
+
}
|
|
1547
|
+
track(e, t) {
|
|
1548
|
+
this.initialized && window.fbq && window.fbq("track", e, t);
|
|
1549
|
+
}
|
|
1550
|
+
trackSingle(e, t, r) {
|
|
1551
|
+
this.initialized && window.fbq && window.fbq("trackSingle", e, t, r);
|
|
1552
|
+
}
|
|
1553
|
+
trackCustom(e, t) {
|
|
1554
|
+
this.initialized && window.fbq && window.fbq("trackCustom", e, t);
|
|
1555
|
+
}
|
|
1556
|
+
trackSingleCustom(e, t, r) {
|
|
1557
|
+
this.initialized && window.fbq && window.fbq("trackSingle", e, t, r);
|
|
1558
|
+
}
|
|
1559
|
+
grantConsent() {
|
|
1560
|
+
this.initialized && window.fbq && window.fbq("consent", "grant");
|
|
1561
|
+
}
|
|
1562
|
+
revokeConsent() {
|
|
1563
|
+
this.initialized && window.fbq && window.fbq("consent", "revoke");
|
|
1564
|
+
}
|
|
1565
|
+
};
|
|
1566
|
+
function ma(n) {
|
|
1567
|
+
const {
|
|
1568
|
+
pixelId: e,
|
|
1569
|
+
options: t,
|
|
1570
|
+
pageView: r,
|
|
1571
|
+
track: i,
|
|
1572
|
+
trackCustom: o,
|
|
1573
|
+
trackSingle: s,
|
|
1574
|
+
trackSingleCustom: h,
|
|
1575
|
+
grantConsent: l,
|
|
1576
|
+
revokeConsent: c
|
|
1577
|
+
} = n, d = new fa(e, t);
|
|
1578
|
+
return d.init(), r && d.pageView(), l && d.grantConsent(), c && d.revokeConsent(), i && d.track(...i), o && d.trackCustom(...o), s && d.trackSingle(e, ...s), h && d.trackSingleCustom(e, ...h), /* @__PURE__ */ a(W, {});
|
|
1579
|
+
}
|
|
1580
|
+
function ci(n) {
|
|
1581
|
+
return process.env.NODE_ENV !== "production" && !n.showInDevMode ? /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(Re, { children: () => /* @__PURE__ */ a(ma, { ...n }) });
|
|
1582
|
+
}
|
|
1583
|
+
function ga(n) {
|
|
1584
|
+
const {
|
|
1585
|
+
disabled: e,
|
|
1586
|
+
file: t,
|
|
1587
|
+
isLoading: r,
|
|
1588
|
+
acceptFile: i,
|
|
1589
|
+
changeFileButtonText: o,
|
|
1590
|
+
handleSelectFile: s,
|
|
1591
|
+
reSendFile: h
|
|
1592
|
+
} = n;
|
|
1593
|
+
function l() {
|
|
1594
|
+
if (e) return;
|
|
1595
|
+
const d = document.createElement("input");
|
|
1596
|
+
d.type = "file", d.accept = i, d.onchange = (u) => {
|
|
1597
|
+
var g;
|
|
1598
|
+
const f = (g = u.target.files) == null ? void 0 : g[0];
|
|
1599
|
+
f && s(f);
|
|
1600
|
+
}, d.click();
|
|
1601
|
+
}
|
|
1602
|
+
function c() {
|
|
1603
|
+
return t.type.startsWith("image/") ? /* @__PURE__ */ a(cn, {}) : t.type.startsWith("audio/") ? /* @__PURE__ */ a(ln, {}) : t.type.startsWith("application/zip") ? /* @__PURE__ */ a(un, {}) : /* @__PURE__ */ a(dn, {});
|
|
1604
|
+
}
|
|
1605
|
+
return /* @__PURE__ */ b("div", { className: "arkynFileUploadHasFileContent", children: [
|
|
1606
|
+
/* @__PURE__ */ b("section", { className: "arkynFileUploadFileContainer", children: [
|
|
1607
|
+
/* @__PURE__ */ a(c, {}),
|
|
1608
|
+
/* @__PURE__ */ a("p", { children: t.name })
|
|
1609
|
+
] }),
|
|
1610
|
+
/* @__PURE__ */ a(tt, {}),
|
|
1611
|
+
/* @__PURE__ */ b("div", { className: "arkynFileUploadButtonsContainer", children: [
|
|
1612
|
+
!!h && /* @__PURE__ */ a(nt, { orientation: "bottom", text: "Reenviar arquivo", children: /* @__PURE__ */ a(
|
|
1613
|
+
ve,
|
|
1614
|
+
{
|
|
1615
|
+
type: "button",
|
|
1616
|
+
"aria-label": "resend file",
|
|
1617
|
+
variant: "outline",
|
|
1618
|
+
scheme: "danger",
|
|
1619
|
+
size: "sm",
|
|
1620
|
+
isLoading: r,
|
|
1621
|
+
onClick: h,
|
|
1622
|
+
icon: Je,
|
|
1623
|
+
disabled: e
|
|
1624
|
+
}
|
|
1625
|
+
) }),
|
|
1626
|
+
/* @__PURE__ */ a(
|
|
1627
|
+
de,
|
|
1628
|
+
{
|
|
1629
|
+
isLoading: r,
|
|
1630
|
+
onClick: l,
|
|
1631
|
+
variant: "outline",
|
|
1632
|
+
size: "sm",
|
|
1633
|
+
type: "button",
|
|
1634
|
+
disabled: e,
|
|
1635
|
+
children: o
|
|
1636
|
+
}
|
|
1637
|
+
)
|
|
1638
|
+
] })
|
|
1639
|
+
] });
|
|
1640
|
+
}
|
|
1641
|
+
function pa(n) {
|
|
1642
|
+
const {
|
|
1643
|
+
dropFileText: e,
|
|
1644
|
+
isLoading: t,
|
|
1645
|
+
acceptFile: r,
|
|
1646
|
+
handleSelectFile: i,
|
|
1647
|
+
selectFileButtonText: o,
|
|
1648
|
+
disabled: s
|
|
1649
|
+
} = n;
|
|
1650
|
+
function h(c) {
|
|
1651
|
+
if (s) return;
|
|
1652
|
+
c.preventDefault();
|
|
1653
|
+
const d = c.dataTransfer.files[0];
|
|
1654
|
+
d && i(d);
|
|
1655
|
+
}
|
|
1656
|
+
function l() {
|
|
1657
|
+
if (s) return;
|
|
1658
|
+
const c = document.createElement("input");
|
|
1659
|
+
c.type = "file", c.accept = r, c.onchange = (d) => {
|
|
1660
|
+
var f;
|
|
1661
|
+
const u = (f = d.target.files) == null ? void 0 : f[0];
|
|
1662
|
+
u && i(u);
|
|
1663
|
+
}, c.click();
|
|
1664
|
+
}
|
|
1665
|
+
return /* @__PURE__ */ b("div", { onDrop: h, className: "arkynFileUploadNoFileContent", children: [
|
|
1666
|
+
/* @__PURE__ */ a(
|
|
1667
|
+
de,
|
|
1668
|
+
{
|
|
1669
|
+
isLoading: t,
|
|
1670
|
+
onClick: l,
|
|
1671
|
+
variant: "ghost",
|
|
1672
|
+
size: "sm",
|
|
1673
|
+
type: "button",
|
|
1674
|
+
disabled: s,
|
|
1675
|
+
children: o
|
|
1676
|
+
}
|
|
1677
|
+
),
|
|
1678
|
+
/* @__PURE__ */ a("p", { children: e })
|
|
1679
|
+
] });
|
|
1680
|
+
}
|
|
1681
|
+
function li(n) {
|
|
1682
|
+
const {
|
|
1683
|
+
name: e,
|
|
1684
|
+
label: t,
|
|
1685
|
+
showAsterisk: r = !1,
|
|
1686
|
+
action: i,
|
|
1687
|
+
fileName: o = "file",
|
|
1688
|
+
method: s = "POST",
|
|
1689
|
+
acceptFile: h = "*",
|
|
1690
|
+
fileResponseName: l = "url",
|
|
1691
|
+
changeFileButtonText: c = "Alterar arquivo",
|
|
1692
|
+
selectFileButtonText: d = "Selecionar arquivo",
|
|
1693
|
+
dropFileText: u = "Ou arraste e solte o arquivo aqui",
|
|
1694
|
+
onChange: f,
|
|
1695
|
+
disabled: g = !1
|
|
1696
|
+
} = n, { fieldErrors: y } = te(), m = y == null ? void 0 : y[e], [p, C] = N(""), [v, k] = N(""), [w, M] = N(null), [T, D] = N(!1);
|
|
1697
|
+
async function O(z) {
|
|
1698
|
+
if (g) return;
|
|
1699
|
+
D(!0), M(z), k("");
|
|
1700
|
+
const L = new FormData();
|
|
1701
|
+
L.append(o, z), await fetch(i, { method: s, body: L }).then(async (P) => await P.json()).then((P) => {
|
|
1702
|
+
P != null && P.error ? k(P.error) : C(P == null ? void 0 : P[l]), f && f(P == null ? void 0 : P[l]);
|
|
1703
|
+
}).catch((P) => {
|
|
1704
|
+
console.error(P), k("Erro ao enviar o arquivo");
|
|
1705
|
+
}).finally(() => D(!1));
|
|
1706
|
+
}
|
|
1707
|
+
function R(z) {
|
|
1708
|
+
g || O(z);
|
|
1709
|
+
}
|
|
1710
|
+
const A = m || v;
|
|
1711
|
+
return /* @__PURE__ */ b(De, { children: [
|
|
1712
|
+
t && /* @__PURE__ */ a(Te, { showAsterisk: r, children: t }),
|
|
1713
|
+
/* @__PURE__ */ b("div", { className: `arkynFileUpload ${A ? "hasError" : "noHasError"} ${w ? "hasFile" : "noHasFile"}`, children: [
|
|
1714
|
+
/* @__PURE__ */ a("input", { type: "hidden", name: e, value: p || "" }),
|
|
1715
|
+
!w && /* @__PURE__ */ a(
|
|
1716
|
+
pa,
|
|
1717
|
+
{
|
|
1718
|
+
disabled: g,
|
|
1719
|
+
isLoading: T,
|
|
1720
|
+
acceptFile: h,
|
|
1721
|
+
dropFileText: u,
|
|
1722
|
+
handleSelectFile: R,
|
|
1723
|
+
selectFileButtonText: d
|
|
1724
|
+
}
|
|
1725
|
+
),
|
|
1726
|
+
w && /* @__PURE__ */ a(
|
|
1727
|
+
ga,
|
|
1728
|
+
{
|
|
1729
|
+
disabled: g,
|
|
1730
|
+
isLoading: T,
|
|
1731
|
+
acceptFile: h,
|
|
1732
|
+
file: w,
|
|
1733
|
+
handleSelectFile: R,
|
|
1734
|
+
changeFileButtonText: c,
|
|
1735
|
+
reSendFile: A && w ? () => O(w) : void 0
|
|
1736
|
+
}
|
|
1737
|
+
)
|
|
1738
|
+
] }),
|
|
1739
|
+
A && /* @__PURE__ */ a(Me, { children: A })
|
|
1740
|
+
] });
|
|
1741
|
+
}
|
|
1742
|
+
class at {
|
|
1743
|
+
capitalize(e) {
|
|
1744
|
+
return Ne(e);
|
|
1745
|
+
}
|
|
1746
|
+
listHours(e) {
|
|
1747
|
+
const [t, r] = e, i = [];
|
|
1748
|
+
for (let o = t * 60; o <= r * 60; o += 30)
|
|
1749
|
+
i.push(o);
|
|
1750
|
+
return i;
|
|
1751
|
+
}
|
|
1752
|
+
formatHourLabel(e) {
|
|
1753
|
+
const t = Math.floor(e / 60), r = e % 60;
|
|
1754
|
+
return `${String(t).padStart(2, "0")}:${String(r).padStart(2, "0")}`;
|
|
1755
|
+
}
|
|
1756
|
+
getStartOfWeek(e) {
|
|
1757
|
+
const t = new Date(e);
|
|
1758
|
+
return t.setHours(0, 0, 0, 0), t.setDate(t.getDate() - t.getDay()), t;
|
|
1759
|
+
}
|
|
1760
|
+
listWeek(e, t) {
|
|
1761
|
+
const r = [], i = this.getStartOfWeek(e);
|
|
1762
|
+
for (let o = 0; o < 7; o++) {
|
|
1763
|
+
const s = new Date(i);
|
|
1764
|
+
s.setDate(i.getDate() + o);
|
|
1765
|
+
const h = s.toLocaleDateString(t, {
|
|
1766
|
+
weekday: "short"
|
|
1767
|
+
});
|
|
1768
|
+
r.push(h);
|
|
1769
|
+
}
|
|
1770
|
+
return r;
|
|
1771
|
+
}
|
|
1772
|
+
listWeeklyMatrix(e, t) {
|
|
1773
|
+
const r = this.getStartOfWeek(e), i = e.getMonth();
|
|
1774
|
+
return t.map((o) => Array.from({ length: 7 }, (s, h) => {
|
|
1775
|
+
const l = new Date(r);
|
|
1776
|
+
l.setDate(r.getDate() + h);
|
|
1777
|
+
let c = "current";
|
|
1778
|
+
return (l.getMonth() < i || l.getFullYear() < e.getFullYear()) && (c = "previous"), (l.getMonth() > i || l.getFullYear() > e.getFullYear()) && (c = "next"), {
|
|
1779
|
+
day: l.getDate(),
|
|
1780
|
+
month: l.getMonth(),
|
|
1781
|
+
year: l.getFullYear(),
|
|
1782
|
+
dayOwner: c,
|
|
1783
|
+
timeInMinutes: o
|
|
1784
|
+
};
|
|
1785
|
+
}));
|
|
1786
|
+
}
|
|
1787
|
+
listMonthlyMatrix(e) {
|
|
1788
|
+
const t = e.getFullYear(), r = e.getMonth(), o = new Date(t, r, 1).getDay(), s = new Date(t, r + 1, 0).getDate(), h = new Date(t, r, 0).getDate(), l = Math.ceil((o + s) / 7) * 7, c = [];
|
|
1789
|
+
let d = 1, u = 1;
|
|
1790
|
+
for (let f = 0; f < l; f++) {
|
|
1791
|
+
const g = Math.floor(f / 7);
|
|
1792
|
+
if (c[g] || (c[g] = []), f < o) {
|
|
1793
|
+
const y = h - (o - f - 1), m = r === 0 ? 11 : r - 1, p = r === 0 ? t - 1 : t;
|
|
1794
|
+
c[g].push({
|
|
1795
|
+
day: y,
|
|
1796
|
+
month: m,
|
|
1797
|
+
year: p,
|
|
1798
|
+
dayOwner: "previous"
|
|
1799
|
+
});
|
|
1800
|
+
} else if (d <= s)
|
|
1801
|
+
c[g].push({
|
|
1802
|
+
day: d,
|
|
1803
|
+
month: r,
|
|
1804
|
+
year: t,
|
|
1805
|
+
dayOwner: "current"
|
|
1806
|
+
}), d++;
|
|
1807
|
+
else {
|
|
1808
|
+
const y = r === 11 ? 0 : r + 1, m = r === 11 ? t + 1 : t;
|
|
1809
|
+
c[g].push({
|
|
1810
|
+
day: u,
|
|
1811
|
+
month: y,
|
|
1812
|
+
year: m,
|
|
1813
|
+
dayOwner: "next"
|
|
1814
|
+
}), u++;
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
return c;
|
|
1818
|
+
}
|
|
1819
|
+
nextMonth(e, t) {
|
|
1820
|
+
const r = new Date(e);
|
|
1821
|
+
r.setMonth(r.getMonth() + 1), t(r);
|
|
1822
|
+
}
|
|
1823
|
+
nextWeek(e, t) {
|
|
1824
|
+
const r = new Date(e);
|
|
1825
|
+
r.setDate(r.getDate() + 7), t(r);
|
|
1826
|
+
}
|
|
1827
|
+
nextDay(e, t) {
|
|
1828
|
+
const r = new Date(e);
|
|
1829
|
+
r.setDate(r.getDate() + 1), t(r);
|
|
1830
|
+
}
|
|
1831
|
+
previousMonth(e, t) {
|
|
1832
|
+
const r = new Date(e);
|
|
1833
|
+
r.setMonth(r.getMonth() - 1), t(r);
|
|
1834
|
+
}
|
|
1835
|
+
previousWeek(e, t) {
|
|
1836
|
+
const r = new Date(e);
|
|
1837
|
+
r.setDate(r.getDate() - 7), t(r);
|
|
1838
|
+
}
|
|
1839
|
+
previousDay(e, t) {
|
|
1840
|
+
const r = new Date(e);
|
|
1841
|
+
r.setDate(r.getDate() - 1), t(r);
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
const $t = ie({});
|
|
1845
|
+
function oe() {
|
|
1846
|
+
return se($t);
|
|
1847
|
+
}
|
|
1848
|
+
function ya(n) {
|
|
1849
|
+
const {
|
|
1850
|
+
blockedTimestamps: e,
|
|
1851
|
+
children: t,
|
|
1852
|
+
events: r,
|
|
1853
|
+
defaultViewValue: i = /* @__PURE__ */ new Date(),
|
|
1854
|
+
language: o = "pt-BR",
|
|
1855
|
+
onChangeView: s,
|
|
1856
|
+
onClickDate: h,
|
|
1857
|
+
viewValue: l
|
|
1858
|
+
} = n, c = new at(), d = c.listHours([8, 18]), [u, f] = N(i), g = l || u;
|
|
1859
|
+
function y(m) {
|
|
1860
|
+
s && s(m), f(m);
|
|
1861
|
+
}
|
|
1862
|
+
return /* @__PURE__ */ a(
|
|
1863
|
+
$t.Provider,
|
|
1864
|
+
{
|
|
1865
|
+
value: {
|
|
1866
|
+
events: r,
|
|
1867
|
+
blockedTimestamps: e,
|
|
1868
|
+
viewDate: g,
|
|
1869
|
+
listHours: d,
|
|
1870
|
+
listWeek: c.listWeek(g, o),
|
|
1871
|
+
listMonthlyMatrix: c.listMonthlyMatrix(g),
|
|
1872
|
+
listWeeklyMatrix: c.listWeeklyMatrix(g, d),
|
|
1873
|
+
nextMonth: () => c.nextMonth(g, y),
|
|
1874
|
+
nextWeek: () => c.nextWeek(g, y),
|
|
1875
|
+
nextDay: () => c.nextDay(g, y),
|
|
1876
|
+
previousMonth: () => c.previousMonth(g, y),
|
|
1877
|
+
previousWeek: () => c.previousWeek(g, y),
|
|
1878
|
+
previousDay: () => c.previousDay(g, y),
|
|
1879
|
+
onClickDate: h
|
|
1880
|
+
},
|
|
1881
|
+
children: t
|
|
1882
|
+
}
|
|
1883
|
+
);
|
|
1884
|
+
}
|
|
1885
|
+
function Ca({ children: n }) {
|
|
1886
|
+
return /* @__PURE__ */ a("div", { className: "arkynDayCalendarContainer", children: n });
|
|
1887
|
+
}
|
|
1888
|
+
const be = 30, ba = 205;
|
|
1889
|
+
function ka(n) {
|
|
1890
|
+
const { events: e, viewDate: t } = oe(), r = t.getDate(), i = t.getMonth(), o = t.getFullYear(), s = e.map((m, p) => ({ event: m, sourceIndex: p })).filter(({ event: m }) => m.initialDate.getDate() === r && m.initialDate.getMonth() === i && m.initialDate.getFullYear() === o).sort((m, p) => {
|
|
1891
|
+
var M, T;
|
|
1892
|
+
const C = m.event.initialDate.getTime(), v = p.event.initialDate.getTime();
|
|
1893
|
+
if (C !== v) return C - v;
|
|
1894
|
+
const k = ((M = m.event.endDate) == null ? void 0 : M.getTime()) ?? C + be * 6e4, w = ((T = p.event.endDate) == null ? void 0 : T.getTime()) ?? v + be * 6e4;
|
|
1895
|
+
return k !== w ? k - w : m.sourceIndex - p.sourceIndex;
|
|
1896
|
+
}), h = new Map(
|
|
1897
|
+
s.map((m, p) => [m.sourceIndex, p])
|
|
1898
|
+
), l = s.filter(({ event: m }) => {
|
|
1899
|
+
const p = Math.floor(n.timeInMinutes / 60), C = n.timeInMinutes % 60;
|
|
1900
|
+
function v() {
|
|
1901
|
+
const k = m.initialDate.getHours(), w = m.initialDate.getMinutes();
|
|
1902
|
+
if (k !== p) return !1;
|
|
1903
|
+
if (C === 0) return w < 30 && w >= 0;
|
|
1904
|
+
if (C === 30) return w >= 30 && w < 60;
|
|
1905
|
+
}
|
|
1906
|
+
return v() && m.initialDate.getDate() === r && m.initialDate.getMonth() === i && m.initialDate.getFullYear() === o;
|
|
1907
|
+
});
|
|
1908
|
+
if (l.length === 0) return /* @__PURE__ */ a(W, {});
|
|
1909
|
+
function c(m, p) {
|
|
1910
|
+
return `${r}-${i}-${o}-${p}-${m}`;
|
|
1911
|
+
}
|
|
1912
|
+
function d(m) {
|
|
1913
|
+
const p = m.getHours(), C = m.getMinutes();
|
|
1914
|
+
return C === 0 ? `${p}h` : `${p}h${C}`;
|
|
1915
|
+
}
|
|
1916
|
+
function u(m) {
|
|
1917
|
+
const p = m.initialDate.getHours() * 60 + m.initialDate.getMinutes(), C = m.endDate ? m.endDate.getHours() * 60 + m.endDate.getMinutes() : p + be;
|
|
1918
|
+
return {
|
|
1919
|
+
startMinutes: p,
|
|
1920
|
+
endMinutes: Math.max(C, p + 1)
|
|
1921
|
+
};
|
|
1922
|
+
}
|
|
1923
|
+
function f(m, p) {
|
|
1924
|
+
const C = u(m), v = h.get(p);
|
|
1925
|
+
return v == null ? 0 : s.reduce((k, w, M) => {
|
|
1926
|
+
if (M >= v) return k;
|
|
1927
|
+
const T = u(w.event);
|
|
1928
|
+
return T.startMinutes < C.endMinutes && T.endMinutes > C.startMinutes ? k + 1 : k;
|
|
1929
|
+
}, 0);
|
|
1930
|
+
}
|
|
1931
|
+
function g(m, p) {
|
|
1932
|
+
const { startMinutes: C, endMinutes: v } = u(m), k = C - n.timeInMinutes, w = Math.max(v - C, 1), M = k / be * 100, T = w / be * 100, D = f(m, p) * ba;
|
|
1933
|
+
return {
|
|
1934
|
+
top: `${M}%`,
|
|
1935
|
+
height: `${T}%`,
|
|
1936
|
+
left: `${D}px`
|
|
1937
|
+
};
|
|
1938
|
+
}
|
|
1939
|
+
function y(m, p) {
|
|
1940
|
+
var C;
|
|
1941
|
+
m.stopPropagation(), (C = p.onClick) == null || C.call(p, p.data);
|
|
1942
|
+
}
|
|
1943
|
+
return l.map(({ event: m, sourceIndex: p }, C) => /* @__PURE__ */ b(
|
|
1944
|
+
"div",
|
|
1945
|
+
{
|
|
1946
|
+
className: `arkynDayCalendarEvent ${(m == null ? void 0 : m.scheme) || "primary"}`,
|
|
1947
|
+
style: g(m, p),
|
|
1948
|
+
onClick: (v) => y(v, m),
|
|
1949
|
+
children: [
|
|
1950
|
+
/* @__PURE__ */ b("strong", { children: [
|
|
1951
|
+
d(m.initialDate),
|
|
1952
|
+
" ",
|
|
1953
|
+
(m == null ? void 0 : m.endDate) && `- ${d(m.endDate)}`
|
|
1954
|
+
] }),
|
|
1955
|
+
/* @__PURE__ */ a("p", { children: m.title })
|
|
1956
|
+
]
|
|
1957
|
+
},
|
|
1958
|
+
c(C, p)
|
|
1959
|
+
));
|
|
1960
|
+
}
|
|
1961
|
+
function wa({ hour: n, timeInMinutes: e }) {
|
|
1962
|
+
const t = new at(), { blockedTimestamps: r, viewDate: i, onClickDate: o } = oe();
|
|
1963
|
+
function s() {
|
|
1964
|
+
return r.some(
|
|
1965
|
+
(l) => i >= l.initialDate && i <= l.endDate
|
|
1966
|
+
);
|
|
1967
|
+
}
|
|
1968
|
+
function h(l) {
|
|
1969
|
+
if (l.stopPropagation(), !s() && o) {
|
|
1970
|
+
const c = new Date(i);
|
|
1971
|
+
c.setHours(0, e, 0, 0), o(c);
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
return /* @__PURE__ */ b(
|
|
1975
|
+
"div",
|
|
1976
|
+
{
|
|
1977
|
+
className: `arkynDayCalendarRow ${s() ? "blocked" : ""}`,
|
|
1978
|
+
"data-time": e,
|
|
1979
|
+
onClick: h,
|
|
1980
|
+
children: [
|
|
1981
|
+
/* @__PURE__ */ a("p", { children: t.formatHourLabel(n) }),
|
|
1982
|
+
/* @__PURE__ */ a("div", { className: "arkynDayCalendarRowContent", children: /* @__PURE__ */ a(ka, { timeInMinutes: e }) })
|
|
1983
|
+
]
|
|
1984
|
+
}
|
|
1985
|
+
);
|
|
1986
|
+
}
|
|
1987
|
+
function va() {
|
|
1988
|
+
const { listHours: n } = oe();
|
|
1989
|
+
return /* @__PURE__ */ a(Ca, { children: n.map((e) => /* @__PURE__ */ a(wa, { hour: e, timeInMinutes: e })) });
|
|
1990
|
+
}
|
|
1991
|
+
function Na({ children: n }) {
|
|
1992
|
+
return /* @__PURE__ */ a("div", { className: "arkynFullCalendarContainer", children: n });
|
|
1993
|
+
}
|
|
1994
|
+
function Ma(n) {
|
|
1995
|
+
const { setViewType: e, viewType: t } = n, r = oe();
|
|
1996
|
+
function i() {
|
|
1997
|
+
switch (t) {
|
|
1998
|
+
case "day":
|
|
1999
|
+
return r.previousDay();
|
|
2000
|
+
case "week":
|
|
2001
|
+
return r.previousWeek();
|
|
2002
|
+
case "month":
|
|
2003
|
+
return r.previousMonth();
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
function o() {
|
|
2007
|
+
switch (t) {
|
|
2008
|
+
case "day":
|
|
2009
|
+
return r.nextDay();
|
|
2010
|
+
case "week":
|
|
2011
|
+
return r.nextWeek();
|
|
2012
|
+
case "month":
|
|
2013
|
+
return r.nextMonth();
|
|
2014
|
+
}
|
|
2015
|
+
}
|
|
2016
|
+
return /* @__PURE__ */ b("div", { className: "arkynFullCalendarHeader", children: [
|
|
2017
|
+
/* @__PURE__ */ b(
|
|
2018
|
+
ca,
|
|
2019
|
+
{
|
|
2020
|
+
defaultValue: t,
|
|
2021
|
+
onChange: (s) => e(s),
|
|
2022
|
+
children: [
|
|
2023
|
+
/* @__PURE__ */ a(Ue, { value: "day", children: "Dia" }),
|
|
2024
|
+
/* @__PURE__ */ a(Ue, { value: "week", children: "Semana" }),
|
|
2025
|
+
/* @__PURE__ */ a(Ue, { value: "month", children: "Mês" })
|
|
2026
|
+
]
|
|
2027
|
+
}
|
|
2028
|
+
),
|
|
2029
|
+
/* @__PURE__ */ b("div", { className: "arkynFullCalendarHeaderActions", children: [
|
|
2030
|
+
/* @__PURE__ */ a(
|
|
2031
|
+
ve,
|
|
2032
|
+
{
|
|
2033
|
+
variant: "outline",
|
|
2034
|
+
icon: Ve,
|
|
2035
|
+
"aria-label": "Handle previous",
|
|
2036
|
+
onClick: () => i()
|
|
2037
|
+
}
|
|
2038
|
+
),
|
|
2039
|
+
/* @__PURE__ */ a("p", { children: r.viewDate.toLocaleDateString("pt-BR", {
|
|
2040
|
+
day: "2-digit",
|
|
2041
|
+
month: "long",
|
|
2042
|
+
year: "numeric"
|
|
2043
|
+
}) }),
|
|
2044
|
+
/* @__PURE__ */ a(
|
|
2045
|
+
ve,
|
|
2046
|
+
{
|
|
2047
|
+
variant: "outline",
|
|
2048
|
+
icon: Le,
|
|
2049
|
+
"aria-label": "Handle next",
|
|
2050
|
+
onClick: () => o()
|
|
2051
|
+
}
|
|
2052
|
+
)
|
|
2053
|
+
] })
|
|
2054
|
+
] });
|
|
2055
|
+
}
|
|
2056
|
+
function Ta(n) {
|
|
2057
|
+
const { events: e } = oe(), t = e.filter((s) => s.initialDate.getDate() === n.day && s.initialDate.getMonth() === n.month && s.initialDate.getFullYear() === n.year);
|
|
2058
|
+
if (t.length === 0) return /* @__PURE__ */ a(W, {});
|
|
2059
|
+
function r(s) {
|
|
2060
|
+
return `${n.day}-${n.month}-${n.year}-${s}`;
|
|
2061
|
+
}
|
|
2062
|
+
function i(s) {
|
|
2063
|
+
const h = s.getHours(), l = s.getMinutes();
|
|
2064
|
+
return l === 0 ? `${h}h` : `${h}h${l}`;
|
|
2065
|
+
}
|
|
2066
|
+
function o(s, h) {
|
|
2067
|
+
var l;
|
|
2068
|
+
s.stopPropagation(), (l = h.onClick) == null || l.call(h, h.data);
|
|
2069
|
+
}
|
|
2070
|
+
return t.map((s, h) => /* @__PURE__ */ b(
|
|
2071
|
+
"div",
|
|
2072
|
+
{
|
|
2073
|
+
className: `arkynMonthlyCalendarEvent ${(s == null ? void 0 : s.scheme) || "primary"}`,
|
|
2074
|
+
onClick: (l) => o(l, s),
|
|
2075
|
+
children: [
|
|
2076
|
+
/* @__PURE__ */ b("strong", { children: [
|
|
2077
|
+
i(s.initialDate),
|
|
2078
|
+
" ",
|
|
2079
|
+
(s == null ? void 0 : s.endDate) && `- ${i(s.endDate)}`
|
|
2080
|
+
] }),
|
|
2081
|
+
/* @__PURE__ */ a("p", { children: s.title })
|
|
2082
|
+
]
|
|
2083
|
+
},
|
|
2084
|
+
r(h)
|
|
2085
|
+
));
|
|
2086
|
+
}
|
|
2087
|
+
function Da(n) {
|
|
2088
|
+
const { day: e, month: t, year: r, dayOwner: i } = n, { blockedTimestamps: o, onClickDate: s } = oe();
|
|
2089
|
+
function h() {
|
|
2090
|
+
const d = /* @__PURE__ */ new Date();
|
|
2091
|
+
return e === d.getDate() && t === d.getMonth() && r === d.getFullYear();
|
|
2092
|
+
}
|
|
2093
|
+
function l() {
|
|
2094
|
+
const d = new Date(r, t, e);
|
|
2095
|
+
return o.some(
|
|
2096
|
+
(u) => d >= u.initialDate && d <= u.endDate
|
|
2097
|
+
);
|
|
2098
|
+
}
|
|
2099
|
+
function c(d) {
|
|
2100
|
+
if (d.stopPropagation(), !l() && s) {
|
|
2101
|
+
const u = new Date(r, t, e);
|
|
2102
|
+
s(u);
|
|
2103
|
+
}
|
|
2104
|
+
}
|
|
2105
|
+
return /* @__PURE__ */ b(
|
|
2106
|
+
"td",
|
|
2107
|
+
{
|
|
2108
|
+
className: `arkynMonthlyCalendarTableTd ${i} ${l() ? "blocked" : ""}`,
|
|
2109
|
+
onClick: c,
|
|
2110
|
+
children: [
|
|
2111
|
+
/* @__PURE__ */ a("p", { className: h() ? "today" : "", children: e }),
|
|
2112
|
+
/* @__PURE__ */ a("div", { className: "arkynMonthlyCalendarEventContainer", children: /* @__PURE__ */ a(Ta, { day: e, month: t, year: r }) })
|
|
2113
|
+
]
|
|
2114
|
+
}
|
|
2115
|
+
);
|
|
2116
|
+
}
|
|
2117
|
+
function Sa() {
|
|
2118
|
+
const n = oe();
|
|
2119
|
+
return /* @__PURE__ */ a("tbody", { className: "arkynMonthlyCalendarTableBody", children: n.listMonthlyMatrix.map((e, t) => /* @__PURE__ */ a("tr", { children: e.map((r, i) => /* @__PURE__ */ a(Da, { ...r }, i)) }, t)) });
|
|
2120
|
+
}
|
|
2121
|
+
function xa({
|
|
2122
|
+
children: n
|
|
2123
|
+
}) {
|
|
2124
|
+
return /* @__PURE__ */ a("div", { className: "arkynMonthlyCalendarTableContainer", children: /* @__PURE__ */ a("table", { children: n }) });
|
|
2125
|
+
}
|
|
2126
|
+
function $a() {
|
|
2127
|
+
const { listWeek: n } = oe();
|
|
2128
|
+
return /* @__PURE__ */ a("thead", { className: "arkynMonthlyCalendarTableHeader", children: /* @__PURE__ */ a("tr", { children: n.map((e, t) => /* @__PURE__ */ a("th", { children: Ne(e) }, t)) }) });
|
|
2129
|
+
}
|
|
2130
|
+
function Ia() {
|
|
2131
|
+
return /* @__PURE__ */ b(xa, { children: [
|
|
2132
|
+
/* @__PURE__ */ a($a, {}),
|
|
2133
|
+
/* @__PURE__ */ a(Sa, {})
|
|
2134
|
+
] });
|
|
2135
|
+
}
|
|
2136
|
+
const ke = 30, Pa = 40;
|
|
2137
|
+
function Fa(n) {
|
|
2138
|
+
const { events: e } = oe(), t = e.map((u, f) => ({ event: u, sourceIndex: f })).filter(({ event: u }) => u.initialDate.getDate() === n.day && u.initialDate.getMonth() === n.month && u.initialDate.getFullYear() === n.year).sort((u, f) => {
|
|
2139
|
+
var C, v;
|
|
2140
|
+
const g = u.event.initialDate.getTime(), y = f.event.initialDate.getTime();
|
|
2141
|
+
if (g !== y) return g - y;
|
|
2142
|
+
const m = ((C = u.event.endDate) == null ? void 0 : C.getTime()) ?? g + ke * 6e4, p = ((v = f.event.endDate) == null ? void 0 : v.getTime()) ?? y + ke * 6e4;
|
|
2143
|
+
return m !== p ? m - p : u.sourceIndex - f.sourceIndex;
|
|
2144
|
+
}), r = new Map(
|
|
2145
|
+
t.map((u, f) => [u.sourceIndex, f])
|
|
2146
|
+
), i = t.filter(({ event: u }) => {
|
|
2147
|
+
const f = Math.floor(n.timeInMinutes / 60), g = n.timeInMinutes % 60;
|
|
2148
|
+
function y() {
|
|
2149
|
+
const m = u.initialDate.getHours(), p = u.initialDate.getMinutes();
|
|
2150
|
+
if (m !== f) return !1;
|
|
2151
|
+
if (g === 0) return p < 30 && p >= 0;
|
|
2152
|
+
if (g === 30) return p >= 30 && p < 60;
|
|
2153
|
+
}
|
|
2154
|
+
return y() && u.initialDate.getDate() === n.day && u.initialDate.getMonth() === n.month && u.initialDate.getFullYear() === n.year;
|
|
2155
|
+
});
|
|
2156
|
+
if (i.length === 0) return /* @__PURE__ */ a(W, {});
|
|
2157
|
+
function o(u, f) {
|
|
2158
|
+
return `${n.day}-${n.month}-${n.year}-${f}-${u}`;
|
|
2159
|
+
}
|
|
2160
|
+
function s(u) {
|
|
2161
|
+
const f = u.getHours(), g = u.getMinutes();
|
|
2162
|
+
return g === 0 ? `${f}h` : `${f}h${g}`;
|
|
2163
|
+
}
|
|
2164
|
+
function h(u) {
|
|
2165
|
+
const f = u.initialDate.getHours() * 60 + u.initialDate.getMinutes(), g = u.endDate ? u.endDate.getHours() * 60 + u.endDate.getMinutes() : f + ke;
|
|
2166
|
+
return {
|
|
2167
|
+
startMinutes: f,
|
|
2168
|
+
endMinutes: Math.max(g, f + 1)
|
|
2169
|
+
};
|
|
2170
|
+
}
|
|
2171
|
+
function l(u, f) {
|
|
2172
|
+
const g = h(u), y = r.get(f);
|
|
2173
|
+
return y == null ? 0 : t.reduce((m, p, C) => {
|
|
2174
|
+
if (C >= y) return m;
|
|
2175
|
+
const v = h(p.event);
|
|
2176
|
+
return v.startMinutes < g.endMinutes && v.endMinutes > g.startMinutes ? m + 1 : m;
|
|
2177
|
+
}, 0);
|
|
2178
|
+
}
|
|
2179
|
+
function c(u, f) {
|
|
2180
|
+
const { startMinutes: g, endMinutes: y } = h(u), m = g - n.timeInMinutes, p = Math.max(y - g, 1), C = m / ke * 100, v = p / ke * 100, k = l(u, f) * Pa;
|
|
2181
|
+
return {
|
|
2182
|
+
top: `${C}%`,
|
|
2183
|
+
height: `${v}%`,
|
|
2184
|
+
left: `${k}px`
|
|
2185
|
+
};
|
|
2186
|
+
}
|
|
2187
|
+
function d(u, f) {
|
|
2188
|
+
var g;
|
|
2189
|
+
u.stopPropagation(), (g = f.onClick) == null || g.call(f, f.data);
|
|
2190
|
+
}
|
|
2191
|
+
return i.map(({ event: u, sourceIndex: f }, g) => /* @__PURE__ */ b(
|
|
2192
|
+
"div",
|
|
2193
|
+
{
|
|
2194
|
+
className: `arkynWeekCalendarEvent ${(u == null ? void 0 : u.scheme) || "primary"}`,
|
|
2195
|
+
style: c(u, f),
|
|
2196
|
+
onClick: (y) => d(y, u),
|
|
2197
|
+
children: [
|
|
2198
|
+
/* @__PURE__ */ b("strong", { children: [
|
|
2199
|
+
s(u.initialDate),
|
|
2200
|
+
" ",
|
|
2201
|
+
(u == null ? void 0 : u.endDate) && `- ${s(u.endDate)}`
|
|
2202
|
+
] }),
|
|
2203
|
+
/* @__PURE__ */ a("p", { children: u.title })
|
|
2204
|
+
]
|
|
2205
|
+
},
|
|
2206
|
+
o(g, f)
|
|
2207
|
+
));
|
|
2208
|
+
}
|
|
2209
|
+
function Ea(n) {
|
|
2210
|
+
const { day: e, month: t, year: r, dayOwner: i, timeInMinutes: o } = n, { blockedTimestamps: s, onClickDate: h } = oe();
|
|
2211
|
+
function l() {
|
|
2212
|
+
const d = new Date(r, t, e);
|
|
2213
|
+
return s.some(
|
|
2214
|
+
(u) => d >= u.initialDate && d <= u.endDate
|
|
2215
|
+
);
|
|
2216
|
+
}
|
|
2217
|
+
function c(d) {
|
|
2218
|
+
if (d.stopPropagation(), !l() && h) {
|
|
2219
|
+
const u = new Date(r, t, e);
|
|
2220
|
+
u.setHours(0, o, 0, 0), h(u);
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2223
|
+
return /* @__PURE__ */ a(
|
|
2224
|
+
"td",
|
|
2225
|
+
{
|
|
2226
|
+
className: `arkynWeekCalendarTableTd ${i} ${l() ? "blocked" : ""}`,
|
|
2227
|
+
"data-day": e,
|
|
2228
|
+
"data-time": o,
|
|
2229
|
+
onClick: c,
|
|
2230
|
+
children: /* @__PURE__ */ a("div", { className: "arkynWeekCalendarTableTdContent", children: /* @__PURE__ */ a(
|
|
2231
|
+
Fa,
|
|
2232
|
+
{
|
|
2233
|
+
day: e,
|
|
2234
|
+
month: t,
|
|
2235
|
+
year: r,
|
|
2236
|
+
timeInMinutes: o
|
|
2237
|
+
}
|
|
2238
|
+
) })
|
|
2239
|
+
}
|
|
2240
|
+
);
|
|
2241
|
+
}
|
|
2242
|
+
function Oa() {
|
|
2243
|
+
const n = oe(), e = new at();
|
|
2244
|
+
return /* @__PURE__ */ a("tbody", { className: "arkynWeekCalendarTableBody", children: n.listWeeklyMatrix.map((t) => /* @__PURE__ */ b("tr", { children: [
|
|
2245
|
+
/* @__PURE__ */ a("td", { className: "hourTd", children: /* @__PURE__ */ a("p", { children: e.formatHourLabel(t[0].timeInMinutes) }) }),
|
|
2246
|
+
t.map((r, i) => /* @__PURE__ */ a(
|
|
2247
|
+
Ea,
|
|
2248
|
+
{
|
|
2249
|
+
...r
|
|
2250
|
+
},
|
|
2251
|
+
`${r.year}-${r.month}-${r.day}-${r.timeInMinutes}-${i}`
|
|
2252
|
+
))
|
|
2253
|
+
] }, t[0].timeInMinutes)) });
|
|
2254
|
+
}
|
|
2255
|
+
function Aa({
|
|
2256
|
+
children: n
|
|
2257
|
+
}) {
|
|
2258
|
+
return /* @__PURE__ */ a("div", { className: "arkynWeekCalendarTableContainer", children: /* @__PURE__ */ a("table", { children: n }) });
|
|
2259
|
+
}
|
|
2260
|
+
function Va() {
|
|
2261
|
+
const { listWeek: n, listWeeklyMatrix: e } = oe(), t = e[0] || [];
|
|
2262
|
+
return /* @__PURE__ */ a("thead", { className: "arkynWeekCalendarTableHeader", children: /* @__PURE__ */ b("tr", { children: [
|
|
2263
|
+
/* @__PURE__ */ a("th", {}),
|
|
2264
|
+
n.map((r, i) => {
|
|
2265
|
+
var o;
|
|
2266
|
+
return /* @__PURE__ */ a("th", { children: /* @__PURE__ */ b("div", { className: "arkynWeekCalendarTableHeaderContent", children: [
|
|
2267
|
+
/* @__PURE__ */ a("span", { children: Ne(r) }),
|
|
2268
|
+
/* @__PURE__ */ a("strong", { children: (o = t[i]) == null ? void 0 : o.day })
|
|
2269
|
+
] }) }, i);
|
|
2270
|
+
})
|
|
2271
|
+
] }) });
|
|
2272
|
+
}
|
|
2273
|
+
function La() {
|
|
2274
|
+
return /* @__PURE__ */ b(Aa, { children: [
|
|
2275
|
+
/* @__PURE__ */ a(Va, {}),
|
|
2276
|
+
/* @__PURE__ */ a(Oa, {})
|
|
2277
|
+
] });
|
|
2278
|
+
}
|
|
2279
|
+
function ui(n) {
|
|
2280
|
+
const [e, t] = N("month");
|
|
2281
|
+
return /* @__PURE__ */ a(
|
|
2282
|
+
ya,
|
|
2283
|
+
{
|
|
2284
|
+
events: n.events || [],
|
|
2285
|
+
viewValue: n.viewValue,
|
|
2286
|
+
defaultViewValue: n.defaultViewValue,
|
|
2287
|
+
onChangeView: n.onChangeView,
|
|
2288
|
+
blockedTimestamps: n.blockedTimestamps || [],
|
|
2289
|
+
onClickDate: n.onClickDate,
|
|
2290
|
+
children: /* @__PURE__ */ b(Na, { children: [
|
|
2291
|
+
/* @__PURE__ */ a(Ma, { viewType: e, setViewType: t }),
|
|
2292
|
+
e === "day" && /* @__PURE__ */ a(va, {}),
|
|
2293
|
+
e === "month" && /* @__PURE__ */ a(Ia, {}),
|
|
2294
|
+
e === "week" && /* @__PURE__ */ a(La, {})
|
|
2295
|
+
] })
|
|
2296
|
+
}
|
|
2297
|
+
);
|
|
2298
|
+
}
|
|
2299
|
+
function Ba(n) {
|
|
2300
|
+
const { measurementId: e } = n;
|
|
2301
|
+
e || console.warn("Google Analytics Measurement ID is required");
|
|
2302
|
+
const t = `https://www.googletagmanager.com/gtag/js?id=${e}`, r = `
|
|
2303
|
+
window.dataLayer = window.dataLayer || [];
|
|
2304
|
+
function gtag(){dataLayer.push(arguments);}
|
|
2305
|
+
gtag('js', new Date());
|
|
2306
|
+
gtag('config', '${e}');`;
|
|
2307
|
+
return {
|
|
2308
|
+
src: t,
|
|
2309
|
+
script: r
|
|
2310
|
+
};
|
|
2311
|
+
}
|
|
2312
|
+
let za = class {
|
|
2313
|
+
initializeAsyncScript(e) {
|
|
2314
|
+
const t = document.createElement("script");
|
|
2315
|
+
return t.async = !0, t.src = e, t;
|
|
2316
|
+
}
|
|
2317
|
+
initializeInlineScript(e) {
|
|
2318
|
+
const t = document.createElement("script");
|
|
2319
|
+
return t.innerHTML = e, t;
|
|
2320
|
+
}
|
|
2321
|
+
initialize(e) {
|
|
2322
|
+
const { measurementId: t } = e, r = Ba({ measurementId: t }), i = this.initializeAsyncScript(r.src), o = this.initializeInlineScript(r.script);
|
|
2323
|
+
document.head.appendChild(i), document.head.appendChild(o);
|
|
2324
|
+
}
|
|
2325
|
+
};
|
|
2326
|
+
function Ha(n) {
|
|
2327
|
+
return new za().initialize(n), /* @__PURE__ */ a(W, {});
|
|
2328
|
+
}
|
|
2329
|
+
function hi(n) {
|
|
2330
|
+
const { measurementId: e, showInDevMode: t = !1 } = n;
|
|
2331
|
+
return process.env.NODE_ENV !== "production" && !t ? /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(Re, { children: () => /* @__PURE__ */ a(Ha, { measurementId: e }) });
|
|
2332
|
+
}
|
|
2333
|
+
function It(n) {
|
|
2334
|
+
const { dataLayer: e, dataLayerName: t } = n;
|
|
2335
|
+
return `
|
|
2336
|
+
window.${t} = window.${t} || [];
|
|
2337
|
+
window.${t}.push(${JSON.stringify(e)})`;
|
|
2338
|
+
}
|
|
2339
|
+
function Ra(n) {
|
|
2340
|
+
const { id: e, events: t, dataLayer: r, dataLayerName: i, preview: o, auth: s } = n, h = `>m_auth=${s}`, l = `>m_preview=${o}`;
|
|
2341
|
+
e || console.warn("GTM Id is required");
|
|
2342
|
+
const c = `
|
|
2343
|
+
<iframe src="https://www.googletagmanager.com/ns.html?id=${e}${h}${l}>m_cookies_win=x"
|
|
2344
|
+
height="0" width="0" style="display:none;visibility:hidden" id="tag-manager"></iframe>`, d = `
|
|
2345
|
+
(function(w,d,s,l,i){w[l]=w[l]||[];
|
|
2346
|
+
w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js', ${JSON.stringify(
|
|
2347
|
+
t
|
|
2348
|
+
).slice(1, -1)}});
|
|
2349
|
+
var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
|
|
2350
|
+
j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl+'${h}${l}>m_cookies_win=x';
|
|
2351
|
+
f.parentNode.insertBefore(j,f);
|
|
2352
|
+
})(window,document,'script','${i}','${e}');`, u = It({ dataLayer: r, dataLayerName: i });
|
|
2353
|
+
return {
|
|
2354
|
+
iframe: c,
|
|
2355
|
+
script: d,
|
|
2356
|
+
dataLayerVar: u
|
|
2357
|
+
};
|
|
2358
|
+
}
|
|
2359
|
+
let Wa = class {
|
|
2360
|
+
initializeDataScript(e) {
|
|
2361
|
+
const t = document.createElement("script");
|
|
2362
|
+
return t.innerHTML = e, t;
|
|
2363
|
+
}
|
|
2364
|
+
initializeGTMElements(e) {
|
|
2365
|
+
const t = Ra(e), r = () => {
|
|
2366
|
+
const s = document.createElement("noscript");
|
|
2367
|
+
return s.innerHTML = t.iframe, s;
|
|
2368
|
+
}, i = () => {
|
|
2369
|
+
const s = document.createElement("script");
|
|
2370
|
+
return s.innerHTML = t.script, s;
|
|
2371
|
+
}, o = this.initializeDataScript(t.dataLayerVar);
|
|
2372
|
+
return {
|
|
2373
|
+
noScript: r,
|
|
2374
|
+
script: i,
|
|
2375
|
+
dataScript: o
|
|
2376
|
+
};
|
|
2377
|
+
}
|
|
2378
|
+
initializeDataLayer(e) {
|
|
2379
|
+
const { dataLayer: t, dataLayerName: r } = e;
|
|
2380
|
+
if (window[r]) return window[r].push(t);
|
|
2381
|
+
const i = It({ dataLayer: t, dataLayerName: r }), o = this.initializeDataScript(i);
|
|
2382
|
+
document.head.insertBefore(o, document.head.childNodes[0]);
|
|
2383
|
+
}
|
|
2384
|
+
initialize(e) {
|
|
2385
|
+
const {
|
|
2386
|
+
events: t,
|
|
2387
|
+
gtmId: r,
|
|
2388
|
+
dataLayer: i,
|
|
2389
|
+
auth: o = "",
|
|
2390
|
+
preview: s = "",
|
|
2391
|
+
dataLayerName: h = "dataLayer"
|
|
2392
|
+
} = e, l = this.initializeGTMElements({
|
|
2393
|
+
id: r,
|
|
2394
|
+
events: t,
|
|
2395
|
+
dataLayer: i || void 0,
|
|
2396
|
+
dataLayerName: h,
|
|
2397
|
+
auth: o,
|
|
2398
|
+
preview: s
|
|
2399
|
+
});
|
|
2400
|
+
i && document.head.appendChild(l.dataScript), document.head.insertBefore(l.script(), document.head.childNodes[0]), document.body.insertBefore(l.noScript(), document.body.childNodes[0]);
|
|
2401
|
+
}
|
|
2402
|
+
};
|
|
2403
|
+
function Ua(n) {
|
|
2404
|
+
return new Wa().initialize(n), /* @__PURE__ */ a(W, {});
|
|
2405
|
+
}
|
|
2406
|
+
function mi(n) {
|
|
2407
|
+
const {
|
|
2408
|
+
gtmId: e,
|
|
2409
|
+
auth: t = "",
|
|
2410
|
+
preview: r = "",
|
|
2411
|
+
dataLayerName: i = "dataLayer",
|
|
2412
|
+
events: o = {},
|
|
2413
|
+
dataLayer: s = {},
|
|
2414
|
+
showInDevMode: h = !1
|
|
2415
|
+
} = n;
|
|
2416
|
+
return process.env.NODE_ENV !== "production" && !h ? /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(Re, { children: () => /* @__PURE__ */ a(
|
|
2417
|
+
Ua,
|
|
2418
|
+
{
|
|
2419
|
+
auth: t,
|
|
2420
|
+
dataLayer: s,
|
|
2421
|
+
dataLayerName: i,
|
|
2422
|
+
events: o,
|
|
2423
|
+
gtmId: e,
|
|
2424
|
+
preview: r
|
|
2425
|
+
}
|
|
2426
|
+
) });
|
|
2427
|
+
}
|
|
2428
|
+
function _a(n) {
|
|
2429
|
+
const {
|
|
2430
|
+
disabled: e,
|
|
2431
|
+
filePath: t,
|
|
2432
|
+
isLoading: r,
|
|
2433
|
+
acceptImage: i,
|
|
2434
|
+
changeImageButtonText: o,
|
|
2435
|
+
handleSelectFile: s,
|
|
2436
|
+
reSendImage: h
|
|
2437
|
+
} = n;
|
|
2438
|
+
function l() {
|
|
2439
|
+
if (e) return;
|
|
2440
|
+
const c = document.createElement("input");
|
|
2441
|
+
c.type = "file", c.accept = i, c.onchange = (d) => {
|
|
2442
|
+
var f;
|
|
2443
|
+
const u = (f = d.target.files) == null ? void 0 : f[0];
|
|
2444
|
+
u && s(u);
|
|
2445
|
+
}, c.click();
|
|
2446
|
+
}
|
|
2447
|
+
return /* @__PURE__ */ b(
|
|
2448
|
+
"div",
|
|
2449
|
+
{
|
|
2450
|
+
className: "arkynImageUploadHasFileContent",
|
|
2451
|
+
style: { backgroundImage: `url("${t}")` },
|
|
2452
|
+
children: [
|
|
2453
|
+
h && /* @__PURE__ */ a(nt, { orientation: "bottom", text: "Reenviar imagem", children: /* @__PURE__ */ a(
|
|
2454
|
+
ve,
|
|
2455
|
+
{
|
|
2456
|
+
type: "button",
|
|
2457
|
+
"aria-label": "resend image",
|
|
2458
|
+
variant: "outline",
|
|
2459
|
+
scheme: "danger",
|
|
2460
|
+
size: "sm",
|
|
2461
|
+
isLoading: r,
|
|
2462
|
+
onClick: h,
|
|
2463
|
+
icon: Je,
|
|
2464
|
+
disabled: e
|
|
2465
|
+
}
|
|
2466
|
+
) }),
|
|
2467
|
+
/* @__PURE__ */ a(
|
|
2468
|
+
de,
|
|
2469
|
+
{
|
|
2470
|
+
isLoading: r,
|
|
2471
|
+
onClick: l,
|
|
2472
|
+
variant: "outline",
|
|
2473
|
+
size: "sm",
|
|
2474
|
+
type: "button",
|
|
2475
|
+
disabled: e,
|
|
2476
|
+
children: o
|
|
2477
|
+
}
|
|
2478
|
+
)
|
|
2479
|
+
]
|
|
2480
|
+
}
|
|
2481
|
+
);
|
|
2482
|
+
}
|
|
2483
|
+
function qa(n) {
|
|
2484
|
+
const {
|
|
2485
|
+
dropImageText: e,
|
|
2486
|
+
isLoading: t,
|
|
2487
|
+
acceptImage: r,
|
|
2488
|
+
handleSelectFile: i,
|
|
2489
|
+
selectImageButtonText: o,
|
|
2490
|
+
disabled: s
|
|
2491
|
+
} = n;
|
|
2492
|
+
function h(c) {
|
|
2493
|
+
if (s) return;
|
|
2494
|
+
c.preventDefault();
|
|
2495
|
+
const d = c.dataTransfer.files[0];
|
|
2496
|
+
d && i(d);
|
|
2497
|
+
}
|
|
2498
|
+
function l() {
|
|
2499
|
+
if (s) return;
|
|
2500
|
+
const c = document.createElement("input");
|
|
2501
|
+
c.type = "file", c.accept = r, c.onchange = (d) => {
|
|
2502
|
+
var f;
|
|
2503
|
+
const u = (f = d.target.files) == null ? void 0 : f[0];
|
|
2504
|
+
u && i(u);
|
|
2505
|
+
}, c.click();
|
|
2506
|
+
}
|
|
2507
|
+
return /* @__PURE__ */ b("div", { onDrop: h, className: "arkynImageUploadNoFileContent", children: [
|
|
2508
|
+
/* @__PURE__ */ a(
|
|
2509
|
+
de,
|
|
2510
|
+
{
|
|
2511
|
+
isLoading: t,
|
|
2512
|
+
onClick: l,
|
|
2513
|
+
variant: "ghost",
|
|
2514
|
+
size: "sm",
|
|
2515
|
+
type: "button",
|
|
2516
|
+
disabled: s,
|
|
2517
|
+
children: o
|
|
2518
|
+
}
|
|
2519
|
+
),
|
|
2520
|
+
/* @__PURE__ */ a("p", { children: e })
|
|
2521
|
+
] });
|
|
2522
|
+
}
|
|
2523
|
+
function Ya(n) {
|
|
2524
|
+
const {
|
|
2525
|
+
name: e,
|
|
2526
|
+
defaultValue: t = "",
|
|
2527
|
+
label: r,
|
|
2528
|
+
showAsterisk: i = !1,
|
|
2529
|
+
action: o,
|
|
2530
|
+
fileName: s = "file",
|
|
2531
|
+
className: h = "",
|
|
2532
|
+
method: l = "POST",
|
|
2533
|
+
acceptImage: c = "image/*",
|
|
2534
|
+
fileResponseName: d = "url",
|
|
2535
|
+
changeImageButtonText: u = "Alterar imagem",
|
|
2536
|
+
selectImageButtonText: f = "Selecionar imagem",
|
|
2537
|
+
dropImageText: g = "Ou arraste e solte a imagem aqui",
|
|
2538
|
+
onChange: y,
|
|
2539
|
+
disabled: m = !1,
|
|
2540
|
+
unShowFieldTemplate: p = !1,
|
|
2541
|
+
orientation: C = "vertical"
|
|
2542
|
+
} = n, { fieldErrors: v } = te(), k = v == null ? void 0 : v[e], [w, M] = N(t), [T, D] = N(""), [O, R] = N(null), [A, x] = N(t), [I, S] = N(!1);
|
|
2543
|
+
async function z(G) {
|
|
2544
|
+
if (m) return;
|
|
2545
|
+
S(!0), R(G), D("");
|
|
2546
|
+
const U = new FormData();
|
|
2547
|
+
U.append(s, G), await fetch(o, { method: l, body: U }).then(async (V) => await V.json()).then((V) => {
|
|
2548
|
+
V != null && V.error ? D(V.error) : M(V == null ? void 0 : V[d]), y && y(V == null ? void 0 : V[d]);
|
|
2549
|
+
}).catch((V) => {
|
|
2550
|
+
console.error(V), D("Erro ao enviar imagem");
|
|
2551
|
+
}).finally(() => S(!1));
|
|
2552
|
+
}
|
|
2553
|
+
function L(G) {
|
|
2554
|
+
m || (x(URL.createObjectURL(G)), z(G));
|
|
2555
|
+
}
|
|
2556
|
+
const P = k || T;
|
|
2557
|
+
return /* @__PURE__ */ a(
|
|
2558
|
+
he,
|
|
2559
|
+
{
|
|
2560
|
+
name: e,
|
|
2561
|
+
label: r,
|
|
2562
|
+
showAsterisk: i,
|
|
2563
|
+
className: h,
|
|
2564
|
+
errorMessage: P,
|
|
2565
|
+
unShowFieldTemplate: p,
|
|
2566
|
+
orientation: C,
|
|
2567
|
+
children: /* @__PURE__ */ b("div", { className: `arkynImageUpload ${P ? "hasError" : "noHasError"} ${A ? "hasImage" : "noHasImage"}`, children: [
|
|
2568
|
+
/* @__PURE__ */ a("input", { type: "hidden", name: e, value: w || "" }),
|
|
2569
|
+
!A && /* @__PURE__ */ a(
|
|
2570
|
+
qa,
|
|
2571
|
+
{
|
|
2572
|
+
disabled: m,
|
|
2573
|
+
isLoading: I,
|
|
2574
|
+
acceptImage: c,
|
|
2575
|
+
dropImageText: g,
|
|
2576
|
+
handleSelectFile: L,
|
|
2577
|
+
selectImageButtonText: f
|
|
2578
|
+
}
|
|
2579
|
+
),
|
|
2580
|
+
A && /* @__PURE__ */ a(
|
|
2581
|
+
_a,
|
|
2582
|
+
{
|
|
2583
|
+
disabled: m,
|
|
2584
|
+
isLoading: I,
|
|
2585
|
+
acceptImage: c,
|
|
2586
|
+
filePath: A,
|
|
2587
|
+
handleSelectFile: L,
|
|
2588
|
+
changeImageButtonText: u,
|
|
2589
|
+
reSendImage: P && O ? () => z(O) : void 0
|
|
2590
|
+
}
|
|
2591
|
+
)
|
|
2592
|
+
] })
|
|
2593
|
+
}
|
|
2594
|
+
);
|
|
2595
|
+
}
|
|
2596
|
+
function ja({
|
|
2597
|
+
center: n,
|
|
2598
|
+
coordinates: e,
|
|
2599
|
+
onMarkerClick: t,
|
|
2600
|
+
accessToken: r,
|
|
2601
|
+
...i
|
|
2602
|
+
}) {
|
|
2603
|
+
const o = X(null), s = X(null), h = n || e[0];
|
|
2604
|
+
return ee(() => (Ie.accessToken = r, o.current = new Ie.Map({
|
|
2605
|
+
container: s.current,
|
|
2606
|
+
style: "mapbox://styles/mapbox/light-v11",
|
|
2607
|
+
center: [h.lng, h.lat],
|
|
2608
|
+
zoom: 13,
|
|
2609
|
+
language: "pt-BR"
|
|
2610
|
+
}), e.forEach((l) => {
|
|
2611
|
+
const { lat: c, lng: d, popUp: u } = l, f = document.createElement("img");
|
|
2612
|
+
f.className = "arkynMarker", f.src = "https://i.postimg.cc/mgKggjk7/Pin.png";
|
|
2613
|
+
const g = new Ie.Marker(f).setLngLat([d, c]).addTo(o.current);
|
|
2614
|
+
if (u) {
|
|
2615
|
+
const y = document.createElement("div");
|
|
2616
|
+
$n(y).render(u);
|
|
2617
|
+
const p = new Ie.Popup({
|
|
2618
|
+
offset: 25,
|
|
2619
|
+
closeButton: !1,
|
|
2620
|
+
className: "arkynMapViewPopup"
|
|
2621
|
+
}).setDOMContent(y);
|
|
2622
|
+
g.setPopup(p);
|
|
2623
|
+
}
|
|
2624
|
+
f.addEventListener("click", () => {
|
|
2625
|
+
t && t(l), o.current.flyTo({ center: [d, c], zoom: 15, duration: 1200 }), g.togglePopup();
|
|
2626
|
+
});
|
|
2627
|
+
}), () => {
|
|
2628
|
+
var l;
|
|
2629
|
+
(l = o.current) == null || l.remove();
|
|
2630
|
+
}), []), /* @__PURE__ */ a(
|
|
2631
|
+
"div",
|
|
2632
|
+
{
|
|
2633
|
+
id: "map-container",
|
|
2634
|
+
ref: s,
|
|
2635
|
+
style: { height: "100%", width: "100%", borderRadius: "8px" },
|
|
2636
|
+
...i
|
|
2637
|
+
}
|
|
2638
|
+
);
|
|
2639
|
+
}
|
|
2640
|
+
function qe({ className: n }) {
|
|
2641
|
+
return /* @__PURE__ */ a("div", { className: "arkynMapViewPinnedEmpty " + n, children: /* @__PURE__ */ a(hn, {}) });
|
|
2642
|
+
}
|
|
2643
|
+
function gi(n) {
|
|
2644
|
+
const {
|
|
2645
|
+
coordinates: e,
|
|
2646
|
+
zoom: t = 18,
|
|
2647
|
+
accessToken: r,
|
|
2648
|
+
className: i,
|
|
2649
|
+
onMarkerClick: o,
|
|
2650
|
+
...s
|
|
2651
|
+
} = n;
|
|
2652
|
+
if (!e) return /* @__PURE__ */ a(qe, { className: i });
|
|
2653
|
+
const h = Array.isArray(e) ? e : [e];
|
|
2654
|
+
return h.length === 0 ? /* @__PURE__ */ a(qe, { className: i }) : /* @__PURE__ */ a(Re, { fallback: /* @__PURE__ */ a(qe, { className: i }), children: () => /* @__PURE__ */ a(
|
|
2655
|
+
ja,
|
|
2656
|
+
{
|
|
2657
|
+
accessToken: r,
|
|
2658
|
+
coordinates: h,
|
|
2659
|
+
center: h[0],
|
|
2660
|
+
onMarkerClick: o,
|
|
2661
|
+
...s
|
|
2662
|
+
}
|
|
2663
|
+
) });
|
|
2664
|
+
}
|
|
2665
|
+
const Ga = Ke((n, e) => /* @__PURE__ */ a("input", { ref: e, ...n }));
|
|
2666
|
+
function pi(n) {
|
|
2667
|
+
const {
|
|
2668
|
+
name: e,
|
|
2669
|
+
disabled: t,
|
|
2670
|
+
title: r,
|
|
2671
|
+
style: i,
|
|
2672
|
+
variant: o = "solid",
|
|
2673
|
+
separate: s,
|
|
2674
|
+
mask: h,
|
|
2675
|
+
showMask: l,
|
|
2676
|
+
replacement: c,
|
|
2677
|
+
label: d,
|
|
2678
|
+
className: u = "",
|
|
2679
|
+
prefix: f,
|
|
2680
|
+
suffix: g,
|
|
2681
|
+
isLoading: y = !1,
|
|
2682
|
+
leftIcon: m,
|
|
2683
|
+
readOnly: p,
|
|
2684
|
+
onFocus: C,
|
|
2685
|
+
onBlur: v,
|
|
2686
|
+
errorMessage: k,
|
|
2687
|
+
defaultValue: w,
|
|
2688
|
+
showAsterisk: M,
|
|
2689
|
+
rightIcon: T,
|
|
2690
|
+
size: D = "md",
|
|
2691
|
+
id: O,
|
|
2692
|
+
value: R,
|
|
2693
|
+
placeholder: A,
|
|
2694
|
+
...x
|
|
2695
|
+
} = n, { fieldErrors: I } = te(), [S, z] = N(!1), L = X(null), P = O || ce(), F = k || (I == null ? void 0 : I[e]), J = !!F, $ = t || y, U = { md: 20, lg: 20 }[D], V = T ? "right" : "left", B = V === "left" && y, H = V === "right" && y;
|
|
2696
|
+
function j() {
|
|
2697
|
+
$ || !(L != null && L.current) || (z(!0), L.current.focus());
|
|
2698
|
+
}
|
|
2699
|
+
function q(E) {
|
|
2700
|
+
z(!0), C && C(E);
|
|
2701
|
+
}
|
|
2702
|
+
function ne(E) {
|
|
2703
|
+
z(!1), v && v(E);
|
|
2704
|
+
}
|
|
2705
|
+
const Q = `arkynMaskedInput ${f ? "hasPrefix" : ""} ${g ? "hasSuffix" : ""} ${o} ${D} ${$ || p || y ? "opacity" : ""} ${J ? "errored" : ""} ${S ? "focused" : ""}`;
|
|
2706
|
+
return /* @__PURE__ */ b(De, { className: u, children: [
|
|
2707
|
+
d && /* @__PURE__ */ a(Te, { showAsterisk: M, htmlFor: P, children: d }),
|
|
2708
|
+
/* @__PURE__ */ b(
|
|
2709
|
+
"section",
|
|
2710
|
+
{
|
|
2711
|
+
title: r,
|
|
2712
|
+
style: i,
|
|
2713
|
+
onClick: j,
|
|
2714
|
+
className: Q,
|
|
2715
|
+
children: [
|
|
2716
|
+
/* @__PURE__ */ a(Y, { iconSize: U, icon: f, className: "prefix" }),
|
|
2717
|
+
/* @__PURE__ */ a(
|
|
2718
|
+
Y,
|
|
2719
|
+
{
|
|
2720
|
+
show: B,
|
|
2721
|
+
iconSize: U,
|
|
2722
|
+
className: "spinner",
|
|
2723
|
+
icon: ue
|
|
2724
|
+
}
|
|
2725
|
+
),
|
|
2726
|
+
/* @__PURE__ */ a(Y, { show: !y, icon: m, iconSize: U }),
|
|
2727
|
+
/* @__PURE__ */ a(
|
|
2728
|
+
vt,
|
|
2729
|
+
{
|
|
2730
|
+
component: Ga,
|
|
2731
|
+
mask: h,
|
|
2732
|
+
replacement: c,
|
|
2733
|
+
separate: s,
|
|
2734
|
+
showMask: l,
|
|
2735
|
+
ref: L,
|
|
2736
|
+
onFocus: q,
|
|
2737
|
+
onBlur: ne,
|
|
2738
|
+
disabled: $,
|
|
2739
|
+
readOnly: p,
|
|
2740
|
+
id: P,
|
|
2741
|
+
name: e,
|
|
2742
|
+
defaultValue: w || void 0,
|
|
2743
|
+
placeholder: $ && R || A,
|
|
2744
|
+
value: $ ? void 0 : R,
|
|
2745
|
+
...x
|
|
2746
|
+
}
|
|
2747
|
+
),
|
|
2748
|
+
/* @__PURE__ */ a(Y, { show: !y, icon: T, iconSize: U }),
|
|
2749
|
+
/* @__PURE__ */ a(
|
|
2750
|
+
Y,
|
|
2751
|
+
{
|
|
2752
|
+
show: H,
|
|
2753
|
+
iconSize: U,
|
|
2754
|
+
className: "spinner",
|
|
2755
|
+
icon: ue
|
|
2756
|
+
}
|
|
2757
|
+
),
|
|
2758
|
+
/* @__PURE__ */ a(Y, { iconSize: U, icon: g, className: "suffix" })
|
|
2759
|
+
]
|
|
2760
|
+
}
|
|
2761
|
+
),
|
|
2762
|
+
F && /* @__PURE__ */ a(Me, { children: F })
|
|
2763
|
+
] });
|
|
2764
|
+
}
|
|
2765
|
+
const Pt = ie({});
|
|
2766
|
+
function Xa(n) {
|
|
2767
|
+
return /* @__PURE__ */ a(Pt.Provider, { value: { makeInvisible: n.makeInvisible }, children: n.children });
|
|
2768
|
+
}
|
|
2769
|
+
function Ka() {
|
|
2770
|
+
return se(Pt);
|
|
2771
|
+
}
|
|
2772
|
+
function Ft(n) {
|
|
2773
|
+
const {
|
|
2774
|
+
isVisible: e,
|
|
2775
|
+
makeInvisible: t,
|
|
2776
|
+
children: r,
|
|
2777
|
+
className: i = "",
|
|
2778
|
+
...o
|
|
2779
|
+
} = n;
|
|
2780
|
+
Ce(e);
|
|
2781
|
+
const h = `arkynModalContainer ${e ? "visibleTrue" : "visibleFalse"} ${i}`;
|
|
2782
|
+
return /* @__PURE__ */ a(Xa, { makeInvisible: t, children: /* @__PURE__ */ a(wt, { children: e && /* @__PURE__ */ b("aside", { className: h.trim(), ...o, children: [
|
|
2783
|
+
/* @__PURE__ */ a(
|
|
2784
|
+
we.div,
|
|
2785
|
+
{
|
|
2786
|
+
className: "arkynModalContainerOverlay",
|
|
2787
|
+
transition: { duration: 0.15, ease: "easeOut" },
|
|
2788
|
+
initial: { opacity: 0 },
|
|
2789
|
+
animate: { opacity: 1 },
|
|
2790
|
+
exit: { opacity: 0 },
|
|
2791
|
+
onClick: t
|
|
2792
|
+
}
|
|
2793
|
+
),
|
|
2794
|
+
/* @__PURE__ */ a(
|
|
2795
|
+
we.div,
|
|
2796
|
+
{
|
|
2797
|
+
className: "arkynModalContainerContent",
|
|
2798
|
+
transition: { duration: 0.15, ease: "easeOut" },
|
|
2799
|
+
initial: { opacity: 0, scale: 0.75 },
|
|
2800
|
+
animate: { opacity: 1, scale: 1 },
|
|
2801
|
+
exit: { opacity: 0, scale: 0 },
|
|
2802
|
+
children: r
|
|
2803
|
+
}
|
|
2804
|
+
)
|
|
2805
|
+
] }) }) });
|
|
2806
|
+
}
|
|
2807
|
+
function Et(n) {
|
|
2808
|
+
const { alignment: e = "right", className: t, ...r } = n, i = `arkynModalFooter ${e} ${t}`;
|
|
2809
|
+
return /* @__PURE__ */ a("footer", { className: i.trim(), ...r });
|
|
2810
|
+
}
|
|
2811
|
+
function Ot(n) {
|
|
2812
|
+
const {
|
|
2813
|
+
showCloseButton: e = !0,
|
|
2814
|
+
className: t,
|
|
2815
|
+
children: r,
|
|
2816
|
+
...i
|
|
2817
|
+
} = n, { makeInvisible: o } = Ka(), s = `arkynModalHeader ${t}`;
|
|
2818
|
+
return /* @__PURE__ */ b("header", { className: s.trim(), ...i, children: [
|
|
2819
|
+
r,
|
|
2820
|
+
e && /* @__PURE__ */ a(
|
|
2821
|
+
"button",
|
|
2822
|
+
{
|
|
2823
|
+
type: "button",
|
|
2824
|
+
onClick: o,
|
|
2825
|
+
"aria-label": "Close modal button",
|
|
2826
|
+
className: "arkynModalHeaderCloseButton",
|
|
2827
|
+
children: /* @__PURE__ */ a(Ze, { size: 24 })
|
|
2828
|
+
}
|
|
2829
|
+
)
|
|
2830
|
+
] });
|
|
2831
|
+
}
|
|
2832
|
+
function Ja(n) {
|
|
2833
|
+
const { iconSize: e, isLoading: t, disabled: r, readOnly: i, isFocused: o } = n, l = `arkynMultiSelectChevron ${r || i ? "notAnimate" : ""} ${o ? "focused" : ""}`;
|
|
2834
|
+
return t ? /* @__PURE__ */ a(W, {}) : /* @__PURE__ */ a(
|
|
2835
|
+
Qe,
|
|
2836
|
+
{
|
|
2837
|
+
className: l,
|
|
2838
|
+
strokeWidth: 2.5,
|
|
2839
|
+
style: {
|
|
2840
|
+
minWidth: e,
|
|
2841
|
+
minHeight: e,
|
|
2842
|
+
maxWidth: e,
|
|
2843
|
+
maxHeight: e
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
);
|
|
2847
|
+
}
|
|
2848
|
+
function Qa(n) {
|
|
2849
|
+
const {
|
|
2850
|
+
children: e,
|
|
2851
|
+
handleContainerFocus: t,
|
|
2852
|
+
disabled: r,
|
|
2853
|
+
isError: i,
|
|
2854
|
+
isLoading: o,
|
|
2855
|
+
isFocused: s,
|
|
2856
|
+
className: h,
|
|
2857
|
+
readOnly: l,
|
|
2858
|
+
variant: c,
|
|
2859
|
+
size: d,
|
|
2860
|
+
id: u,
|
|
2861
|
+
prefixExists: f
|
|
2862
|
+
} = n;
|
|
2863
|
+
return /* @__PURE__ */ a(
|
|
2864
|
+
"section",
|
|
2865
|
+
{
|
|
2866
|
+
id: u,
|
|
2867
|
+
className: `arkynMultiSelectContainer ${f ? "hasPrefix" : ""} ${c} ${d} ${r || l || o ? "opacity" : ""} ${i ? "errored" : ""} ${s ? "focused" : ""} ${h}`,
|
|
2868
|
+
onClick: t,
|
|
2869
|
+
children: e
|
|
2870
|
+
}
|
|
2871
|
+
);
|
|
2872
|
+
}
|
|
2873
|
+
function Za(n) {
|
|
2874
|
+
const { children: e, size: t } = n, r = `arkynMultiSelectContent ${t}`;
|
|
2875
|
+
return /* @__PURE__ */ a("div", { className: r, children: e });
|
|
2876
|
+
}
|
|
2877
|
+
function er(n) {
|
|
2878
|
+
const { label: e, value: t, disabled: r, handleChangeValue: i } = n;
|
|
2879
|
+
return /* @__PURE__ */ b("div", { className: "arkynMultiSelectMark", children: [
|
|
2880
|
+
e,
|
|
2881
|
+
/* @__PURE__ */ a(
|
|
2882
|
+
"button",
|
|
2883
|
+
{
|
|
2884
|
+
disabled: r,
|
|
2885
|
+
type: "button",
|
|
2886
|
+
onClick: (o) => {
|
|
2887
|
+
o.stopPropagation(), i(t);
|
|
2888
|
+
},
|
|
2889
|
+
children: /* @__PURE__ */ a(Ze, {})
|
|
2890
|
+
}
|
|
2891
|
+
)
|
|
2892
|
+
] });
|
|
2893
|
+
}
|
|
2894
|
+
function tr(n) {
|
|
2895
|
+
const { label: e, optionHasSelected: t, handleChangeValue: r, value: i, size: o } = n, s = t(i) ? "active" : "", h = `arkynMultiSelectOption ${o} ${s}`;
|
|
2896
|
+
return /* @__PURE__ */ b("div", { onClick: () => r(i), className: h, children: [
|
|
2897
|
+
e,
|
|
2898
|
+
" ",
|
|
2899
|
+
/* @__PURE__ */ a(Be, {})
|
|
2900
|
+
] });
|
|
2901
|
+
}
|
|
2902
|
+
function nr(n) {
|
|
2903
|
+
const { children: e, isFocused: t, isSearchable: r, search: i, onSearch: o } = n, s = X(null), [h, l] = N("bottom");
|
|
2904
|
+
Ce(t), ee(() => {
|
|
2905
|
+
if (!t) return;
|
|
2906
|
+
(() => {
|
|
2907
|
+
if (!s.current) return;
|
|
2908
|
+
const u = s.current.parentElement;
|
|
2909
|
+
if (!u) return;
|
|
2910
|
+
const f = u.getBoundingClientRect(), g = window.innerHeight, y = 300;
|
|
2911
|
+
g - f.bottom < y && f.top > y ? l("top") : l("bottom");
|
|
2912
|
+
})();
|
|
2913
|
+
}, [t]);
|
|
2914
|
+
function c(d) {
|
|
2915
|
+
r && o(d.target.value);
|
|
2916
|
+
}
|
|
2917
|
+
return t ? /* @__PURE__ */ b(
|
|
2918
|
+
"div",
|
|
2919
|
+
{
|
|
2920
|
+
ref: s,
|
|
2921
|
+
className: `arkynMultiSelectOptionsContainer ${h}`,
|
|
2922
|
+
children: [
|
|
2923
|
+
r && /* @__PURE__ */ a(
|
|
2924
|
+
Se,
|
|
2925
|
+
{
|
|
2926
|
+
type: "search",
|
|
2927
|
+
name: "search-select",
|
|
2928
|
+
variant: "underline",
|
|
2929
|
+
leftIcon: kt,
|
|
2930
|
+
value: i,
|
|
2931
|
+
onChange: c
|
|
2932
|
+
}
|
|
2933
|
+
),
|
|
2934
|
+
e
|
|
2935
|
+
]
|
|
2936
|
+
}
|
|
2937
|
+
) : /* @__PURE__ */ a(W, {});
|
|
2938
|
+
}
|
|
2939
|
+
function ar(n) {
|
|
2940
|
+
const { isFocused: e, handleBlur: t } = n;
|
|
2941
|
+
return e ? /* @__PURE__ */ a("aside", { className: "arkynMultiSelectOverlay", onClick: t }) : /* @__PURE__ */ a(W, {});
|
|
2942
|
+
}
|
|
2943
|
+
function rr(n) {
|
|
2944
|
+
const { iconSize: e, isLoading: t } = n;
|
|
2945
|
+
return t ? /* @__PURE__ */ a(
|
|
2946
|
+
ue,
|
|
2947
|
+
{
|
|
2948
|
+
className: "arkynMultiSelectSpinner",
|
|
2949
|
+
size: e,
|
|
2950
|
+
strokeWidth: 2.5
|
|
2951
|
+
}
|
|
2952
|
+
) : /* @__PURE__ */ a(W, {});
|
|
2953
|
+
}
|
|
2954
|
+
function yi(n) {
|
|
2955
|
+
const {
|
|
2956
|
+
name: e,
|
|
2957
|
+
options: t,
|
|
2958
|
+
className: r = "",
|
|
2959
|
+
placeholder: i = "Selecione...",
|
|
2960
|
+
closeOnSelect: o = !1,
|
|
2961
|
+
defaultValue: s = [],
|
|
2962
|
+
errorMessage: h,
|
|
2963
|
+
isLoading: l = !1,
|
|
2964
|
+
readOnly: c = !1,
|
|
2965
|
+
isSearchable: d = !1,
|
|
2966
|
+
id: u,
|
|
2967
|
+
label: f,
|
|
2968
|
+
optionMaxHeight: g,
|
|
2969
|
+
showAsterisk: y,
|
|
2970
|
+
leftIcon: m,
|
|
2971
|
+
onSearch: p,
|
|
2972
|
+
onChange: C,
|
|
2973
|
+
onBlur: v,
|
|
2974
|
+
notFoundText: k = "Sem opções disponíveis",
|
|
2975
|
+
onFocus: w,
|
|
2976
|
+
disabled: M = !1,
|
|
2977
|
+
prefix: T,
|
|
2978
|
+
size: D = "md",
|
|
2979
|
+
value: O,
|
|
2980
|
+
variant: R = "solid",
|
|
2981
|
+
unShowFieldTemplate: A = !1,
|
|
2982
|
+
orientation: x = "vertical"
|
|
2983
|
+
} = n, { fieldErrors: I } = te(), S = X(null), z = u || ce(), L = h || (I == null ? void 0 : I[e]), P = !!L, F = M || l || c, $ = { md: 20, lg: 20 }[D], [G, U] = N(""), [V, B] = N(!1), [H, j] = N(s), q = O || H;
|
|
2984
|
+
function ne(E) {
|
|
2985
|
+
return q.includes(E);
|
|
2986
|
+
}
|
|
2987
|
+
function fe(E) {
|
|
2988
|
+
const K = t.find((xe) => xe.value === E);
|
|
2989
|
+
return (K == null ? void 0 : K.label) || "";
|
|
2990
|
+
}
|
|
2991
|
+
function me() {
|
|
2992
|
+
F || !(S != null && S.current) || V || (B(!0), S.current.focus(), w && w());
|
|
2993
|
+
}
|
|
2994
|
+
function ae() {
|
|
2995
|
+
B(!1), v && S.current && S.current.blur();
|
|
2996
|
+
}
|
|
2997
|
+
function le(E) {
|
|
2998
|
+
U(E), p && p(E);
|
|
2999
|
+
}
|
|
3000
|
+
function _(E) {
|
|
3001
|
+
ne(E) ? (j(H.filter((K) => K !== E)), C && C(H.filter((K) => K !== E))) : (j([...H, E]), C && C([...H, E])), o && ae();
|
|
3002
|
+
}
|
|
3003
|
+
const Q = t.filter((E) => !!(n.onSearch || !n.isSearchable || E.label.toLowerCase().includes(G.toLowerCase())));
|
|
3004
|
+
return /* @__PURE__ */ a(
|
|
3005
|
+
he,
|
|
3006
|
+
{
|
|
3007
|
+
name: e,
|
|
3008
|
+
label: f,
|
|
3009
|
+
showAsterisk: y,
|
|
3010
|
+
className: r,
|
|
3011
|
+
errorMessage: L,
|
|
3012
|
+
unShowFieldTemplate: A,
|
|
3013
|
+
orientation: x,
|
|
3014
|
+
children: /* @__PURE__ */ b(
|
|
3015
|
+
Qa,
|
|
3016
|
+
{
|
|
3017
|
+
handleContainerFocus: me,
|
|
3018
|
+
disabled: F,
|
|
3019
|
+
isError: P,
|
|
3020
|
+
isFocused: V,
|
|
3021
|
+
isLoading: l,
|
|
3022
|
+
readOnly: c,
|
|
3023
|
+
size: D,
|
|
3024
|
+
variant: R,
|
|
3025
|
+
prefixExists: !!T,
|
|
3026
|
+
id: z,
|
|
3027
|
+
children: [
|
|
3028
|
+
/* @__PURE__ */ a(
|
|
3029
|
+
"input",
|
|
3030
|
+
{
|
|
3031
|
+
ref: S,
|
|
3032
|
+
name: e,
|
|
3033
|
+
value: JSON.stringify(q),
|
|
3034
|
+
type: "hidden"
|
|
3035
|
+
}
|
|
3036
|
+
),
|
|
3037
|
+
/* @__PURE__ */ a(Y, { iconSize: $, icon: T, className: "prefix" }),
|
|
3038
|
+
m && /* @__PURE__ */ a(m, { size: $, strokeWidth: 2.5 }),
|
|
3039
|
+
/* @__PURE__ */ b(Za, { size: D, children: [
|
|
3040
|
+
q.map((E) => /* @__PURE__ */ a(
|
|
3041
|
+
er,
|
|
3042
|
+
{
|
|
3043
|
+
label: fe(E),
|
|
3044
|
+
value: E,
|
|
3045
|
+
handleChangeValue: _,
|
|
3046
|
+
disabled: F
|
|
3047
|
+
},
|
|
3048
|
+
E
|
|
3049
|
+
)),
|
|
3050
|
+
q.length <= 0 && /* @__PURE__ */ a("p", { children: i })
|
|
3051
|
+
] }),
|
|
3052
|
+
/* @__PURE__ */ b(
|
|
3053
|
+
nr,
|
|
3054
|
+
{
|
|
3055
|
+
isFocused: V,
|
|
3056
|
+
isSearchable: d,
|
|
3057
|
+
search: G,
|
|
3058
|
+
onSearch: le,
|
|
3059
|
+
children: [
|
|
3060
|
+
Q.map(({ label: E, value: K }) => /* @__PURE__ */ a(
|
|
3061
|
+
tr,
|
|
3062
|
+
{
|
|
3063
|
+
label: E,
|
|
3064
|
+
value: K,
|
|
3065
|
+
size: D,
|
|
3066
|
+
handleChangeValue: _,
|
|
3067
|
+
optionHasSelected: ne
|
|
3068
|
+
},
|
|
3069
|
+
K
|
|
3070
|
+
)),
|
|
3071
|
+
Q.length <= 0 && /* @__PURE__ */ a("p", { children: k })
|
|
3072
|
+
]
|
|
3073
|
+
}
|
|
3074
|
+
),
|
|
3075
|
+
/* @__PURE__ */ a(
|
|
3076
|
+
Ja,
|
|
3077
|
+
{
|
|
3078
|
+
disabled: F,
|
|
3079
|
+
isFocused: V,
|
|
3080
|
+
readOnly: c,
|
|
3081
|
+
iconSize: $,
|
|
3082
|
+
isLoading: l
|
|
3083
|
+
}
|
|
3084
|
+
),
|
|
3085
|
+
/* @__PURE__ */ a(rr, { iconSize: $, isLoading: l }),
|
|
3086
|
+
/* @__PURE__ */ a(ar, { handleBlur: ae, isFocused: V })
|
|
3087
|
+
]
|
|
3088
|
+
}
|
|
3089
|
+
)
|
|
3090
|
+
}
|
|
3091
|
+
);
|
|
3092
|
+
}
|
|
3093
|
+
function mt(n) {
|
|
3094
|
+
const { orientation: e, handlePageChange: t, disabled: r } = n;
|
|
3095
|
+
return /* @__PURE__ */ a(
|
|
3096
|
+
"button",
|
|
3097
|
+
{
|
|
3098
|
+
className: "arkynChevronPageButton",
|
|
3099
|
+
disabled: r,
|
|
3100
|
+
onClick: t,
|
|
3101
|
+
children: { left: /* @__PURE__ */ a(Ve, {}), right: /* @__PURE__ */ a(Le, {}) }[e]
|
|
3102
|
+
}
|
|
3103
|
+
);
|
|
3104
|
+
}
|
|
3105
|
+
function ir({ currentPage: n }) {
|
|
3106
|
+
return /* @__PURE__ */ a("button", { className: "arkynPaginationCurrentButton", disabled: !0, children: n });
|
|
3107
|
+
}
|
|
3108
|
+
function Pe(n) {
|
|
3109
|
+
const { page: e, handlePageChange: t } = n;
|
|
3110
|
+
return /* @__PURE__ */ a("button", { className: "arkynPaginationPageButton", onClick: t, children: e });
|
|
3111
|
+
}
|
|
3112
|
+
class sr {
|
|
3113
|
+
constructor(e) {
|
|
3114
|
+
Z(this, "currentPage");
|
|
3115
|
+
Z(this, "totalCountRegisters");
|
|
3116
|
+
Z(this, "registerPerPage");
|
|
3117
|
+
Z(this, "siblingsCount");
|
|
3118
|
+
Z(this, "lastPage");
|
|
3119
|
+
Z(this, "onChange");
|
|
3120
|
+
Z(this, "previousPages");
|
|
3121
|
+
Z(this, "nextPages");
|
|
3122
|
+
Z(this, "handlePageChange", (e) => {
|
|
3123
|
+
e < 1 || e > this.lastPage || this.onChange && (this.currentPage = e, this.onChange(this.currentPage));
|
|
3124
|
+
});
|
|
3125
|
+
Z(this, "handlePlusChange", () => {
|
|
3126
|
+
this.currentPage >= this.lastPage || this.onChange && (this.currentPage += 1, this.onChange(this.currentPage));
|
|
3127
|
+
});
|
|
3128
|
+
Z(this, "handleMinusChange", () => {
|
|
3129
|
+
this.currentPage <= 1 || this.onChange && (this.currentPage -= 1, this.onChange(this.currentPage));
|
|
3130
|
+
});
|
|
3131
|
+
this.totalCountRegisters = e.totalCountRegisters, this.currentPage = e.currentPage, this.registerPerPage = (e == null ? void 0 : e.registerPerPage) || 20, this.siblingsCount = (e == null ? void 0 : e.siblingsCount) || 2, this.lastPage = Math.ceil(this.totalCountRegisters / this.registerPerPage), this.onChange = e == null ? void 0 : e.onChange, this.previousPages = this.generatePreviousPages(
|
|
3132
|
+
this.currentPage,
|
|
3133
|
+
this.siblingsCount
|
|
3134
|
+
), this.nextPages = this.generateNextPages(
|
|
3135
|
+
this.currentPage,
|
|
3136
|
+
this.siblingsCount
|
|
3137
|
+
);
|
|
3138
|
+
}
|
|
3139
|
+
generatePagesArray(e, t) {
|
|
3140
|
+
return [...new Array(t - e)].map((r, i) => e + i + 1).filter((r) => r > 0);
|
|
3141
|
+
}
|
|
3142
|
+
generatePreviousPages(e, t) {
|
|
3143
|
+
return e > 1 ? this.generatePagesArray(
|
|
3144
|
+
e - 1 - t,
|
|
3145
|
+
e - 1
|
|
3146
|
+
) : [];
|
|
3147
|
+
}
|
|
3148
|
+
generateNextPages(e, t) {
|
|
3149
|
+
return e < this.lastPage ? this.generatePagesArray(
|
|
3150
|
+
e,
|
|
3151
|
+
Math.min(e + t, this.lastPage)
|
|
3152
|
+
) : [];
|
|
3153
|
+
}
|
|
3154
|
+
}
|
|
3155
|
+
function gt() {
|
|
3156
|
+
return /* @__PURE__ */ a("p", { className: "arkynPaginationSpread", children: /* @__PURE__ */ a(fn, {}) });
|
|
3157
|
+
}
|
|
3158
|
+
function Ci(n) {
|
|
3159
|
+
const {
|
|
3160
|
+
totalCountRegisters: e,
|
|
3161
|
+
siblingsCount: t,
|
|
3162
|
+
currentPage: r,
|
|
3163
|
+
registerPerPage: i,
|
|
3164
|
+
onChange: o,
|
|
3165
|
+
...s
|
|
3166
|
+
} = n, {
|
|
3167
|
+
currentPage: h,
|
|
3168
|
+
siblingsCount: l,
|
|
3169
|
+
previousPages: c,
|
|
3170
|
+
nextPages: d,
|
|
3171
|
+
lastPage: u,
|
|
3172
|
+
handlePageChange: f,
|
|
3173
|
+
handleMinusChange: g,
|
|
3174
|
+
handlePlusChange: y
|
|
3175
|
+
} = new sr({
|
|
3176
|
+
totalCountRegisters: e,
|
|
3177
|
+
currentPage: r,
|
|
3178
|
+
registerPerPage: i,
|
|
3179
|
+
siblingsCount: t,
|
|
3180
|
+
onChange: o
|
|
3181
|
+
});
|
|
3182
|
+
return /* @__PURE__ */ b("div", { className: "arkynPagination", ...s, children: [
|
|
3183
|
+
/* @__PURE__ */ a(
|
|
3184
|
+
mt,
|
|
3185
|
+
{
|
|
3186
|
+
orientation: "left",
|
|
3187
|
+
handlePageChange: g,
|
|
3188
|
+
disabled: h <= 1
|
|
3189
|
+
}
|
|
3190
|
+
),
|
|
3191
|
+
h > 1 + l && /* @__PURE__ */ b(W, { children: [
|
|
3192
|
+
/* @__PURE__ */ a(Pe, { page: 1, handlePageChange: () => f(1) }),
|
|
3193
|
+
h > 2 + l && /* @__PURE__ */ a(gt, {})
|
|
3194
|
+
] }),
|
|
3195
|
+
c.map((m, p) => /* @__PURE__ */ a(
|
|
3196
|
+
Pe,
|
|
3197
|
+
{
|
|
3198
|
+
page: m,
|
|
3199
|
+
handlePageChange: g
|
|
3200
|
+
},
|
|
3201
|
+
p
|
|
3202
|
+
)),
|
|
3203
|
+
/* @__PURE__ */ a(ir, { currentPage: h }),
|
|
3204
|
+
d.map((m, p) => /* @__PURE__ */ a(
|
|
3205
|
+
Pe,
|
|
3206
|
+
{
|
|
3207
|
+
page: m,
|
|
3208
|
+
handlePageChange: y
|
|
3209
|
+
},
|
|
3210
|
+
p
|
|
3211
|
+
)),
|
|
3212
|
+
h + l < u && /* @__PURE__ */ b(W, { children: [
|
|
3213
|
+
h + 1 + l < u && /* @__PURE__ */ a(gt, {}),
|
|
3214
|
+
/* @__PURE__ */ a(
|
|
3215
|
+
Pe,
|
|
3216
|
+
{
|
|
3217
|
+
page: u,
|
|
3218
|
+
handlePageChange: () => f(u)
|
|
3219
|
+
}
|
|
3220
|
+
)
|
|
3221
|
+
] }),
|
|
3222
|
+
/* @__PURE__ */ a(
|
|
3223
|
+
mt,
|
|
3224
|
+
{
|
|
3225
|
+
orientation: "right",
|
|
3226
|
+
handlePageChange: y,
|
|
3227
|
+
disabled: h >= u
|
|
3228
|
+
}
|
|
3229
|
+
)
|
|
3230
|
+
] });
|
|
3231
|
+
}
|
|
3232
|
+
function or(n) {
|
|
3233
|
+
const {
|
|
3234
|
+
children: e,
|
|
3235
|
+
onFocus: t,
|
|
3236
|
+
disabled: r,
|
|
3237
|
+
isError: i,
|
|
3238
|
+
isLoading: o,
|
|
3239
|
+
isFocused: s,
|
|
3240
|
+
className: h = "",
|
|
3241
|
+
readOnly: l,
|
|
3242
|
+
variant: c,
|
|
3243
|
+
size: d
|
|
3244
|
+
} = n, y = `arkynPhoneInputContainer ${c} ${d} ${r || l || o ? "opacity" : ""} ${i ? "errored" : ""} ${s ? "focused" : ""} ${h}`;
|
|
3245
|
+
return /* @__PURE__ */ a("section", { className: y.trim(), onClick: t, children: e });
|
|
3246
|
+
}
|
|
3247
|
+
function cr(n) {
|
|
3248
|
+
const { isOpen: e, onClick: t } = n;
|
|
3249
|
+
return e ? /* @__PURE__ */ a("aside", { className: "arkynPhoneInputCountriesOverlay", onClick: t }) : /* @__PURE__ */ a(W, {});
|
|
3250
|
+
}
|
|
3251
|
+
function lr(n) {
|
|
3252
|
+
const { country: e, isActive: t, handleChangeValue: r, size: i } = n, s = `arkynPhoneInputCountryOption ${i} ${t ? "active" : ""}`;
|
|
3253
|
+
return /* @__PURE__ */ b("div", { onClick: () => r(e), className: s, children: [
|
|
3254
|
+
/* @__PURE__ */ a("img", { src: e.flag, alt: e.name, className: "flag" }),
|
|
3255
|
+
e.name,
|
|
3256
|
+
" ",
|
|
3257
|
+
/* @__PURE__ */ a("span", { children: e.code }),
|
|
3258
|
+
/* @__PURE__ */ a(Be, { className: "check" })
|
|
3259
|
+
] });
|
|
3260
|
+
}
|
|
3261
|
+
function ur(n) {
|
|
3262
|
+
const { children: e, isOpen: t, onSearch: r, search: i, placeholder: o } = n, s = X(null), [h, l] = N("bottom");
|
|
3263
|
+
function c(d) {
|
|
3264
|
+
r(d.target.value);
|
|
3265
|
+
}
|
|
3266
|
+
return Ce(t), ee(() => {
|
|
3267
|
+
if (!t) return;
|
|
3268
|
+
(() => {
|
|
3269
|
+
if (!s.current) return;
|
|
3270
|
+
const u = s.current.parentElement;
|
|
3271
|
+
if (!u) return;
|
|
3272
|
+
const f = u.getBoundingClientRect(), g = window.innerHeight, y = 300;
|
|
3273
|
+
g - f.bottom < y && f.top > y ? l("top") : l("bottom");
|
|
3274
|
+
})();
|
|
3275
|
+
}, [t]), t ? /* @__PURE__ */ b(
|
|
3276
|
+
"div",
|
|
3277
|
+
{
|
|
3278
|
+
className: `arkynPhoneInputCountryOptionsContainer ${h}`,
|
|
3279
|
+
ref: s,
|
|
3280
|
+
children: [
|
|
3281
|
+
/* @__PURE__ */ a(
|
|
3282
|
+
"input",
|
|
3283
|
+
{
|
|
3284
|
+
type: "search",
|
|
3285
|
+
name: "search-select",
|
|
3286
|
+
className: "arkynPhoneInputCountryOptionsContainerSearchSelect",
|
|
3287
|
+
value: i,
|
|
3288
|
+
id: "input-search",
|
|
3289
|
+
placeholder: o,
|
|
3290
|
+
onChange: c
|
|
3291
|
+
}
|
|
3292
|
+
),
|
|
3293
|
+
e
|
|
3294
|
+
]
|
|
3295
|
+
}
|
|
3296
|
+
) : /* @__PURE__ */ a(W, {});
|
|
3297
|
+
}
|
|
3298
|
+
function dr(n) {
|
|
3299
|
+
const { currentCountry: e, onClick: t } = n;
|
|
3300
|
+
return /* @__PURE__ */ b("div", { className: "phoneInputSelectCountry", onClick: t, children: [
|
|
3301
|
+
/* @__PURE__ */ a(
|
|
3302
|
+
"img",
|
|
3303
|
+
{
|
|
3304
|
+
className: "flag",
|
|
3305
|
+
src: e.flag,
|
|
3306
|
+
alt: e.name
|
|
3307
|
+
}
|
|
3308
|
+
),
|
|
3309
|
+
/* @__PURE__ */ a(Qe, { className: "chevronDown", strokeWidth: 2.5 }),
|
|
3310
|
+
/* @__PURE__ */ a(tt, { orientation: "vertical" })
|
|
3311
|
+
] });
|
|
3312
|
+
}
|
|
3313
|
+
function At(n) {
|
|
3314
|
+
return n && n.replace(/[^0-9]/g, "");
|
|
3315
|
+
}
|
|
3316
|
+
const Vt = {
|
|
3317
|
+
EIGHT: "(99) 9999-9999",
|
|
3318
|
+
NINE: "(99) 99999-9999"
|
|
3319
|
+
};
|
|
3320
|
+
function hr(n, e) {
|
|
3321
|
+
let t = "", r = 0;
|
|
3322
|
+
for (let i = 0; i < e.length; i++)
|
|
3323
|
+
if (e[i] === "9")
|
|
3324
|
+
if (r < n.length)
|
|
3325
|
+
t += n[r], r++;
|
|
3326
|
+
else
|
|
3327
|
+
break;
|
|
3328
|
+
else if (r < n.length)
|
|
3329
|
+
t += e[i];
|
|
3330
|
+
else
|
|
3331
|
+
break;
|
|
3332
|
+
return t;
|
|
3333
|
+
}
|
|
3334
|
+
function fr(n) {
|
|
3335
|
+
return n.length > 10 ? "NINE" : "EIGHT";
|
|
3336
|
+
}
|
|
3337
|
+
const mr = At(Vt.NINE).length, gr = Ke((n, e) => /* @__PURE__ */ a("input", { ref: e, ...n })), pr = Ke(
|
|
3338
|
+
(n, e) => {
|
|
3339
|
+
const {
|
|
3340
|
+
onFocus: t,
|
|
3341
|
+
readonly: r,
|
|
3342
|
+
onBlur: i,
|
|
3343
|
+
size: o,
|
|
3344
|
+
onChange: s,
|
|
3345
|
+
value: h,
|
|
3346
|
+
currentCountry: l,
|
|
3347
|
+
disabled: c,
|
|
3348
|
+
id: d
|
|
3349
|
+
} = n, [u, f] = N(!1), g = typeof l.mask == "string" ? l.mask : l.mask[0];
|
|
3350
|
+
ee(() => {
|
|
3351
|
+
u ? s(g) : f(!0);
|
|
3352
|
+
}, [l]);
|
|
3353
|
+
const y = `phoneInputMask ${o}`;
|
|
3354
|
+
function m(p) {
|
|
3355
|
+
let C = At(p.target.value);
|
|
3356
|
+
const v = fr(C);
|
|
3357
|
+
C.length > mr || (C = hr(C, Vt[v]), p.target.value = C, s(C));
|
|
3358
|
+
}
|
|
3359
|
+
return l.code === "+55" ? /* @__PURE__ */ a(
|
|
3360
|
+
"input",
|
|
3361
|
+
{
|
|
3362
|
+
id: d,
|
|
3363
|
+
value: h,
|
|
3364
|
+
onChange: m,
|
|
3365
|
+
className: y,
|
|
3366
|
+
onFocus: t,
|
|
3367
|
+
onBlur: i,
|
|
3368
|
+
disabled: c,
|
|
3369
|
+
ref: e
|
|
3370
|
+
}
|
|
3371
|
+
) : /* @__PURE__ */ a(
|
|
3372
|
+
vt,
|
|
3373
|
+
{
|
|
3374
|
+
id: d,
|
|
3375
|
+
value: h,
|
|
3376
|
+
readOnly: r,
|
|
3377
|
+
onChange: (p) => s(p.target.value),
|
|
3378
|
+
className: y,
|
|
3379
|
+
component: gr,
|
|
3380
|
+
onFocus: t,
|
|
3381
|
+
onBlur: i,
|
|
3382
|
+
disabled: c,
|
|
3383
|
+
mask: g,
|
|
3384
|
+
showMask: !0,
|
|
3385
|
+
replacement: { _: /\d/ },
|
|
3386
|
+
ref: e
|
|
3387
|
+
}
|
|
3388
|
+
);
|
|
3389
|
+
}
|
|
3390
|
+
);
|
|
3391
|
+
function bi(n) {
|
|
3392
|
+
const {
|
|
3393
|
+
defaultCountryIso: e,
|
|
3394
|
+
value: t,
|
|
3395
|
+
label: r,
|
|
3396
|
+
className: i = "",
|
|
3397
|
+
disabled: o = !1,
|
|
3398
|
+
errorMessage: s,
|
|
3399
|
+
isLoading: h = !1,
|
|
3400
|
+
readOnly: l = !1,
|
|
3401
|
+
size: c = "md",
|
|
3402
|
+
defaultValue: d = "",
|
|
3403
|
+
variant: u = "solid",
|
|
3404
|
+
showAsterisk: f,
|
|
3405
|
+
name: g,
|
|
3406
|
+
onChange: y,
|
|
3407
|
+
searchCountryPlaceholder: m = "Pesquisar país",
|
|
3408
|
+
notFoundCountryText: p = "Nenhum país encontrado",
|
|
3409
|
+
id: C,
|
|
3410
|
+
unShowFieldTemplate: v = !1,
|
|
3411
|
+
orientation: k = "vertical"
|
|
3412
|
+
} = n, w = We.find((_) => _.iso === "BR"), M = d ? Sn(d) : "", T = d ? xn(d)[1] : w, [D, O] = N(!1), [R, A] = N(""), [x, I] = N(!1), [S, z] = N(M), L = t !== void 0 ? t : S, [P, F] = N(T), { fieldErrors: J } = te(), $ = X(null), G = C || ce(), U = s || (J == null ? void 0 : J[g]), V = !!U, B = o || h, H = X(null);
|
|
3413
|
+
function j() {
|
|
3414
|
+
B || D || x || (O(!0), H.current && H.current.focus());
|
|
3415
|
+
}
|
|
3416
|
+
function q() {
|
|
3417
|
+
I(!0), O(!0);
|
|
3418
|
+
}
|
|
3419
|
+
function ne() {
|
|
3420
|
+
I(!1), O(!1);
|
|
3421
|
+
}
|
|
3422
|
+
function fe() {
|
|
3423
|
+
O(!0);
|
|
3424
|
+
}
|
|
3425
|
+
function me() {
|
|
3426
|
+
O(!1);
|
|
3427
|
+
}
|
|
3428
|
+
function ae(_) {
|
|
3429
|
+
return _.name.toLowerCase().includes(R.toLowerCase());
|
|
3430
|
+
}
|
|
3431
|
+
function le(_) {
|
|
3432
|
+
let Q = P.code;
|
|
3433
|
+
return Q += Ye(_ || L), Q;
|
|
3434
|
+
}
|
|
3435
|
+
return /* @__PURE__ */ a(
|
|
3436
|
+
he,
|
|
3437
|
+
{
|
|
3438
|
+
name: g,
|
|
3439
|
+
label: r,
|
|
3440
|
+
showAsterisk: f,
|
|
3441
|
+
className: i,
|
|
3442
|
+
errorMessage: U,
|
|
3443
|
+
unShowFieldTemplate: v,
|
|
3444
|
+
orientation: k,
|
|
3445
|
+
children: /* @__PURE__ */ b(
|
|
3446
|
+
or,
|
|
3447
|
+
{
|
|
3448
|
+
disabled: B,
|
|
3449
|
+
isError: V,
|
|
3450
|
+
isLoading: h,
|
|
3451
|
+
isFocused: D,
|
|
3452
|
+
readOnly: l,
|
|
3453
|
+
size: c,
|
|
3454
|
+
variant: u,
|
|
3455
|
+
onFocus: j,
|
|
3456
|
+
children: [
|
|
3457
|
+
/* @__PURE__ */ a(
|
|
3458
|
+
dr,
|
|
3459
|
+
{
|
|
3460
|
+
currentCountry: P,
|
|
3461
|
+
onClick: q,
|
|
3462
|
+
size: c
|
|
3463
|
+
}
|
|
3464
|
+
),
|
|
3465
|
+
/* @__PURE__ */ b(
|
|
3466
|
+
ur,
|
|
3467
|
+
{
|
|
3468
|
+
isOpen: B || l ? !1 : x,
|
|
3469
|
+
search: R,
|
|
3470
|
+
placeholder: m,
|
|
3471
|
+
onSearch: A,
|
|
3472
|
+
children: [
|
|
3473
|
+
We.filter((_) => ae(_)).map((_) => /* @__PURE__ */ a(
|
|
3474
|
+
lr,
|
|
3475
|
+
{
|
|
3476
|
+
country: _,
|
|
3477
|
+
handleChangeValue: () => {
|
|
3478
|
+
F(_), I(!1), z("");
|
|
3479
|
+
},
|
|
3480
|
+
isActive: _.iso === P.iso,
|
|
3481
|
+
size: c
|
|
3482
|
+
},
|
|
3483
|
+
_.iso
|
|
3484
|
+
)),
|
|
3485
|
+
We.filter((_) => ae(_)).length === 0 && /* @__PURE__ */ a("p", { children: p })
|
|
3486
|
+
]
|
|
3487
|
+
}
|
|
3488
|
+
),
|
|
3489
|
+
/* @__PURE__ */ a(
|
|
3490
|
+
cr,
|
|
3491
|
+
{
|
|
3492
|
+
isOpen: B || l ? !1 : x,
|
|
3493
|
+
onClick: ne
|
|
3494
|
+
}
|
|
3495
|
+
),
|
|
3496
|
+
/* @__PURE__ */ a(
|
|
3497
|
+
pr,
|
|
3498
|
+
{
|
|
3499
|
+
id: G,
|
|
3500
|
+
ref: H,
|
|
3501
|
+
readonly: l,
|
|
3502
|
+
currentCountry: P,
|
|
3503
|
+
value: L,
|
|
3504
|
+
disabled: B,
|
|
3505
|
+
onBlur: me,
|
|
3506
|
+
onFocus: fe,
|
|
3507
|
+
size: c,
|
|
3508
|
+
onChange: (_) => {
|
|
3509
|
+
z(_), y && y(le(_));
|
|
3510
|
+
}
|
|
3511
|
+
}
|
|
3512
|
+
),
|
|
3513
|
+
/* @__PURE__ */ a(
|
|
3514
|
+
"input",
|
|
3515
|
+
{
|
|
3516
|
+
ref: $,
|
|
3517
|
+
type: "hidden",
|
|
3518
|
+
name: g,
|
|
3519
|
+
value: le()
|
|
3520
|
+
}
|
|
3521
|
+
)
|
|
3522
|
+
]
|
|
3523
|
+
}
|
|
3524
|
+
)
|
|
3525
|
+
}
|
|
3526
|
+
);
|
|
3527
|
+
}
|
|
3528
|
+
function ki(n) {
|
|
3529
|
+
const {
|
|
3530
|
+
children: e,
|
|
3531
|
+
button: t,
|
|
3532
|
+
closeOnClick: r,
|
|
3533
|
+
className: i = "",
|
|
3534
|
+
orientation: o = "bottomLeft"
|
|
3535
|
+
} = n, [s, h] = N(!1), c = `arkynPopover ${o} ${s ? "visibleTrue" : "visibleFalse"} ${i}`;
|
|
3536
|
+
function d() {
|
|
3537
|
+
s || h(!0);
|
|
3538
|
+
}
|
|
3539
|
+
return Ce(s), /* @__PURE__ */ b("div", { className: c, onClick: d, children: [
|
|
3540
|
+
t,
|
|
3541
|
+
/* @__PURE__ */ a(
|
|
3542
|
+
we.div,
|
|
3543
|
+
{
|
|
3544
|
+
style: { visibility: s ? "visible" : "hidden" },
|
|
3545
|
+
transition: { ease: "easeOut", duration: 0 },
|
|
3546
|
+
initial: { opacity: 0 },
|
|
3547
|
+
animate: { opacity: s ? 1 : 0 },
|
|
3548
|
+
exit: { opacity: 0 },
|
|
3549
|
+
onClick: () => r && h(!1),
|
|
3550
|
+
className: "arkynPopoverContent",
|
|
3551
|
+
children: e
|
|
3552
|
+
}
|
|
3553
|
+
),
|
|
3554
|
+
s && /* @__PURE__ */ a("div", { onClick: () => h(!1), className: "arkynPopoverOverlay" })
|
|
3555
|
+
] });
|
|
3556
|
+
}
|
|
3557
|
+
const Lt = ie({});
|
|
3558
|
+
function yr(n) {
|
|
3559
|
+
const { children: e, size: t, isError: r, handleChange: i, value: o, disabled: s } = n;
|
|
3560
|
+
return /* @__PURE__ */ a(
|
|
3561
|
+
Lt.Provider,
|
|
3562
|
+
{
|
|
3563
|
+
value: { handleChange: i, value: o, size: t, isError: r, disabled: s },
|
|
3564
|
+
children: e
|
|
3565
|
+
}
|
|
3566
|
+
);
|
|
3567
|
+
}
|
|
3568
|
+
function Cr() {
|
|
3569
|
+
return se(Lt);
|
|
3570
|
+
}
|
|
3571
|
+
function wi(n) {
|
|
3572
|
+
const {
|
|
3573
|
+
value: e,
|
|
3574
|
+
size: t,
|
|
3575
|
+
disabled: r,
|
|
3576
|
+
children: i,
|
|
3577
|
+
className: o = "",
|
|
3578
|
+
onClick: s,
|
|
3579
|
+
onFocus: h,
|
|
3580
|
+
...l
|
|
3581
|
+
} = n, {
|
|
3582
|
+
handleChange: c,
|
|
3583
|
+
size: d,
|
|
3584
|
+
value: u,
|
|
3585
|
+
isError: f,
|
|
3586
|
+
disabled: g
|
|
3587
|
+
} = Cr(), y = u === e, m = t || d, p = r || g, w = `arkynRadioBox ${m} ${y ? "checkedTrue" : "checkedFalse"} ${f ? "errorTrue" : "errorFalse"} ${p ? "disabledTrue" : "disabledFalse"} ${o}`;
|
|
3588
|
+
function M(D) {
|
|
3589
|
+
s && s(D), c(e);
|
|
3590
|
+
}
|
|
3591
|
+
function T(D) {
|
|
3592
|
+
h && h(D), c(e);
|
|
3593
|
+
}
|
|
3594
|
+
return /* @__PURE__ */ b("label", { className: w.trim(), children: [
|
|
3595
|
+
/* @__PURE__ */ a(
|
|
3596
|
+
"button",
|
|
3597
|
+
{
|
|
3598
|
+
type: "button",
|
|
3599
|
+
disabled: p,
|
|
3600
|
+
onClick: M,
|
|
3601
|
+
onFocus: T,
|
|
3602
|
+
...l
|
|
3603
|
+
}
|
|
3604
|
+
),
|
|
3605
|
+
i
|
|
3606
|
+
] });
|
|
3607
|
+
}
|
|
3608
|
+
function vi(n) {
|
|
3609
|
+
const {
|
|
3610
|
+
defaultValue: e = "",
|
|
3611
|
+
name: t,
|
|
3612
|
+
label: r,
|
|
3613
|
+
showAsterisk: i,
|
|
3614
|
+
errorMessage: o,
|
|
3615
|
+
value: s,
|
|
3616
|
+
onChange: h,
|
|
3617
|
+
size: l = "md",
|
|
3618
|
+
className: c = "",
|
|
3619
|
+
disabled: d = !1,
|
|
3620
|
+
unShowFieldTemplate: u = !1,
|
|
3621
|
+
orientation: f = "vertical",
|
|
3622
|
+
...g
|
|
3623
|
+
} = n, [y, m] = N(e), { fieldErrors: p } = te();
|
|
3624
|
+
function C(M) {
|
|
3625
|
+
m(M), h && h(M);
|
|
3626
|
+
}
|
|
3627
|
+
const v = o || (p == null ? void 0 : p[t]), k = !!v, w = `arkynRadioGroup ${l}`;
|
|
3628
|
+
return /* @__PURE__ */ a(
|
|
3629
|
+
he,
|
|
3630
|
+
{
|
|
3631
|
+
name: t,
|
|
3632
|
+
label: r,
|
|
3633
|
+
showAsterisk: i,
|
|
3634
|
+
className: c,
|
|
3635
|
+
errorMessage: v,
|
|
3636
|
+
unShowFieldTemplate: u,
|
|
3637
|
+
orientation: f,
|
|
3638
|
+
children: /* @__PURE__ */ b(
|
|
3639
|
+
yr,
|
|
3640
|
+
{
|
|
3641
|
+
isError: k,
|
|
3642
|
+
size: l,
|
|
3643
|
+
value: s || y,
|
|
3644
|
+
handleChange: C,
|
|
3645
|
+
disabled: d,
|
|
3646
|
+
children: [
|
|
3647
|
+
/* @__PURE__ */ a(
|
|
3648
|
+
"input",
|
|
3649
|
+
{
|
|
3650
|
+
style: { display: "none" },
|
|
3651
|
+
type: "text",
|
|
3652
|
+
readOnly: !0,
|
|
3653
|
+
name: t,
|
|
3654
|
+
value: s || y
|
|
3655
|
+
}
|
|
3656
|
+
),
|
|
3657
|
+
/* @__PURE__ */ a("div", { className: w.trim(), ...g })
|
|
3658
|
+
]
|
|
3659
|
+
}
|
|
3660
|
+
)
|
|
3661
|
+
}
|
|
3662
|
+
);
|
|
3663
|
+
}
|
|
3664
|
+
function Bt(n, e, t = "type") {
|
|
3665
|
+
const { selection: r } = n;
|
|
3666
|
+
if (!r) return !1;
|
|
3667
|
+
const [i] = Array.from(
|
|
3668
|
+
pe.nodes(n, {
|
|
3669
|
+
at: pe.unhangRange(n, r),
|
|
3670
|
+
match: (o) => !pe.isEditor(o) && et.isElement(o) && o[t] === e
|
|
3671
|
+
})
|
|
3672
|
+
);
|
|
3673
|
+
return !!i;
|
|
3674
|
+
}
|
|
3675
|
+
const pt = {
|
|
3676
|
+
"mod+b": "bold",
|
|
3677
|
+
"mod+i": "italic",
|
|
3678
|
+
"mod+u": "underline",
|
|
3679
|
+
"mod+`": "code"
|
|
3680
|
+
}, Fe = [
|
|
3681
|
+
{ type: "paragraph", children: [{ text: "" }] }
|
|
3682
|
+
], yt = ["listItem", "numberedList"], Ae = ["left", "center", "right", "justify"];
|
|
3683
|
+
function br(n, e) {
|
|
3684
|
+
const t = Ae.includes(e) ? "align" : "type", r = Bt(n, e, t), i = yt.includes(e);
|
|
3685
|
+
Oe.unwrapNodes(n, {
|
|
3686
|
+
match: (s) => !pe.isEditor(s) && et.isElement(s) && yt.includes(s.type) && !Ae.includes(e),
|
|
3687
|
+
split: !0
|
|
3688
|
+
});
|
|
3689
|
+
let o;
|
|
3690
|
+
if (Ae.includes(e) ? o = { align: r ? void 0 : e } : o = {
|
|
3691
|
+
type: r ? "paragraph" : i ? "listItem" : e
|
|
3692
|
+
}, Oe.setNodes(n, o), !r && i) {
|
|
3693
|
+
const s = { type: e, children: [] };
|
|
3694
|
+
Oe.wrapNodes(n, s);
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
function ge({ format: n, icon: e }) {
|
|
3698
|
+
const t = ze(), r = Ae.includes(n) ? "align" : "type", o = Bt(t, n, r) ? "activeTrue" : "activeFalse";
|
|
3699
|
+
function s(h) {
|
|
3700
|
+
h.preventDefault(), br(t, n);
|
|
3701
|
+
}
|
|
3702
|
+
return /* @__PURE__ */ a(
|
|
3703
|
+
"button",
|
|
3704
|
+
{
|
|
3705
|
+
type: "button",
|
|
3706
|
+
className: "arkynRichTextBlockButton " + o,
|
|
3707
|
+
onMouseDown: s,
|
|
3708
|
+
children: /* @__PURE__ */ a(e, {})
|
|
3709
|
+
}
|
|
3710
|
+
);
|
|
3711
|
+
}
|
|
3712
|
+
function kr({ attributes: n, children: e, element: t }) {
|
|
3713
|
+
const r = { textAlign: t.align };
|
|
3714
|
+
switch (t.type) {
|
|
3715
|
+
case "blockQuote":
|
|
3716
|
+
return /* @__PURE__ */ a(
|
|
3717
|
+
"blockquote",
|
|
3718
|
+
{
|
|
3719
|
+
className: "arkynElementBlockquote",
|
|
3720
|
+
style: r,
|
|
3721
|
+
...n,
|
|
3722
|
+
children: e
|
|
3723
|
+
}
|
|
3724
|
+
);
|
|
3725
|
+
case "bulletedList":
|
|
3726
|
+
return /* @__PURE__ */ a("ul", { className: "arkynElementBulletList", style: r, ...n, children: e });
|
|
3727
|
+
case "headingOne":
|
|
3728
|
+
return /* @__PURE__ */ a("h1", { className: "arkynElementHeadingOne", style: r, ...n, children: e });
|
|
3729
|
+
case "headingTwo":
|
|
3730
|
+
return /* @__PURE__ */ a("h2", { className: "arkynElementHeadingTwo", style: r, ...n, children: e });
|
|
3731
|
+
case "listItem":
|
|
3732
|
+
return /* @__PURE__ */ a("li", { className: "arkynElementListItem", style: r, ...n, children: e });
|
|
3733
|
+
case "numberedList":
|
|
3734
|
+
return /* @__PURE__ */ a("ol", { className: "arkynElementNumberedList", style: r, ...n, children: e });
|
|
3735
|
+
case "image":
|
|
3736
|
+
return /* @__PURE__ */ b("div", { style: r, ...n, children: [
|
|
3737
|
+
/* @__PURE__ */ a(
|
|
3738
|
+
"img",
|
|
3739
|
+
{
|
|
3740
|
+
className: "arkynElementImage",
|
|
3741
|
+
alt: "arkynElementImage",
|
|
3742
|
+
src: (t == null ? void 0 : t.src) || ""
|
|
3743
|
+
}
|
|
3744
|
+
),
|
|
3745
|
+
e
|
|
3746
|
+
] });
|
|
3747
|
+
case "video":
|
|
3748
|
+
return /* @__PURE__ */ b("div", { style: r, ...n, children: [
|
|
3749
|
+
/* @__PURE__ */ a(
|
|
3750
|
+
"iframe",
|
|
3751
|
+
{
|
|
3752
|
+
className: "arkynElementVideo",
|
|
3753
|
+
src: (t == null ? void 0 : t.src) || "",
|
|
3754
|
+
title: "YouTube video player",
|
|
3755
|
+
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
|
3756
|
+
referrerPolicy: "strict-origin-when-cross-origin",
|
|
3757
|
+
allowFullScreen: !0
|
|
3758
|
+
}
|
|
3759
|
+
),
|
|
3760
|
+
e
|
|
3761
|
+
] });
|
|
3762
|
+
default:
|
|
3763
|
+
return /* @__PURE__ */ a("p", { className: "arkynElementParagraph", style: r, ...n, children: e });
|
|
3764
|
+
}
|
|
3765
|
+
}
|
|
3766
|
+
const zt = ie({});
|
|
3767
|
+
function wr() {
|
|
3768
|
+
return se(zt);
|
|
3769
|
+
}
|
|
3770
|
+
function vr(n) {
|
|
3771
|
+
return /* @__PURE__ */ a(zt.Provider, { value: n, children: n.children });
|
|
3772
|
+
}
|
|
3773
|
+
function Ct(n) {
|
|
3774
|
+
const {
|
|
3775
|
+
children: e,
|
|
3776
|
+
disabled: t = !1,
|
|
3777
|
+
className: r = "",
|
|
3778
|
+
onClick: i,
|
|
3779
|
+
value: o,
|
|
3780
|
+
...s
|
|
3781
|
+
} = n, { disabled: h, currentTab: l, changeCurrentTab: c } = wr(), d = h || t, g = `arkynTabButton ${d ? "isDisabled" : ""} ${l === o && o ? "isActive" : ""} ${r}`;
|
|
3782
|
+
function y(m) {
|
|
3783
|
+
c(o), i && i(m);
|
|
3784
|
+
}
|
|
3785
|
+
return /* @__PURE__ */ a(
|
|
3786
|
+
"button",
|
|
3787
|
+
{
|
|
3788
|
+
onClick: y,
|
|
3789
|
+
className: g.trim(),
|
|
3790
|
+
...s,
|
|
3791
|
+
disabled: d,
|
|
3792
|
+
type: "button",
|
|
3793
|
+
children: e
|
|
3794
|
+
}
|
|
3795
|
+
);
|
|
3796
|
+
}
|
|
3797
|
+
function Nr(n) {
|
|
3798
|
+
const {
|
|
3799
|
+
children: e,
|
|
3800
|
+
onChange: t,
|
|
3801
|
+
defaultValue: r,
|
|
3802
|
+
disabled: i = !1,
|
|
3803
|
+
className: o,
|
|
3804
|
+
...s
|
|
3805
|
+
} = n, [h, l] = N(r || ""), c = `arkynTabContainer ${o || ""}`;
|
|
3806
|
+
function d(u) {
|
|
3807
|
+
l(u), t && t(u);
|
|
3808
|
+
}
|
|
3809
|
+
return /* @__PURE__ */ a(
|
|
3810
|
+
vr,
|
|
3811
|
+
{
|
|
3812
|
+
disabled: i,
|
|
3813
|
+
currentTab: h,
|
|
3814
|
+
changeCurrentTab: d,
|
|
3815
|
+
children: /* @__PURE__ */ a("nav", { className: c.trim(), ...s, children: e })
|
|
3816
|
+
}
|
|
3817
|
+
);
|
|
3818
|
+
}
|
|
3819
|
+
function Mr(n) {
|
|
3820
|
+
const {
|
|
3821
|
+
action: e,
|
|
3822
|
+
tabLabels: t = ["Adicionar URL", "Upload de arquivo"],
|
|
3823
|
+
modalCancelButton: r = "Cancelar",
|
|
3824
|
+
modalConfirmButton: i = "Confirmar",
|
|
3825
|
+
modalInputImageLabel: o = "Imagem:",
|
|
3826
|
+
modalInputUrlLabel: s = "URL da imagem:",
|
|
3827
|
+
modalTitle: h = "Inserir imagem"
|
|
3828
|
+
} = n, l = ze(), [c, d] = N(!1), [u, f] = N(""), [g, y] = N("url");
|
|
3829
|
+
function m(p) {
|
|
3830
|
+
p.preventDefault(), !(!u || u === "") && (l.insertNodes([
|
|
3831
|
+
{ type: "paragraph", children: [{ text: "" }] },
|
|
3832
|
+
{ type: "image", src: u, children: [{ text: "" }] },
|
|
3833
|
+
{ type: "paragraph", children: [{ text: "" }] }
|
|
3834
|
+
]), d(!1));
|
|
3835
|
+
}
|
|
3836
|
+
return /* @__PURE__ */ b(W, { children: [
|
|
3837
|
+
/* @__PURE__ */ a(
|
|
3838
|
+
"button",
|
|
3839
|
+
{
|
|
3840
|
+
type: "button",
|
|
3841
|
+
className: "arkynRichTextInsertImage",
|
|
3842
|
+
onMouseDown: () => d(!0),
|
|
3843
|
+
children: /* @__PURE__ */ a(mn, {})
|
|
3844
|
+
}
|
|
3845
|
+
),
|
|
3846
|
+
/* @__PURE__ */ b(
|
|
3847
|
+
Ft,
|
|
3848
|
+
{
|
|
3849
|
+
isVisible: c,
|
|
3850
|
+
makeInvisible: () => d(!1),
|
|
3851
|
+
children: [
|
|
3852
|
+
/* @__PURE__ */ a(Ot, { children: h }),
|
|
3853
|
+
/* @__PURE__ */ b("div", { className: "arkynRichTextInsertImageModalContent", children: [
|
|
3854
|
+
/* @__PURE__ */ b(Nr, { defaultValue: g, onChange: y, children: [
|
|
3855
|
+
/* @__PURE__ */ a(Ct, { value: "url", children: t[0] }),
|
|
3856
|
+
/* @__PURE__ */ a(Ct, { value: "file", children: t[1] })
|
|
3857
|
+
] }),
|
|
3858
|
+
g === "url" && /* @__PURE__ */ b(W, { children: [
|
|
3859
|
+
/* @__PURE__ */ a(
|
|
3860
|
+
Se,
|
|
3861
|
+
{
|
|
3862
|
+
type: "text",
|
|
3863
|
+
name: "richTextImageURL",
|
|
3864
|
+
label: s,
|
|
3865
|
+
showAsterisk: !0,
|
|
3866
|
+
defaultValue: u,
|
|
3867
|
+
onChange: (p) => f(p.target.value)
|
|
3868
|
+
}
|
|
3869
|
+
),
|
|
3870
|
+
u && /* @__PURE__ */ a(
|
|
3871
|
+
"img",
|
|
3872
|
+
{
|
|
3873
|
+
className: "arkynRichTextInsertImageModalPreviewImage",
|
|
3874
|
+
src: u,
|
|
3875
|
+
alt: "preview"
|
|
3876
|
+
}
|
|
3877
|
+
)
|
|
3878
|
+
] }),
|
|
3879
|
+
g === "file" && /* @__PURE__ */ a(
|
|
3880
|
+
Ya,
|
|
3881
|
+
{
|
|
3882
|
+
name: "richTextImageURL",
|
|
3883
|
+
action: e,
|
|
3884
|
+
label: o,
|
|
3885
|
+
showAsterisk: !0,
|
|
3886
|
+
defaultValue: u,
|
|
3887
|
+
onChange: (p) => f(p)
|
|
3888
|
+
}
|
|
3889
|
+
)
|
|
3890
|
+
] }),
|
|
3891
|
+
/* @__PURE__ */ b(Et, { children: [
|
|
3892
|
+
/* @__PURE__ */ a(
|
|
3893
|
+
de,
|
|
3894
|
+
{
|
|
3895
|
+
type: "button",
|
|
3896
|
+
scheme: "danger",
|
|
3897
|
+
variant: "outline",
|
|
3898
|
+
onClick: () => d(!1),
|
|
3899
|
+
children: r
|
|
3900
|
+
}
|
|
3901
|
+
),
|
|
3902
|
+
/* @__PURE__ */ a(de, { type: "button", onClick: m, children: i })
|
|
3903
|
+
] })
|
|
3904
|
+
]
|
|
3905
|
+
}
|
|
3906
|
+
)
|
|
3907
|
+
] });
|
|
3908
|
+
}
|
|
3909
|
+
function Tr(n) {
|
|
3910
|
+
const {
|
|
3911
|
+
modalCancelButton: e = "Cancelar",
|
|
3912
|
+
modalConfirmButton: t = "Confirmar",
|
|
3913
|
+
modalInputUrlLabel: r = "URL do vídeo:",
|
|
3914
|
+
modalTitle: i = "Inserir vídeo",
|
|
3915
|
+
invalidUrlMessage: o = "URL inválida"
|
|
3916
|
+
} = n, s = ze(), [h, l] = N(!1), [c, d] = N(""), [u, f] = N(""), [g, y] = N("");
|
|
3917
|
+
function m(p) {
|
|
3918
|
+
if (p.preventDefault(), !c || c === "") return;
|
|
3919
|
+
const C = `https://www.youtube.com/embed/${c}`;
|
|
3920
|
+
s.insertNodes([
|
|
3921
|
+
{ type: "paragraph", children: [{ text: "" }] },
|
|
3922
|
+
{ type: "video", src: C, children: [{ text: "" }] },
|
|
3923
|
+
{ type: "paragraph", children: [{ text: "" }] }
|
|
3924
|
+
]), l(!1);
|
|
3925
|
+
}
|
|
3926
|
+
return ee(() => {
|
|
3927
|
+
if (!u || u === "") return;
|
|
3928
|
+
d(""), y("");
|
|
3929
|
+
const C = new URLSearchParams(u.split("?")[1]).get("v");
|
|
3930
|
+
C ? d(C) : y(o);
|
|
3931
|
+
}, [u]), ee(() => {
|
|
3932
|
+
h || (d(""), f(""), y(""));
|
|
3933
|
+
}, [h]), /* @__PURE__ */ b(W, { children: [
|
|
3934
|
+
/* @__PURE__ */ a(
|
|
3935
|
+
"button",
|
|
3936
|
+
{
|
|
3937
|
+
type: "button",
|
|
3938
|
+
className: "arkynRichTextInsertVideo",
|
|
3939
|
+
onMouseDown: () => l(!0),
|
|
3940
|
+
children: /* @__PURE__ */ a(gn, {})
|
|
3941
|
+
}
|
|
3942
|
+
),
|
|
3943
|
+
/* @__PURE__ */ b(
|
|
3944
|
+
Ft,
|
|
3945
|
+
{
|
|
3946
|
+
isVisible: h,
|
|
3947
|
+
makeInvisible: () => l(!1),
|
|
3948
|
+
children: [
|
|
3949
|
+
/* @__PURE__ */ a(Ot, { children: i }),
|
|
3950
|
+
/* @__PURE__ */ b("div", { className: "arkynRichTextInsertVideoModalContent", children: [
|
|
3951
|
+
/* @__PURE__ */ a(
|
|
3952
|
+
Se,
|
|
3953
|
+
{
|
|
3954
|
+
type: "text",
|
|
3955
|
+
name: "richTextVideoURL",
|
|
3956
|
+
label: r,
|
|
3957
|
+
showAsterisk: !0,
|
|
3958
|
+
defaultValue: u,
|
|
3959
|
+
onChange: (p) => f(p.target.value),
|
|
3960
|
+
errorMessage: g
|
|
3961
|
+
}
|
|
3962
|
+
),
|
|
3963
|
+
c && /* @__PURE__ */ a(
|
|
3964
|
+
"iframe",
|
|
3965
|
+
{
|
|
3966
|
+
width: "auto",
|
|
3967
|
+
height: "315",
|
|
3968
|
+
src: `https://www.youtube.com/embed/${c}`,
|
|
3969
|
+
title: "YouTube video player",
|
|
3970
|
+
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
|
3971
|
+
referrerPolicy: "strict-origin-when-cross-origin",
|
|
3972
|
+
allowFullScreen: !0
|
|
3973
|
+
}
|
|
3974
|
+
)
|
|
3975
|
+
] }),
|
|
3976
|
+
/* @__PURE__ */ b(Et, { children: [
|
|
3977
|
+
/* @__PURE__ */ a(
|
|
3978
|
+
de,
|
|
3979
|
+
{
|
|
3980
|
+
type: "button",
|
|
3981
|
+
scheme: "danger",
|
|
3982
|
+
variant: "outline",
|
|
3983
|
+
onClick: () => l(!1),
|
|
3984
|
+
children: e
|
|
3985
|
+
}
|
|
3986
|
+
),
|
|
3987
|
+
/* @__PURE__ */ a(de, { disabled: !c, type: "button", onClick: m, children: t })
|
|
3988
|
+
] })
|
|
3989
|
+
]
|
|
3990
|
+
}
|
|
3991
|
+
)
|
|
3992
|
+
] });
|
|
3993
|
+
}
|
|
3994
|
+
function Dr({ attributes: n, children: e, leaf: t }) {
|
|
3995
|
+
return t.bold && (e = /* @__PURE__ */ a("strong", { children: e })), t.code && (e = /* @__PURE__ */ a("code", { children: e })), t.italic && (e = /* @__PURE__ */ a("em", { children: e })), t.underline && (e = /* @__PURE__ */ a("u", { children: e })), /* @__PURE__ */ a("span", { ...n, children: e });
|
|
3996
|
+
}
|
|
3997
|
+
function Ht(n, e) {
|
|
3998
|
+
const t = pe.marks(n);
|
|
3999
|
+
return t ? t[e] === !0 : !1;
|
|
4000
|
+
}
|
|
4001
|
+
function Rt(n, e) {
|
|
4002
|
+
Ht(n, e) ? pe.removeMark(n, e) : pe.addMark(n, e, !0);
|
|
4003
|
+
}
|
|
4004
|
+
function Ee({ format: n, icon: e }) {
|
|
4005
|
+
const t = ze(), i = Ht(t, n) ? "activeTrue" : "activeFalse";
|
|
4006
|
+
function o(s) {
|
|
4007
|
+
s.preventDefault(), Rt(t, n);
|
|
4008
|
+
}
|
|
4009
|
+
return /* @__PURE__ */ a(
|
|
4010
|
+
"button",
|
|
4011
|
+
{
|
|
4012
|
+
type: "button",
|
|
4013
|
+
className: "arkynRichTextMarkButton " + i,
|
|
4014
|
+
onMouseDown: o,
|
|
4015
|
+
children: /* @__PURE__ */ a(e, {})
|
|
4016
|
+
}
|
|
4017
|
+
);
|
|
4018
|
+
}
|
|
4019
|
+
function Sr({ children: n }) {
|
|
4020
|
+
return /* @__PURE__ */ a("div", { className: "arkynRichTextToolbar", children: n });
|
|
4021
|
+
}
|
|
4022
|
+
function bt(n) {
|
|
4023
|
+
return n.map((e) => Pn.string(e)).join("");
|
|
4024
|
+
}
|
|
4025
|
+
function Ni(n) {
|
|
4026
|
+
const {
|
|
4027
|
+
name: e,
|
|
4028
|
+
hiddenButtons: t,
|
|
4029
|
+
imageConfig: r,
|
|
4030
|
+
videoConfig: i,
|
|
4031
|
+
className: o = "",
|
|
4032
|
+
defaultValue: s = "[]",
|
|
4033
|
+
enforceCharacterLimit: h = !1,
|
|
4034
|
+
onChangeCharactersCount: l,
|
|
4035
|
+
baseErrorMessage: c,
|
|
4036
|
+
maxLimit: d = 1e4,
|
|
4037
|
+
onChange: u,
|
|
4038
|
+
isError: f,
|
|
4039
|
+
label: g,
|
|
4040
|
+
showAsterisk: y,
|
|
4041
|
+
id: m,
|
|
4042
|
+
orientation: p = "vertical",
|
|
4043
|
+
unShowFieldTemplate: C = !1
|
|
4044
|
+
} = n, v = Zt(() => On(An(Fn())), []), { fieldErrors: k } = te();
|
|
4045
|
+
function w() {
|
|
4046
|
+
try {
|
|
4047
|
+
const H = JSON.parse(s);
|
|
4048
|
+
return !Array.isArray(H) || H.length <= 0 ? Fe : H.every(
|
|
4049
|
+
(q) => typeof q == "object" && q !== null && "type" in q && "children" in q
|
|
4050
|
+
) ? H : Fe;
|
|
4051
|
+
} catch {
|
|
4052
|
+
return Fe;
|
|
4053
|
+
}
|
|
4054
|
+
}
|
|
4055
|
+
const M = bt(w()), [T, D] = N(M.length), [O, R] = N(
|
|
4056
|
+
JSON.stringify(w()) || "[]"
|
|
4057
|
+
), [A, x] = N(!1), I = X(null), S = m || ce(), z = c || (k == null ? void 0 : k[e]), L = f || !!z, P = rt(Dr, []), F = rt(kr, []);
|
|
4058
|
+
function J(H) {
|
|
4059
|
+
const j = bt(H);
|
|
4060
|
+
D(j.length), l && l(j.length), !(h && j.length >= d) && (R(JSON.stringify(H)), u && u(H), v.children = H, Oe.setNodes(v, { children: H }));
|
|
4061
|
+
}
|
|
4062
|
+
const $ = A ? "focusTrue" : "focusFalse", U = `arkynRichText ${L || d < T ? "errorTrue" : "errorFalse"} ${$}`, V = d - T;
|
|
4063
|
+
function B(H) {
|
|
4064
|
+
return !(t != null && t.includes(H));
|
|
4065
|
+
}
|
|
4066
|
+
return /* @__PURE__ */ a(
|
|
4067
|
+
he,
|
|
4068
|
+
{
|
|
4069
|
+
name: e,
|
|
4070
|
+
label: g,
|
|
4071
|
+
showAsterisk: y,
|
|
4072
|
+
className: o,
|
|
4073
|
+
errorMessage: z,
|
|
4074
|
+
unShowFieldTemplate: C,
|
|
4075
|
+
orientation: p,
|
|
4076
|
+
children: /* @__PURE__ */ b(
|
|
4077
|
+
Vn,
|
|
4078
|
+
{
|
|
4079
|
+
editor: v,
|
|
4080
|
+
initialValue: w(),
|
|
4081
|
+
onChange: J,
|
|
4082
|
+
onValueChange: J,
|
|
4083
|
+
children: [
|
|
4084
|
+
/* @__PURE__ */ b("div", { className: U, children: [
|
|
4085
|
+
/* @__PURE__ */ b(Sr, { children: [
|
|
4086
|
+
B("headingOne") && /* @__PURE__ */ a(ge, { format: "headingOne", icon: pn }),
|
|
4087
|
+
B("headingTwo") && /* @__PURE__ */ a(ge, { format: "headingTwo", icon: yn }),
|
|
4088
|
+
B("blockQuote") && /* @__PURE__ */ a(ge, { format: "blockQuote", icon: Cn }),
|
|
4089
|
+
B("bold") && /* @__PURE__ */ a(Ee, { format: "bold", icon: bn }),
|
|
4090
|
+
B("italic") && /* @__PURE__ */ a(Ee, { format: "italic", icon: kn }),
|
|
4091
|
+
B("underline") && /* @__PURE__ */ a(Ee, { format: "underline", icon: wn }),
|
|
4092
|
+
B("code") && /* @__PURE__ */ a(Ee, { format: "code", icon: vn }),
|
|
4093
|
+
B("left") && /* @__PURE__ */ a(ge, { format: "left", icon: Nn }),
|
|
4094
|
+
B("right") && /* @__PURE__ */ a(ge, { format: "right", icon: Mn }),
|
|
4095
|
+
B("center") && /* @__PURE__ */ a(ge, { format: "center", icon: Tn }),
|
|
4096
|
+
B("justify") && /* @__PURE__ */ a(ge, { format: "justify", icon: Dn }),
|
|
4097
|
+
r && B("image") && /* @__PURE__ */ a(Mr, { ...r }),
|
|
4098
|
+
B("video") && /* @__PURE__ */ a(Tr, { ...i })
|
|
4099
|
+
] }),
|
|
4100
|
+
/* @__PURE__ */ a(
|
|
4101
|
+
Ln,
|
|
4102
|
+
{
|
|
4103
|
+
className: "editorContainer",
|
|
4104
|
+
renderElement: F,
|
|
4105
|
+
renderLeaf: P,
|
|
4106
|
+
spellCheck: !0,
|
|
4107
|
+
ref: I,
|
|
4108
|
+
id: S,
|
|
4109
|
+
onFocus: () => x(!0),
|
|
4110
|
+
onBlur: () => x(!1),
|
|
4111
|
+
onKeyDown: (H) => {
|
|
4112
|
+
for (const j in pt)
|
|
4113
|
+
if (In(j, H)) {
|
|
4114
|
+
H.preventDefault();
|
|
4115
|
+
const q = pt[j];
|
|
4116
|
+
Rt(v, q);
|
|
4117
|
+
}
|
|
4118
|
+
}
|
|
4119
|
+
}
|
|
4120
|
+
),
|
|
4121
|
+
V < 0 && /* @__PURE__ */ a("div", { className: "restatesCharacters", children: V })
|
|
4122
|
+
] }),
|
|
4123
|
+
/* @__PURE__ */ a(
|
|
4124
|
+
"input",
|
|
4125
|
+
{
|
|
4126
|
+
type: "hidden",
|
|
4127
|
+
name: e,
|
|
4128
|
+
value: O.slice(0, d)
|
|
4129
|
+
}
|
|
4130
|
+
),
|
|
4131
|
+
/* @__PURE__ */ a("input", { type: "hidden", name: `${e}Count`, value: T })
|
|
4132
|
+
]
|
|
4133
|
+
}
|
|
4134
|
+
)
|
|
4135
|
+
}
|
|
4136
|
+
);
|
|
4137
|
+
}
|
|
4138
|
+
function Mi(n) {
|
|
4139
|
+
const { onChange: e, onPlaceChanged: t, options: r, ...i } = n, [o, s] = N(null);
|
|
4140
|
+
return /* @__PURE__ */ a(
|
|
4141
|
+
Bn,
|
|
4142
|
+
{
|
|
4143
|
+
onLoad: (c) => s(c),
|
|
4144
|
+
onPlacesChanged: () => {
|
|
4145
|
+
var m, p, C, v;
|
|
4146
|
+
const c = o == null ? void 0 : o.getPlaces(), d = c ? c[0] : null, u = d == null ? void 0 : d.address_components;
|
|
4147
|
+
function f(k) {
|
|
4148
|
+
const w = u.find((M) => M.types[0] === k);
|
|
4149
|
+
return w ? w.long_name : "";
|
|
4150
|
+
}
|
|
4151
|
+
function g(k) {
|
|
4152
|
+
const w = u.find((M) => M.types[0] === k);
|
|
4153
|
+
return w ? w.short_name : "";
|
|
4154
|
+
}
|
|
4155
|
+
function y(k) {
|
|
4156
|
+
for (const w of k) {
|
|
4157
|
+
const M = u.find(
|
|
4158
|
+
(T) => T.types.includes(w)
|
|
4159
|
+
);
|
|
4160
|
+
if (M) return M.long_name;
|
|
4161
|
+
}
|
|
4162
|
+
return "";
|
|
4163
|
+
}
|
|
4164
|
+
if (d) {
|
|
4165
|
+
const k = f("route"), w = f("street_number"), M = y([
|
|
4166
|
+
"sublocality_level_1",
|
|
4167
|
+
"sublocality",
|
|
4168
|
+
"neighborhood"
|
|
4169
|
+
]), T = f("administrative_area_level_2"), D = f("administrative_area_level_1"), O = g("administrative_area_level_1"), R = y([
|
|
4170
|
+
"postal_code",
|
|
4171
|
+
"postal_code_prefix"
|
|
4172
|
+
]), A = (p = (m = d.geometry) == null ? void 0 : m.location) == null ? void 0 : p.lat(), x = (v = (C = d.geometry) == null ? void 0 : C.location) == null ? void 0 : v.lng();
|
|
4173
|
+
t && t({
|
|
4174
|
+
street: k,
|
|
4175
|
+
city: T,
|
|
4176
|
+
state: D,
|
|
4177
|
+
neighborhood: M,
|
|
4178
|
+
postalCode: R,
|
|
4179
|
+
streetNumber: w,
|
|
4180
|
+
stateShortName: O,
|
|
4181
|
+
coordinates: { lat: A, lng: x }
|
|
4182
|
+
});
|
|
4183
|
+
}
|
|
4184
|
+
},
|
|
4185
|
+
options: r,
|
|
4186
|
+
children: /* @__PURE__ */ a(
|
|
4187
|
+
Se,
|
|
4188
|
+
{
|
|
4189
|
+
type: "text",
|
|
4190
|
+
autoComplete: "off",
|
|
4191
|
+
onChange: (c) => e && e(c.target.value),
|
|
4192
|
+
...i
|
|
4193
|
+
}
|
|
4194
|
+
)
|
|
4195
|
+
}
|
|
4196
|
+
);
|
|
4197
|
+
}
|
|
4198
|
+
function Ti(n) {
|
|
4199
|
+
const {
|
|
4200
|
+
label: e,
|
|
4201
|
+
size: t = "lg",
|
|
4202
|
+
defaultChecked: r = !1,
|
|
4203
|
+
checked: i = null,
|
|
4204
|
+
value: o,
|
|
4205
|
+
unCheckedValue: s = "",
|
|
4206
|
+
name: h,
|
|
4207
|
+
className: l = "",
|
|
4208
|
+
onCheck: c,
|
|
4209
|
+
id: d,
|
|
4210
|
+
orientation: u = "horizontalReverse",
|
|
4211
|
+
className: f = "",
|
|
4212
|
+
showAsterisk: g,
|
|
4213
|
+
errorMessage: y,
|
|
4214
|
+
unShowFieldTemplate: m = !1,
|
|
4215
|
+
...p
|
|
4216
|
+
} = n, C = X(null), v = d || ce(), [k, w] = N(r), M = typeof i == "boolean" ? i : k;
|
|
4217
|
+
function T() {
|
|
4218
|
+
w(!k), c && c(M ? s : o || "checked");
|
|
4219
|
+
}
|
|
4220
|
+
const O = `arkynSwitch ${M ? "checkedTrue" : "checkedFalse"} ${t} ${l}`;
|
|
4221
|
+
return /* @__PURE__ */ a(
|
|
4222
|
+
he,
|
|
4223
|
+
{
|
|
4224
|
+
name: h,
|
|
4225
|
+
label: e,
|
|
4226
|
+
showAsterisk: g,
|
|
4227
|
+
className: f,
|
|
4228
|
+
errorMessage: y,
|
|
4229
|
+
unShowFieldTemplate: m,
|
|
4230
|
+
orientation: u,
|
|
4231
|
+
children: /* @__PURE__ */ a(
|
|
4232
|
+
"button",
|
|
4233
|
+
{
|
|
4234
|
+
type: "button",
|
|
4235
|
+
onClick: T,
|
|
4236
|
+
className: O,
|
|
4237
|
+
...p,
|
|
4238
|
+
children: /* @__PURE__ */ a(
|
|
4239
|
+
"input",
|
|
4240
|
+
{
|
|
4241
|
+
id: v,
|
|
4242
|
+
type: "hidden",
|
|
4243
|
+
name: h,
|
|
4244
|
+
ref: C,
|
|
4245
|
+
onClick: T,
|
|
4246
|
+
value: M ? o || "checked" : s
|
|
4247
|
+
}
|
|
4248
|
+
)
|
|
4249
|
+
}
|
|
4250
|
+
)
|
|
4251
|
+
}
|
|
4252
|
+
);
|
|
4253
|
+
}
|
|
4254
|
+
function Di(n) {
|
|
4255
|
+
const {
|
|
4256
|
+
emptyMessage: e = "Nenhum dado adicionado.",
|
|
4257
|
+
className: t,
|
|
4258
|
+
children: r,
|
|
4259
|
+
...i
|
|
4260
|
+
} = n, o = `arkynTableBody ${t}`, s = en.count(r) === 0;
|
|
4261
|
+
return /* @__PURE__ */ a("tbody", { className: o.trim(), ...i, children: s ? /* @__PURE__ */ a("tr", { className: "arkynTableBodyEmptyLine", children: /* @__PURE__ */ a("td", { colSpan: 100, children: /* @__PURE__ */ a("div", { children: e }) }) }) : r });
|
|
4262
|
+
}
|
|
4263
|
+
function Si(n) {
|
|
4264
|
+
const { className: e, children: t, ...r } = n, i = `arkynTableCaption ${e}`;
|
|
4265
|
+
return /* @__PURE__ */ a("caption", { className: i.trim(), ...r, children: /* @__PURE__ */ a("div", { className: "arkynTableCaptionContent", children: t }) });
|
|
4266
|
+
}
|
|
4267
|
+
function xi(n) {
|
|
4268
|
+
const { children: e, className: t, ...r } = n, i = `arkynTableContainer ${t}`;
|
|
4269
|
+
return /* @__PURE__ */ a("div", { className: i.trim(), ...r, children: /* @__PURE__ */ a("table", { children: e }) });
|
|
4270
|
+
}
|
|
4271
|
+
function $i(n) {
|
|
4272
|
+
const { className: e, children: t, ...r } = n, i = `arkynTableFooter ${e}`;
|
|
4273
|
+
return /* @__PURE__ */ b("tfoot", { className: i.trim(), ...r, children: [
|
|
4274
|
+
/* @__PURE__ */ a("tr", { className: "spacingRow" }),
|
|
4275
|
+
/* @__PURE__ */ a("tr", { children: /* @__PURE__ */ a("th", { colSpan: 100, children: /* @__PURE__ */ a("div", { className: "arkynTableFooterContent", children: t }) }) })
|
|
4276
|
+
] });
|
|
4277
|
+
}
|
|
4278
|
+
function Ii(n) {
|
|
4279
|
+
const { className: e, children: t, ...r } = n, i = `arkynTableHeader ${e}`;
|
|
4280
|
+
return /* @__PURE__ */ b("thead", { className: i.trim(), ...r, children: [
|
|
4281
|
+
/* @__PURE__ */ a("tr", { children: t }),
|
|
4282
|
+
/* @__PURE__ */ a("tr", { className: "spacingRow" })
|
|
4283
|
+
] });
|
|
4284
|
+
}
|
|
4285
|
+
function Pi(n) {
|
|
4286
|
+
const {
|
|
4287
|
+
variant: e = "solid",
|
|
4288
|
+
size: t = "md",
|
|
4289
|
+
className: r,
|
|
4290
|
+
errorMessage: i,
|
|
4291
|
+
disabled: o = !1,
|
|
4292
|
+
readOnly: s = !1,
|
|
4293
|
+
label: h,
|
|
4294
|
+
showAsterisk: l,
|
|
4295
|
+
name: c,
|
|
4296
|
+
onFocus: d,
|
|
4297
|
+
onBlur: u,
|
|
4298
|
+
title: f,
|
|
4299
|
+
style: g,
|
|
4300
|
+
value: y,
|
|
4301
|
+
defaultValue: m,
|
|
4302
|
+
placeholder: p,
|
|
4303
|
+
id: C,
|
|
4304
|
+
...v
|
|
4305
|
+
} = n, { fieldErrors: k } = te(), [w, M] = N(!1), T = X(null), D = C || ce(), O = i || (k == null ? void 0 : k[c]), S = `arkynTextarea ${e} ${t} ${o || s ? "opacityTrue" : "opacityFalse"} ${!!O ? "errorTrue" : "errorFalse"} ${w ? "focusedTrue" : "focusedFalse"}`;
|
|
4306
|
+
function z() {
|
|
4307
|
+
o || !(T != null && T.current) || (M(!0), T.current.focus());
|
|
4308
|
+
}
|
|
4309
|
+
function L(F) {
|
|
4310
|
+
M(!0), d && d(F);
|
|
4311
|
+
}
|
|
4312
|
+
function P(F) {
|
|
4313
|
+
M(!1), u && u(F);
|
|
4314
|
+
}
|
|
4315
|
+
return /* @__PURE__ */ b(De, { className: r, children: [
|
|
4316
|
+
h && /* @__PURE__ */ a(Te, { htmlFor: D, showAsterisk: l, children: h }),
|
|
4317
|
+
/* @__PURE__ */ a(
|
|
4318
|
+
"section",
|
|
4319
|
+
{
|
|
4320
|
+
title: f,
|
|
4321
|
+
style: g,
|
|
4322
|
+
onClick: z,
|
|
4323
|
+
className: S,
|
|
4324
|
+
children: /* @__PURE__ */ a(
|
|
4325
|
+
"textarea",
|
|
4326
|
+
{
|
|
4327
|
+
id: D,
|
|
4328
|
+
disabled: o,
|
|
4329
|
+
readOnly: s,
|
|
4330
|
+
ref: T,
|
|
4331
|
+
name: c,
|
|
4332
|
+
onFocus: L,
|
|
4333
|
+
onBlur: P,
|
|
4334
|
+
defaultValue: m || "",
|
|
4335
|
+
placeholder: o && y || p,
|
|
4336
|
+
value: o ? void 0 : y,
|
|
4337
|
+
...v
|
|
4338
|
+
}
|
|
4339
|
+
)
|
|
4340
|
+
}
|
|
4341
|
+
),
|
|
4342
|
+
O && /* @__PURE__ */ a(Me, { children: O })
|
|
4343
|
+
] });
|
|
4344
|
+
}
|
|
4345
|
+
const Wt = ie({});
|
|
4346
|
+
function Fi(n) {
|
|
4347
|
+
const { children: e = !1 } = n, [t, r] = N([]);
|
|
4348
|
+
function i(c) {
|
|
4349
|
+
return !!t.some((d) => d.key === c);
|
|
4350
|
+
}
|
|
4351
|
+
function o(c) {
|
|
4352
|
+
var d;
|
|
4353
|
+
return (d = t.find((u) => u.key === c)) == null ? void 0 : d.data;
|
|
4354
|
+
}
|
|
4355
|
+
function s(c, d) {
|
|
4356
|
+
const u = i(c);
|
|
4357
|
+
r(u ? (f) => [...f.filter((y) => y.key !== c), { key: c, data: d }] : [...t, { key: c, data: d }]);
|
|
4358
|
+
}
|
|
4359
|
+
function h(c) {
|
|
4360
|
+
r(t.filter((d) => d.key !== c));
|
|
4361
|
+
}
|
|
4362
|
+
function l() {
|
|
4363
|
+
r([]);
|
|
4364
|
+
}
|
|
4365
|
+
return /* @__PURE__ */ a(
|
|
4366
|
+
Wt.Provider,
|
|
4367
|
+
{
|
|
4368
|
+
value: { modalIsOpen: i, modalData: o, openModal: s, closeModal: h, closeAll: l },
|
|
4369
|
+
children: e
|
|
4370
|
+
}
|
|
4371
|
+
);
|
|
4372
|
+
}
|
|
4373
|
+
function Ut(n) {
|
|
4374
|
+
const e = se(Wt);
|
|
4375
|
+
if (Object.entries(e).length === 0)
|
|
4376
|
+
throw new Error("useModal must be used within a Provider");
|
|
4377
|
+
if (n) {
|
|
4378
|
+
const {
|
|
4379
|
+
modalData: t,
|
|
4380
|
+
modalIsOpen: r,
|
|
4381
|
+
openModal: i,
|
|
4382
|
+
closeModal: o
|
|
4383
|
+
} = e, s = r(n), h = t(n);
|
|
4384
|
+
return { modalIsOpen: s, modalData: h, openModal: (d) => i(n, d), closeModal: () => o(n) };
|
|
4385
|
+
} else
|
|
4386
|
+
return e;
|
|
4387
|
+
}
|
|
4388
|
+
const _t = ie({});
|
|
4389
|
+
function Ei({ children: n }) {
|
|
4390
|
+
function e(t) {
|
|
4391
|
+
switch (t.type) {
|
|
4392
|
+
case "success":
|
|
4393
|
+
return st.success(t.message, {
|
|
4394
|
+
style: {
|
|
4395
|
+
background: "#10B981",
|
|
4396
|
+
color: "#ffffff",
|
|
4397
|
+
padding: "12px 16px",
|
|
4398
|
+
fontSize: "14px",
|
|
4399
|
+
fontWeight: 600
|
|
4400
|
+
},
|
|
4401
|
+
iconTheme: {
|
|
4402
|
+
primary: "#059669",
|
|
4403
|
+
secondary: "#ffffff"
|
|
4404
|
+
}
|
|
4405
|
+
});
|
|
4406
|
+
case "danger":
|
|
4407
|
+
return st.error(t.message, {
|
|
4408
|
+
style: {
|
|
4409
|
+
background: "#E11D48",
|
|
4410
|
+
color: "#ffffff",
|
|
4411
|
+
padding: "12px 16px",
|
|
4412
|
+
fontSize: "14px",
|
|
4413
|
+
fontWeight: 600
|
|
4414
|
+
},
|
|
4415
|
+
iconTheme: {
|
|
4416
|
+
primary: "#BE123C",
|
|
4417
|
+
secondary: "#ffffff"
|
|
4418
|
+
}
|
|
4419
|
+
});
|
|
4420
|
+
}
|
|
4421
|
+
}
|
|
4422
|
+
return /* @__PURE__ */ b(_t.Provider, { value: { showToast: e }, children: [
|
|
4423
|
+
/* @__PURE__ */ a(
|
|
4424
|
+
Rn,
|
|
4425
|
+
{
|
|
4426
|
+
position: "top-right",
|
|
4427
|
+
containerStyle: { zIndex: 999999999999999 }
|
|
4428
|
+
}
|
|
4429
|
+
),
|
|
4430
|
+
n
|
|
4431
|
+
] });
|
|
4432
|
+
}
|
|
4433
|
+
function qt() {
|
|
4434
|
+
const n = se(_t);
|
|
4435
|
+
if (Object.entries(n).length === 0)
|
|
4436
|
+
throw new Error("useToast must be used within a Provider");
|
|
4437
|
+
return n;
|
|
4438
|
+
}
|
|
4439
|
+
const je = [
|
|
4440
|
+
"BadGateway",
|
|
4441
|
+
"BadRequest",
|
|
4442
|
+
"Conflict",
|
|
4443
|
+
"Forbidden",
|
|
4444
|
+
"NotFound",
|
|
4445
|
+
"NotImplemented",
|
|
4446
|
+
"ServerError",
|
|
4447
|
+
"Unauthorized",
|
|
4448
|
+
"UnprocessableEntity"
|
|
4449
|
+
], Ge = ["Created", "Found", "Success", "Updated"];
|
|
4450
|
+
function Oi(n) {
|
|
4451
|
+
var c, d, u, f;
|
|
4452
|
+
const { closeAll: e } = Ut(), { showToast: t } = qt(), r = n == null ? void 0 : n.closeModal, i = n == null ? void 0 : n.message, o = n == null ? void 0 : n.name, s = (d = (c = n == null ? void 0 : n.cause) == null ? void 0 : c.data) == null ? void 0 : d.scrollTo, h = (u = n == null ? void 0 : n.cause) != null && u.fieldErrors ? Object.values((f = n == null ? void 0 : n.cause) == null ? void 0 : f.fieldErrors)[0] : null;
|
|
4453
|
+
function l() {
|
|
4454
|
+
if (!(!i && !h)) {
|
|
4455
|
+
if (Ge.includes(o))
|
|
4456
|
+
return t({ message: i, type: "success" });
|
|
4457
|
+
if (je.includes(o)) {
|
|
4458
|
+
if (h)
|
|
4459
|
+
return t({ message: h, type: "danger" });
|
|
4460
|
+
if (i !== "Unprocessable entity")
|
|
4461
|
+
return t({ message: i, type: "danger" });
|
|
4462
|
+
}
|
|
4463
|
+
}
|
|
4464
|
+
}
|
|
4465
|
+
ee(() => {
|
|
4466
|
+
r && e(), s && Hn.scrollTo(s, { smooth: !0, offset: 20 }), l();
|
|
4467
|
+
}, [n]);
|
|
4468
|
+
}
|
|
4469
|
+
const Yt = ie({});
|
|
4470
|
+
function Ai(n) {
|
|
4471
|
+
const { children: e = !1 } = n, [t, r] = N([]);
|
|
4472
|
+
function i(l) {
|
|
4473
|
+
return !!t.some((c) => c.key === l);
|
|
4474
|
+
}
|
|
4475
|
+
function o(l) {
|
|
4476
|
+
var c;
|
|
4477
|
+
return (c = t.find((d) => d.key === l)) == null ? void 0 : c.data;
|
|
4478
|
+
}
|
|
4479
|
+
function s(l, c) {
|
|
4480
|
+
const d = i(l);
|
|
4481
|
+
r(d ? (u) => [...u.filter((g) => g.key !== l), { key: l, data: c }] : [...t, { key: l, data: c }]);
|
|
4482
|
+
}
|
|
4483
|
+
function h(l) {
|
|
4484
|
+
r(t.filter((c) => c.key !== l));
|
|
4485
|
+
}
|
|
4486
|
+
return /* @__PURE__ */ a(
|
|
4487
|
+
Yt.Provider,
|
|
4488
|
+
{
|
|
4489
|
+
value: { drawerIsOpen: i, drawerData: o, openDrawer: s, closeDrawer: h },
|
|
4490
|
+
children: e
|
|
4491
|
+
}
|
|
4492
|
+
);
|
|
4493
|
+
}
|
|
4494
|
+
function Vi(n) {
|
|
4495
|
+
const e = se(Yt);
|
|
4496
|
+
if (Object.entries(e).length === 0)
|
|
4497
|
+
throw new Error("useDrawer must be used within a Provider");
|
|
4498
|
+
if (n) {
|
|
4499
|
+
const {
|
|
4500
|
+
drawerData: t,
|
|
4501
|
+
drawerIsOpen: r,
|
|
4502
|
+
openDrawer: i,
|
|
4503
|
+
closeDrawer: o
|
|
4504
|
+
} = e, s = r(n), h = t(n);
|
|
4505
|
+
return { drawerIsOpen: s, drawerData: h, openDrawer: (d) => i(n, d), closeDrawer: () => o(n) };
|
|
4506
|
+
} else
|
|
4507
|
+
return e;
|
|
4508
|
+
}
|
|
4509
|
+
function xr(n, e = "") {
|
|
4510
|
+
const t = new URLSearchParams(n), r = e ? `${e}:` : "", i = (o) => {
|
|
4511
|
+
Object.entries(o).forEach(([s, h]) => {
|
|
4512
|
+
h === void 0 ? t.delete(`${r}${s}`) : t.set(`${r}${s}`, String(h));
|
|
4513
|
+
});
|
|
4514
|
+
};
|
|
4515
|
+
return {
|
|
4516
|
+
getParam: (o) => t.get(`${r}${o}`),
|
|
4517
|
+
getScopedSearch: (o) => {
|
|
4518
|
+
i(o);
|
|
4519
|
+
let s = t.toString();
|
|
4520
|
+
return s && (s = "?" + s), s;
|
|
4521
|
+
}
|
|
4522
|
+
};
|
|
4523
|
+
}
|
|
4524
|
+
function Li(n, e = "") {
|
|
4525
|
+
const { closeAll: t } = Ut(), { showToast: r } = qt(), { getParam: i } = xr(n, e), o = i("closeModal") === "true", s = i("message"), h = i("name"), l = i("type");
|
|
4526
|
+
ee(() => {
|
|
4527
|
+
o && t(), s && (l === "success" && r({ message: s, type: "success" }), l === "danger" && r({ message: s, type: "danger" }), h && je.includes(h) && !je.includes(s) && r({ message: s, type: "danger" }), h && Ge.includes(h) && !Ge.includes(s) && r({ message: s, type: "success" }));
|
|
4528
|
+
}, [o, s, h, l]);
|
|
4529
|
+
}
|
|
4530
|
+
const $r = [
|
|
4531
|
+
"places",
|
|
4532
|
+
"marker",
|
|
4533
|
+
"maps"
|
|
4534
|
+
];
|
|
4535
|
+
function Bi(n) {
|
|
4536
|
+
const { apiKey: e, children: t, preventFontsLoading: r = !0 } = n, { isLoaded: i } = zn({
|
|
4537
|
+
googleMapsApiKey: e,
|
|
4538
|
+
libraries: $r,
|
|
4539
|
+
preventGoogleFontsLoading: r
|
|
4540
|
+
});
|
|
4541
|
+
return /* @__PURE__ */ a(W, { children: t(i) });
|
|
4542
|
+
}
|
|
4543
|
+
function jt(n) {
|
|
4544
|
+
var e;
|
|
4545
|
+
if (En.isText(n)) {
|
|
4546
|
+
let t = n == null ? void 0 : n.text;
|
|
4547
|
+
return n != null && n.bold && (t = `<strong>${t}</strong>`), n != null && n.code && (t = `<code>${t}</code>`), n != null && n.italic && (t = `<em>${t}</em>`), n != null && n.underline && (t = `<u>${t}</u>`), t;
|
|
4548
|
+
}
|
|
4549
|
+
if (et.isElement(n)) {
|
|
4550
|
+
const t = (e = n.children) == null ? void 0 : e.map((i) => jt(i)).join(""), r = n.align || "left";
|
|
4551
|
+
switch (n.type) {
|
|
4552
|
+
case "video":
|
|
4553
|
+
return `<iframe src="${n.src}" class="align_${r}" />`;
|
|
4554
|
+
case "image":
|
|
4555
|
+
return `<img src="${n.src}" class="align_${r}" />`;
|
|
4556
|
+
case "paragraph":
|
|
4557
|
+
return `<p class="align_${r}">${t}</p>`;
|
|
4558
|
+
case "blockQuote":
|
|
4559
|
+
return `<blockquote class="align_${r}">${t}</blockquote>`;
|
|
4560
|
+
case "bulletedList":
|
|
4561
|
+
return `<ul class="align_${r}">${t}</ul>`;
|
|
4562
|
+
case "headingOne":
|
|
4563
|
+
return `<h1 class="align_${r}">${t}</h1>`;
|
|
4564
|
+
case "headingTwo":
|
|
4565
|
+
return `<h2 class="align_${r}">${t}</h2>`;
|
|
4566
|
+
case "listItem":
|
|
4567
|
+
return `<li class="align_${r}">${t}</li>`;
|
|
4568
|
+
case "numberedList":
|
|
4569
|
+
return `<ol class="align_${r}">${t}</ol>`;
|
|
4570
|
+
default:
|
|
4571
|
+
return "";
|
|
4572
|
+
}
|
|
4573
|
+
}
|
|
4574
|
+
return "";
|
|
4575
|
+
}
|
|
4576
|
+
function Xe(n) {
|
|
4577
|
+
var r;
|
|
4578
|
+
if (typeof n == "string")
|
|
4579
|
+
return { text: n };
|
|
4580
|
+
const e = Array.isArray(n.props.children) ? n.props.children.map((i) => Xe(i)) : [{ text: n.props.children || "" }], t = (r = n.props.className) == null ? void 0 : r.replace("align_", "");
|
|
4581
|
+
switch (n.type) {
|
|
4582
|
+
case "img":
|
|
4583
|
+
return {
|
|
4584
|
+
type: "image",
|
|
4585
|
+
align: t,
|
|
4586
|
+
src: n.props.src,
|
|
4587
|
+
children: [{ text: "" }]
|
|
4588
|
+
};
|
|
4589
|
+
case "p":
|
|
4590
|
+
return { type: "paragraph", align: t, children: e };
|
|
4591
|
+
case "blockquote":
|
|
4592
|
+
return { type: "blockQuote", align: t, children: e };
|
|
4593
|
+
case "ul":
|
|
4594
|
+
return { type: "bulletedList", align: t, children: e };
|
|
4595
|
+
case "ol":
|
|
4596
|
+
return { type: "numberedList", align: t, children: e };
|
|
4597
|
+
case "li":
|
|
4598
|
+
return { type: "listItem", align: t, children: e };
|
|
4599
|
+
case "h1":
|
|
4600
|
+
return { type: "headingOne", align: t, children: e };
|
|
4601
|
+
case "h2":
|
|
4602
|
+
return { type: "headingTwo", align: t, children: e };
|
|
4603
|
+
case "strong":
|
|
4604
|
+
return { text: n.props.children, bold: !0 };
|
|
4605
|
+
case "code":
|
|
4606
|
+
return { text: n.props.children, code: !0 };
|
|
4607
|
+
case "em":
|
|
4608
|
+
return { text: n.props.children, italic: !0 };
|
|
4609
|
+
case "u":
|
|
4610
|
+
return { text: n.props.children, underline: !0 };
|
|
4611
|
+
default:
|
|
4612
|
+
return { text: n.props.children || "" };
|
|
4613
|
+
}
|
|
4614
|
+
}
|
|
4615
|
+
function zi(n) {
|
|
4616
|
+
return n.map((e) => jt(e)).join("");
|
|
4617
|
+
}
|
|
4618
|
+
function Hi(n) {
|
|
4619
|
+
const e = Wn(n);
|
|
4620
|
+
return Array.isArray(e) ? e.map((t) => typeof t == "string" ? { text: t } : Xe(t)) : typeof e == "string" ? [{ text: e }] : [Xe(e)];
|
|
4621
|
+
}
|
|
4622
|
+
export {
|
|
4623
|
+
Gr as AlertContainer,
|
|
4624
|
+
Xr as AlertContent,
|
|
4625
|
+
Kr as AlertDescription,
|
|
4626
|
+
Jr as AlertIcon,
|
|
4627
|
+
Un as AlertTitle,
|
|
4628
|
+
jn as AudioPlayer,
|
|
4629
|
+
Zr as AudioUpload,
|
|
4630
|
+
ei as Badge,
|
|
4631
|
+
de as Button,
|
|
4632
|
+
ni as Calendar,
|
|
4633
|
+
Ue as CardTabButton,
|
|
4634
|
+
ca as CardTabContainer,
|
|
4635
|
+
ai as Checkbox,
|
|
4636
|
+
Re as ClientOnly,
|
|
4637
|
+
ri as CurrencyInput,
|
|
4638
|
+
tt as Divider,
|
|
4639
|
+
ii as DrawerContainer,
|
|
4640
|
+
si as DrawerHeader,
|
|
4641
|
+
Ai as DrawerProvider,
|
|
4642
|
+
ci as FacebookPixel,
|
|
4643
|
+
Me as FieldError,
|
|
4644
|
+
Te as FieldLabel,
|
|
4645
|
+
De as FieldWrapper,
|
|
4646
|
+
li as FileUpload,
|
|
4647
|
+
Qr as FormProvider,
|
|
4648
|
+
ui as FullCalendar,
|
|
4649
|
+
hi as GoogleAnalytics,
|
|
4650
|
+
mi as GoogleTagManager,
|
|
4651
|
+
ve as IconButton,
|
|
4652
|
+
Ya as ImageUpload,
|
|
4653
|
+
Se as Input,
|
|
4654
|
+
gi as MapView,
|
|
4655
|
+
pi as MaskedInput,
|
|
4656
|
+
Ft as ModalContainer,
|
|
4657
|
+
Et as ModalFooter,
|
|
4658
|
+
Ot as ModalHeader,
|
|
4659
|
+
Fi as ModalProvider,
|
|
4660
|
+
yi as MultiSelect,
|
|
4661
|
+
Ci as Pagination,
|
|
4662
|
+
bi as PhoneInput,
|
|
4663
|
+
Bi as PlacesProvider,
|
|
4664
|
+
ki as Popover,
|
|
4665
|
+
wi as RadioBox,
|
|
4666
|
+
vi as RadioGroup,
|
|
4667
|
+
Ni as RichText,
|
|
4668
|
+
Mi as SearchPlaces,
|
|
4669
|
+
lt as Select,
|
|
4670
|
+
Yn as Slider,
|
|
4671
|
+
Ti as Switch,
|
|
4672
|
+
Ct as TabButton,
|
|
4673
|
+
Nr as TabContainer,
|
|
4674
|
+
Di as TableBody,
|
|
4675
|
+
Si as TableCaption,
|
|
4676
|
+
xi as TableContainer,
|
|
4677
|
+
$i as TableFooter,
|
|
4678
|
+
Ii as TableHeader,
|
|
4679
|
+
Pi as Textarea,
|
|
4680
|
+
Ei as ToastProvider,
|
|
4681
|
+
nt as Tooltip,
|
|
4682
|
+
zi as toHtml,
|
|
4683
|
+
Hi as toRichTextValue,
|
|
4684
|
+
Oi as useAutomation,
|
|
4685
|
+
Vi as useDrawer,
|
|
4686
|
+
te as useForm,
|
|
4687
|
+
ua as useHydrated,
|
|
4688
|
+
Ut as useModal,
|
|
4689
|
+
xr as useScopedParams,
|
|
4690
|
+
Ce as useScrollLock,
|
|
4691
|
+
Li as useSearchAutomation,
|
|
4692
|
+
qn as useSlider,
|
|
4693
|
+
qt as useToast
|
|
4694
|
+
};
|