@addev-be/ui 3.2.5 → 3.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/icons/angle-left.svg.js +5 -0
- package/dist/assets/icons/angle-right.svg.js +5 -0
- package/dist/assets/icons/arrow-down-1-9.svg.js +5 -0
- package/dist/assets/icons/arrow-down-a-z.svg.js +5 -0
- package/dist/assets/icons/arrow-down-big-small.svg.js +5 -0
- package/dist/assets/icons/arrow-up-9-1.svg.js +5 -0
- package/dist/assets/icons/arrow-up-big-small.svg.js +5 -0
- package/dist/assets/icons/arrow-up-z-a.svg.js +5 -0
- package/dist/assets/icons/arrows-rotate.svg.js +5 -0
- package/dist/assets/icons/arrows-up-down.svg.js +5 -0
- package/dist/assets/icons/bars.svg.js +5 -0
- package/dist/assets/icons/check.svg.js +5 -0
- package/dist/assets/icons/chevron-down.svg.js +5 -0
- package/dist/assets/icons/chevron-left.svg.js +5 -0
- package/dist/assets/icons/chevron-right.svg.js +5 -0
- package/dist/assets/icons/circle-check.svg.js +5 -0
- package/dist/assets/icons/circle-info.svg.js +5 -0
- package/dist/assets/icons/circle-xmark.svg.js +5 -0
- package/dist/assets/icons/copy.svg.js +5 -0
- package/dist/assets/icons/down.svg.js +5 -0
- package/dist/assets/icons/ellipsis.svg.js +5 -0
- package/dist/assets/icons/filter-full.svg.js +5 -0
- package/dist/assets/icons/filter-slash.svg.js +5 -0
- package/dist/assets/icons/filter.svg.js +5 -0
- package/dist/assets/icons/floppy-disk.svg.js +5 -0
- package/dist/assets/icons/hashtag.svg.js +5 -0
- package/dist/assets/icons/image-slash.svg.js +5 -0
- package/dist/assets/icons/left.svg.js +5 -0
- package/dist/assets/icons/magnifier.svg.js +5 -0
- package/dist/assets/icons/phone.svg.js +5 -0
- package/dist/assets/icons/plus.svg.js +5 -0
- package/dist/assets/icons/right.svg.js +5 -0
- package/dist/assets/icons/sigma.svg.js +5 -0
- package/dist/assets/icons/sort-calendar-ascending.svg.js +7 -0
- package/dist/assets/icons/sort-calendar-descending.svg.js +5 -0
- package/dist/assets/icons/spinner-third.svg.js +5 -0
- package/dist/assets/icons/table-columns.svg.js +5 -0
- package/dist/assets/icons/table-footer-slash.svg.js +5 -0
- package/dist/assets/icons/table-footer.svg.js +5 -0
- package/dist/assets/icons/table.svg.js +5 -0
- package/dist/assets/icons/tally.svg.js +5 -0
- package/dist/assets/icons/trash-can.svg.js +5 -0
- package/dist/assets/icons/triangle-exclamation.svg.js +5 -0
- package/dist/assets/icons/up.svg.js +5 -0
- package/dist/assets/icons/user-tie.svg.js +5 -0
- package/dist/assets/icons/x-bar.svg.js +13 -0
- package/dist/assets/icons/xmark-large.svg.js +5 -0
- package/dist/assets/icons/xmark.svg.js +5 -0
- package/dist/components/auth/LoginForm.js +64 -49
- package/dist/components/auth/LoginPage.js +21 -8
- package/dist/components/auth/PasswordRecoveryForm.js +36 -24
- package/dist/components/auth/PasswordResetForm.js +71 -55
- package/dist/components/auth/index.js +9 -19
- package/dist/components/auth/styles.d.ts +1 -1
- package/dist/components/auth/styles.js +15 -15
- package/dist/components/common/Avatar/index.d.ts +2 -2
- package/dist/components/common/Avatar/index.js +28 -59
- package/dist/components/common/Avatar/styles.d.ts +1 -1
- package/dist/components/common/Avatar/styles.js +53 -52
- package/dist/components/common/Card/index.js +7 -33
- package/dist/components/common/Card/styles.d.ts +3 -3
- package/dist/components/common/Card/styles.js +36 -16
- package/dist/components/common/ContextMenu/index.js +42 -61
- package/dist/components/common/ContextMenu/styles.d.ts +5 -5
- package/dist/components/common/ContextMenu/styles.js +104 -65
- package/dist/components/common/Ellipsis.d.ts +1 -1
- package/dist/components/common/Ellipsis.js +20 -27
- package/dist/components/common/Label.d.ts +2 -2
- package/dist/components/common/Label.js +73 -82
- package/dist/components/common/Message/index.js +35 -61
- package/dist/components/common/Message/styles.d.ts +4 -4
- package/dist/components/common/Message/styles.js +39 -51
- package/dist/components/common/TabsView/TabsList.js +33 -40
- package/dist/components/common/TabsView/TabsView.js +29 -16
- package/dist/components/common/TabsView/styles.d.ts +6 -6
- package/dist/components/common/TabsView/styles.js +75 -56
- package/dist/components/common/TabsView/types.d.ts +2 -2
- package/dist/components/common/index.js +19 -22
- package/dist/components/forms/AutoTextArea.js +28 -39
- package/dist/components/forms/BillitIdentifier/index.js +58 -69
- package/dist/components/forms/BillitIdentifier/styles.d.ts +2 -2
- package/dist/components/forms/BillitIdentifier/styles.js +43 -14
- package/dist/components/forms/Button.d.ts +4 -4
- package/dist/components/forms/Button.js +99 -84
- package/dist/components/forms/Form/Checkbox.js +6 -32
- package/dist/components/forms/Form/CustomSelect.js +53 -48
- package/dist/components/forms/Form/FormGroup.d.ts +2 -2
- package/dist/components/forms/Form/FormGroup.js +19 -9
- package/dist/components/forms/Form/Input.js +6 -32
- package/dist/components/forms/Form/Row.d.ts +1 -1
- package/dist/components/forms/Form/Row.js +16 -9
- package/dist/components/forms/Form/Select.js +55 -56
- package/dist/components/forms/Form/TextArea.js +7 -33
- package/dist/components/forms/Form/index.d.ts +19 -19
- package/dist/components/forms/Form/index.js +30 -30
- package/dist/components/forms/Form/styles.d.ts +10 -10
- package/dist/components/forms/Form/styles.js +132 -63
- package/dist/components/forms/IconButton.d.ts +2 -2
- package/dist/components/forms/IconButton.js +45 -63
- package/dist/components/forms/IndeterminateCheckbox.js +31 -39
- package/dist/components/forms/NumberInput.d.ts +2 -2
- package/dist/components/forms/NumberInput.js +38 -39
- package/dist/components/forms/Select.js +16 -45
- package/dist/components/forms/VerticalLabel.js +12 -31
- package/dist/components/forms/index.js +36 -26
- package/dist/components/forms/styles.d.ts +8 -8
- package/dist/components/forms/styles.js +38 -49
- package/dist/components/grid/DataGrid/DataGridCell.js +56 -68
- package/dist/components/grid/DataGrid/DataGridColumnsModal/helpers.js +6 -17
- package/dist/components/grid/DataGrid/DataGridColumnsModal/hooks.js +46 -37
- package/dist/components/grid/DataGrid/DataGridColumnsModal/index.js +147 -113
- package/dist/components/grid/DataGrid/DataGridColumnsModal/styles.d.ts +6 -6
- package/dist/components/grid/DataGrid/DataGridColumnsModal/styles.js +95 -63
- package/dist/components/grid/DataGrid/DataGridEditableCell/CheckboxEditableCell.js +30 -22
- package/dist/components/grid/DataGrid/DataGridEditableCell/DateEditableCell.js +30 -25
- package/dist/components/grid/DataGrid/DataGridEditableCell/NumberEditableCell.js +43 -33
- package/dist/components/grid/DataGrid/DataGridEditableCell/TextEditableCell.js +30 -22
- package/dist/components/grid/DataGrid/DataGridEditableCell/index.js +61 -88
- package/dist/components/grid/DataGrid/DataGridEditableCell/styles.d.ts +1 -1
- package/dist/components/grid/DataGrid/DataGridEditableCell/styles.js +34 -16
- package/dist/components/grid/DataGrid/DataGridFilterMenu/FilterValuesScroller.js +91 -93
- package/dist/components/grid/DataGrid/DataGridFilterMenu/helpers.js +19 -18
- package/dist/components/grid/DataGrid/DataGridFilterMenu/hooks.js +59 -48
- package/dist/components/grid/DataGrid/DataGridFilterMenu/index.js +261 -225
- package/dist/components/grid/DataGrid/DataGridFilterMenu/styles.d.ts +5 -5
- package/dist/components/grid/DataGrid/DataGridFilterMenu/styles.js +91 -30
- package/dist/components/grid/DataGrid/DataGridFooter.js +40 -50
- package/dist/components/grid/DataGrid/DataGridHeader.js +58 -110
- package/dist/components/grid/DataGrid/DataGridHeaderCell.js +85 -79
- package/dist/components/grid/DataGrid/DataGridRowTemplate.js +72 -80
- package/dist/components/grid/DataGrid/DataGridToolbar.js +91 -137
- package/dist/components/grid/DataGrid/FilterModalContent/index.js +112 -123
- package/dist/components/grid/DataGrid/FilterModalContent/styles.d.ts +1 -1
- package/dist/components/grid/DataGrid/FilterModalContent/styles.js +23 -14
- package/dist/components/grid/DataGrid/constants.js +9 -9
- package/dist/components/grid/DataGrid/helpers/columns.js +301 -171
- package/dist/components/grid/DataGrid/helpers/filters.js +145 -333
- package/dist/components/grid/DataGrid/hooks/index.d.ts +3 -3
- package/dist/components/grid/DataGrid/hooks/index.js +24 -29
- package/dist/components/grid/DataGrid/hooks/useDataGrid.js +279 -291
- package/dist/components/grid/DataGrid/hooks/useDataGridChangedRows.js +75 -89
- package/dist/components/grid/DataGrid/hooks/useDataGridCopy.js +103 -156
- package/dist/components/grid/DataGrid/hooks/useDataGridSettings.d.ts +1 -1
- package/dist/components/grid/DataGrid/hooks/useDataGridSettings.js +40 -42
- package/dist/components/grid/DataGrid/hooks/useRefreshModal.js +38 -24
- package/dist/components/grid/DataGrid/index.js +104 -97
- package/dist/components/grid/DataGrid/styles.d.ts +19 -19
- package/dist/components/grid/DataGrid/styles.js +360 -179
- package/dist/components/grid/DataGrid/types.d.ts +2 -2
- package/dist/components/grid/DataGrid/types.js +16 -44
- package/dist/components/grid/SqlRequestDataGrid/helpers/columns.js +371 -309
- package/dist/components/grid/SqlRequestDataGrid/helpers/rows.js +10 -16
- package/dist/components/grid/SqlRequestDataGrid/helpers/sqlRequests.js +9 -18
- package/dist/components/grid/SqlRequestDataGrid/index.js +290 -339
- package/dist/components/grid/SqlRequestDataGrid/styles.d.ts +2 -2
- package/dist/components/grid/SqlRequestDataGrid/styles.js +15 -13
- package/dist/components/grid/SqlRequestForeignList/index.js +144 -128
- package/dist/components/grid/SqlRequestForeignList/styles.d.ts +3 -3
- package/dist/components/grid/SqlRequestForeignList/styles.js +42 -21
- package/dist/components/grid/SqlRequestGrid/filters/FiltersSidebar.js +94 -59
- package/dist/components/grid/SqlRequestGrid/filters/styles.d.ts +4 -4
- package/dist/components/grid/SqlRequestGrid/filters/styles.js +81 -16
- package/dist/components/grid/SqlRequestGrid/helpers/sqlRequests.js +8 -17
- package/dist/components/grid/SqlRequestGrid/index.js +214 -232
- package/dist/components/grid/SqlRequestGrid/styles.d.ts +1 -1
- package/dist/components/grid/SqlRequestGrid/styles.js +20 -16
- package/dist/components/grid/VirtualScroller/hooks.js +39 -49
- package/dist/components/grid/VirtualScroller/index.js +62 -74
- package/dist/components/grid/VirtualScroller/styles.d.ts +5 -5
- package/dist/components/grid/VirtualScroller/styles.js +46 -40
- package/dist/components/grid/index.js +60 -26
- package/dist/components/layout/Columns.d.ts +2 -2
- package/dist/components/layout/Columns.js +19 -20
- package/dist/components/layout/Dropdown/index.d.ts +1 -1
- package/dist/components/layout/Dropdown/index.js +50 -114
- package/dist/components/layout/Dropdown/styles.d.ts +2 -2
- package/dist/components/layout/Dropdown/styles.js +40 -60
- package/dist/components/layout/Flexbox.d.ts +2 -2
- package/dist/components/layout/Flexbox.js +12 -25
- package/dist/components/layout/Grid/index.js +6 -6
- package/dist/components/layout/Grid/styles.d.ts +2 -2
- package/dist/components/layout/Grid/styles.js +19 -28
- package/dist/components/layout/Loading/index.js +20 -51
- package/dist/components/layout/Loading/styles.d.ts +2 -2
- package/dist/components/layout/Loading/styles.js +29 -17
- package/dist/components/layout/Masonry/index.js +17 -19
- package/dist/components/layout/Masonry/styles.d.ts +2 -2
- package/dist/components/layout/Masonry/styles.js +16 -16
- package/dist/components/layout/Modal/index.d.ts +1 -1
- package/dist/components/layout/Modal/index.js +31 -74
- package/dist/components/layout/Modal/styles.d.ts +9 -9
- package/dist/components/layout/Modal/styles.js +103 -65
- package/dist/components/layout/index.js +16 -22
- package/dist/components/search/HighlightedText.js +18 -43
- package/dist/components/search/QuickSearchBar.js +86 -101
- package/dist/components/search/QuickSearchResults.js +56 -82
- package/dist/components/search/index.js +18 -20
- package/dist/components/search/styles.d.ts +10 -10
- package/dist/components/search/styles.js +88 -39
- package/dist/config/index.js +1 -2
- package/dist/helpers/components.js +3 -7
- package/dist/helpers/dates.d.ts +1 -1
- package/dist/helpers/dates.js +10 -17
- package/dist/helpers/index.js +32 -22
- package/dist/helpers/numbers.js +36 -69
- package/dist/helpers/responsive.js +45 -55
- package/dist/helpers/styled/size.d.ts +2 -2
- package/dist/helpers/styled/size.js +12 -26
- package/dist/helpers/styled/space.d.ts +4 -4
- package/dist/helpers/styled/space.js +60 -89
- package/dist/helpers/styled/typography.d.ts +2 -2
- package/dist/helpers/styled/typography.js +13 -60
- package/dist/helpers/text.js +8 -16
- package/dist/hooks/index.js +23 -23
- package/dist/hooks/providers.d.ts +5 -5
- package/dist/hooks/providers.js +16 -22
- package/dist/hooks/useContainerMediaQuery.js +8 -9
- package/dist/hooks/useElementSize.js +17 -22
- package/dist/hooks/useMediaQuery.js +8 -10
- package/dist/hooks/useMediaQueryForWidth.js +27 -25
- package/dist/hooks/useMutableState.d.ts +1 -1
- package/dist/hooks/useMutableState.js +20 -20
- package/dist/hooks/useShowArchived.js +19 -20
- package/dist/hooks/useWindowSize.js +14 -18
- package/dist/icons/index.d.ts +48 -48
- package/dist/icons/index.js +118 -147
- package/dist/providers/AuthenticationProvider/helpers.js +5 -5
- package/dist/providers/AuthenticationProvider/index.d.ts +1 -1
- package/dist/providers/AuthenticationProvider/index.js +147 -260
- package/dist/providers/LoadingProvider/index.d.ts +1 -1
- package/dist/providers/LoadingProvider/index.js +16 -24
- package/dist/providers/PortalsProvider/index.d.ts +1 -1
- package/dist/providers/PortalsProvider/index.js +27 -55
- package/dist/providers/PortalsProvider/styles.d.ts +3 -3
- package/dist/providers/PortalsProvider/styles.js +30 -20
- package/dist/providers/SettingsProvider/index.d.ts +1 -1
- package/dist/providers/SettingsProvider/index.js +42 -52
- package/dist/providers/ToastProvider/index.d.ts +1 -1
- package/dist/providers/ToastProvider/index.js +67 -64
- package/dist/providers/TrackingProvider/hooks.js +11 -14
- package/dist/providers/TrackingProvider/index.d.ts +1 -1
- package/dist/providers/TrackingProvider/index.js +38 -39
- package/dist/providers/UiProviders/index.d.ts +2 -4
- package/dist/providers/UiProviders/index.js +35 -70
- package/dist/providers/UiProviders/styles.d.ts +1 -1
- package/dist/providers/UiProviders/styles.js +11 -12
- package/dist/providers/index.js +18 -21
- package/dist/services/HttpService.js +49 -122
- package/dist/services/WebSocketService.js +92 -154
- package/dist/services/globalSearch.d.ts +1 -2
- package/dist/services/globalSearch.js +4 -7
- package/dist/services/hooks.js +51 -112
- package/dist/services/index.js +96 -32
- package/dist/services/requests/auth.js +13 -27
- package/dist/services/requests/generic.js +14 -34
- package/dist/services/requests/tracking.js +4 -7
- package/dist/services/requests/userProfiles.js +9 -19
- package/dist/services/requests/users.js +11 -19
- package/dist/services/sqlRequests.js +11 -11
- package/dist/services/types/auth.js +44 -82
- package/dist/services/types/base.js +8 -41
- package/dist/services/types/generic.js +41 -94
- package/dist/services/types/tracking.js +18 -48
- package/dist/services/types/userProfiles.js +34 -71
- package/dist/services/types/users.js +43 -80
- package/dist/services/updateSqlRequests.js +5 -6
- package/dist/theme/ThemeProvider.d.ts +1 -1
- package/dist/theme/ThemeProvider.js +41 -52
- package/dist/theme/defaultTheme.js +432 -441
- package/dist/theme/helpers.d.ts +1 -1
- package/dist/theme/helpers.js +36 -68
- package/dist/theme/index.js +18 -19
- package/dist/theme/types.d.ts +1 -1
- package/dist/types/index.js +1 -2
- package/dist/ui.css +1 -0
- package/package.json +37 -20
- package/tsconfig.tsbuildinfo +1 -1
- package/vite.config.ts +94 -0
- package/dist/Icons.d.ts +0 -59
- package/dist/Icons.js +0 -149
- package/dist/components/common/TabsView/index.js +0 -19
- package/dist/components/common/TabsView/types.js +0 -2
- package/dist/components/data/DataGrid/DataGridCell.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridCell.js +0 -69
- package/dist/components/data/DataGrid/DataGridColumnsModal/helpers.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridColumnsModal/helpers.js +0 -18
- package/dist/components/data/DataGrid/DataGridColumnsModal/hooks.d.ts +0 -6
- package/dist/components/data/DataGrid/DataGridColumnsModal/hooks.js +0 -38
- package/dist/components/data/DataGrid/DataGridColumnsModal/index.d.ts +0 -15
- package/dist/components/data/DataGrid/DataGridColumnsModal/index.js +0 -116
- package/dist/components/data/DataGrid/DataGridColumnsModal/styles.d.ts +0 -10
- package/dist/components/data/DataGrid/DataGridColumnsModal/styles.js +0 -64
- package/dist/components/data/DataGrid/DataGridEditableCell/CheckboxEditableCell.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridEditableCell/CheckboxEditableCell.js +0 -23
- package/dist/components/data/DataGrid/DataGridEditableCell/DateEditableCell.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridEditableCell/DateEditableCell.js +0 -27
- package/dist/components/data/DataGrid/DataGridEditableCell/NumberEditableCell.d.ts +0 -7
- package/dist/components/data/DataGrid/DataGridEditableCell/NumberEditableCell.js +0 -34
- package/dist/components/data/DataGrid/DataGridEditableCell/TextEditableCell.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridEditableCell/TextEditableCell.js +0 -23
- package/dist/components/data/DataGrid/DataGridEditableCell/index.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridEditableCell/index.js +0 -91
- package/dist/components/data/DataGrid/DataGridEditableCell/styles.d.ts +0 -3
- package/dist/components/data/DataGrid/DataGridEditableCell/styles.js +0 -17
- package/dist/components/data/DataGrid/DataGridEditableCell/types.d.ts +0 -11
- package/dist/components/data/DataGrid/DataGridEditableCell/types.js +0 -3
- package/dist/components/data/DataGrid/DataGridFilterMenu/FilterValuesScroller.d.ts +0 -13
- package/dist/components/data/DataGrid/DataGridFilterMenu/FilterValuesScroller.js +0 -96
- package/dist/components/data/DataGrid/DataGridFilterMenu/helpers.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridFilterMenu/helpers.js +0 -19
- package/dist/components/data/DataGrid/DataGridFilterMenu/hooks.d.ts +0 -10
- package/dist/components/data/DataGrid/DataGridFilterMenu/hooks.js +0 -51
- package/dist/components/data/DataGrid/DataGridFilterMenu/index.d.ts +0 -10
- package/dist/components/data/DataGrid/DataGridFilterMenu/index.js +0 -230
- package/dist/components/data/DataGrid/DataGridFilterMenu/styles.d.ts +0 -8
- package/dist/components/data/DataGrid/DataGridFilterMenu/styles.js +0 -31
- package/dist/components/data/DataGrid/DataGridFooter.d.ts +0 -4
- package/dist/components/data/DataGrid/DataGridFooter.js +0 -52
- package/dist/components/data/DataGrid/DataGridHeader.d.ts +0 -4
- package/dist/components/data/DataGrid/DataGridHeader.js +0 -113
- package/dist/components/data/DataGrid/DataGridHeaderCell.d.ts +0 -2
- package/dist/components/data/DataGrid/DataGridHeaderCell.js +0 -81
- package/dist/components/data/DataGrid/DataGridRowTemplate.d.ts +0 -3
- package/dist/components/data/DataGrid/DataGridRowTemplate.js +0 -82
- package/dist/components/data/DataGrid/DataGridToolbar.d.ts +0 -4
- package/dist/components/data/DataGrid/DataGridToolbar.js +0 -141
- package/dist/components/data/DataGrid/FilterModalContent/index.d.ts +0 -7
- package/dist/components/data/DataGrid/FilterModalContent/index.js +0 -127
- package/dist/components/data/DataGrid/FilterModalContent/styles.d.ts +0 -1
- package/dist/components/data/DataGrid/FilterModalContent/styles.js +0 -15
- package/dist/components/data/DataGrid/constants.d.ts +0 -6
- package/dist/components/data/DataGrid/constants.js +0 -9
- package/dist/components/data/DataGrid/helpers/columns.d.ts +0 -16
- package/dist/components/data/DataGrid/helpers/columns.js +0 -173
- package/dist/components/data/DataGrid/helpers/filters.d.ts +0 -18
- package/dist/components/data/DataGrid/helpers/filters.js +0 -334
- package/dist/components/data/DataGrid/helpers/index.d.ts +0 -2
- package/dist/components/data/DataGrid/helpers/index.js +0 -18
- package/dist/components/data/DataGrid/hooks/index.d.ts +0 -7
- package/dist/components/data/DataGrid/hooks/index.js +0 -30
- package/dist/components/data/DataGrid/hooks/useDataGrid.d.ts +0 -2
- package/dist/components/data/DataGrid/hooks/useDataGrid.js +0 -293
- package/dist/components/data/DataGrid/hooks/useDataGridChangedRows.d.ts +0 -9
- package/dist/components/data/DataGrid/hooks/useDataGridChangedRows.js +0 -91
- package/dist/components/data/DataGrid/hooks/useDataGridCopy.d.ts +0 -4
- package/dist/components/data/DataGrid/hooks/useDataGridCopy.js +0 -158
- package/dist/components/data/DataGrid/hooks/useDataGridSettings.d.ts +0 -12
- package/dist/components/data/DataGrid/hooks/useDataGridSettings.js +0 -43
- package/dist/components/data/DataGrid/hooks/useRefreshModal.d.ts +0 -5
- package/dist/components/data/DataGrid/hooks/useRefreshModal.js +0 -25
- package/dist/components/data/DataGrid/index.d.ts +0 -5
- package/dist/components/data/DataGrid/index.js +0 -99
- package/dist/components/data/DataGrid/styles.d.ts +0 -45
- package/dist/components/data/DataGrid/styles.js +0 -180
- package/dist/components/data/DataGrid/types.d.ts +0 -250
- package/dist/components/data/DataGrid/types.js +0 -44
- package/dist/components/data/SqlRequestDataGrid/SqlRequestForeignListEditableCell.d.ts +0 -2
- package/dist/components/data/SqlRequestDataGrid/SqlRequestForeignListEditableCell.js +0 -19
- package/dist/components/data/SqlRequestDataGrid/helpers/columns.d.ts +0 -16
- package/dist/components/data/SqlRequestDataGrid/helpers/columns.js +0 -313
- package/dist/components/data/SqlRequestDataGrid/helpers/index.d.ts +0 -2
- package/dist/components/data/SqlRequestDataGrid/helpers/index.js +0 -18
- package/dist/components/data/SqlRequestDataGrid/helpers/rows.d.ts +0 -2
- package/dist/components/data/SqlRequestDataGrid/helpers/rows.js +0 -17
- package/dist/components/data/SqlRequestDataGrid/helpers/sqlRequests.d.ts +0 -3
- package/dist/components/data/SqlRequestDataGrid/helpers/sqlRequests.js +0 -19
- package/dist/components/data/SqlRequestDataGrid/index.d.ts +0 -6
- package/dist/components/data/SqlRequestDataGrid/index.js +0 -343
- package/dist/components/data/SqlRequestDataGrid/styles.d.ts +0 -2
- package/dist/components/data/SqlRequestDataGrid/styles.js +0 -14
- package/dist/components/data/SqlRequestDataGrid/types.d.ts +0 -31
- package/dist/components/data/SqlRequestDataGrid/types.js +0 -3
- package/dist/components/data/SqlRequestForeignList/index.d.ts +0 -5
- package/dist/components/data/SqlRequestForeignList/index.js +0 -131
- package/dist/components/data/SqlRequestForeignList/styles.d.ts +0 -9
- package/dist/components/data/SqlRequestForeignList/styles.js +0 -22
- package/dist/components/data/SqlRequestForeignList/types.d.ts +0 -22
- package/dist/components/data/SqlRequestForeignList/types.js +0 -2
- package/dist/components/data/SqlRequestGrid/filters/FiltersSidebar.d.ts +0 -10
- package/dist/components/data/SqlRequestGrid/filters/FiltersSidebar.js +0 -60
- package/dist/components/data/SqlRequestGrid/filters/styles.d.ts +0 -4
- package/dist/components/data/SqlRequestGrid/filters/styles.js +0 -17
- package/dist/components/data/SqlRequestGrid/helpers/index.d.ts +0 -1
- package/dist/components/data/SqlRequestGrid/helpers/index.js +0 -17
- package/dist/components/data/SqlRequestGrid/helpers/sqlRequests.d.ts +0 -3
- package/dist/components/data/SqlRequestGrid/helpers/sqlRequests.js +0 -18
- package/dist/components/data/SqlRequestGrid/index.d.ts +0 -5
- package/dist/components/data/SqlRequestGrid/index.js +0 -235
- package/dist/components/data/SqlRequestGrid/styles.d.ts +0 -2
- package/dist/components/data/SqlRequestGrid/styles.js +0 -17
- package/dist/components/data/SqlRequestGrid/types.d.ts +0 -40
- package/dist/components/data/SqlRequestGrid/types.js +0 -2
- package/dist/components/data/VirtualScroller/hooks.d.ts +0 -18
- package/dist/components/data/VirtualScroller/hooks.js +0 -50
- package/dist/components/data/VirtualScroller/index.d.ts +0 -15
- package/dist/components/data/VirtualScroller/index.js +0 -77
- package/dist/components/data/VirtualScroller/styles.d.ts +0 -14
- package/dist/components/data/VirtualScroller/styles.js +0 -41
- package/dist/components/data/VirtualScroller/types.d.ts +0 -6
- package/dist/components/data/VirtualScroller/types.js +0 -2
- package/dist/components/data/index.d.ts +0 -12
- package/dist/components/data/index.js +0 -28
- package/dist/components/grid/DataGrid/DataGridEditableCell/types.js +0 -3
- package/dist/components/grid/DataGrid/helpers/index.js +0 -18
- package/dist/components/grid/SqlRequestDataGrid/helpers/index.js +0 -18
- package/dist/components/grid/SqlRequestDataGrid/types.js +0 -3
- package/dist/components/grid/SqlRequestForeignList/types.js +0 -2
- package/dist/components/grid/SqlRequestGrid/helpers/index.js +0 -17
- package/dist/components/grid/SqlRequestGrid/types.js +0 -2
- package/dist/components/grid/VirtualScroller/types.js +0 -2
- package/dist/components/index.d.ts +0 -6
- package/dist/components/index.js +0 -22
- package/dist/components/search/types.js +0 -2
- package/dist/components/ui/Avatar/index.d.ts +0 -10
- package/dist/components/ui/Avatar/index.js +0 -62
- package/dist/components/ui/Avatar/styles.d.ts +0 -4
- package/dist/components/ui/Avatar/styles.js +0 -53
- package/dist/components/ui/Card/index.d.ts +0 -10
- package/dist/components/ui/Card/index.js +0 -34
- package/dist/components/ui/Card/styles.d.ts +0 -4
- package/dist/components/ui/Card/styles.js +0 -17
- package/dist/components/ui/ContextMenu/index.d.ts +0 -11
- package/dist/components/ui/ContextMenu/index.js +0 -63
- package/dist/components/ui/ContextMenu/styles.d.ts +0 -10
- package/dist/components/ui/ContextMenu/styles.js +0 -66
- package/dist/components/ui/Ellipsis.d.ts +0 -12
- package/dist/components/ui/Ellipsis.js +0 -28
- package/dist/components/ui/Label.d.ts +0 -10
- package/dist/components/ui/Label.js +0 -84
- package/dist/components/ui/Message/index.d.ts +0 -9
- package/dist/components/ui/Message/index.js +0 -63
- package/dist/components/ui/Message/styles.d.ts +0 -6
- package/dist/components/ui/Message/styles.js +0 -52
- package/dist/components/ui/TabsView/TabsList.d.ts +0 -11
- package/dist/components/ui/TabsView/TabsList.js +0 -42
- package/dist/components/ui/TabsView/TabsView.d.ts +0 -11
- package/dist/components/ui/TabsView/TabsView.js +0 -17
- package/dist/components/ui/TabsView/index.d.ts +0 -3
- package/dist/components/ui/TabsView/index.js +0 -19
- package/dist/components/ui/TabsView/styles.d.ts +0 -11
- package/dist/components/ui/TabsView/styles.js +0 -57
- package/dist/components/ui/TabsView/types.d.ts +0 -10
- package/dist/components/ui/TabsView/types.js +0 -2
- package/dist/components/ui/index.d.ts +0 -7
- package/dist/components/ui/index.js +0 -23
- package/dist/helpers/getScrollbarSize.js +0 -17
- package/dist/helpers/types.js +0 -8
- package/dist/hooks/useMutableState.test.js +0 -320
- package/dist/index.d.ts +0 -91
- package/dist/index.js +0 -107
- package/dist/providers/ThemeProvider/ThemeProvider.d.ts +0 -8
- package/dist/providers/ThemeProvider/ThemeProvider.js +0 -53
- package/dist/providers/ThemeProvider/defaultTheme.d.ts +0 -3
- package/dist/providers/ThemeProvider/defaultTheme.js +0 -450
- package/dist/providers/ThemeProvider/helpers.d.ts +0 -13
- package/dist/providers/ThemeProvider/helpers.js +0 -69
- package/dist/providers/ThemeProvider/index.d.ts +0 -8
- package/dist/providers/ThemeProvider/index.js +0 -53
- package/dist/providers/ThemeProvider/types.d.ts +0 -28
- package/dist/providers/ThemeProvider/types.js +0 -2
- package/dist/providers/hooks.d.ts +0 -11
- package/dist/providers/hooks.js +0 -22
- package/dist/services/advancedRequests.js +0 -13
- package/dist/services/base.js +0 -7
- package/dist/services/requests/printing.js +0 -8
- package/dist/services/smartQueries.js +0 -10
- package/dist/services/smartRequests.js +0 -1
- package/dist/services/types/printing.js +0 -2
- package/dist/theme/types.js +0 -2
- package/dist/types.d.ts +0 -3
- package/dist/types.js +0 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M47 239c-9.4 9.4-9.4 24.6 0 33.9L207 433c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97.9 256 241 113c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L47 239z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M273 239c9.4 9.4 9.4 24.6 0 33.9L113 433c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l143-143L79 113c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L273 239z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (s) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", height: 16, width: 18, viewBox: "0 0 576 512", ...s }, /* @__PURE__ */ c.createElement("path", { d: "M456 56c0-7.7-3.7-15-10-19.5s-14.3-5.7-21.6-3.3l-48 16C363.8 53.4 357 67 361.2 79.6S379 99 391.6 94.8L408 89.3V128v48H384c-13.3 0-24 10.7-24 24s10.7 24 24 24h48 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H456V128 56zM143 473c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55V56c0-13.3-10.7-24-24-24s-24 10.7-24 24V398.1L81 343c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l96 96zm281-89a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-17.9 46.2l-8.7 10.6c-8.4 10.3-6.9 25.4 3.4 33.8s25.4 6.9 33.8-3.4l56.8-69.4C504.7 385.5 512 365.1 512 344c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 42.5 30.1 77.9 70.1 86.2z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const e = (t) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", height: 16, width: 18, viewBox: "0 0 576 512", ...t }, /* @__PURE__ */ c.createElement("path", { d: "M47 377l96 96c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55V56c0-13.3-10.7-24-24-24s-24 10.7-24 24V398.1L81 343c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9zm305-89c-13.3 0-24 10.7-24 24s10.7 24 24 24h74.6L334.1 440.1c-6.3 7.1-7.8 17.2-4 25.8S342.6 480 352 480H480c13.3 0 24-10.7 24-24s-10.7-24-24-24H405.4l92.5-104.1c6.3-7.1 7.8-17.2 4-25.8S489.4 288 480 288H352zM416 32c-9.1 0-17.4 5.1-21.5 13.3l-80 160c-5.9 11.9-1.1 26.3 10.7 32.2s26.3 1.1 32.2-10.7L370.8 200H456c1.7 0 3.3-.2 4.9-.5l13.6 27.2c5.9 11.9 20.3 16.7 32.2 10.7s16.7-20.3 10.7-32.2l-80-160C433.4 37.1 425.1 32 416 32zM394.8 152L416 109.7 437.2 152H394.8z" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M143 473L47 377c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55V56c0-13.3 10.7-24 24-24s24 10.7 24 24V398.1l55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-96 96c-9.4 9.4-24.6 9.4-33.9 0zM368 368v64h64V368H368zm-48 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V368zm48-160H496V80L368 80V208zm-48 0V80c0-26.5 21.5-48 48-48H496c26.5 0 48 21.5 48 48V208c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const e = (s) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", ...s }, /* @__PURE__ */ c.createElement("path", { d: "M424 80a40 40 0 1 0 0 80 40 40 0 1 0 0-80zm88 40c0 .8 0 1.6 0 2.5c-.6 20.2-7.9 39.7-20.9 55.3l-64.6 77.6c-8.5 10.2-23.6 11.6-33.8 3.1s-11.6-23.6-3.1-33.8L405.1 206c-39.5-8.6-69.1-43.8-69.1-86c0-48.6 39.4-88 88-88s88 39.4 88 88zM143 39c9.4-9.4 24.6-9.4 33.9 0l96 96c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55V456c0 13.3-10.7 24-24 24s-24-10.7-24-24V113.9L81 169c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l96-96zM456 312V432h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H432 384c-13.3 0-24-10.7-24-24s10.7-24 24-24h24V345.3l-16.4 5.5c-12.6 4.2-26.2-2.6-30.4-15.2s2.6-26.2 15.2-30.4l48-16c7.3-2.4 15.4-1.2 21.6 3.3s10 11.8 10 19.5z" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M368 208V80l128 0V208H368zm-48 0c0 26.5 21.5 48 48 48H496c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V208zM177 39c-9.4-9.4-24.6-9.4-33.9 0L47 135c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55V456c0 13.3 10.7 24 24 24s24-10.7 24-24V113.9l55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L177 39zM368 368h64v64H368V368zm-48 0v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (s) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", height: 16, width: 18, viewBox: "0 0 576 512", ...s }, /* @__PURE__ */ c.createElement("path", { d: "M352 32H480c9.4 0 18 5.5 21.9 14.2s2.3 18.7-4 25.8L405.4 176H480c13.3 0 24 10.7 24 24s-10.7 24-24 24H352c-9.4 0-18-5.5-21.9-14.2s-2.3-18.7 4-25.8L426.6 80H352c-13.3 0-24-10.7-24-24s10.7-24 24-24zM143 39c9.4-9.4 24.6-9.4 33.9 0l96 96c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55V456c0 13.3-10.7 24-24 24s-24-10.7-24-24V113.9L81 169c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l96-96zM416 272c9.1 0 17.4 5.1 21.5 13.3l80 160c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-13.6-27.2c-1.6 .3-3.2 .5-4.9 .5H370.8l-13.4 26.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l80-160c4.1-8.1 12.4-13.3 21.5-13.3zM394.8 392h42.3L416 349.7 394.8 392z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const e = (t) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ c.createElement("path", { d: "M496 200c0 13.3-10.7 24-24 24h0H360 328c-13.3 0-24-10.7-24-24s10.7-24 24-24h32 54.1l-52.1-52.1C333.8 95.8 295.7 80 256 80c-72.7 0-135.2 44.1-162 107.1c-5.2 12.2-19.3 17.9-31.5 12.7s-17.9-19.3-12.7-31.5C83.9 88.2 163.4 32 256 32c52.5 0 102.8 20.8 139.9 57.9L448 142.1V88l0-.4V56c0-13.3 10.7-24 24-24s24 10.7 24 24V200zM40 288H152c13.3 0 24 10.7 24 24s-10.7 24-24 24H97.9l52.1 52.1C178.2 416.2 216.3 432 256 432c72.6 0 135-43.9 161.9-106.8c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5C427.8 424 348.5 480 256 480c-52.5 0-102.8-20.8-139.9-57.9L64 369.9V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V312c0-13.3 10.7-24 24-24z" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M177 7c-9.4-9.4-24.6-9.4-33.9 0L47 103c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55V430.1L81 375c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l96 96c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55V81.9l55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L177 7z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M0 88C0 74.7 10.7 64 24 64H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 112 0 101.3 0 88zM0 248c0-13.3 10.7-24 24-24H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H424c13.3 0 24 10.7 24 24z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M239 401c9.4 9.4 24.6 9.4 33.9 0L465 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-175 175L81 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L239 401z" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L369 209z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8V248c0-13.3-10.7-24-24-24H216c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v64H216zm40-144a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const e = (t) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", height: 16, width: 14, viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ c.createElement("path", { d: "M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8l96 0 0-184c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 184 96 0c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-160 160z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M432 256a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-160 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zM64 304a48 48 0 1 1 0-96 48 48 0 1 1 0 96z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L408.1 294.6 566.6 100c6.1-7.4 9.4-16.7 9.4-26.3c0-23-18.7-41.7-41.7-41.7h-429c-8.6 0-16.5 2.6-23.1 7.1L38.8 5.1zM134.4 80H521L370.3 265 134.4 80zM288 364.4V322.9l-48-37.8v83.2c0 12.2 5.6 23.7 15.1 31.3L347.6 473c5.7 4.5 12.8 7 20.1 7c17.8 0 32.3-14.5 32.3-32.3V411.2l-48-37.8v41.9l-64-50.8z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M0 73.7C0 50.7 18.7 32 41.7 32H470.3c23 0 41.7 18.7 41.7 41.7c0 9.6-3.3 18.9-9.4 26.3L336 304.5V447.7c0 17.8-14.5 32.3-32.3 32.3c-7.3 0-14.4-2.5-20.1-7l-92.5-73.4c-9.6-7.6-15.1-19.1-15.1-31.3V304.5L9.4 100C3.3 92.6 0 83.3 0 73.7zM55 80L218.6 280.8c3.5 4.3 5.4 9.6 5.4 15.2v68.4l64 50.8V296c0-5.5 1.9-10.9 5.4-15.2L457 80H55z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as s from "react";
|
|
2
|
+
const l = (c) => /* @__PURE__ */ s.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...c }, /* @__PURE__ */ s.createElement("path", { d: "M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128l95.1 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0L325.8 320l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7-95.1 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384 32 384c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 21.3-128L64 192c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320l95.1 0 21.3-128-95.1 0z" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const l = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-55.5-43.5c.5-3.1 .7-6.3 .7-9.6l0-320c0-35.3-28.7-64-64-64L128 32c-14.4 0-27.8 4.8-38.5 12.9L38.8 5.1zM134.4 80L512 80c8.8 0 16 7.2 16 16l0 292.5-53.4-41.9L387 233.3c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3l-7.2 9.3L256 175.3c-.4-26.2-21.7-47.3-48-47.3c-3.7 0-7.4 .4-10.8 1.2L134.4 80zm353 400L282.9 318.9 266 340.7l-30.5-42.7C231 291.7 223.8 288 216 288s-15 3.7-19.5 10.1l-80 112-4.5 6.3 0-.3 0-231.8L64 146.4 64 416c0 35.3 28.7 64 64 64l359.4 0z" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l160-160c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 96 184 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-184 0 0 96c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-160-160z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M368 208A160 160 0 1 0 48 208a160 160 0 1 0 320 0zM337.1 371.1C301.7 399.2 256.8 416 208 416C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208c0 48.8-16.8 93.7-44.9 129.1L505 471c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L337.1 371.1z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24V232H40c-13.3 0-24 10.7-24 24s10.7 24 24 24H200V440c0 13.3 10.7 24 24 24s24-10.7 24-24V280H408c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V72z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
const c = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M438.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-96L40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l184 0 0-96c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l160 160z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M1.8 46.8C5.5 37.8 14.3 32 24 32H328c30.9 0 56 25.1 56 56v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-4.4-3.6-8-8-8H81.9L241 239c9.4 9.4 9.4 24.6 0 33.9L81.9 432H328c4.4 0 8-3.6 8-8V376c0-13.3 10.7-24 24-24s24 10.7 24 24v48c0 30.9-25.1 56-56 56H24c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l183-183L7 73C.2 66.1-1.9 55.8 1.8 46.8z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as L from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ L.createElement("svg", { height: 24, viewBox: "0 0 24 24", width: 24, xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ L.createElement("path", { d: "M 8 16 L 11 16 L 11 13 L 8 13 L 8 16 Z M 13 5 L 12 5 L 12 3 L 10 3 L 10 5 L 6 5 L 6 3 L 4 3 L 4 5 L 3 5 C 1.89 5 1 5.89 1 7 L 1 18 C 1 19.11 1.89 20 3 20 L 13 20 C 14.11 20 15 19.11 15 18 L 15 7 C 15 5.89 14.11 5 13 5 M 3 18 L 3 11 L 13 11 L 13 18 L 3 18 Z", style: {} }), /* @__PURE__ */ L.createElement("path", { d: "M 18.5 7.5 L 15.5 7.5 L 15.5 18 C 15.478 18.657 15.194 19.345 14.77 19.77 C 14.345 20.194 13.657 20.478 13 20.5 L 3 20.5 C 2.343 20.478 1.655 20.194 1.23 19.77 C 0.806 19.345 0.522 18.657 0.5 18 L 0.5 7 C 0.522 6.343 0.806 5.655 1.23 5.23 C 1.655 4.806 2.343 4.522 3 4.5 L 3.5 4.5 L 3.5 2.5 L 6.5 2.5 L 6.5 4.5 L 9.5 4.5 L 9.5 2.5 L 12.5 2.5 L 12.5 4.5 L 13 4.5 C 13.657 4.522 14.345 4.806 14.77 5.23 C 15.153 5.613 15.422 6.211 15.486 6.807 L 20 2.293 L 25.207 7.5 L 21.5 7.5 L 21.5 21.5 L 18.5 21.5 Z M 19.5 6.5 L 19.5 20.5 L 20.5 20.5 L 20.5 6.5 L 22.793 6.5 L 20 3.707 L 17.207 6.5 Z M 11.5 12.5 L 11.5 16.5 L 7.5 16.5 L 7.5 12.5 Z M 8.5 15.5 L 10.5 15.5 L 10.5 13.5 L 8.5 13.5 Z M 11.5 5.5 L 11.5 3.5 L 10.5 3.5 L 10.5 5.5 L 5.5 5.5 L 5.5 3.5 L 4.5 3.5 L 4.5 5.5 L 3 5.5 C 2.547 5.478 2.235 5.639 1.937 5.937 C 1.639 6.235 1.478 6.547 1.5 7 L 1.5 18 C 1.478 18.453 1.639 18.765 1.937 19.063 C 2.235 19.361 2.547 19.522 3 19.5 L 13 19.5 C 13.453 19.522 13.765 19.361 14.063 19.063 C 14.361 18.765 14.522 18.453 14.5 18 L 14.5 7 C 14.522 6.547 14.361 6.235 14.063 5.937 C 13.765 5.639 13.453 5.478 13 5.5 Z M 2.5 10.5 L 13.5 10.5 L 13.5 18.5 L 2.5 18.5 Z M 12.5 17.5 L 12.5 11.5 L 3.5 11.5 L 3.5 17.5 Z", style: {
|
|
3
|
+
fill: "none"
|
|
4
|
+
} }), /* @__PURE__ */ L.createElement("path", { d: "M 19 17 L 16 17 L 20 21 L 24 17 L 21 17 L 21 3 L 19 3 L 19 17 Z", style: {} }));
|
|
5
|
+
export {
|
|
6
|
+
t as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as h from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ h.createElement("svg", { height: 24, viewBox: "0 0 24 24", width: 24, xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ h.createElement("path", { d: "m19 7h-3l4-4 4 4h-3v14h-2zm-11 9h3v-3h-3zm5-11h-1v-2h-2v2h-4v-2h-2v2h-1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h10c1.11 0 2-.89 2-2v-11c0-1.11-.89-2-2-2m-10 13v-7h10v7z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
const a = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", height: 16, width: 16, viewBox: "0 0 512 512", ...e }, /* @__PURE__ */ t.createElement("path", { opacity: 1, d: "M457 372c11.5 6.6 26.3 2.7 31.8-9.3C503.7 330.2 512 294.1 512 256C512 122.7 410.1 13.2 280 1.1C266.8-.1 256 10.7 256 24s10.8 23.9 24 25.4C383.5 61.2 464 149.2 464 256c0 29.3-6.1 57.3-17 82.6c-5.3 12.2-1.5 26.8 10 33.5z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M48 416V160H232V432H64c-8.8 0-16-7.2-16-16zm232 16V160H464V416c0 8.8-7.2 16-16 16H280zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as L from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ L.createElement("svg", { viewBox: "0 0 512 512", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ L.createElement("path", { d: "M 280 248 L 280 313.318 L 232 265.357 L 232 248 L 214.63 248 L 166.591 200 L 232 200 L 232 80 L 64 80 C 59.22 80 54.913 82.124 51.974 85.475 L 18.005 51.532 C 29.648 39.494 45.962 32 64 32 L 448 32 C 483.3 32 512 60.7 512 96 L 512 416 C 512 451.3 483.3 480 448 480 L 446.815 480 L 318.713 352 L 464 352 L 464 248 L 280 248 Z M 464 96 C 464 87.2 456.8 80 448 80 L 280 80 L 280 200 L 464 200 L 464 96 Z M 48 200 L 99.161 200 L 147.199 248 L 48 248 L 48 352 L 232 352 L 232 332.733 L 379.385 480 L 64 480 C 28.7 480 0 451.3 0 416 L 0 100.918 L 48 148.88 L 48 200 Z", style: {} }), /* @__PURE__ */ L.createElement("path", { d: "M 38.259 4.794 C 27.859 -3.406 12.759 -1.506 4.559 8.894 C -3.641 19.294 -1.741 34.394 8.659 42.594 L 473.724 507.288 C 484.124 515.488 499.224 513.588 507.424 503.188 C 515.624 492.788 513.724 477.688 503.324 469.488 L 38.259 4.794 Z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as L from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ L.createElement("svg", { viewBox: "0 0 512 512", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ L.createElement("path", { d: "M 48 248 L 48 352 L 232 352 L 232 248 L 48 248 Z M 48 200 L 232 200 L 232 80 L 64 80 C 55.2 80 48 87.2 48 96 L 48 200 Z M 280 80 L 280 200 L 464 200 L 464 96 C 464 87.2 456.8 80 448 80 L 280 80 Z M 464 248 L 280 248 L 280 352 L 464 352 L 464 248 Z M 64 480 C 28.7 480 0 451.3 0 416 L 0 96 C 0 60.7 28.7 32 64 32 L 448 32 C 483.3 32 512 60.7 512 96 L 512 416 C 512 451.3 483.3 480 448 480 L 64 480 Z", style: {} }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const H = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M48 264V160H232V264H48zm0 48H232V432H64c-8.8 0-16-7.2-16-16V312zM280 432V312H464V416c0 8.8-7.2 16-16 16H280zM464 264H280V160H464V264zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" }));
|
|
3
|
+
export {
|
|
4
|
+
H as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as V from "react";
|
|
2
|
+
const s = (c) => /* @__PURE__ */ V.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", ...c }, /* @__PURE__ */ V.createElement("path", { d: "M128 40c13.3 0 24 10.7 24 24V286.7L232 260V64c0-13.3 10.7-24 24-24s24 10.7 24 24V244l80-26.7V64c0-13.3 10.7-24 24-24s24 10.7 24 24V201.4l80-26.7V64c0-13.3 10.7-24 24-24s24 10.7 24 24v94.7l64.4-21.5c12.6-4.2 26.2 2.6 30.4 15.2s-2.6 26.2-15.2 30.4L536 209.3V448c0 13.3-10.7 24-24 24s-24-10.7-24-24V225.3L408 252V448c0 13.3-10.7 24-24 24s-24-10.7-24-24V268l-80 26.7V448c0 13.3-10.7 24-24 24s-24-10.7-24-24V310.6l-80 26.7V448c0 13.3-10.7 24-24 24s-24-10.7-24-24V353.3L39.6 374.8C27 379 13.4 372.2 9.2 359.6S11.8 333.4 24.4 329.2L104 302.7V64c0-13.3 10.7-24 24-24z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const e = (s) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...s }, /* @__PURE__ */ c.createElement("path", { d: "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as c from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ c.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...e }, /* @__PURE__ */ c.createElement("path", { d: "M248.4 84.3c1.6-2.7 4.5-4.3 7.6-4.3s6 1.6 7.6 4.3L461.9 410c1.4 2.3 2.1 4.9 2.1 7.5c0 8-6.5 14.5-14.5 14.5H62.5c-8 0-14.5-6.5-14.5-14.5c0-2.7 .7-5.3 2.1-7.5L248.4 84.3zm-41-25L9.1 385c-6 9.8-9.1 21-9.1 32.5C0 452 28 480 62.5 480h387c34.5 0 62.5-28 62.5-62.5c0-11.5-3.2-22.7-9.1-32.5L304.6 59.3C294.3 42.4 275.9 32 256 32s-38.3 10.4-48.6 27.3zM288 368a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-8-184c0-13.3-10.7-24-24-24s-24 10.7-24 24v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184z" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M169.4 41.4c12.5-12.5 32.8-12.5 45.3 0l160 160c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H256V440c0 22.1-17.9 40-40 40H168c-22.1 0-40-17.9-40-40V256H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l160-160z" }));
|
|
3
|
+
export {
|
|
4
|
+
c as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (c) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...c }, /* @__PURE__ */ e.createElement("path", { d: "M96 128a128 128 0 1 0 256 0A128 128 0 1 0 96 128zm94.5 200.2l18.6 31L175.8 483.1l-36-146.9c-2-8.1-9.8-13.4-17.9-11.3C51.9 342.4 0 405.8 0 481.3c0 17 13.8 30.7 30.7 30.7l131.7 0c0 0 0 0 .1 0l5.5 0 112 0 5.5 0c0 0 0 0 .1 0l131.7 0c17 0 30.7-13.8 30.7-30.7c0-75.5-51.9-138.9-121.9-156.4c-8.1-2-15.9 3.3-17.9 11.3l-36 146.9L238.9 359.2l18.6-31c6.4-10.7-1.3-24.2-13.7-24.2L224 304l-19.7 0c-12.4 0-20.1 13.6-13.7 24.2z" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as C from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ C.createElement("svg", { className: "svg-icon", style: {
|
|
3
|
+
width: "1em",
|
|
4
|
+
height: "1em",
|
|
5
|
+
verticalAlign: "middle",
|
|
6
|
+
fill: "currentColor",
|
|
7
|
+
overflow: "hidden"
|
|
8
|
+
}, viewBox: "0 0 710 710", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M 533.71 203.895 C 481.754 277.349 428.007 365.733 372.468 469.047 C 386.801 522.197 405.015 565.494 427.111 598.937 C 449.207 632.379 469.511 649.101 488.024 649.101 C 492.204 649.101 496.385 648.354 500.565 646.861 C 504.745 645.368 509.075 642.382 513.555 637.903 C 518.033 633.424 522.96 627.005 528.335 618.643 C 533.71 610.283 539.98 599.533 547.146 586.396 L 557 595.353 C 546.848 636.56 536.397 665.971 525.647 683.588 C 514.898 701.206 499.67 710.014 479.962 710.014 C 453.089 710.014 429.5 690.307 409.195 650.892 C 399.64 631.782 390.085 610.432 380.53 586.843 C 370.975 563.254 361.121 536.53 350.969 506.67 C 338.955 528.892 326.712 550.99 314.242 572.959 C 301.9 594.7 289.657 616.498 277.514 638.351 C 269.751 652.684 262.884 664.18 256.911 672.839 C 250.939 681.499 245.565 688.217 240.787 692.994 C 232.427 700.758 218.99 704.639 200.477 704.639 C 182.561 704.639 173.603 701.056 173.603 693.89 C 173.603 690.904 175.693 687.022 179.873 682.245 C 206.747 646.413 233.173 606.999 259.151 564.001 C 285.129 521.003 309.165 478.005 331.261 435.007 C 312.749 371.705 293.788 322.885 274.379 288.547 C 254.97 254.207 235.711 237.039 216.601 237.039 C 213.045 237.033 209.531 237.797 206.299 239.278 C 203.015 240.771 199.432 243.906 195.549 248.684 C 191.669 253.461 187.189 260.03 182.113 268.391 C 177.037 276.751 170.916 287.501 163.749 300.639 L 153 290.786 C 160.764 264.509 167.482 243.757 173.155 228.529 C 178.829 213.3 184.353 201.954 189.727 194.489 C 195.102 187.024 200.925 182.097 207.195 179.709 C 213.465 177.319 221.677 176.125 231.829 176.125 C 244.968 176.125 256.911 181.5 267.661 192.249 C 273.036 198.819 279.157 208.075 286.024 220.019 C 292.892 231.962 299.909 246.295 307.075 263.016 C 314.242 280.335 321.557 299.893 329.022 321.69 C 336.487 343.488 344.102 368.122 351.865 395.593 C 373.364 356.775 391.429 324.527 406.06 298.848 C 420.691 273.168 431.888 253.461 439.652 239.726 C 448.012 225.99 454.88 214.793 460.255 206.134 C 465.63 197.474 469.81 192.249 472.796 190.458 C 479.962 184.486 492.205 181.5 509.523 181.5 C 528.633 181.5 538.188 185.083 538.188 192.25 C 538.188 195.832 536.696 199.714 533.71 203.894 L 533.71 203.895 Z M 127 70 L 583 70 C 602.33 70 618 54.33 618 35 C 618 15.67 602.33 0 583 0 L 127 0 C 107.67 0 92 15.67 92 35 C 92 54.33 107.67 70 127 70 Z", style: {
|
|
9
|
+
fill: "rgba(0, 0, 0, 0.9)"
|
|
10
|
+
} }));
|
|
11
|
+
export {
|
|
12
|
+
t as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z" }));
|
|
3
|
+
export {
|
|
4
|
+
a as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M345 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-119 119L73 103c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l119 119L39 375c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l119-119L311 409c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-119-119L345 137z" }));
|
|
3
|
+
export {
|
|
4
|
+
s as default
|
|
5
|
+
};
|
|
@@ -1,50 +1,65 @@
|
|
|
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
|
-
|
|
1
|
+
import { jsx as e, jsxs as v } from "react/jsx-runtime";
|
|
2
|
+
import { useState as o, useRef as c, useCallback as I, useEffect as b } from "react";
|
|
3
|
+
import { redirect as w, Link as L } from "react-router-dom";
|
|
4
|
+
import { Button as k } from "../forms/Button.js";
|
|
5
|
+
import { Card as S } from "../common/Card/index.js";
|
|
6
|
+
import { FormContainer as y } from "./styles.js";
|
|
7
|
+
import { Input as d } from "../forms/styles.js";
|
|
8
|
+
import { Message as x } from "../common/Message/index.js";
|
|
9
|
+
import { StackedLabel as p } from "../forms/VerticalLabel.js";
|
|
10
|
+
import "lodash";
|
|
11
|
+
import { useAuthentication as M } from "../../hooks/providers.js";
|
|
12
|
+
const z = () => {
|
|
13
|
+
const [t, f] = o(
|
|
14
|
+
localStorage.getItem("username") || ""
|
|
15
|
+
), [n, g] = o(""), [h, i] = o(!1), [l, u] = o(""), s = c(null), a = c(null), { login: m } = M(), C = I(() => {
|
|
16
|
+
u(""), i(!0), m(t, n).then((r) => {
|
|
17
|
+
i(!1), r ? (localStorage.setItem("username", t), w("/")) : u("Identifiants invalides");
|
|
18
|
+
});
|
|
19
|
+
}, [m, n, t]);
|
|
20
|
+
return b(() => {
|
|
21
|
+
if (s.current && a.current) {
|
|
22
|
+
const r = t ? a.current : s.current;
|
|
23
|
+
r.select(), r.focus();
|
|
24
|
+
}
|
|
25
|
+
}, []), h ? /* @__PURE__ */ e("div", { children: "Chargement..." }) : /* @__PURE__ */ e(S, { children: /* @__PURE__ */ v(y, { children: [
|
|
26
|
+
/* @__PURE__ */ e(p, { label: "Adresse e-mail / Nom d'utilisateur", children: /* @__PURE__ */ e(
|
|
27
|
+
d,
|
|
28
|
+
{
|
|
29
|
+
ref: s,
|
|
30
|
+
type: "email",
|
|
31
|
+
autoComplete: "email",
|
|
32
|
+
required: !0,
|
|
33
|
+
value: t,
|
|
34
|
+
onChange: (r) => f(r.target.value),
|
|
35
|
+
"data-testid": "login-username"
|
|
36
|
+
}
|
|
37
|
+
) }),
|
|
38
|
+
/* @__PURE__ */ e(p, { label: "Mot de passe", children: /* @__PURE__ */ e(
|
|
39
|
+
d,
|
|
40
|
+
{
|
|
41
|
+
ref: a,
|
|
42
|
+
type: "password",
|
|
43
|
+
autoComplete: "current-password",
|
|
44
|
+
required: !0,
|
|
45
|
+
value: n,
|
|
46
|
+
onChange: (r) => g(r.target.value),
|
|
47
|
+
"data-testid": "login-password"
|
|
48
|
+
}
|
|
49
|
+
) }),
|
|
50
|
+
l && /* @__PURE__ */ e(x, { type: "error", children: l }),
|
|
51
|
+
/* @__PURE__ */ e(
|
|
52
|
+
k,
|
|
53
|
+
{
|
|
54
|
+
$color: "primary",
|
|
55
|
+
onClick: C,
|
|
56
|
+
"data-testid": "login-submit",
|
|
57
|
+
children: "Se connecter"
|
|
58
|
+
}
|
|
59
|
+
),
|
|
60
|
+
/* @__PURE__ */ e(L, { to: "/recover", children: "Mot de passe oublié ?" })
|
|
61
|
+
] }) });
|
|
62
|
+
};
|
|
63
|
+
export {
|
|
64
|
+
z as LoginForm
|
|
49
65
|
};
|
|
50
|
-
exports.LoginForm = LoginForm;
|
|
@@ -1,9 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as e, jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { Outlet as a } from "react-router-dom";
|
|
3
|
+
const m = () => /* @__PURE__ */ e("div", { className: "flex flex-row h-full w-full", children: [
|
|
4
|
+
/* @__PURE__ */ l("div", { className: "relative hidden w-0 flex-1 lg:block", children: /* @__PURE__ */ l("img", { className: "absolute inset-0 h-full w-full object-cover", alt: "" }) }),
|
|
5
|
+
/* @__PURE__ */ l("div", { className: "flex flex-1 flex-col justify-space-evenly overflow-y-auto px-4 py-12 sm:px-6 lg:flex-none lg:px-24 xl:px-36", children: /* @__PURE__ */ e("div", { className: "mx-auto w-full max-w-sm lg:max-w-96 lg:w-96 xl:max-w-[32rem] xl:w-[32rem]", children: [
|
|
6
|
+
/* @__PURE__ */ e("div", { className: "text-center", children: [
|
|
7
|
+
/* @__PURE__ */ l(
|
|
8
|
+
"img",
|
|
9
|
+
{
|
|
10
|
+
className: "h-20 w-auto inline-block",
|
|
11
|
+
src: "/logo192.png",
|
|
12
|
+
alt: "Burotel"
|
|
13
|
+
}
|
|
14
|
+
),
|
|
15
|
+
/* @__PURE__ */ l("h2", { className: "mt-8 text-2xl font-bold leading-9 tracking-tight text-gray-900", children: "Connectez-vous" })
|
|
16
|
+
] }),
|
|
17
|
+
/* @__PURE__ */ l("div", { className: "mt-10 sm:mx-auto sm:w-full sm:max-w-[640px]", children: /* @__PURE__ */ l("div", { className: "bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12", children: /* @__PURE__ */ l(a, {}) }) })
|
|
18
|
+
] }) })
|
|
19
|
+
] });
|
|
20
|
+
export {
|
|
21
|
+
m as LoginPage
|
|
8
22
|
};
|
|
9
|
-
exports.LoginPage = LoginPage;
|