cozy-ui 131.1.0-beta.9 → 131.2.0
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/CHANGELOG.md +7 -0
- package/dist/cozy-ui.min.css +2 -0
- package/dist/cozy-ui.utils.min.css +1 -0
- package/package.json +6 -2
- package/react/Accordion/Readme.md +35 -0
- package/react/AccordionActions/index.js +3 -0
- package/react/AccordionDetails/index.js +3 -0
- package/react/AccordionSummary/AccordionExpandIcon.jsx +8 -0
- package/react/AccordionSummary/index.js +10 -0
- package/react/ActionsBar/Readme.md +54 -0
- package/react/ActionsBar/ResponsiveAction.jsx +67 -0
- package/react/ActionsBar/index.jsx +217 -0
- package/react/ActionsBar/locales/en.json +4 -0
- package/react/ActionsBar/locales/fr.json +4 -0
- package/react/ActionsBar/locales/ru.json +4 -0
- package/react/ActionsBar/locales/vi.json +4 -0
- package/react/ActionsBar/locales/withActionsLocales.jsx +14 -0
- package/react/ActionsMenu/Actions/addToFavorites.js +66 -0
- package/react/ActionsMenu/Actions/call.js +34 -0
- package/react/ActionsMenu/Actions/copyToClipboard.js +55 -0
- package/react/ActionsMenu/Actions/divider.js +12 -0
- package/react/ActionsMenu/Actions/download.js +48 -0
- package/react/ActionsMenu/Actions/editAttribute.js +41 -0
- package/react/ActionsMenu/Actions/emailTo.js +34 -0
- package/react/ActionsMenu/Actions/helpers.js +242 -0
- package/react/ActionsMenu/Actions/helpers.spec.js +80 -0
- package/react/ActionsMenu/Actions/index.js +15 -0
- package/react/ActionsMenu/Actions/locales/en.json +29 -0
- package/react/ActionsMenu/Actions/locales/fr.json +29 -0
- package/react/ActionsMenu/Actions/locales/ru.json +29 -0
- package/react/ActionsMenu/Actions/locales/vi.json +29 -0
- package/react/ActionsMenu/Actions/locales/withActionsLocales.jsx +16 -0
- package/react/ActionsMenu/Actions/makeAction.jsx +42 -0
- package/react/ActionsMenu/Actions/modify.js +45 -0
- package/react/ActionsMenu/Actions/others.jsx +12 -0
- package/react/ActionsMenu/Actions/print.js +77 -0
- package/react/ActionsMenu/Actions/removeFromFavorites.js +66 -0
- package/react/ActionsMenu/Actions/smsTo.js +34 -0
- package/react/ActionsMenu/Actions/viewInContacts.js +44 -0
- package/react/ActionsMenu/Actions/viewInDrive.js +53 -0
- package/react/ActionsMenu/ActionsItems.jsx +85 -0
- package/react/ActionsMenu/ActionsMenuButton.jsx +45 -0
- package/react/ActionsMenu/ActionsMenuItem.jsx +40 -0
- package/react/ActionsMenu/ActionsMenuMobileHeader.jsx +31 -0
- package/react/ActionsMenu/ActionsMenuWrapper.jsx +82 -0
- package/react/ActionsMenu/Readme.md +254 -0
- package/react/ActionsMenu/index.jsx +97 -0
- package/react/Alert/Readme.md +150 -0
- package/react/Alert/index.jsx +146 -0
- package/react/AlertTitle/index.jsx +3 -0
- package/react/AppBar/index.js +3 -0
- package/react/AppIcon/Readme.md +96 -0
- package/react/AppIcon/index.jsx +169 -0
- package/react/AppIcon/styles.styl +37 -0
- package/react/AppLinker/Readme.md +32 -0
- package/react/AppLinker/__snapshots__/index.spec.jsx.snap +13 -0
- package/react/AppLinker/index.jsx +107 -0
- package/react/AppLinker/index.spec.jsx +60 -0
- package/react/AppLinker/native.config.js +1 -0
- package/react/AppLinker/native.js +55 -0
- package/react/AppLinker/native.spec.js +120 -0
- package/react/AppSections/Readme.md +41 -0
- package/react/AppSections/Sections.jsx +286 -0
- package/react/AppSections/Sections.styl +4 -0
- package/react/AppSections/__snapshots__/search.spec.js.snap +972 -0
- package/react/AppSections/_mockApps.js +197 -0
- package/react/AppSections/categories.js +138 -0
- package/react/AppSections/categories.spec.js +289 -0
- package/react/AppSections/components/AppsSection.jsx +81 -0
- package/react/AppSections/components/AppsSection.spec.jsx +58 -0
- package/react/AppSections/components/AppsSection.styl +7 -0
- package/react/AppSections/components/DropdownFilter.jsx +49 -0
- package/react/AppSections/components/DropdownFilter.styl +14 -0
- package/react/AppSections/constants.js +9 -0
- package/react/AppSections/generateI18nConfig.ts +23 -0
- package/react/AppSections/helpers.js +16 -0
- package/react/AppSections/helpers.spec.js +39 -0
- package/react/AppSections/index.jsx +3 -0
- package/react/AppSections/index.spec.jsx +137 -0
- package/react/AppSections/locales/en.json +37 -0
- package/react/AppSections/locales/fr.json +37 -0
- package/react/AppSections/locales/ru.json +37 -0
- package/react/AppSections/locales/vi.json +37 -0
- package/react/AppSections/search.js +104 -0
- package/react/AppSections/search.spec.js +158 -0
- package/react/AppTile/AppTile.spec.jsx +119 -0
- package/react/AppTile/Readme.md +24 -0
- package/react/AppTile/helpers.js +25 -0
- package/react/AppTile/index.jsx +139 -0
- package/react/AppTile/locales/en.json +9 -0
- package/react/AppTile/locales/fr.json +9 -0
- package/react/AppTile/locales/ru.json +9 -0
- package/react/AppTile/locales/vi.json +9 -0
- package/react/AppTile/styles.styl +27 -0
- package/react/AppTitle/Readme.md +21 -0
- package/react/AppTitle/index.jsx +125 -0
- package/react/AppTitle/styles.styl +19 -0
- package/react/Avatar/Readme.md +93 -0
- package/react/Avatar/helpers.js +60 -0
- package/react/Avatar/index.jsx +77 -0
- package/react/AvatarGroup/index.js +39 -0
- package/react/Backdrop/index.js +30 -0
- package/react/Badge/Readme.md +82 -0
- package/react/Badge/index.jsx +76 -0
- package/react/Banner/Readme.md +48 -0
- package/react/Banner/index.jsx +104 -0
- package/react/Banner/index.spec.jsx +20 -0
- package/react/Banner/styles.styl +35 -0
- package/react/BarButton/Readme.md +50 -0
- package/react/BarButton/index.jsx +69 -0
- package/react/BarButton/styles.styl +19 -0
- package/react/BarContextProvider/index.jsx +40 -0
- package/react/BarContextProvider/index.spec.jsx +176 -0
- package/react/BarTitle/Readme.md +36 -0
- package/react/BarTitle/index.jsx +26 -0
- package/react/BarTitle/styles.styl +8 -0
- package/react/BottomNavigation/index.js +3 -0
- package/react/BottomNavigationAction/index.js +3 -0
- package/react/BottomSheet/BackdropOrFragment.jsx +17 -0
- package/react/BottomSheet/BottomSheet.jsx +454 -0
- package/react/BottomSheet/BottomSheetHeader.jsx +20 -0
- package/react/BottomSheet/BottomSheetItem.jsx +37 -0
- package/react/BottomSheet/BottomSheetTitle.jsx +54 -0
- package/react/BottomSheet/README.md +289 -0
- package/react/BottomSheet/constants.js +1 -0
- package/react/BottomSheet/helpers.js +159 -0
- package/react/BottomSheet/helpers.spec.js +557 -0
- package/react/BottomSheet/index.jsx +4 -0
- package/react/BottomSheet/styles.styl +15 -0
- package/react/Box/index.js +3 -0
- package/react/Breadcrumbs/Readme.md +13 -0
- package/react/Breadcrumbs/index.js +3 -0
- package/react/Button/index.js +3 -0
- package/react/ButtonBase/index.js +3 -0
- package/react/Buttons/Readme.md +308 -0
- package/react/Buttons/index.jsx +126 -0
- package/react/Card/Readme.md +42 -0
- package/react/Card/index.jsx +35 -0
- package/react/Card/styles.styl +8 -0
- package/react/CardActionArea/index.js +3 -0
- package/react/CardActions/index.js +3 -0
- package/react/CardContent/index.js +3 -0
- package/react/CardHeader/index.js +3 -0
- package/react/CardMedia/index.js +3 -0
- package/react/Checkbox/Readme.md +66 -0
- package/react/Checkbox/index.jsx +119 -0
- package/react/Checkbox/styles.styl +27 -0
- package/react/Chips/Readme.md +169 -0
- package/react/Chips/index.jsx +35 -0
- package/react/CipherIcon/Readme.md +14 -0
- package/react/CipherIcon/index.jsx +46 -0
- package/react/CipherIcon/index.spec.jsx +51 -0
- package/react/Circle/Readme.md +41 -0
- package/react/Circle/index.jsx +47 -0
- package/react/Circle/styles.styl +7 -0
- package/react/CircleButton/Readme.md +128 -0
- package/react/CircleButton/helpers.js +16 -0
- package/react/CircleButton/helpers.spec.js +61 -0
- package/react/CircleButton/index.jsx +96 -0
- package/react/CircularChart/CircularChartProgress.jsx +59 -0
- package/react/CircularChart/CircularProgressWithBackground.jsx +43 -0
- package/react/CircularChart/Readme.md +130 -0
- package/react/CircularChart/helper.spec.ts +97 -0
- package/react/CircularChart/helpers.ts +46 -0
- package/react/CircularChart/index.jsx +75 -0
- package/react/CircularProgress/index.js +3 -0
- package/react/ClickAwayListener/index.js +3 -0
- package/react/Collapse/index.js +3 -0
- package/react/ContactPicker/Readme.md +26 -0
- package/react/ContactPicker/index.jsx +87 -0
- package/react/ContactPicker/index.spec.jsx +60 -0
- package/react/ContactPicker/styles.styl +5 -0
- package/react/Contacts/AddModal/ContactAddressDialog/helpers.js +22 -0
- package/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.js +64 -0
- package/react/Contacts/AddModal/ContactAddressDialog/index.jsx +84 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/en.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/fr.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/ru.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/vi.json +25 -0
- package/react/Contacts/AddModal/ContactForm/FieldInput.jsx +123 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputAccordion.jsx +57 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputArray.jsx +80 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputLayout.jsx +76 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputWrapper.jsx +43 -0
- package/react/Contacts/AddModal/ContactForm/HasValueCondition.jsx +31 -0
- package/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.jsx +79 -0
- package/react/Contacts/AddModal/ContactForm/RelatedContactList.jsx +37 -0
- package/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.jsx +78 -0
- package/react/Contacts/AddModal/ContactForm/TextFieldSelect.jsx +39 -0
- package/react/Contacts/AddModal/ContactForm/__snapshots__/HasValueCondition.spec.jsx.snap +33 -0
- package/react/Contacts/AddModal/ContactForm/contactToFormValues.js +109 -0
- package/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.js +133 -0
- package/react/Contacts/AddModal/ContactForm/fieldsConfig.jsx +357 -0
- package/react/Contacts/AddModal/ContactForm/formValuesToContact.js +111 -0
- package/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.js +557 -0
- package/react/Contacts/AddModal/ContactForm/helpers.js +393 -0
- package/react/Contacts/AddModal/ContactForm/helpers.spec.js +391 -0
- package/react/Contacts/AddModal/ContactForm/index.jsx +138 -0
- package/react/Contacts/AddModal/ContactForm/index.spec.jsx +301 -0
- package/react/Contacts/AddModal/ContactForm/locales/en.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/fr.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/ContactForm/locales/ru.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/vi.json +75 -0
- package/react/Contacts/AddModal/ContactForm/styles.styl +2 -0
- package/react/Contacts/AddModal/CustomLabelDialog/index.jsx +108 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/en.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/fr.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/ru.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/vi.json +15 -0
- package/react/Contacts/AddModal/Readme.md +55 -0
- package/react/Contacts/AddModal/index.jsx +85 -0
- package/react/Contacts/AddModal/locales/en.json +13 -0
- package/react/Contacts/AddModal/locales/fr.json +13 -0
- package/react/Contacts/AddModal/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/locales/ru.json +13 -0
- package/react/Contacts/AddModal/locales/vi.json +13 -0
- package/react/Contacts/AddModal/mocks.js +299 -0
- package/react/Contacts/AddModal/types.js +102 -0
- package/react/Contacts/GroupsSelect/GroupCreation.jsx +95 -0
- package/react/Contacts/GroupsSelect/GroupsSelect.jsx +159 -0
- package/react/Contacts/GroupsSelect/GroupsSelect.spec.jsx +248 -0
- package/react/Contacts/GroupsSelect/GroupsSelectProvider.jsx +39 -0
- package/react/Contacts/GroupsSelect/Readme.md +1 -0
- package/react/Contacts/GroupsSelect/SelectBox/Control.jsx +36 -0
- package/react/Contacts/GroupsSelect/SelectBox/EditGroupName.jsx +52 -0
- package/react/Contacts/GroupsSelect/SelectBox/Menu.jsx +26 -0
- package/react/Contacts/GroupsSelect/SelectBox/Option.jsx +67 -0
- package/react/Contacts/GroupsSelect/SelectBox/SelectContainer.jsx +15 -0
- package/react/Contacts/GroupsSelect/SelectBox/styles.styl +2 -0
- package/react/Contacts/GroupsSelect/helpers.js +25 -0
- package/react/Contacts/GroupsSelect/locales/en.json +21 -0
- package/react/Contacts/GroupsSelect/locales/fr.json +21 -0
- package/react/Contacts/GroupsSelect/locales/index.jsx +11 -0
- package/react/Contacts/GroupsSelect/locales/ru.json +21 -0
- package/react/Contacts/GroupsSelect/locales/vi.json +21 -0
- package/react/Contacts/GroupsSelect/styles.styl +48 -0
- package/react/Contacts/GroupsSelect/useGroupSelect.jsx +88 -0
- package/react/Contacts/Header/GroupsSelection.jsx +74 -0
- package/react/Contacts/Header/ImportDropdown.jsx +78 -0
- package/react/Contacts/Header/Readme.md +38 -0
- package/react/Contacts/Header/SearchInput.jsx +19 -0
- package/react/Contacts/Header/index.jsx +79 -0
- package/react/Contacts/Header/locales/en.json +15 -0
- package/react/Contacts/Header/locales/fr.json +15 -0
- package/react/Contacts/Header/locales/index.jsx +11 -0
- package/react/Contacts/Header/locales/ru.json +15 -0
- package/react/Contacts/Header/locales/vi.json +15 -0
- package/react/Contacts/Readme.md +1 -0
- package/react/ContactsList/ContactCell.jsx +22 -0
- package/react/ContactsList/ContactRow.jsx +46 -0
- package/react/ContactsList/ContactRow.spec.js +75 -0
- package/react/ContactsList/Contacts/ContactCozy.jsx +22 -0
- package/react/ContactsList/Contacts/ContactEmail.jsx +22 -0
- package/react/ContactsList/Contacts/ContactIdentity.jsx +57 -0
- package/react/ContactsList/Contacts/ContactName.jsx +44 -0
- package/react/ContactsList/Contacts/ContactPhone.jsx +23 -0
- package/react/ContactsList/ContactsList.jsx +51 -0
- package/react/ContactsList/Readme.md +47 -0
- package/react/ContactsList/_mockContacts.json +2494 -0
- package/react/ContactsList/helpers.js +132 -0
- package/react/ContactsList/helpers.spec.js +150 -0
- package/react/ContactsList/index.js +3 -0
- package/react/ContactsList/locales/en.json +5 -0
- package/react/ContactsList/locales/fr.json +5 -0
- package/react/ContactsList/locales/ru.json +5 -0
- package/react/ContactsList/locales/vi.json +5 -0
- package/react/ContactsList/locales/withContactsListLocales.jsx +14 -0
- package/react/ContactsList/styles.styl +35 -0
- package/react/ContactsListModal/AddContact/AddContactActions.jsx +15 -0
- package/react/ContactsListModal/AddContact/AddContactContent.jsx +59 -0
- package/react/ContactsListModal/AddContact/AddContactDialog.jsx +38 -0
- package/react/ContactsListModal/AddContact/AddContactTitle.jsx +9 -0
- package/react/ContactsListModal/AddContact/helpers.js +18 -0
- package/react/ContactsListModal/AddContact/helpers.spec.js +74 -0
- package/react/ContactsListModal/AddContact/styles.styl +2 -0
- package/react/ContactsListModal/ContactsListContent.jsx +75 -0
- package/react/ContactsListModal/ContactsListModal.jsx +143 -0
- package/react/ContactsListModal/ContactsListModalWithQuery.jsx +27 -0
- package/react/ContactsListModal/EmptyMessage.jsx +18 -0
- package/react/ContactsListModal/MobileHeader.jsx +49 -0
- package/react/ContactsListModal/Readme.md +45 -0
- package/react/ContactsListModal/index.jsx +28 -0
- package/react/ContactsListModal/locales/en.json +11 -0
- package/react/ContactsListModal/locales/fr.json +11 -0
- package/react/ContactsListModal/locales/ru.json +11 -0
- package/react/ContactsListModal/locales/vi.json +11 -0
- package/react/ContactsListModal/mockClient.jsx +47 -0
- package/react/ContactsListModal/queries.js +12 -0
- package/react/ContactsListModal/styles.styl +12 -0
- package/react/ContactsListModal/withContactsListLocales.jsx +10 -0
- package/react/Container/index.js +3 -0
- package/react/Counter/Readme.md +21 -0
- package/react/Counter/index.jsx +18 -0
- package/react/CozyDialogs/ConfirmDialog.jsx +84 -0
- package/react/CozyDialogs/Dialog.jsx +83 -0
- package/react/CozyDialogs/DialogBackButton.jsx +34 -0
- package/react/CozyDialogs/DialogCloseButton.jsx +34 -0
- package/react/CozyDialogs/DialogTransition.jsx +21 -0
- package/react/CozyDialogs/FixedActionsDialog.jsx +74 -0
- package/react/CozyDialogs/FixedDialog.jsx +73 -0
- package/react/CozyDialogs/IllustrationDialog.jsx +92 -0
- package/react/CozyDialogs/PermissionDialog.jsx +86 -0
- package/react/CozyDialogs/Readme.md +495 -0
- package/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.jsx +72 -0
- package/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.jsx +115 -0
- package/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.jsx +79 -0
- package/react/CozyDialogs/SpecificDialogs/Readme.md +130 -0
- package/react/CozyDialogs/SpecificDialogs/ShortcutDialog.jsx +120 -0
- package/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +63 -0
- package/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.jsx +42 -0
- package/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/index.jsx +4 -0
- package/react/CozyDialogs/SpecificDialogs/locales/en.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/fr.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/ru.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/vi.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.jsx +14 -0
- package/react/CozyDialogs/TopAnchoredDialog.jsx +25 -0
- package/react/CozyDialogs/background.png +0 -0
- package/react/CozyDialogs/dialogPropTypes.js +14 -0
- package/react/CozyDialogs/e2e.js +20 -0
- package/react/CozyDialogs/index.jsx +17 -0
- package/react/CozyDialogs/locales.js +22 -0
- package/react/CozyDialogs/styles.styl +19 -0
- package/react/CozyDialogs/testing.js +39 -0
- package/react/CozyDialogs/testing.spec.jsx +117 -0
- package/react/CozyDialogs/useCozyDialog.js +142 -0
- package/react/CssBaseline/index.js +3 -0
- package/react/DateMonthPicker/Readme.md +63 -0
- package/react/DateMonthPicker/index.jsx +106 -0
- package/react/DateMonthPicker/index.spec.jsx +47 -0
- package/react/DateMonthPicker/styles.styl +72 -0
- package/react/DatePicker/Readme.md +218 -0
- package/react/DatePicker/helpers.js +16 -0
- package/react/DatePicker/helpers.spec.js +71 -0
- package/react/DatePicker/index.jsx +289 -0
- package/react/DatePicker/locales/en.json +8 -0
- package/react/DatePicker/locales/fr.json +8 -0
- package/react/DatePicker/locales/ru.json +8 -0
- package/react/DatePicker/locales/vi.json +8 -0
- package/react/DatePicker/locales/withOwnLocales.jsx +14 -0
- package/react/Dialog/DialogActions.jsx +3 -0
- package/react/Dialog/DialogContent.jsx +3 -0
- package/react/Dialog/DialogContentText.jsx +3 -0
- package/react/Dialog/DialogEffects.spec.tsx +430 -0
- package/react/Dialog/DialogEffects.ts +208 -0
- package/react/Dialog/DialogTitle.jsx +3 -0
- package/react/Dialog/Readme.md +141 -0
- package/react/Dialog/index.jsx +30 -0
- package/react/DialogActions/index.js +3 -0
- package/react/DialogContent/index.js +3 -0
- package/react/DialogContentText/index.js +3 -0
- package/react/DialogTitle/index.js +3 -0
- package/react/Divider/Readme.md +45 -0
- package/react/Divider/TextDivider/index.jsx +33 -0
- package/react/Divider/TextDivider/styles.styl +26 -0
- package/react/Divider/index.jsx +55 -0
- package/react/Drawer/index.js +3 -0
- package/react/DropdownButton/Readme.md +77 -0
- package/react/DropdownButton/index.jsx +85 -0
- package/react/DropdownText/Readme.md +95 -0
- package/react/DropdownText/index.jsx +109 -0
- package/react/EditBadge/EditMenu.jsx +102 -0
- package/react/EditBadge/Readme.md +22 -0
- package/react/EditBadge/StatusWrapper.jsx +32 -0
- package/react/EditBadge/helpers.js +102 -0
- package/react/EditBadge/index.jsx +81 -0
- package/react/EditBadge/locales/en.json +18 -0
- package/react/EditBadge/locales/fr.json +18 -0
- package/react/EditBadge/locales/index.js +11 -0
- package/react/EditBadge/locales/ru.json +18 -0
- package/react/EditBadge/locales/vi.json +18 -0
- package/react/Empty/Readme.md +68 -0
- package/react/Empty/index.jsx +104 -0
- package/react/Empty/styles.styl +22 -0
- package/react/Fab/ExtendableFab.jsx +31 -0
- package/react/Fab/Readme.md +119 -0
- package/react/Fab/index.js +8 -0
- package/react/Fade/index.js +3 -0
- package/react/Field/Readme.md +357 -0
- package/react/Field/index.jsx +316 -0
- package/react/Field/index.spec.js +59 -0
- package/react/Field/styles.styl +41 -0
- package/react/Figure/Figure.jsx +112 -0
- package/react/Figure/Figure.md +19 -0
- package/react/Figure/Figure.spec.jsx +57 -0
- package/react/Figure/Figure.styl +47 -0
- package/react/Figure/FigureBlock.jsx +52 -0
- package/react/Figure/FigureBlock.md +31 -0
- package/react/Figure/FigureBlock.styl +12 -0
- package/react/Figure/__snapshots__/Figure.spec.jsx.snap +449 -0
- package/react/Figure/index.js +2 -0
- package/react/FileImageLoader/Readme.md +112 -0
- package/react/FileImageLoader/checkImageSource.js +29 -0
- package/react/FileImageLoader/index.jsx +185 -0
- package/react/FileImageLoader/index.spec.jsx +176 -0
- package/react/FileInput/Readme.md +50 -0
- package/react/FileInput/index.jsx +72 -0
- package/react/FileInput/index.spec.jsx +63 -0
- package/react/FileInput/styles.styl +2 -0
- package/react/FilePath/Readme.md +5 -0
- package/react/FilePath/index.jsx +12 -0
- package/react/FilePath/styles.styl +9 -0
- package/react/FilePathLink/Readme.md +5 -0
- package/react/FilePathLink/index.jsx +12 -0
- package/react/FilePicker/FilePickerBody.jsx +111 -0
- package/react/FilePicker/FilePickerBodyItem.jsx +126 -0
- package/react/FilePicker/FilePickerBodyItem.spec.jsx +164 -0
- package/react/FilePicker/FilePickerBreadcrumb.jsx +54 -0
- package/react/FilePicker/FilePickerFooter.jsx +41 -0
- package/react/FilePicker/FilePickerFooter.spec.jsx +41 -0
- package/react/FilePicker/FilePickerHeader.jsx +89 -0
- package/react/FilePicker/Readme.md +50 -0
- package/react/FilePicker/index.jsx +93 -0
- package/react/FilePicker/locales/en.json +8 -0
- package/react/FilePicker/locales/fr.json +8 -0
- package/react/FilePicker/locales/ru.json +8 -0
- package/react/FilePicker/locales/vi.json +8 -0
- package/react/FilePicker/queries.js +37 -0
- package/react/FilePicker/styles.styl +18 -0
- package/react/Filename/Readme.md +27 -0
- package/react/Filename/index.jsx +93 -0
- package/react/Filename/styles.styl +3 -0
- package/react/FilledInput/index.js +3 -0
- package/react/FormControl/index.js +3 -0
- package/react/FormControlLabel/index.js +3 -0
- package/react/FormGroup/index.js +3 -0
- package/react/FormHelperText/index.js +3 -0
- package/react/FormLabel/index.js +3 -0
- package/react/GhostFileBadge/Readme.md +15 -0
- package/react/GhostFileBadge/index.jsx +32 -0
- package/react/Grid/Readme.md +65 -0
- package/react/Grid/index.js +3 -0
- package/react/GridList/Virtualized/Dnd/GridItem.jsx +86 -0
- package/react/GridList/Virtualized/Dnd/index.jsx +59 -0
- package/react/GridList/Virtualized/Dnd/virtuosoComponents.jsx +36 -0
- package/react/GridList/Virtualized/index.jsx +21 -0
- package/react/GridList/index.js +3 -0
- package/react/GridListTile/index.js +3 -0
- package/react/GridListTileBar/index.js +3 -0
- package/react/Grow/index.js +3 -0
- package/react/Hero/Readme.md +52 -0
- package/react/Hero/index.jsx +35 -0
- package/react/Hero/styles.styl +51 -0
- package/react/Hidden/index.js +3 -0
- package/react/HistoryRow/Readme.md +60 -0
- package/react/HistoryRow/index.jsx +78 -0
- package/react/HistoryRow/styles.styl +45 -0
- package/react/I18n/index.js +25 -0
- package/react/I18n/withLocales.js +14 -0
- package/react/Icon/Readme.md +1052 -1
- package/react/IconButton/Readme.md +87 -0
- package/react/IconButton/index.jsx +51 -0
- package/react/IconStack/Readme.md +35 -0
- package/react/IconStack/index.jsx +53 -0
- package/react/IconStack/styles.styl +10 -0
- package/react/Icons/Account.jsx +12 -0
- package/react/Icons/Accounts.jsx +12 -0
- package/react/Icons/Album.jsx +12 -0
- package/react/Icons/AlbumAdd.jsx +12 -0
- package/react/Icons/AlbumRemove.jsx +12 -0
- package/react/Icons/Answer.jsx +12 -0
- package/react/Icons/Apple.jsx +15 -0
- package/react/Icons/Apps.jsx +17 -0
- package/react/Icons/Archive.jsx +12 -0
- package/react/Icons/ArrowUp.jsx +12 -0
- package/react/Icons/AssignAdmin.jsx +22 -0
- package/react/Icons/AssignModerator.jsx +13 -0
- package/react/Icons/Assistant.jsx +16 -0
- package/react/Icons/Attachment.jsx +12 -0
- package/react/Icons/Attention.jsx +12 -0
- package/react/Icons/Bank.jsx +12 -0
- package/react/Icons/BankAccounts.jsx +16 -0
- package/react/Icons/BankCheck.jsx +16 -0
- package/react/Icons/BankGroups.jsx +16 -0
- package/react/Icons/BankOperations.jsx +12 -0
- package/react/Icons/BankRecurrence.jsx +13 -0
- package/react/Icons/Banking.jsx +12 -0
- package/react/Icons/BankingAdd.jsx +12 -0
- package/react/Icons/Bell.jsx +12 -0
- package/react/Icons/Benefit.jsx +12 -0
- package/react/Icons/Bike.jsx +12 -0
- package/react/Icons/Bill.jsx +12 -0
- package/react/Icons/BillPermissions.jsx +13 -0
- package/react/Icons/Bottom.jsx +12 -0
- package/react/Icons/BottomSelect.jsx +12 -0
- package/react/Icons/BrowserBrave.jsx +15 -0
- package/react/Icons/BrowserChrome.jsx +15 -0
- package/react/Icons/BrowserDuckduckgo.jsx +15 -0
- package/react/Icons/BrowserEdge.jsx +15 -0
- package/react/Icons/BrowserEdgeChromium.jsx +15 -0
- package/react/Icons/BrowserFirefox.jsx +15 -0
- package/react/Icons/BrowserIe.jsx +15 -0
- package/react/Icons/BrowserOpera.jsx +15 -0
- package/react/Icons/BrowserSafari.jsx +15 -0
- package/react/Icons/BugReport.jsx +12 -0
- package/react/Icons/Burger.jsx +12 -0
- package/react/Icons/Bus.jsx +13 -0
- package/react/Icons/Calendar.jsx +12 -0
- package/react/Icons/CalendarPermissions.jsx +12 -0
- package/react/Icons/Camera.jsx +12 -0
- package/react/Icons/Car.jsx +13 -0
- package/react/Icons/CarbonCopy.jsx +15 -0
- package/react/Icons/Carpooling.jsx +17 -0
- package/react/Icons/Categories.jsx +12 -0
- package/react/Icons/Category.jsx +12 -0
- package/react/Icons/Certified.jsx +13 -0
- package/react/Icons/CertifiedPermissions.jsx +13 -0
- package/react/Icons/Chat.jsx +76 -0
- package/react/Icons/ChatText.jsx +73 -0
- package/react/Icons/Check.jsx +12 -0
- package/react/Icons/CheckCircle.jsx +12 -0
- package/react/Icons/CheckList.jsx +12 -0
- package/react/Icons/CheckSquare.jsx +16 -0
- package/react/Icons/CheckWhite.jsx +15 -0
- package/react/Icons/Checkbox.jsx +12 -0
- package/react/Icons/Chess.jsx +12 -0
- package/react/Icons/Child.jsx +13 -0
- package/react/Icons/CircleFilled.jsx +12 -0
- package/react/Icons/Clock.jsx +12 -0
- package/react/Icons/ClockOutline.jsx +12 -0
- package/react/Icons/Cloud.jsx +12 -0
- package/react/Icons/Cloud2.jsx +29 -0
- package/react/Icons/CloudBroken.jsx +12 -0
- package/react/Icons/CloudHappy.jsx +15 -0
- package/react/Icons/CloudPlusOutlined.jsx +12 -0
- package/react/Icons/CloudRainbow.jsx +63 -0
- package/react/Icons/CloudSync.jsx +21 -0
- package/react/Icons/CloudSync2.jsx +23 -0
- package/react/Icons/Cocktail.jsx +12 -0
- package/react/Icons/Collect.jsx +15 -0
- package/react/Icons/Comment.jsx +12 -0
- package/react/Icons/Company.jsx +12 -0
- package/react/Icons/Compare.jsx +12 -0
- package/react/Icons/Compass.jsx +12 -0
- package/react/Icons/ConnectedClients.jsx +12 -0
- package/react/Icons/Connector.jsx +12 -0
- package/react/Icons/Consumption.jsx +13 -0
- package/react/Icons/Contacts.jsx +102 -0
- package/react/Icons/ContactsAccounts.jsx +12 -0
- package/react/Icons/ContactsGroups.jsx +12 -0
- package/react/Icons/ContactsText.jsx +133 -0
- package/react/Icons/Contract.jsx +12 -0
- package/react/Icons/ContractPermissions.jsx +12 -0
- package/react/Icons/Contrast.jsx +12 -0
- package/react/Icons/Copy.jsx +12 -0
- package/react/Icons/Cozy.jsx +16 -0
- package/react/Icons/CozyAuthentification.jsx +12 -0
- package/react/Icons/CozyCircle.jsx +16 -0
- package/react/Icons/CozyLaugh.jsx +15 -0
- package/react/Icons/CozyLock.jsx +16 -0
- package/react/Icons/CozyLogo.jsx +18 -0
- package/react/Icons/CozyRelease.jsx +22 -0
- package/react/Icons/CozyText.jsx +12 -0
- package/react/Icons/CozyUpgrade.jsx +55 -0
- package/react/Icons/Credit.jsx +18 -0
- package/react/Icons/CreditCard.jsx +12 -0
- package/react/Icons/CreditCardAdd.jsx +12 -0
- package/react/Icons/CreditCardLarge.jsx +12 -0
- package/react/Icons/Crop.jsx +12 -0
- package/react/Icons/Cross.jsx +12 -0
- package/react/Icons/CrossCircle.jsx +15 -0
- package/react/Icons/CrossCircleOutline.jsx +16 -0
- package/react/Icons/CrossMedium.jsx +12 -0
- package/react/Icons/CrossSmall.jsx +12 -0
- package/react/Icons/CrossWhite.jsx +16 -0
- package/react/Icons/Cube.jsx +12 -0
- package/react/Icons/Dash.jsx +12 -0
- package/react/Icons/DashWhite.jsx +12 -0
- package/react/Icons/Dashboard.jsx +12 -0
- package/react/Icons/DataControl.jsx +14 -0
- package/react/Icons/Debit.jsx +12 -0
- package/react/Icons/DesktopDownload.jsx +13 -0
- package/react/Icons/DeviceBrowser.jsx +12 -0
- package/react/Icons/DeviceLaptop.jsx +12 -0
- package/react/Icons/DevicePhone.jsx +12 -0
- package/react/Icons/DeviceTablet.jsx +12 -0
- package/react/Icons/Devices.jsx +12 -0
- package/react/Icons/Discuss.jsx +16 -0
- package/react/Icons/Dots.jsx +12 -0
- package/react/Icons/DotsWhite.jsx +16 -0
- package/react/Icons/Down.jsx +12 -0
- package/react/Icons/Download.jsx +12 -0
- package/react/Icons/DrawingArrowUp.jsx +12 -0
- package/react/Icons/Drive.jsx +69 -0
- package/react/Icons/DriveText.jsx +88 -0
- package/react/Icons/Dropdown.jsx +12 -0
- package/react/Icons/DropdownClose.jsx +12 -0
- package/react/Icons/DropdownOpen.jsx +12 -0
- package/react/Icons/Dropup.jsx +12 -0
- package/react/Icons/Ecolyo.jsx +28 -0
- package/react/Icons/ElectricBike.jsx +12 -0
- package/react/Icons/ElectricCar.jsx +13 -0
- package/react/Icons/ElectricScooter.jsx +13 -0
- package/react/Icons/Email.jsx +12 -0
- package/react/Icons/EmailNotification.jsx +12 -0
- package/react/Icons/EmailOpen.jsx +55 -0
- package/react/Icons/Energy.jsx +12 -0
- package/react/Icons/Energybreakdown.jsx +12 -0
- package/react/Icons/Eu.jsx +15 -0
- package/react/Icons/Euro.jsx +12 -0
- package/react/Icons/Exchange.jsx +12 -0
- package/react/Icons/Eye.jsx +12 -0
- package/react/Icons/EyeClosed.jsx +12 -0
- package/react/Icons/FaceId.jsx +12 -0
- package/react/Icons/Fallback.jsx +20 -0
- package/react/Icons/Family.jsx +12 -0
- package/react/Icons/File.jsx +12 -0
- package/react/Icons/FileAdd.jsx +12 -0
- package/react/Icons/FileDuotone.jsx +30 -0
- package/react/Icons/FileNew.jsx +12 -0
- package/react/Icons/FileNone.jsx +18 -0
- package/react/Icons/FileOutline.jsx +12 -0
- package/react/Icons/FileTypeAudio.jsx +20 -0
- package/react/Icons/FileTypeBankingAccount.jsx +26 -0
- package/react/Icons/FileTypeBin.jsx +20 -0
- package/react/Icons/FileTypeCode.jsx +20 -0
- package/react/Icons/FileTypeFiles.jsx +26 -0
- package/react/Icons/FileTypeFolder.jsx +32 -0
- package/react/Icons/FileTypeImage.jsx +25 -0
- package/react/Icons/FileTypeNote.jsx +20 -0
- package/react/Icons/FileTypePdf.jsx +20 -0
- package/react/Icons/FileTypeServer.jsx +51 -0
- package/react/Icons/FileTypeSheet.jsx +26 -0
- package/react/Icons/FileTypeSlide.jsx +26 -0
- package/react/Icons/FileTypeText.jsx +20 -0
- package/react/Icons/FileTypeVideo.jsx +20 -0
- package/react/Icons/FileTypeZip.jsx +20 -0
- package/react/Icons/Files.jsx +41 -0
- package/react/Icons/FilesPen.jsx +21 -0
- package/react/Icons/FilesVersions.jsx +21 -0
- package/react/Icons/Filter.jsx +16 -0
- package/react/Icons/Fingerprint.jsx +12 -0
- package/react/Icons/Fitness.jsx +12 -0
- package/react/Icons/Flag.jsx +12 -0
- package/react/Icons/FlagOutlined.jsx +12 -0
- package/react/Icons/FlashAuto.jsx +12 -0
- package/react/Icons/Flashlight.jsx +13 -0
- package/react/Icons/Folder.jsx +12 -0
- package/react/Icons/FolderAdd.jsx +12 -0
- package/react/Icons/FolderMoveto.jsx +12 -0
- package/react/Icons/FolderOpen.jsx +12 -0
- package/react/Icons/Forbidden.jsx +12 -0
- package/react/Icons/ForbiddenSign.jsx +63 -0
- package/react/Icons/FromUser.jsx +13 -0
- package/react/Icons/Gear.jsx +12 -0
- package/react/Icons/Globe.jsx +12 -0
- package/react/Icons/Google.jsx +29 -0
- package/react/Icons/Gouv.jsx +29 -0
- package/react/Icons/GraphCircle.jsx +12 -0
- package/react/Icons/Grid.jsx +12 -0
- package/react/Icons/GroupList.jsx +12 -0
- package/react/Icons/Groups.jsx +12 -0
- package/react/Icons/Growth.jsx +12 -0
- package/react/Icons/Hand.jsx +12 -0
- package/react/Icons/Heart.jsx +12 -0
- package/react/Icons/Help.jsx +12 -0
- package/react/Icons/HelpOutlined.jsx +12 -0
- package/react/Icons/History.jsx +12 -0
- package/react/Icons/Home.jsx +12 -0
- package/react/Icons/HomePermissions.jsx +13 -0
- package/react/Icons/Hourglass.jsx +12 -0
- package/react/Icons/IconCheckAnimated.jsx +29 -0
- package/react/Icons/IconCrossAnimated.jsx +44 -0
- package/react/Icons/Identities.jsx +12 -0
- package/react/Icons/Image.jsx +12 -0
- package/react/Icons/Info.jsx +12 -0
- package/react/Icons/InfoOutlined.jsx +12 -0
- package/react/Icons/Justice.jsx +12 -0
- package/react/Icons/Key.jsx +12 -0
- package/react/Icons/Key2.jsx +23 -0
- package/react/Icons/Keychain.jsx +12 -0
- package/react/Icons/Konnectors.jsx +12 -0
- package/react/Icons/KonnectorsResult.jsx +12 -0
- package/react/Icons/Label.jsx +12 -0
- package/react/Icons/LabelOutlined.jsx +12 -0
- package/react/Icons/Laptop.jsx +12 -0
- package/react/Icons/Laudry.jsx +13 -0
- package/react/Icons/Left.jsx +12 -0
- package/react/Icons/Library.jsx +13 -0
- package/react/Icons/Lightbulb.jsx +12 -0
- package/react/Icons/Lightning.jsx +12 -0
- package/react/Icons/Link.jsx +12 -0
- package/react/Icons/LinkOut.jsx +12 -0
- package/react/Icons/List.jsx +12 -0
- package/react/Icons/ListMin.jsx +12 -0
- package/react/Icons/Location.jsx +13 -0
- package/react/Icons/LocationPermissions.jsx +12 -0
- package/react/Icons/Lock.jsx +12 -0
- package/react/Icons/LockScreen.jsx +12 -0
- package/react/Icons/Logout.jsx +12 -0
- package/react/Icons/LogoutLarge.jsx +12 -0
- package/react/Icons/MagicTrick.jsx +12 -0
- package/react/Icons/Magnet.jsx +15 -0
- package/react/Icons/Magnifier.jsx +12 -0
- package/react/Icons/Mail.jsx +67 -0
- package/react/Icons/MailText.jsx +73 -0
- package/react/Icons/Matrix.jsx +12 -0
- package/react/Icons/Merge.jsx +12 -0
- package/react/Icons/Moped.jsx +13 -0
- package/react/Icons/Mosaic.jsx +16 -0
- package/react/Icons/MosaicMin.jsx +12 -0
- package/react/Icons/Motorcycle.jsx +12 -0
- package/react/Icons/Mountain.jsx +12 -0
- package/react/Icons/Movement.jsx +12 -0
- package/react/Icons/MovementIn.jsx +12 -0
- package/react/Icons/MovementOut.jsx +12 -0
- package/react/Icons/Moveto.jsx +12 -0
- package/react/Icons/MultiFiles.jsx +12 -0
- package/react/Icons/Music.jsx +12 -0
- package/react/Icons/New.jsx +12 -0
- package/react/Icons/Next.jsx +12 -0
- package/react/Icons/Note.jsx +13 -0
- package/react/Icons/Notes.jsx +69 -0
- package/react/Icons/NotesText.jsx +88 -0
- package/react/Icons/NotificationEmail.jsx +12 -0
- package/react/Icons/Notifications.jsx +12 -0
- package/react/Icons/Number.jsx +12 -0
- package/react/Icons/Offline.jsx +12 -0
- package/react/Icons/Online.jsx +12 -0
- package/react/Icons/OnlyOffice.jsx +71 -0
- package/react/Icons/Openapp.jsx +12 -0
- package/react/Icons/Openwith.jsx +12 -0
- package/react/Icons/Opinions.jsx +12 -0
- package/react/Icons/Palette.jsx +13 -0
- package/react/Icons/Paper.jsx +14 -0
- package/react/Icons/Paperplane.jsx +12 -0
- package/react/Icons/Papers.jsx +66 -0
- package/react/Icons/Pass.jsx +65 -0
- package/react/Icons/PassText.jsx +15 -0
- package/react/Icons/Password.jsx +12 -0
- package/react/Icons/Passwords.jsx +12 -0
- package/react/Icons/Pen.jsx +12 -0
- package/react/Icons/People.jsx +12 -0
- package/react/Icons/Peoples.jsx +12 -0
- package/react/Icons/Percent.jsx +12 -0
- package/react/Icons/PercentCircle.jsx +12 -0
- package/react/Icons/Permissions.jsx +12 -0
- package/react/Icons/PersonAdd.jsx +12 -0
- package/react/Icons/PersonalData.jsx +12 -0
- package/react/Icons/Phone.jsx +12 -0
- package/react/Icons/PhoneDownload.jsx +13 -0
- package/react/Icons/PhoneUpload.jsx +12 -0
- package/react/Icons/Photos.jsx +104 -0
- package/react/Icons/PhotosAlbum.jsx +12 -0
- package/react/Icons/PhotosSettings.jsx +16 -0
- package/react/Icons/PhotosText.jsx +103 -0
- package/react/Icons/PieChart.jsx +12 -0
- package/react/Icons/Pin.jsx +12 -0
- package/react/Icons/Plane.jsx +12 -0
- package/react/Icons/Plus.jsx +12 -0
- package/react/Icons/PlusSmall.jsx +12 -0
- package/react/Icons/PopInside.jsx +12 -0
- package/react/Icons/Previous.jsx +12 -0
- package/react/Icons/Printer.jsx +13 -0
- package/react/Icons/Profile.jsx +16 -0
- package/react/Icons/Qualify.jsx +12 -0
- package/react/Icons/RadioChecked.jsx +13 -0
- package/react/Icons/RadioUnchecked.jsx +12 -0
- package/react/Icons/Refresh.jsx +12 -0
- package/react/Icons/Relationship.jsx +14 -0
- package/react/Icons/Remboursement.jsx +12 -0
- package/react/Icons/Rename.jsx +12 -0
- package/react/Icons/Repare.jsx +12 -0
- package/react/Icons/Reply.jsx +12 -0
- package/react/Icons/Restaurant.jsx +12 -0
- package/react/Icons/Restore.jsx +12 -0
- package/react/Icons/RestoreStraight.jsx +12 -0
- package/react/Icons/Right.jsx +12 -0
- package/react/Icons/Rise.jsx +12 -0
- package/react/Icons/RotateLeft.jsx +12 -0
- package/react/Icons/RotateRight.jsx +12 -0
- package/react/Icons/SadCozy.jsx +15 -0
- package/react/Icons/Safe.jsx +12 -0
- package/react/Icons/SafePermissions.jsx +16 -0
- package/react/Icons/School.jsx +12 -0
- package/react/Icons/Scooter.jsx +13 -0
- package/react/Icons/Security.jsx +12 -0
- package/react/Icons/SelectAll.jsx +12 -0
- package/react/Icons/Server.jsx +12 -0
- package/react/Icons/Setting.jsx +12 -0
- package/react/Icons/Settings.jsx +16 -0
- package/react/Icons/Share.jsx +12 -0
- package/react/Icons/ShareCircle.jsx +15 -0
- package/react/Icons/ShareGrey08.jsx +15 -0
- package/react/Icons/ShareIos.jsx +15 -0
- package/react/Icons/Sharings.jsx +12 -0
- package/react/Icons/Shield.jsx +12 -0
- package/react/Icons/Shop.jsx +12 -0
- package/react/Icons/Sinister.jsx +12 -0
- package/react/Icons/Sound.jsx +12 -0
- package/react/Icons/Spinner.jsx +12 -0
- package/react/Icons/SportBag.jsx +16 -0
- package/react/Icons/Stack.jsx +12 -0
- package/react/Icons/Star.jsx +12 -0
- package/react/Icons/StarOutline.jsx +12 -0
- package/react/Icons/Stats.jsx +12 -0
- package/react/Icons/Stop.jsx +12 -0
- package/react/Icons/Store.jsx +67 -0
- package/react/Icons/StoreText.jsx +88 -0
- package/react/Icons/Subway.jsx +12 -0
- package/react/Icons/Support.jsx +12 -0
- package/react/Icons/Swap.jsx +12 -0
- package/react/Icons/Sync.jsx +12 -0
- package/react/Icons/SyncCozy.jsx +16 -0
- package/react/Icons/Tab.jsx +12 -0
- package/react/Icons/Tag.jsx +13 -0
- package/react/Icons/Tags.jsx +17 -0
- package/react/Icons/Target.jsx +12 -0
- package/react/Icons/Task.jsx +12 -0
- package/react/Icons/TaskToEffectuate.jsx +17 -0
- package/react/Icons/Team.jsx +13 -0
- package/react/Icons/Telecom.jsx +13 -0
- package/react/Icons/Telephone.jsx +12 -0
- package/react/Icons/Text.jsx +12 -0
- package/react/Icons/TextInfo.jsx +12 -0
- package/react/Icons/ToTheCloud.jsx +12 -0
- package/react/Icons/Top.jsx +12 -0
- package/react/Icons/TopSelect.jsx +12 -0
- package/react/Icons/Train.jsx +13 -0
- package/react/Icons/Tram.jsx +12 -0
- package/react/Icons/Trash.jsx +12 -0
- package/react/Icons/TrashDuotone.jsx +12 -0
- package/react/Icons/Triggers.jsx +12 -0
- package/react/Icons/Trophy.jsx +12 -0
- package/react/Icons/TwakeText.jsx +14 -0
- package/react/Icons/TwakeWorkplace.jsx +75 -0
- package/react/Icons/Uncloud.jsx +12 -0
- package/react/Icons/Unknow.jsx +12 -0
- package/react/Icons/Unlink.jsx +12 -0
- package/react/Icons/Unlock.jsx +12 -0
- package/react/Icons/Up.jsx +12 -0
- package/react/Icons/Upload.jsx +12 -0
- package/react/Icons/Versioning.jsx +12 -0
- package/react/Icons/Videos.jsx +12 -0
- package/react/Icons/Walk.jsx +12 -0
- package/react/Icons/Wallet.jsx +12 -0
- package/react/Icons/WalletAdd.jsx +15 -0
- package/react/Icons/WalletNew.jsx +15 -0
- package/react/Icons/Warn.jsx +13 -0
- package/react/Icons/Warning.jsx +12 -0
- package/react/Icons/WarningCircle.jsx +12 -0
- package/react/Icons/Water.jsx +12 -0
- package/react/Icons/Work.jsx +12 -0
- package/react/Icons/WorkplaceText.jsx +15 -0
- package/react/Icons/WrenchCircle.jsx +21 -0
- package/react/InfosBadge/Readme.md +14 -0
- package/react/InfosBadge/index.jsx +31 -0
- package/react/Input/index.js +3 -0
- package/react/InputAdornment/index.js +3 -0
- package/react/InputBase/index.js +3 -0
- package/react/InputGroup/Readme.md +110 -0
- package/react/InputGroup/index.jsx +68 -0
- package/react/InputGroup/styles.styl +27 -0
- package/react/InputLabel/index.js +3 -0
- package/react/IntentDialogOpener/IntentDialogOpener.jsx +109 -0
- package/react/IntentDialogOpener/IntentDialogOpener.md +25 -0
- package/react/IntentDialogOpener/index.js +1 -0
- package/react/IntentHeader/index.jsx +34 -0
- package/react/IntentHeader/styles.styl +25 -0
- package/react/IntentIframe/IntentIframe.jsx +110 -0
- package/react/IntentIframe/Readme.md +80 -0
- package/react/IntentIframe/index.js +1 -0
- package/react/IntentIframe/styles.styl +21 -0
- package/react/IntentWrapper/index.jsx +42 -0
- package/react/IntentWrapper/styles.styl +14 -0
- package/react/Label/Readme.md +38 -0
- package/react/Label/index.jsx +41 -0
- package/react/Label/styles.styl +7 -0
- package/react/Labs/CollectionField/Readme.md +41 -0
- package/react/Labs/CollectionField/index.jsx +140 -0
- package/react/Labs/CollectionField/styles.styl +15 -0
- package/react/Labs/ExperimentalDialog/index.jsx +31 -0
- package/react/Labs/IconGrid/Readme.md +18 -0
- package/react/Labs/IconGrid/index.jsx +9 -0
- package/react/Labs/IconGrid/styles.styl +5 -0
- package/react/Labs/PasswordInput/Readme.md +44 -0
- package/react/Labs/PasswordInput/helpers.js +66 -0
- package/react/Labs/PasswordInput/helpers.spec.js +27 -0
- package/react/Labs/PasswordInput/index.jsx +81 -0
- package/react/Labs/PasswordInput/styles.styl +49 -0
- package/react/Labs/Readme.md +4 -0
- package/react/Labs/index.jsx +0 -0
- package/react/Layout/Layout.jsx +109 -0
- package/react/Layout/Layout.md +204 -0
- package/react/Layout/index.js +1 -0
- package/react/Layout/styles.styl +10 -0
- package/react/LinearProgress/index.js +3 -0
- package/react/Link/index.js +3 -0
- package/react/List/Readme.md +280 -0
- package/react/List/index.js +11 -0
- package/react/ListItem/ExpandedAttributes/ExpandedAttribute.jsx +39 -0
- package/react/ListItem/ExpandedAttributes/helpers.js +214 -0
- package/react/ListItem/ExpandedAttributes/helpers.spec.js +175 -0
- package/react/ListItem/ExpandedAttributes/index.jsx +61 -0
- package/react/ListItem/ListItemBase/Renaming/RenameDialog.jsx +37 -0
- package/react/ListItem/ListItemBase/Renaming/RenameInput.jsx +134 -0
- package/react/ListItem/ListItemBase/Renaming/helpers.js +35 -0
- package/react/ListItem/ListItemBase/index.jsx +115 -0
- package/react/ListItem/ListItemByDoc/index.jsx +103 -0
- package/react/ListItem/ListItemContact/helpers.js +23 -0
- package/react/ListItem/ListItemContact/helpers.spec.js +35 -0
- package/react/ListItem/ListItemContact/index.jsx +68 -0
- package/react/ListItem/ListItemContact/useActions.jsx +17 -0
- package/react/ListItem/ListItemFile/ExpirationAnnotation.jsx +39 -0
- package/react/ListItem/ListItemFile/ItemIcon.jsx +49 -0
- package/react/ListItem/ListItemFile/PrimaryText.jsx +39 -0
- package/react/ListItem/ListItemFile/SecondaryText.jsx +36 -0
- package/react/ListItem/ListItemFile/index.jsx +75 -0
- package/react/ListItem/Readme.md +211 -0
- package/react/ListItem/hoc/withListItemLocales.jsx +14 -0
- package/react/ListItem/index.js +129 -0
- package/react/ListItem/locales/en.json +75 -0
- package/react/ListItem/locales/fr.json +75 -0
- package/react/ListItem/locales/ru.json +75 -0
- package/react/ListItem/locales/vi.json +75 -0
- package/react/ListItemAvatar/index.js +3 -0
- package/react/ListItemIcon/index.js +26 -0
- package/react/ListItemSecondaryAction/index.js +3 -0
- package/react/ListItemText/Readme.md +28 -0
- package/react/ListItemText/index.jsx +90 -0
- package/react/ListSubheader/Readme.md +34 -0
- package/react/ListSubheader/index.js +44 -0
- package/react/LoadMore/Readme.md +37 -0
- package/react/LoadMore/index.jsx +62 -0
- package/react/Markdown/Readme.md +71 -0
- package/react/Markdown/index.jsx +32 -0
- package/react/Menu/Readme.md +114 -0
- package/react/Menu/index.js +3 -0
- package/react/MenuItem/index.js +22 -0
- package/react/MenuList/index.js +3 -0
- package/react/MidEllipsis/Readme.md +11 -0
- package/react/MidEllipsis/index.jsx +51 -0
- package/react/MobileStepper/Readme.md +43 -0
- package/react/MobileStepper/index.js +3 -0
- package/react/Modal/index.js +3 -0
- package/react/MuiCozyTheme/Divider/index.jsx +16 -0
- package/react/MuiCozyTheme/List/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItem/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItemIcon/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItemSecondaryAction/index.jsx +16 -0
- package/react/MuiCozyTheme/Readme.md +10 -0
- package/react/MuiCozyTheme/helpers.js +216 -0
- package/react/MuiCozyTheme/index.jsx +23 -0
- package/react/MuiCozyTheme/makePalette.js +197 -0
- package/react/MuiCozyTheme/makeTheme.jsx +66 -0
- package/react/MuiCozyTheme/makeTypography.js +78 -0
- package/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +5 -0
- package/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +5 -0
- package/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +65 -0
- package/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1256 -0
- package/react/MuiCozyTheme/theme.jsx +30 -0
- package/react/MuiTabs/Readme.md +40 -0
- package/react/MuiTabs/index.jsx +17 -0
- package/react/NativeSelect/index.js +3 -0
- package/react/Nav/index.jsx +163 -0
- package/react/Nav/locales/en.json +6 -0
- package/react/Nav/locales/fr.json +6 -0
- package/react/Nav/locales/ru.json +6 -0
- package/react/Nav/locales/vi.json +6 -0
- package/react/Nav/locales/withNavLocales.jsx +14 -0
- package/react/Nav/styles.styl +27 -0
- package/react/NavigationList/Readme.md +148 -0
- package/react/NavigationList/index.jsx +53 -0
- package/react/NavigationList/styles.styl +2 -0
- package/react/NestedSelect/BottomSheet.jsx +48 -0
- package/react/NestedSelect/ItemRow.jsx +96 -0
- package/react/NestedSelect/Modal.jsx +63 -0
- package/react/NestedSelect/NestedSelect.jsx +276 -0
- package/react/NestedSelect/NestedSelect.md +220 -0
- package/react/NestedSelect/NestedSelect.spec.jsx +199 -0
- package/react/NestedSelect/NestedSelectResponsive.jsx +15 -0
- package/react/NestedSelect/helpers.js +35 -0
- package/react/NestedSelect/helpers.spec.js +36 -0
- package/react/NestedSelect/index.jsx +4 -0
- package/react/NestedSelect/styles.styl +20 -0
- package/react/NestedSelect/testing.js +3 -0
- package/react/NoSsr/index.js +3 -0
- package/react/OrderedList/Readme.md +9 -0
- package/react/OrderedList/index.jsx +19 -0
- package/react/OrderedList/styles.styl +19 -0
- package/react/OutlinedInput/index.js +3 -0
- package/react/Page/Readme.md +15 -0
- package/react/Page/index.jsx +111 -0
- package/react/Page/keyboard.js +104 -0
- package/react/Page/styles.styl +9 -0
- package/react/Panel/index.jsx +12 -0
- package/react/Panel/styles.styl +10 -0
- package/react/Paper/Readme.md +54 -0
- package/react/Paper/index.js +3 -0
- package/react/PasswordExample/Readme.md +13 -0
- package/react/PasswordExample/index.jsx +82 -0
- package/react/PasswordExample/styles.styl +7 -0
- package/react/PasswordField/Readme.md +8 -0
- package/react/PasswordField/index.jsx +56 -0
- package/react/PasswordField/locales/en.json +6 -0
- package/react/PasswordField/locales/fr.json +6 -0
- package/react/PasswordField/locales/ru.json +6 -0
- package/react/PasswordField/locales/vi.json +6 -0
- package/react/Paywall/MaxAccountsByKonnectorPaywall.jsx +32 -0
- package/react/Paywall/MaxAccountsPaywall.jsx +27 -0
- package/react/Paywall/MaxDaysToCapturePaywall.jsx +27 -0
- package/react/Paywall/MaxPapersPaywall.jsx +29 -0
- package/react/Paywall/OnlyOfficePaywall.jsx +24 -0
- package/react/Paywall/PasswordSharingPaywall.jsx +20 -0
- package/react/Paywall/Paywall.jsx +124 -0
- package/react/Paywall/Paywall.spec.jsx +230 -0
- package/react/Paywall/QuotaPaywall.jsx +18 -0
- package/react/Paywall/Readme.md +137 -0
- package/react/Paywall/helpers.js +22 -0
- package/react/Paywall/howto.md +28 -0
- package/react/Paywall/index.jsx +7 -0
- package/react/Paywall/locales/en.json +95 -0
- package/react/Paywall/locales/fr.json +95 -0
- package/react/Paywall/locales/ru.json +95 -0
- package/react/Paywall/locales/vi.json +95 -0
- package/react/Paywall/locales/withPaywallLocales.jsx +14 -0
- package/react/PieChart/Readme.md +53 -0
- package/react/PieChart/index.jsx +141 -0
- package/react/PieChart/index.spec.jsx +123 -0
- package/react/PointerAlert/Readme.md +167 -0
- package/react/PointerAlert/index.jsx +113 -0
- package/react/Popover/index.js +3 -0
- package/react/Popper/index.js +3 -0
- package/react/Popper/testing.js +21 -0
- package/react/Popup/Readme.md +22 -0
- package/react/Popup/index.jsx +154 -0
- package/react/Popup/index.spec.jsx +105 -0
- package/react/PopupOpener/Readme.md +8 -0
- package/react/PopupOpener/index.jsx +56 -0
- package/react/Portal/index.jsx +8 -0
- package/react/Progress/Readme.md +31 -0
- package/react/Progress/index.js +2 -0
- package/react/ProgressionBanner/Readme.md +30 -0
- package/react/ProgressionBanner/index.jsx +68 -0
- package/react/QualificationGrid/Readme.md +25 -0
- package/react/QualificationGrid/helpers.js +7 -0
- package/react/QualificationGrid/index.jsx +87 -0
- package/react/QualificationGrid/locales/en.json +15 -0
- package/react/QualificationGrid/locales/fr.json +15 -0
- package/react/QualificationGrid/locales/ru.json +15 -0
- package/react/QualificationGrid/locales/vi.json +15 -0
- package/react/QualificationGrid/locales/withLocales.jsx +14 -0
- package/react/QualificationIcon/Readme.md +14 -0
- package/react/QualificationIcon/index.jsx +105 -0
- package/react/QualificationItem/Readme.md +8 -0
- package/react/QualificationItem/index.jsx +64 -0
- package/react/QualificationModal/Readme.md +28 -0
- package/react/QualificationModal/helpers.js +63 -0
- package/react/QualificationModal/helpers.spec.js +61 -0
- package/react/QualificationModal/index.jsx +71 -0
- package/react/QualificationModal/locales/en.json +6 -0
- package/react/QualificationModal/locales/fr.json +6 -0
- package/react/QualificationModal/locales/index.jsx +11 -0
- package/react/QualificationModal/locales/ru.json +6 -0
- package/react/QualificationModal/locales/vi.json +6 -0
- package/react/RadioGroup/index.js +3 -0
- package/react/Radios/Readme.md +125 -0
- package/react/Radios/index.jsx +22 -0
- package/react/RootRef/index.js +3 -0
- package/react/ScopedCssBaseline/index.js +3 -0
- package/react/SearchBar/Readme.md +87 -0
- package/react/SearchBar/index.jsx +298 -0
- package/react/SearchBar/locales/en.json +5 -0
- package/react/SearchBar/locales/fr.json +5 -0
- package/react/SearchBar/locales/ru.json +5 -0
- package/react/SearchBar/locales/vi.json +5 -0
- package/react/SearchBar/locales/withOnlyLocales.jsx +14 -0
- package/react/Select/index.js +3 -0
- package/react/SelectBox/ControlDefault.jsx +25 -0
- package/react/SelectBox/Readme.md +382 -0
- package/react/SelectBox/SelectBox.jsx +369 -0
- package/react/SelectBox/SelectBoxWithFixedOptions.jsx +54 -0
- package/react/SelectBox/index.jsx +13 -0
- package/react/SelectBox/styles.styl +98 -0
- package/react/SelectionBar/Readme.md +86 -0
- package/react/SelectionBar/SelectionBarAction.jsx +71 -0
- package/react/SelectionBar/SelectionBarMore.jsx +75 -0
- package/react/SelectionBar/helpers.js +22 -0
- package/react/SelectionBar/helpers.spec.js +54 -0
- package/react/SelectionBar/index.jsx +178 -0
- package/react/SelectionBar/styles.styl +6 -0
- package/react/SelectionBar/useMaxActions.jsx +36 -0
- package/react/ShortcutTile/index.tsx +61 -0
- package/react/Sidebar/Readme.md +65 -0
- package/react/Sidebar/index.jsx +41 -0
- package/react/Sidebar/styles.styl +4 -0
- package/react/Skeleton/index.js +3 -0
- package/react/Skeletons/ListItemSkeleton.jsx +42 -0
- package/react/Skeletons/ListSkeleton.jsx +39 -0
- package/react/Skeletons/Readme.md +50 -0
- package/react/Skeletons/index.js +2 -0
- package/react/Slide/index.js +3 -0
- package/react/Slider/index.js +3 -0
- package/react/Snackbar/Readme.md +86 -0
- package/react/Snackbar/index.jsx +25 -0
- package/react/SnackbarContent/index.js +3 -0
- package/react/Spinner/Readme.md +68 -0
- package/react/Spinner/index.jsx +76 -0
- package/react/Spinner/styles.styl +32 -0
- package/react/SquareAppIcon/Readme.md +185 -0
- package/react/SquareAppIcon/SquareAppIcon.spec.js +88 -0
- package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +474 -0
- package/react/SquareAppIcon/constants.json +6 -0
- package/react/SquareAppIcon/index.jsx +289 -0
- package/react/SquareAppIcon/styles.styl +141 -0
- package/react/Stack/Readme.md +67 -0
- package/react/Stack/index.jsx +27 -0
- package/react/Stack/styles.styl +6 -0
- package/react/Step/index.js +3 -0
- package/react/StepButton/index.js +3 -0
- package/react/StepConnector/index.js +3 -0
- package/react/StepContent/index.js +3 -0
- package/react/StepIcon/index.js +3 -0
- package/react/StepLabel/index.js +3 -0
- package/react/Stepper/Readme.md +50 -0
- package/react/Stepper/index.jsx +4 -0
- package/react/Stepper/testing.jsx +43 -0
- package/react/Storage/Readme.md +46 -0
- package/react/Storage/StorageButton.jsx +34 -0
- package/react/Storage/StorageProgress.jsx +52 -0
- package/react/Storage/index.jsx +41 -0
- package/react/Storage/locales/en.json +7 -0
- package/react/Storage/locales/fr.json +7 -0
- package/react/Storage/locales/index.jsx +11 -0
- package/react/Storage/locales/ru.json +7 -0
- package/react/Storage/locales/vi.json +7 -0
- package/react/SvgIcon/index.js +3 -0
- package/react/SwipeableDrawer/index.js +3 -0
- package/react/Switch/Readme.md +121 -0
- package/react/Switch/index.jsx +19 -0
- package/react/Tab/index.js +3 -0
- package/react/Table/Readme.md +130 -0
- package/react/Table/Virtualized/Cell.jsx +69 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.jsx +43 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
- package/react/Table/Virtualized/Dnd/DnDConfigWrapper.jsx +48 -0
- package/react/Table/Virtualized/Dnd/TableRow.jsx +100 -0
- package/react/Table/Virtualized/Dnd/index.jsx +35 -0
- package/react/Table/Virtualized/Dnd/virtuosoComponents.jsx +25 -0
- package/react/Table/Virtualized/FixedHeaderContent.jsx +64 -0
- package/react/Table/Virtualized/HeadCell.jsx +53 -0
- package/react/Table/Virtualized/RowContent.jsx +52 -0
- package/react/Table/Virtualized/TableRow.jsx +20 -0
- package/react/Table/Virtualized/helpers.js +43 -0
- package/react/Table/Virtualized/helpers.spec.js +108 -0
- package/react/Table/Virtualized/index.jsx +151 -0
- package/react/Table/Virtualized/virtuosoComponents.jsx +35 -0
- package/react/Table/index.js +3 -0
- package/react/TableBody/index.js +3 -0
- package/react/TableCell/index.js +3 -0
- package/react/TableContainer/index.js +19 -0
- package/react/TableFooter/index.js +3 -0
- package/react/TableHead/index.js +3 -0
- package/react/TablePagination/index.js +3 -0
- package/react/TableRow/index.js +18 -0
- package/react/TableSortLabel/index.js +3 -0
- package/react/Tabs/Readme.md +100 -0
- package/react/Tabs/index.jsx +46 -0
- package/react/TextField/MobileSelect.jsx +168 -0
- package/react/TextField/Readme.md +264 -0
- package/react/TextField/helpers.js +23 -0
- package/react/TextField/index.jsx +54 -0
- package/react/Textarea/Readme.md +58 -0
- package/react/Textarea/index.jsx +58 -0
- package/react/Textarea/styles.styl +13 -0
- package/react/TextareaAutosize/index.js +3 -0
- package/react/Thumbnail/Readme.md +31 -0
- package/react/Thumbnail/Thumbnail.styl +51 -0
- package/react/Thumbnail/index.jsx +41 -0
- package/react/Tile/index.jsx +98 -0
- package/react/Tile/styles.styl +122 -0
- package/react/Timeline/index.js +3 -0
- package/react/TimelineConnector/index.js +3 -0
- package/react/TimelineContent/index.js +3 -0
- package/react/TimelineDot/index.js +3 -0
- package/react/TimelineItem/index.js +3 -0
- package/react/TimelineOppositeContent/index.js +3 -0
- package/react/TimelineSeparator/index.js +3 -0
- package/react/Toggle/index.jsx +50 -0
- package/react/Toggle/styles.styl +39 -0
- package/react/ToggleButton/Readme.md +60 -0
- package/react/ToggleButton/index.js +26 -0
- package/react/ToggleButtonGroup/Readme.md +90 -0
- package/react/ToggleButtonGroup/index.js +3 -0
- package/react/Toolbar/index.js +3 -0
- package/react/Tooltip/Readme.md +30 -0
- package/react/Tooltip/index.jsx +7 -0
- package/react/Typography/Readme.md +44 -0
- package/react/Typography/index.jsx +25 -0
- package/react/UnorderedList/Readme.md +9 -0
- package/react/UnorderedList/index.jsx +19 -0
- package/react/UnorderedList/styles.styl +22 -0
- package/react/UploadQueue/FileUploadProgress.jsx +49 -0
- package/react/UploadQueue/Item.jsx +99 -0
- package/react/UploadQueue/Pending.jsx +12 -0
- package/react/UploadQueue/Readme.md +95 -0
- package/react/UploadQueue/RemainingTime.jsx +26 -0
- package/react/UploadQueue/helpers.js +3 -0
- package/react/UploadQueue/index.jsx +160 -0
- package/react/UploadQueue/index.spec.jsx +162 -0
- package/react/UploadQueue/locales/en.json +10 -0
- package/react/UploadQueue/locales/es.json +10 -0
- package/react/UploadQueue/locales/fr.json +10 -0
- package/react/UploadQueue/locales/ru.json +10 -0
- package/react/UploadQueue/locales/vi.json +10 -0
- package/react/UploadQueue/styles.styl +155 -0
- package/react/UploadQueue/useStatusIcon.js +31 -0
- package/react/Wizard/Readme.md +86 -0
- package/react/Wizard/index.jsx +182 -0
- package/react/Wizard/styles.styl +98 -0
- package/react/Zoom/index.js +3 -0
- package/react/deprecated/ActionMenu/ActionMenuEffects.ts +51 -0
- package/react/deprecated/ActionMenu/ActionMenuHeader.jsx +18 -0
- package/react/deprecated/ActionMenu/ActionMenuItem.jsx +46 -0
- package/react/deprecated/ActionMenu/ActionMenuItemWrapper.jsx +83 -0
- package/react/deprecated/ActionMenu/ActionMenuRadio.jsx +8 -0
- package/react/deprecated/ActionMenu/ActionMenuWithClose.jsx +31 -0
- package/react/deprecated/ActionMenu/ActionMenuWrapper.jsx +42 -0
- package/react/deprecated/ActionMenu/Actions/ActionsItems.jsx +46 -0
- package/react/deprecated/ActionMenu/Actions/call.js +29 -0
- package/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
- package/react/deprecated/ActionMenu/Actions/helpers.js +63 -0
- package/react/deprecated/ActionMenu/Actions/helpers.spec.js +36 -0
- package/react/deprecated/ActionMenu/Actions/hr.js +10 -0
- package/react/deprecated/ActionMenu/Actions/index.js +7 -0
- package/react/deprecated/ActionMenu/Actions/locales/en.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/fr.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/ru.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/vi.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.jsx +14 -0
- package/react/deprecated/ActionMenu/Actions/modify.js +41 -0
- package/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
- package/react/deprecated/ActionMenu/Actions/viewInContacts.js +41 -0
- package/react/deprecated/ActionMenu/NotInlineWrapper.jsx +57 -0
- package/react/deprecated/ActionMenu/Readme.md +180 -0
- package/react/deprecated/ActionMenu/index.jsx +134 -0
- package/react/deprecated/ActionMenu/styles.styl +17 -0
- package/react/deprecated/Alerter/Alert.jsx +116 -0
- package/react/deprecated/Alerter/Readme.md +74 -0
- package/react/deprecated/Alerter/index.jsx +146 -0
- package/react/deprecated/Alerter/styles.styl +37 -0
- package/react/deprecated/BottomDrawer/Readme.md +34 -0
- package/react/deprecated/BottomDrawer/index.jsx +157 -0
- package/react/deprecated/BottomDrawer/styles.styl +18 -0
- package/react/deprecated/Button/Readme.md +240 -0
- package/react/deprecated/Button/index.jsx +180 -0
- package/react/deprecated/Button/styles.styl +85 -0
- package/react/deprecated/ButtonAction/index.jsx +78 -0
- package/react/deprecated/ButtonAction/styles.styl +22 -0
- package/react/deprecated/Chip/Readme.md +161 -0
- package/react/deprecated/Chip/index.jsx +88 -0
- package/react/deprecated/Chip/styles.styl +58 -0
- package/react/deprecated/CompositeRow/Readme.md +102 -0
- package/react/deprecated/CompositeRow/index.jsx +92 -0
- package/react/deprecated/CompositeRow/styles.styl +17 -0
- package/react/deprecated/GridItem/Readme.md +25 -0
- package/react/deprecated/GridItem/index.jsx +25 -0
- package/react/deprecated/GridItem/styles.styl +8 -0
- package/react/deprecated/Infos/Readme.md +37 -0
- package/react/deprecated/Infos/index.jsx +125 -0
- package/react/deprecated/Infos/styles.styl +32 -0
- package/react/deprecated/InfosCarrousel/Readme.md +64 -0
- package/react/deprecated/InfosCarrousel/index.jsx +109 -0
- package/react/deprecated/InfosCarrousel/styles.styl +31 -0
- package/react/deprecated/InlineCard/Readme.md +8 -0
- package/react/deprecated/InlineCard/index.jsx +21 -0
- package/react/deprecated/InlineCard/styles.styl +7 -0
- package/react/deprecated/IntentModal/IntentModal.jsx +98 -0
- package/react/deprecated/IntentModal/IntentModal.md +26 -0
- package/react/deprecated/IntentModal/index.js +1 -0
- package/react/deprecated/IntentModal/styles.styl +23 -0
- package/react/deprecated/IntentOpener/IntentOpener.jsx +95 -0
- package/react/deprecated/IntentOpener/IntentOpener.md +16 -0
- package/react/deprecated/IntentOpener/index.js +1 -0
- package/react/deprecated/Media/Media.jsx +43 -0
- package/react/deprecated/Media/Readme.md +71 -0
- package/react/deprecated/Media/index.js +1 -0
- package/react/deprecated/Media/styles.styl +16 -0
- package/react/deprecated/Menus/Readme.md +25 -0
- package/react/deprecated/Menus/index.js +125 -0
- package/react/deprecated/Modal/AnimatedContentHeader.jsx +9 -0
- package/react/deprecated/Modal/ModalBackButton.jsx +37 -0
- package/react/deprecated/Modal/ModalButtons.jsx +51 -0
- package/react/deprecated/Modal/ModalContent.jsx +122 -0
- package/react/deprecated/Modal/ModalCross.jsx +33 -0
- package/react/deprecated/Modal/ModalEffects.ts +63 -0
- package/react/deprecated/Modal/ModalFooter.jsx +10 -0
- package/react/deprecated/Modal/ModalHeader.jsx +53 -0
- package/react/deprecated/Modal/ModalSection.jsx +18 -0
- package/react/deprecated/Modal/Readme.md +485 -0
- package/react/deprecated/Modal/index.jsx +317 -0
- package/react/deprecated/Modal/styles.styl +114 -0
- package/react/deprecated/NarrowContent/Readme.md +23 -0
- package/react/deprecated/NarrowContent/index.jsx +12 -0
- package/react/deprecated/NarrowContent/styles.styl +2 -0
- package/react/deprecated/Overlay/Readme.md +30 -0
- package/react/deprecated/Overlay/index.jsx +79 -0
- package/react/deprecated/Overlay/styles.styl +4 -0
- package/react/deprecated/PercentageBar/Readme.md +18 -0
- package/react/deprecated/PercentageBar/index.jsx +21 -0
- package/react/deprecated/PercentageBar/styles.styl +11 -0
- package/react/deprecated/PercentageLine/PercentageLine.styl +4 -0
- package/react/deprecated/PercentageLine/Readme.md +9 -0
- package/react/deprecated/PercentageLine/index.jsx +32 -0
- package/react/deprecated/PushClientButton/Readme.md +40 -0
- package/react/deprecated/PushClientButton/index.jsx +46 -0
- package/react/deprecated/PushClientButton/index.spec.jsx +25 -0
- package/react/deprecated/PushClientButton/styles.styl +4 -0
- package/react/deprecated/QuotaAlert/Readme.md +40 -0
- package/react/deprecated/QuotaAlert/index.jsx +18 -0
- package/react/deprecated/Radio/Readme.md +127 -0
- package/react/deprecated/Radio/index.jsx +89 -0
- package/react/deprecated/Radio/index.spec.jsx +173 -0
- package/react/deprecated/Radio/styles.styl +4 -0
- package/react/deprecated/RaisedList/README.md +20 -0
- package/react/deprecated/RaisedList/index.js +21 -0
- package/react/deprecated/Table/Readme.md +32 -0
- package/react/deprecated/Table/index.jsx +61 -0
- package/react/deprecated/Table/styles.styl +22 -0
- package/react/deprecated/ViewStack/ModalStack.jsx +43 -0
- package/react/deprecated/ViewStack/Readme.md +10 -0
- package/react/deprecated/ViewStack/ViewStack.jsx +41 -0
- package/react/deprecated/ViewStack/context.js +4 -0
- package/react/deprecated/ViewStack/example.jsx +41 -0
- package/react/deprecated/ViewStack/hooks.js +30 -0
- package/react/deprecated/ViewStack/index.js +3 -0
- package/react/deprecated/readme.md +1 -0
- package/react/helpers/acceptedTypes.js +50 -0
- package/react/helpers/acceptedTypes.spec.js +86 -0
- package/react/helpers/appDataset.js +46 -0
- package/react/helpers/appDataset.spec.js +73 -0
- package/react/helpers/breakpoints.js +35 -0
- package/react/helpers/createDepreciationLogger.js +10 -0
- package/react/helpers/createDepreciationLogger.spec.js +21 -0
- package/react/helpers/getRandomUUID.js +28 -0
- package/react/helpers/getRandomUUID.spec.js +9 -0
- package/react/helpers/getSafeArea.ts +15 -0
- package/react/helpers/isTesting.js +2 -0
- package/react/helpers/migrateProps.jsx +89 -0
- package/react/helpers/ref.js +11 -0
- package/react/helpers/ref.spec.js +28 -0
- package/react/helpers/useProgression.jsx +30 -0
- package/react/helpers/withBreakpoints.jsx +81 -0
- package/react/helpers/withOffline.jsx +33 -0
- package/react/helpers/withState.jsx +43 -0
- package/react/hooks/useBreakpoints.md +12 -0
- package/react/hooks/useBrowserOffline.js +34 -0
- package/react/hooks/useBrowserOffline.md +9 -0
- package/react/hooks/useBrowserOffline.spec.js +93 -0
- package/react/hooks/useClientErrors.jsx +140 -0
- package/react/hooks/useClientErrors.spec.jsx +94 -0
- package/react/hooks/useConfirmExit/Readme.md +38 -0
- package/react/hooks/useConfirmExit/index.jsx +176 -0
- package/react/hooks/useConfirmExit/index.spec.js +186 -0
- package/react/hooks/useConfirmExit/locales/en.json +8 -0
- package/react/hooks/useConfirmExit/locales/fr.json +8 -0
- package/react/hooks/useConfirmExit/locales/ru.json +8 -0
- package/react/hooks/useConfirmExit/locales/vi.json +8 -0
- package/react/hooks/useCycle.jsx +37 -0
- package/react/hooks/useCycle.md +27 -0
- package/react/hooks/useCycle.spec.jsx +58 -0
- package/react/hooks/useEventListener.js +17 -0
- package/react/hooks/useEventListener.md +13 -0
- package/react/hooks/useEventListener.spec.js +72 -0
- package/react/hooks/useMediaQuery.js +6 -0
- package/react/hooks/usePeriodicRender.js +23 -0
- package/react/hooks/usePeriodicRender.md +17 -0
- package/react/hooks/usePeriodicRender.spec.js +70 -0
- package/react/hooks/useRealtime.js +51 -0
- package/react/hooks/useRealtime.spec.js +42 -0
- package/react/hooks/useScroll.jsx +44 -0
- package/react/hooks/useScroll.md +34 -0
- package/react/hooks/useScroll.spec.jsx +57 -0
- package/react/hooks/useSetFlagshipUi/helpers.js +152 -0
- package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.spec.ts +295 -0
- package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.ts +58 -0
- package/react/index.js +141 -0
- package/react/jestLib/I18n.js +13 -0
- package/react/legacy/Avatar/Readme.md +52 -0
- package/react/legacy/Avatar/helpers.js +17 -0
- package/react/legacy/Avatar/index.jsx +77 -0
- package/react/legacy/Avatar/styles.styl +49 -0
- package/react/legacy/Breadcrumbs/Readme.md +86 -0
- package/react/legacy/Breadcrumbs/index.jsx +93 -0
- package/react/legacy/Breadcrumbs/styles.styl +23 -0
- package/react/legacy/Input/Readme.md +91 -0
- package/react/legacy/Input/index.jsx +78 -0
- package/react/legacy/Input/styles.styl +16 -0
- package/react/legacy/readme.md +1 -0
- package/react/mocks/apps.js +151 -0
- package/react/palette.js +49 -0
- package/react/providers/Alert/Readme.md +69 -0
- package/react/providers/Alert/helpers.js +13 -0
- package/react/providers/Alert/index.jsx +84 -0
- package/react/providers/Breakpoints/Readme.md +64 -0
- package/react/providers/Breakpoints/index.jsx +58 -0
- package/react/providers/Breakpoints/useIframeConnection.jsx +31 -0
- package/react/providers/Breakpoints/useIframeToSendWidth.jsx +33 -0
- package/react/providers/Breakpoints/useParentBreakpoints.jsx +36 -0
- package/react/providers/ConfirmDialog/Readme.md +35 -0
- package/react/providers/ConfirmDialog/index.jsx +60 -0
- package/react/providers/CozyTheme/CozyThemeWithQuery.jsx +25 -0
- package/react/providers/CozyTheme/DumbCozyTheme.jsx +65 -0
- package/react/providers/CozyTheme/Readme.md +88 -0
- package/react/providers/CozyTheme/index.jsx +59 -0
- package/react/providers/CozyTheme/queries.js +14 -0
- package/react/providers/DemoProvider.jsx +43 -0
- package/react/providers/Encrypted/index.jsx +25 -0
- package/react/providers/I18n/createUseI18n.jsx +32 -0
- package/react/providers/I18n/format.jsx +62 -0
- package/react/providers/I18n/format.spec.jsx +73 -0
- package/react/providers/I18n/helpers.js +33 -0
- package/react/providers/I18n/index.jsx +107 -0
- package/react/providers/I18n/index.spec.jsx +135 -0
- package/react/providers/I18n/translate.jsx +28 -0
- package/react/providers/I18n/translation.jsx +42 -0
- package/react/providers/I18n/useExtendI18n.jsx +37 -0
- package/react/providers/I18n/withLocales.jsx +47 -0
- package/react/providers/I18n/withLocales.spec.jsx +58 -0
- package/react/providers/I18n/withOnlyLocales.jsx +38 -0
- package/react/providers/Intent/index.jsx +83 -0
- package/react/providers/Readme.md +1 -0
- package/react/providers/Selection/Readme.md +28 -0
- package/react/providers/Selection/index.jsx +84 -0
- package/react/styles/index.js +1 -0
- package/react/utils/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
- package/react/utils/Dnd/CustomDrag/DragPreview.jsx +43 -0
- package/react/utils/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
- package/react/utils/Dnd/DnDConfigWrapper.jsx +48 -0
- package/react/utils/color.js +30 -0
- package/react/utils/color.spec.js +8 -0
- package/react/utils/dom.jsx +10 -0
- package/react/utils/index.js +1 -0
- package/react/utils/react.js +48 -0
- package/scripts/screenshots/fetchAllComponents.js +114 -0
- package/scripts/screenshots/helpers.js +39 -0
- package/scripts/screenshots/parser.js +61 -0
- package/scripts/screenshots/prepares.js +58 -0
- package/scripts/screenshots/screenshotComponent.js +68 -0
- package/scripts/screenshots/screenshotKSSStyleguide.js +60 -0
- package/scripts/screenshots/screenshotReactStyleguide.js +74 -0
- package/stylus/cozy-ui/build.styl +16 -0
- package/transpiled/react/Accordion/index.d.ts +2 -0
- package/transpiled/react/Accordion/index.js +2 -0
- package/transpiled/react/AccordionActions/index.d.ts +2 -0
- package/transpiled/react/AccordionActions/index.js +2 -0
- package/transpiled/react/AccordionDetails/index.d.ts +2 -0
- package/transpiled/react/AccordionDetails/index.js +2 -0
- package/transpiled/react/AccordionSummary/AccordionExpandIcon.d.ts +2 -0
- package/transpiled/react/AccordionSummary/AccordionExpandIcon.js +12 -0
- package/transpiled/react/AccordionSummary/index.d.ts +2 -0
- package/transpiled/react/AccordionSummary/index.js +7 -0
- package/transpiled/react/ActionsBar/ResponsiveAction.d.ts +3 -0
- package/transpiled/react/ActionsBar/ResponsiveAction.js +62 -0
- package/transpiled/react/ActionsBar/index.d.ts +2 -0
- package/transpiled/react/ActionsBar/index.js +221 -0
- package/transpiled/react/ActionsBar/locales/withActionsLocales.d.ts +12 -0
- package/transpiled/react/ActionsBar/locales/withActionsLocales.js +24 -0
- package/transpiled/react/ActionsMenu/Actions/addToFavorites.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/addToFavorites.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/call.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/call.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/copyToClipboard.d.ts +12 -0
- package/transpiled/react/ActionsMenu/Actions/copyToClipboard.js +91 -0
- package/transpiled/react/ActionsMenu/Actions/divider.d.ts +5 -0
- package/transpiled/react/ActionsMenu/Actions/divider.js +13 -0
- package/transpiled/react/ActionsMenu/Actions/download.d.ts +15 -0
- package/transpiled/react/ActionsMenu/Actions/download.js +51 -0
- package/transpiled/react/ActionsMenu/Actions/editAttribute.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/editAttribute.js +40 -0
- package/transpiled/react/ActionsMenu/Actions/emailTo.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/emailTo.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.d.ts +8 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.js +478 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.spec.d.ts +1 -0
- package/transpiled/react/ActionsMenu/Actions/index.d.ts +15 -0
- package/transpiled/react/ActionsMenu/Actions/index.js +15 -0
- package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.d.ts +17 -0
- package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.js +130 -0
- package/transpiled/react/ActionsMenu/Actions/makeAction.d.ts +17 -0
- package/transpiled/react/ActionsMenu/Actions/makeAction.js +45 -0
- package/transpiled/react/ActionsMenu/Actions/modify.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/modify.js +42 -0
- package/transpiled/react/ActionsMenu/Actions/others.d.ts +6 -0
- package/transpiled/react/ActionsMenu/Actions/others.js +12 -0
- package/transpiled/react/ActionsMenu/Actions/print.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/print.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/smsTo.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/smsTo.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/viewInContacts.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/viewInContacts.js +42 -0
- package/transpiled/react/ActionsMenu/Actions/viewInDrive.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/viewInDrive.js +50 -0
- package/transpiled/react/ActionsMenu/ActionsItems.d.ts +11 -0
- package/transpiled/react/ActionsMenu/ActionsItems.js +81 -0
- package/transpiled/react/ActionsMenu/ActionsMenuButton.d.ts +5 -0
- package/transpiled/react/ActionsMenu/ActionsMenuButton.js +49 -0
- package/transpiled/react/ActionsMenu/ActionsMenuItem.d.ts +3 -0
- package/transpiled/react/ActionsMenu/ActionsMenuItem.js +37 -0
- package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.d.ts +3 -0
- package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.js +31 -0
- package/transpiled/react/ActionsMenu/ActionsMenuWrapper.d.ts +15 -0
- package/transpiled/react/ActionsMenu/ActionsMenuWrapper.js +81 -0
- package/transpiled/react/ActionsMenu/index.d.ts +3 -0
- package/transpiled/react/ActionsMenu/index.js +94 -0
- package/transpiled/react/Alert/index.d.ts +54 -0
- package/transpiled/react/Alert/index.js +138 -0
- package/transpiled/react/AlertTitle/index.d.ts +2 -0
- package/transpiled/react/AlertTitle/index.js +2 -0
- package/transpiled/react/AppBar/index.d.ts +2 -0
- package/transpiled/react/AppBar/index.js +2 -0
- package/transpiled/react/AppIcon/index.d.ts +50 -0
- package/transpiled/react/AppIcon/index.js +234 -0
- package/transpiled/react/AppLinker/index.d.ts +35 -0
- package/transpiled/react/AppLinker/index.js +122 -0
- package/transpiled/react/AppLinker/index.spec.d.ts +1 -0
- package/transpiled/react/AppLinker/native.config.d.ts +1 -0
- package/transpiled/react/AppLinker/native.config.js +1 -0
- package/transpiled/react/AppLinker/native.d.ts +6 -0
- package/transpiled/react/AppLinker/native.js +61 -0
- package/transpiled/react/AppLinker/native.spec.d.ts +1 -0
- package/transpiled/react/AppSections/Sections.d.ts +48 -0
- package/transpiled/react/AppSections/Sections.js +420 -0
- package/transpiled/react/AppSections/_mockApps.d.ts +242 -0
- package/transpiled/react/AppSections/_mockApps.js +202 -0
- package/transpiled/react/AppSections/categories.d.ts +7 -0
- package/transpiled/react/AppSections/categories.js +173 -0
- package/transpiled/react/AppSections/categories.spec.d.ts +1 -0
- package/transpiled/react/AppSections/components/AppsSection.d.ts +20 -0
- package/transpiled/react/AppSections/components/AppsSection.js +89 -0
- package/transpiled/react/AppSections/components/AppsSection.spec.d.ts +1 -0
- package/transpiled/react/AppSections/components/DropdownFilter.d.ts +17 -0
- package/transpiled/react/AppSections/components/DropdownFilter.js +77 -0
- package/transpiled/react/AppSections/constants.d.ts +8 -0
- package/transpiled/react/AppSections/constants.js +8 -0
- package/transpiled/react/AppSections/generateI18nConfig.d.ts +4 -0
- package/transpiled/react/AppSections/generateI18nConfig.js +25 -0
- package/transpiled/react/AppSections/helpers.d.ts +2 -0
- package/transpiled/react/AppSections/helpers.js +12 -0
- package/transpiled/react/AppSections/helpers.spec.d.ts +1 -0
- package/transpiled/react/AppSections/index.d.ts +3 -0
- package/transpiled/react/AppSections/index.js +3 -0
- package/transpiled/react/AppSections/index.spec.d.ts +1 -0
- package/transpiled/react/AppSections/search.d.ts +3 -0
- package/transpiled/react/AppSections/search.js +141 -0
- package/transpiled/react/AppSections/search.spec.d.ts +1 -0
- package/transpiled/react/AppTile/AppTile.spec.d.ts +1 -0
- package/transpiled/react/AppTile/helpers.d.ts +9 -0
- package/transpiled/react/AppTile/helpers.js +22 -0
- package/transpiled/react/AppTile/index.d.ts +33 -0
- package/transpiled/react/AppTile/index.js +141 -0
- package/transpiled/react/AppTitle/index.d.ts +20 -0
- package/transpiled/react/AppTitle/index.js +118 -0
- package/transpiled/react/Avatar/helpers.d.ts +34 -0
- package/transpiled/react/Avatar/helpers.js +49 -0
- package/transpiled/react/Avatar/index.d.ts +27 -0
- package/transpiled/react/Avatar/index.js +79 -0
- package/transpiled/react/AvatarGroup/index.d.ts +17 -0
- package/transpiled/react/AvatarGroup/index.js +48 -0
- package/transpiled/react/Backdrop/index.d.ts +11 -0
- package/transpiled/react/Backdrop/index.js +31 -0
- package/transpiled/react/Badge/index.d.ts +38 -0
- package/transpiled/react/Badge/index.js +68 -0
- package/transpiled/react/Banner/index.d.ts +28 -0
- package/transpiled/react/Banner/index.js +99 -0
- package/transpiled/react/Banner/index.spec.d.ts +1 -0
- package/transpiled/react/BarButton/index.d.ts +17 -0
- package/transpiled/react/BarButton/index.js +116 -0
- package/transpiled/react/BarContextProvider/index.d.ts +10 -0
- package/transpiled/react/BarContextProvider/index.js +32 -0
- package/transpiled/react/BarContextProvider/index.spec.d.ts +1 -0
- package/transpiled/react/BarTitle/index.d.ts +15 -0
- package/transpiled/react/BarTitle/index.js +27 -0
- package/transpiled/react/BottomNavigation/index.d.ts +2 -0
- package/transpiled/react/BottomNavigation/index.js +2 -0
- package/transpiled/react/BottomNavigationAction/index.d.ts +2 -0
- package/transpiled/react/BottomNavigationAction/index.js +2 -0
- package/transpiled/react/BottomSheet/BackdropOrFragment.d.ts +6 -0
- package/transpiled/react/BottomSheet/BackdropOrFragment.js +16 -0
- package/transpiled/react/BottomSheet/BottomSheet.d.ts +8 -0
- package/transpiled/react/BottomSheet/BottomSheet.js +450 -0
- package/transpiled/react/BottomSheet/BottomSheetHeader.d.ts +9 -0
- package/transpiled/react/BottomSheet/BottomSheetHeader.js +18 -0
- package/transpiled/react/BottomSheet/BottomSheetItem.d.ts +3 -0
- package/transpiled/react/BottomSheet/BottomSheetItem.js +35 -0
- package/transpiled/react/BottomSheet/BottomSheetTitle.d.ts +3 -0
- package/transpiled/react/BottomSheet/BottomSheetTitle.js +46 -0
- package/transpiled/react/BottomSheet/constants.d.ts +1 -0
- package/transpiled/react/BottomSheet/constants.js +1 -0
- package/transpiled/react/BottomSheet/helpers.d.ts +46 -0
- package/transpiled/react/BottomSheet/helpers.js +133 -0
- package/transpiled/react/BottomSheet/helpers.spec.d.ts +1 -0
- package/transpiled/react/BottomSheet/index.d.ts +4 -0
- package/transpiled/react/BottomSheet/index.js +4 -0
- package/transpiled/react/Box/index.d.ts +2 -0
- package/transpiled/react/Box/index.js +2 -0
- package/transpiled/react/Breadcrumbs/index.d.ts +2 -0
- package/transpiled/react/Breadcrumbs/index.js +2 -0
- package/transpiled/react/Button/index.d.ts +2 -0
- package/transpiled/react/Button/index.js +2 -0
- package/transpiled/react/ButtonBase/index.d.ts +2 -0
- package/transpiled/react/ButtonBase/index.js +2 -0
- package/transpiled/react/Buttons/index.d.ts +3 -0
- package/transpiled/react/Buttons/index.js +104 -0
- package/transpiled/react/Card/index.d.ts +19 -0
- package/transpiled/react/Card/index.js +58 -0
- package/transpiled/react/CardActionArea/index.d.ts +2 -0
- package/transpiled/react/CardActionArea/index.js +2 -0
- package/transpiled/react/CardActions/index.d.ts +2 -0
- package/transpiled/react/CardActions/index.js +2 -0
- package/transpiled/react/CardContent/index.d.ts +2 -0
- package/transpiled/react/CardContent/index.js +2 -0
- package/transpiled/react/CardHeader/index.d.ts +2 -0
- package/transpiled/react/CardHeader/index.js +2 -0
- package/transpiled/react/CardMedia/index.d.ts +2 -0
- package/transpiled/react/CardMedia/index.js +2 -0
- package/transpiled/react/Checkbox/index.d.ts +41 -0
- package/transpiled/react/Checkbox/index.js +107 -0
- package/transpiled/react/Chips/index.d.ts +3 -0
- package/transpiled/react/Chips/index.js +35 -0
- package/transpiled/react/CipherIcon/index.d.ts +2 -0
- package/transpiled/react/CipherIcon/index.js +78 -0
- package/transpiled/react/CipherIcon/index.spec.d.ts +1 -0
- package/transpiled/react/Circle/index.d.ts +24 -0
- package/transpiled/react/Circle/index.js +50 -0
- package/transpiled/react/CircleButton/helpers.d.ts +10 -0
- package/transpiled/react/CircleButton/helpers.js +26 -0
- package/transpiled/react/CircleButton/helpers.spec.d.ts +1 -0
- package/transpiled/react/CircleButton/index.d.ts +21 -0
- package/transpiled/react/CircleButton/index.js +116 -0
- package/transpiled/react/CircularChart/CircularChartProgress.d.ts +3 -0
- package/transpiled/react/CircularChart/CircularChartProgress.js +68 -0
- package/transpiled/react/CircularChart/CircularProgressWithBackground.d.ts +3 -0
- package/transpiled/react/CircularChart/CircularProgressWithBackground.js +44 -0
- package/transpiled/react/CircularChart/helpers.d.ts +1 -0
- package/transpiled/react/CircularChart/helpers.js +43 -0
- package/transpiled/react/CircularChart/index.d.ts +3 -0
- package/transpiled/react/CircularChart/index.js +59 -0
- package/transpiled/react/CircularProgress/index.d.ts +2 -0
- package/transpiled/react/CircularProgress/index.js +2 -0
- package/transpiled/react/ClickAwayListener/index.d.ts +2 -0
- package/transpiled/react/ClickAwayListener/index.js +2 -0
- package/transpiled/react/Collapse/index.d.ts +2 -0
- package/transpiled/react/Collapse/index.js +2 -0
- package/transpiled/react/ContactPicker/index.d.ts +21 -0
- package/transpiled/react/ContactPicker/index.js +111 -0
- package/transpiled/react/ContactPicker/index.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.d.ts +4 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.js +20 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.d.ts +39 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.js +87 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.js +106 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.d.ts +39 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.js +135 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.d.ts +12 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.js +69 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.d.ts +14 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.js +82 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.d.ts +22 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.js +80 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.d.ts +19 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.js +34 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.d.ts +18 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.js +32 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.d.ts +15 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.js +39 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.d.ts +9 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.js +81 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.d.ts +5 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.js +42 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.d.ts +6 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.js +105 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.d.ts +4 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.js +291 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.d.ts +7 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.js +99 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.d.ts +35 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.js +398 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.d.ts +17 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.js +150 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.js +306 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.d.ts +22 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.js +113 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.js +66 -0
- package/transpiled/react/Contacts/AddModal/index.d.ts +8 -0
- package/transpiled/react/Contacts/AddModal/index.js +111 -0
- package/transpiled/react/Contacts/AddModal/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/locales/index.js +58 -0
- package/transpiled/react/Contacts/AddModal/mocks.d.ts +300 -0
- package/transpiled/react/Contacts/AddModal/mocks.js +256 -0
- package/transpiled/react/Contacts/AddModal/types.d.ts +188 -0
- package/transpiled/react/Contacts/AddModal/types.js +94 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupCreation.d.ts +3 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupCreation.js +137 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.d.ts +56 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.js +181 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.spec.d.ts +22 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.d.ts +5 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.js +38 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.d.ts +14 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.js +37 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.d.ts +7 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.js +71 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.d.ts +7 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.js +34 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.d.ts +18 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.js +66 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.d.ts +2 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.js +12 -0
- package/transpiled/react/Contacts/GroupsSelect/helpers.d.ts +9 -0
- package/transpiled/react/Contacts/GroupsSelect/helpers.js +30 -0
- package/transpiled/react/Contacts/GroupsSelect/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/GroupsSelect/locales/index.js +90 -0
- package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.d.ts +11 -0
- package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.js +179 -0
- package/transpiled/react/Contacts/Header/GroupsSelection.d.ts +7 -0
- package/transpiled/react/Contacts/Header/GroupsSelection.js +84 -0
- package/transpiled/react/Contacts/Header/ImportDropdown.d.ts +4 -0
- package/transpiled/react/Contacts/Header/ImportDropdown.js +88 -0
- package/transpiled/react/Contacts/Header/SearchInput.d.ts +4 -0
- package/transpiled/react/Contacts/Header/SearchInput.js +24 -0
- package/transpiled/react/Contacts/Header/index.d.ts +26 -0
- package/transpiled/react/Contacts/Header/index.js +72 -0
- package/transpiled/react/Contacts/Header/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/Header/locales/index.js +66 -0
- package/transpiled/react/ContactsList/ContactCell.d.ts +8 -0
- package/transpiled/react/ContactsList/ContactCell.js +32 -0
- package/transpiled/react/ContactsList/ContactRow.d.ts +16 -0
- package/transpiled/react/ContactsList/ContactRow.js +62 -0
- package/transpiled/react/ContactsList/ContactRow.spec.d.ts +1 -0
- package/transpiled/react/ContactsList/Contacts/ContactCozy.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactCozy.js +31 -0
- package/transpiled/react/ContactsList/Contacts/ContactEmail.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactEmail.js +31 -0
- package/transpiled/react/ContactsList/Contacts/ContactIdentity.d.ts +10 -0
- package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +67 -0
- package/transpiled/react/ContactsList/Contacts/ContactName.d.ts +10 -0
- package/transpiled/react/ContactsList/Contacts/ContactName.js +34 -0
- package/transpiled/react/ContactsList/Contacts/ContactPhone.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactPhone.js +31 -0
- package/transpiled/react/ContactsList/ContactsList.d.ts +2 -0
- package/transpiled/react/ContactsList/ContactsList.js +51 -0
- package/transpiled/react/ContactsList/helpers.d.ts +9 -0
- package/transpiled/react/ContactsList/helpers.js +130 -0
- package/transpiled/react/ContactsList/helpers.spec.d.ts +1 -0
- package/transpiled/react/ContactsList/index.d.ts +2 -0
- package/transpiled/react/ContactsList/index.js +2 -0
- package/transpiled/react/ContactsList/locales/withContactsListLocales.d.ts +12 -0
- package/transpiled/react/ContactsList/locales/withContactsListLocales.js +28 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactActions.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactActions.js +19 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactContent.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactContent.js +65 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.d.ts +6 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.js +42 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.js +9 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.d.ts +6 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.js +48 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.spec.d.ts +1 -0
- package/transpiled/react/ContactsListModal/ContactsListContent.d.ts +2 -0
- package/transpiled/react/ContactsListModal/ContactsListContent.js +72 -0
- package/transpiled/react/ContactsListModal/ContactsListModal.d.ts +20 -0
- package/transpiled/react/ContactsListModal/ContactsListModal.js +144 -0
- package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.d.ts +12 -0
- package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.js +29 -0
- package/transpiled/react/ContactsListModal/EmptyMessage.d.ts +2 -0
- package/transpiled/react/ContactsListModal/EmptyMessage.js +19 -0
- package/transpiled/react/ContactsListModal/MobileHeader.d.ts +16 -0
- package/transpiled/react/ContactsListModal/MobileHeader.js +49 -0
- package/transpiled/react/ContactsListModal/index.d.ts +2 -0
- package/transpiled/react/ContactsListModal/index.js +39 -0
- package/transpiled/react/ContactsListModal/mockClient.d.ts +3 -0
- package/transpiled/react/ContactsListModal/mockClient.js +1998 -0
- package/transpiled/react/ContactsListModal/queries.d.ts +7 -0
- package/transpiled/react/ContactsListModal/queries.js +14 -0
- package/transpiled/react/ContactsListModal/withContactsListLocales.d.ts +7 -0
- package/transpiled/react/ContactsListModal/withContactsListLocales.js +28 -0
- package/transpiled/react/Container/index.d.ts +2 -0
- package/transpiled/react/Container/index.js +2 -0
- package/transpiled/react/Counter/index.d.ts +18 -0
- package/transpiled/react/Counter/index.js +18 -0
- package/transpiled/react/CozyDialogs/ConfirmDialog.d.ts +9 -0
- package/transpiled/react/CozyDialogs/ConfirmDialog.js +64 -0
- package/transpiled/react/CozyDialogs/Dialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/Dialog.js +53 -0
- package/transpiled/react/CozyDialogs/DialogBackButton.d.ts +11 -0
- package/transpiled/react/CozyDialogs/DialogBackButton.js +40 -0
- package/transpiled/react/CozyDialogs/DialogCloseButton.d.ts +11 -0
- package/transpiled/react/CozyDialogs/DialogCloseButton.js +40 -0
- package/transpiled/react/CozyDialogs/DialogTransition.d.ts +3 -0
- package/transpiled/react/CozyDialogs/DialogTransition.js +24 -0
- package/transpiled/react/CozyDialogs/FixedActionsDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/FixedActionsDialog.js +59 -0
- package/transpiled/react/CozyDialogs/FixedDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/FixedDialog.js +49 -0
- package/transpiled/react/CozyDialogs/IllustrationDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/IllustrationDialog.js +64 -0
- package/transpiled/react/CozyDialogs/PermissionDialog.d.ts +25 -0
- package/transpiled/react/CozyDialogs/PermissionDialog.js +80 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.js +73 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.js +113 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.js +80 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.js +114 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.d.ts +13 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +91 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.js +41 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/index.d.ts +4 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/index.js +4 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.d.ts +12 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.js +172 -0
- package/transpiled/react/CozyDialogs/TopAnchoredDialog.d.ts +18 -0
- package/transpiled/react/CozyDialogs/TopAnchoredDialog.js +23 -0
- package/transpiled/react/CozyDialogs/background.png +0 -0
- package/transpiled/react/CozyDialogs/dialogPropTypes.d.ts +14 -0
- package/transpiled/react/CozyDialogs/dialogPropTypes.js +13 -0
- package/transpiled/react/CozyDialogs/e2e.d.ts +2 -0
- package/transpiled/react/CozyDialogs/e2e.js +65 -0
- package/transpiled/react/CozyDialogs/index.d.ts +11 -0
- package/transpiled/react/CozyDialogs/index.js +11 -0
- package/transpiled/react/CozyDialogs/locales.d.ts +31 -0
- package/transpiled/react/CozyDialogs/locales.js +22 -0
- package/transpiled/react/CozyDialogs/testing.d.ts +5 -0
- package/transpiled/react/CozyDialogs/testing.js +35 -0
- package/transpiled/react/CozyDialogs/testing.spec.d.ts +1 -0
- package/transpiled/react/CozyDialogs/useCozyDialog.d.ts +15 -0
- package/transpiled/react/CozyDialogs/useCozyDialog.js +141 -0
- package/transpiled/react/CssBaseline/index.d.ts +2 -0
- package/transpiled/react/CssBaseline/index.js +2 -0
- package/transpiled/react/DateMonthPicker/index.d.ts +13 -0
- package/transpiled/react/DateMonthPicker/index.js +119 -0
- package/transpiled/react/DateMonthPicker/index.spec.d.ts +1 -0
- package/transpiled/react/DatePicker/helpers.d.ts +5 -0
- package/transpiled/react/DatePicker/helpers.js +19 -0
- package/transpiled/react/DatePicker/helpers.spec.d.ts +1 -0
- package/transpiled/react/DatePicker/index.d.ts +2 -0
- package/transpiled/react/DatePicker/index.js +331 -0
- package/transpiled/react/DatePicker/locales/withOwnLocales.d.ts +12 -0
- package/transpiled/react/DatePicker/locales/withOwnLocales.js +40 -0
- package/transpiled/react/Dialog/DialogActions.d.ts +2 -0
- package/transpiled/react/Dialog/DialogActions.js +2 -0
- package/transpiled/react/Dialog/DialogContent.d.ts +2 -0
- package/transpiled/react/Dialog/DialogContent.js +2 -0
- package/transpiled/react/Dialog/DialogContentText.d.ts +2 -0
- package/transpiled/react/Dialog/DialogContentText.js +2 -0
- package/transpiled/react/Dialog/DialogEffects.d.ts +36 -0
- package/transpiled/react/Dialog/DialogEffects.js +145 -0
- package/transpiled/react/Dialog/DialogTitle.d.ts +2 -0
- package/transpiled/react/Dialog/DialogTitle.js +2 -0
- package/transpiled/react/Dialog/index.d.ts +14 -0
- package/transpiled/react/Dialog/index.js +31 -0
- package/transpiled/react/DialogActions/index.d.ts +2 -0
- package/transpiled/react/DialogActions/index.js +2 -0
- package/transpiled/react/DialogContent/index.d.ts +2 -0
- package/transpiled/react/DialogContent/index.js +2 -0
- package/transpiled/react/DialogContentText/index.d.ts +2 -0
- package/transpiled/react/DialogContentText/index.js +2 -0
- package/transpiled/react/DialogTitle/index.d.ts +2 -0
- package/transpiled/react/DialogTitle/index.js +2 -0
- package/transpiled/react/Divider/TextDivider/index.d.ts +18 -0
- package/transpiled/react/Divider/TextDivider/index.js +36 -0
- package/transpiled/react/Divider/index.d.ts +8 -0
- package/transpiled/react/Divider/index.js +55 -0
- package/transpiled/react/Drawer/index.d.ts +2 -0
- package/transpiled/react/Drawer/index.js +2 -0
- package/transpiled/react/DropdownButton/index.d.ts +3 -0
- package/transpiled/react/DropdownButton/index.js +84 -0
- package/transpiled/react/DropdownText/index.d.ts +3 -0
- package/transpiled/react/DropdownText/index.js +122 -0
- package/transpiled/react/EditBadge/EditMenu.d.ts +11 -0
- package/transpiled/react/EditBadge/EditMenu.js +93 -0
- package/transpiled/react/EditBadge/StatusWrapper.d.ts +9 -0
- package/transpiled/react/EditBadge/StatusWrapper.js +44 -0
- package/transpiled/react/EditBadge/helpers.d.ts +20 -0
- package/transpiled/react/EditBadge/helpers.js +153 -0
- package/transpiled/react/EditBadge/index.d.ts +23 -0
- package/transpiled/react/EditBadge/index.js +89 -0
- package/transpiled/react/EditBadge/locales/index.d.ts +10 -0
- package/transpiled/react/EditBadge/locales/index.js +78 -0
- package/transpiled/react/Empty/index.d.ts +38 -0
- package/transpiled/react/Empty/index.js +85 -0
- package/transpiled/react/Fab/ExtendableFab.d.ts +3 -0
- package/transpiled/react/Fab/ExtendableFab.js +32 -0
- package/transpiled/react/Fab/index.d.ts +3 -0
- package/transpiled/react/Fab/index.js +6 -0
- package/transpiled/react/Fade/index.d.ts +2 -0
- package/transpiled/react/Fade/index.js +2 -0
- package/transpiled/react/Field/index.d.ts +53 -0
- package/transpiled/react/Field/index.js +269 -0
- package/transpiled/react/Field/index.spec.d.ts +1 -0
- package/transpiled/react/Figure/Figure.d.ts +18 -0
- package/transpiled/react/Figure/Figure.js +98 -0
- package/transpiled/react/Figure/Figure.spec.d.ts +1 -0
- package/transpiled/react/Figure/FigureBlock.d.ts +26 -0
- package/transpiled/react/Figure/FigureBlock.js +54 -0
- package/transpiled/react/Figure/index.d.ts +2 -0
- package/transpiled/react/Figure/index.js +2 -0
- package/transpiled/react/FileImageLoader/checkImageSource.d.ts +1 -0
- package/transpiled/react/FileImageLoader/checkImageSource.js +49 -0
- package/transpiled/react/FileImageLoader/index.d.ts +45 -0
- package/transpiled/react/FileImageLoader/index.js +368 -0
- package/transpiled/react/FileImageLoader/index.spec.d.ts +1 -0
- package/transpiled/react/FileInput/index.d.ts +29 -0
- package/transpiled/react/FileInput/index.js +68 -0
- package/transpiled/react/FileInput/index.spec.d.ts +1 -0
- package/transpiled/react/FilePath/index.d.ts +5 -0
- package/transpiled/react/FilePath/index.js +15 -0
- package/transpiled/react/FilePathLink/index.d.ts +5 -0
- package/transpiled/react/FilePathLink/index.js +18 -0
- package/transpiled/react/FilePicker/FilePickerBody.d.ts +19 -0
- package/transpiled/react/FilePicker/FilePickerBody.js +85 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.d.ts +22 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.js +105 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.spec.d.ts +1 -0
- package/transpiled/react/FilePicker/FilePickerBreadcrumb.d.ts +13 -0
- package/transpiled/react/FilePicker/FilePickerBreadcrumb.js +52 -0
- package/transpiled/react/FilePicker/FilePickerFooter.d.ts +15 -0
- package/transpiled/react/FilePicker/FilePickerFooter.js +71 -0
- package/transpiled/react/FilePicker/FilePickerFooter.spec.d.ts +1 -0
- package/transpiled/react/FilePicker/FilePickerHeader.d.ts +14 -0
- package/transpiled/react/FilePicker/FilePickerHeader.js +81 -0
- package/transpiled/react/FilePicker/index.d.ts +22 -0
- package/transpiled/react/FilePicker/index.js +98 -0
- package/transpiled/react/FilePicker/queries.d.ts +14 -0
- package/transpiled/react/FilePicker/queries.js +45 -0
- package/transpiled/react/Filename/index.d.ts +26 -0
- package/transpiled/react/Filename/index.js +85 -0
- package/transpiled/react/FilledInput/index.d.ts +2 -0
- package/transpiled/react/FilledInput/index.js +2 -0
- package/transpiled/react/FormControl/index.d.ts +2 -0
- package/transpiled/react/FormControl/index.js +2 -0
- package/transpiled/react/FormControlLabel/index.d.ts +2 -0
- package/transpiled/react/FormControlLabel/index.js +2 -0
- package/transpiled/react/FormGroup/index.d.ts +2 -0
- package/transpiled/react/FormGroup/index.js +2 -0
- package/transpiled/react/FormHelperText/index.d.ts +2 -0
- package/transpiled/react/FormHelperText/index.js +2 -0
- package/transpiled/react/FormLabel/index.d.ts +2 -0
- package/transpiled/react/FormLabel/index.js +2 -0
- package/transpiled/react/GhostFileBadge/index.d.ts +9 -0
- package/transpiled/react/GhostFileBadge/index.js +41 -0
- package/transpiled/react/Grid/index.d.ts +2 -0
- package/transpiled/react/Grid/index.js +2 -0
- package/transpiled/react/GridList/Virtualized/Dnd/GridItem.d.ts +7 -0
- package/transpiled/react/GridList/Virtualized/Dnd/GridItem.js +139 -0
- package/transpiled/react/GridList/Virtualized/Dnd/index.d.ts +11 -0
- package/transpiled/react/GridList/Virtualized/Dnd/index.js +55 -0
- package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.d.ts +9 -0
- package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.js +45 -0
- package/transpiled/react/GridList/Virtualized/index.d.ts +3 -0
- package/transpiled/react/GridList/Virtualized/index.js +24 -0
- package/transpiled/react/GridList/index.d.ts +2 -0
- package/transpiled/react/GridList/index.js +2 -0
- package/transpiled/react/GridListTile/index.d.ts +2 -0
- package/transpiled/react/GridListTile/index.js +2 -0
- package/transpiled/react/GridListTileBar/index.d.ts +2 -0
- package/transpiled/react/GridListTileBar/index.js +2 -0
- package/transpiled/react/Grow/index.d.ts +2 -0
- package/transpiled/react/Grow/index.js +2 -0
- package/transpiled/react/Hero/index.d.ts +48 -0
- package/transpiled/react/Hero/index.js +59 -0
- package/transpiled/react/Hidden/index.d.ts +2 -0
- package/transpiled/react/Hidden/index.js +2 -0
- package/transpiled/react/HistoryRow/index.d.ts +24 -0
- package/transpiled/react/HistoryRow/index.js +88 -0
- package/transpiled/react/I18n/index.d.ts +3 -0
- package/transpiled/react/I18n/index.js +16 -0
- package/transpiled/react/I18n/withLocales.d.ts +2 -0
- package/transpiled/react/I18n/withLocales.js +10 -0
- package/transpiled/react/Icon/Sprite.d.ts +2 -0
- package/transpiled/react/Icon/Sprite.js +16 -0
- package/transpiled/react/Icon/icons-sprite.d.ts +2 -0
- package/transpiled/react/Icon/icons-sprite.js +3 -0
- package/transpiled/react/Icon/index.d.ts +23 -0
- package/transpiled/react/Icon/index.js +116 -0
- package/transpiled/react/IconButton/index.d.ts +46 -0
- package/transpiled/react/IconButton/index.js +43 -0
- package/transpiled/react/IconStack/index.d.ts +2 -0
- package/transpiled/react/IconStack/index.js +46 -0
- package/transpiled/react/Icons/Account.d.ts +2 -0
- package/transpiled/react/Icons/Account.js +13 -0
- package/transpiled/react/Icons/Accounts.d.ts +2 -0
- package/transpiled/react/Icons/Accounts.js +13 -0
- package/transpiled/react/Icons/Album.d.ts +2 -0
- package/transpiled/react/Icons/Album.js +13 -0
- package/transpiled/react/Icons/AlbumAdd.d.ts +2 -0
- package/transpiled/react/Icons/AlbumAdd.js +13 -0
- package/transpiled/react/Icons/AlbumRemove.d.ts +2 -0
- package/transpiled/react/Icons/AlbumRemove.js +13 -0
- package/transpiled/react/Icons/Answer.d.ts +2 -0
- package/transpiled/react/Icons/Answer.js +13 -0
- package/transpiled/react/Icons/Apple.d.ts +2 -0
- package/transpiled/react/Icons/Apple.js +14 -0
- package/transpiled/react/Icons/Apps.d.ts +2 -0
- package/transpiled/react/Icons/Apps.js +17 -0
- package/transpiled/react/Icons/Archive.d.ts +2 -0
- package/transpiled/react/Icons/Archive.js +13 -0
- package/transpiled/react/Icons/ArrowUp.d.ts +2 -0
- package/transpiled/react/Icons/ArrowUp.js +13 -0
- package/transpiled/react/Icons/AssignAdmin.d.ts +2 -0
- package/transpiled/react/Icons/AssignAdmin.js +18 -0
- package/transpiled/react/Icons/AssignModerator.d.ts +2 -0
- package/transpiled/react/Icons/AssignModerator.js +12 -0
- package/transpiled/react/Icons/Assistant.d.ts +2 -0
- package/transpiled/react/Icons/Assistant.js +15 -0
- package/transpiled/react/Icons/Attachment.d.ts +2 -0
- package/transpiled/react/Icons/Attachment.js +13 -0
- package/transpiled/react/Icons/Attention.d.ts +2 -0
- package/transpiled/react/Icons/Attention.js +13 -0
- package/transpiled/react/Icons/Bank.d.ts +2 -0
- package/transpiled/react/Icons/Bank.js +13 -0
- package/transpiled/react/Icons/BankAccounts.d.ts +2 -0
- package/transpiled/react/Icons/BankAccounts.js +15 -0
- package/transpiled/react/Icons/BankCheck.d.ts +2 -0
- package/transpiled/react/Icons/BankCheck.js +15 -0
- package/transpiled/react/Icons/BankGroups.d.ts +2 -0
- package/transpiled/react/Icons/BankGroups.js +15 -0
- package/transpiled/react/Icons/BankOperations.d.ts +2 -0
- package/transpiled/react/Icons/BankOperations.js +13 -0
- package/transpiled/react/Icons/BankRecurrence.d.ts +2 -0
- package/transpiled/react/Icons/BankRecurrence.js +15 -0
- package/transpiled/react/Icons/Banking.d.ts +2 -0
- package/transpiled/react/Icons/Banking.js +13 -0
- package/transpiled/react/Icons/BankingAdd.d.ts +2 -0
- package/transpiled/react/Icons/BankingAdd.js +13 -0
- package/transpiled/react/Icons/Bell.d.ts +2 -0
- package/transpiled/react/Icons/Bell.js +13 -0
- package/transpiled/react/Icons/Benefit.d.ts +2 -0
- package/transpiled/react/Icons/Benefit.js +13 -0
- package/transpiled/react/Icons/Bike.d.ts +2 -0
- package/transpiled/react/Icons/Bike.js +13 -0
- package/transpiled/react/Icons/Bill.d.ts +2 -0
- package/transpiled/react/Icons/Bill.js +13 -0
- package/transpiled/react/Icons/BillPermissions.d.ts +2 -0
- package/transpiled/react/Icons/BillPermissions.js +15 -0
- package/transpiled/react/Icons/Bottom.d.ts +2 -0
- package/transpiled/react/Icons/Bottom.js +13 -0
- package/transpiled/react/Icons/BottomSelect.d.ts +2 -0
- package/transpiled/react/Icons/BottomSelect.js +13 -0
- package/transpiled/react/Icons/BrowserBrave.d.ts +2 -0
- package/transpiled/react/Icons/BrowserBrave.js +14 -0
- package/transpiled/react/Icons/BrowserChrome.d.ts +2 -0
- package/transpiled/react/Icons/BrowserChrome.js +14 -0
- package/transpiled/react/Icons/BrowserDuckduckgo.d.ts +2 -0
- package/transpiled/react/Icons/BrowserDuckduckgo.js +14 -0
- package/transpiled/react/Icons/BrowserEdge.d.ts +2 -0
- package/transpiled/react/Icons/BrowserEdge.js +18 -0
- package/transpiled/react/Icons/BrowserEdgeChromium.d.ts +2 -0
- package/transpiled/react/Icons/BrowserEdgeChromium.js +14 -0
- package/transpiled/react/Icons/BrowserFirefox.d.ts +2 -0
- package/transpiled/react/Icons/BrowserFirefox.js +14 -0
- package/transpiled/react/Icons/BrowserIe.d.ts +2 -0
- package/transpiled/react/Icons/BrowserIe.js +14 -0
- package/transpiled/react/Icons/BrowserOpera.d.ts +2 -0
- package/transpiled/react/Icons/BrowserOpera.js +14 -0
- package/transpiled/react/Icons/BrowserSafari.d.ts +2 -0
- package/transpiled/react/Icons/BrowserSafari.js +14 -0
- package/transpiled/react/Icons/BugReport.d.ts +2 -0
- package/transpiled/react/Icons/BugReport.js +13 -0
- package/transpiled/react/Icons/Burger.d.ts +2 -0
- package/transpiled/react/Icons/Burger.js +13 -0
- package/transpiled/react/Icons/Bus.d.ts +2 -0
- package/transpiled/react/Icons/Bus.js +15 -0
- package/transpiled/react/Icons/Calendar.d.ts +2 -0
- package/transpiled/react/Icons/Calendar.js +13 -0
- package/transpiled/react/Icons/CalendarPermissions.d.ts +2 -0
- package/transpiled/react/Icons/CalendarPermissions.js +13 -0
- package/transpiled/react/Icons/Camera.d.ts +2 -0
- package/transpiled/react/Icons/Camera.js +13 -0
- package/transpiled/react/Icons/Car.d.ts +2 -0
- package/transpiled/react/Icons/Car.js +15 -0
- package/transpiled/react/Icons/CarbonCopy.d.ts +2 -0
- package/transpiled/react/Icons/CarbonCopy.js +14 -0
- package/transpiled/react/Icons/Carpooling.d.ts +2 -0
- package/transpiled/react/Icons/Carpooling.js +17 -0
- package/transpiled/react/Icons/Categories.d.ts +2 -0
- package/transpiled/react/Icons/Categories.js +13 -0
- package/transpiled/react/Icons/Category.d.ts +2 -0
- package/transpiled/react/Icons/Category.js +13 -0
- package/transpiled/react/Icons/Certified.d.ts +2 -0
- package/transpiled/react/Icons/Certified.js +15 -0
- package/transpiled/react/Icons/CertifiedPermissions.d.ts +2 -0
- package/transpiled/react/Icons/CertifiedPermissions.js +15 -0
- package/transpiled/react/Icons/Chat.d.ts +2 -0
- package/transpiled/react/Icons/Chat.js +75 -0
- package/transpiled/react/Icons/ChatText.d.ts +2 -0
- package/transpiled/react/Icons/ChatText.js +72 -0
- package/transpiled/react/Icons/Check.d.ts +2 -0
- package/transpiled/react/Icons/Check.js +13 -0
- package/transpiled/react/Icons/CheckCircle.d.ts +2 -0
- package/transpiled/react/Icons/CheckCircle.js +13 -0
- package/transpiled/react/Icons/CheckList.d.ts +2 -0
- package/transpiled/react/Icons/CheckList.js +13 -0
- package/transpiled/react/Icons/CheckSquare.d.ts +2 -0
- package/transpiled/react/Icons/CheckSquare.js +15 -0
- package/transpiled/react/Icons/CheckWhite.d.ts +2 -0
- package/transpiled/react/Icons/CheckWhite.js +15 -0
- package/transpiled/react/Icons/Checkbox.d.ts +2 -0
- package/transpiled/react/Icons/Checkbox.js +13 -0
- package/transpiled/react/Icons/Chess.d.ts +2 -0
- package/transpiled/react/Icons/Chess.js +13 -0
- package/transpiled/react/Icons/Child.d.ts +2 -0
- package/transpiled/react/Icons/Child.js +15 -0
- package/transpiled/react/Icons/CircleFilled.d.ts +2 -0
- package/transpiled/react/Icons/CircleFilled.js +13 -0
- package/transpiled/react/Icons/Clock.d.ts +2 -0
- package/transpiled/react/Icons/Clock.js +13 -0
- package/transpiled/react/Icons/ClockOutline.d.ts +2 -0
- package/transpiled/react/Icons/ClockOutline.js +13 -0
- package/transpiled/react/Icons/Cloud.d.ts +2 -0
- package/transpiled/react/Icons/Cloud.js +13 -0
- package/transpiled/react/Icons/Cloud2.d.ts +2 -0
- package/transpiled/react/Icons/Cloud2.js +27 -0
- package/transpiled/react/Icons/CloudBroken.d.ts +2 -0
- package/transpiled/react/Icons/CloudBroken.js +13 -0
- package/transpiled/react/Icons/CloudHappy.d.ts +2 -0
- package/transpiled/react/Icons/CloudHappy.js +14 -0
- package/transpiled/react/Icons/CloudPlusOutlined.d.ts +2 -0
- package/transpiled/react/Icons/CloudPlusOutlined.js +13 -0
- package/transpiled/react/Icons/CloudRainbow.d.ts +2 -0
- package/transpiled/react/Icons/CloudRainbow.js +66 -0
- package/transpiled/react/Icons/CloudSync.d.ts +2 -0
- package/transpiled/react/Icons/CloudSync.js +20 -0
- package/transpiled/react/Icons/CloudSync2.d.ts +2 -0
- package/transpiled/react/Icons/CloudSync2.js +22 -0
- package/transpiled/react/Icons/Cocktail.d.ts +2 -0
- package/transpiled/react/Icons/Cocktail.js +13 -0
- package/transpiled/react/Icons/Collect.d.ts +2 -0
- package/transpiled/react/Icons/Collect.js +14 -0
- package/transpiled/react/Icons/Comment.d.ts +2 -0
- package/transpiled/react/Icons/Comment.js +13 -0
- package/transpiled/react/Icons/Company.d.ts +2 -0
- package/transpiled/react/Icons/Company.js +13 -0
- package/transpiled/react/Icons/Compare.d.ts +2 -0
- package/transpiled/react/Icons/Compare.js +13 -0
- package/transpiled/react/Icons/Compass.d.ts +2 -0
- package/transpiled/react/Icons/Compass.js +13 -0
- package/transpiled/react/Icons/ConnectedClients.d.ts +2 -0
- package/transpiled/react/Icons/ConnectedClients.js +13 -0
- package/transpiled/react/Icons/Connector.d.ts +2 -0
- package/transpiled/react/Icons/Connector.js +13 -0
- package/transpiled/react/Icons/Consumption.d.ts +2 -0
- package/transpiled/react/Icons/Consumption.js +15 -0
- package/transpiled/react/Icons/Contacts.d.ts +2 -0
- package/transpiled/react/Icons/Contacts.js +109 -0
- package/transpiled/react/Icons/ContactsAccounts.d.ts +2 -0
- package/transpiled/react/Icons/ContactsAccounts.js +13 -0
- package/transpiled/react/Icons/ContactsGroups.d.ts +2 -0
- package/transpiled/react/Icons/ContactsGroups.js +13 -0
- package/transpiled/react/Icons/ContactsText.d.ts +2 -0
- package/transpiled/react/Icons/ContactsText.js +132 -0
- package/transpiled/react/Icons/Contract.d.ts +2 -0
- package/transpiled/react/Icons/Contract.js +13 -0
- package/transpiled/react/Icons/ContractPermissions.d.ts +2 -0
- package/transpiled/react/Icons/ContractPermissions.js +13 -0
- package/transpiled/react/Icons/Contrast.d.ts +2 -0
- package/transpiled/react/Icons/Contrast.js +13 -0
- package/transpiled/react/Icons/Copy.d.ts +2 -0
- package/transpiled/react/Icons/Copy.js +13 -0
- package/transpiled/react/Icons/Cozy.d.ts +2 -0
- package/transpiled/react/Icons/Cozy.js +15 -0
- package/transpiled/react/Icons/CozyAuthentification.d.ts +2 -0
- package/transpiled/react/Icons/CozyAuthentification.js +13 -0
- package/transpiled/react/Icons/CozyCircle.d.ts +2 -0
- package/transpiled/react/Icons/CozyCircle.js +15 -0
- package/transpiled/react/Icons/CozyLaugh.d.ts +2 -0
- package/transpiled/react/Icons/CozyLaugh.js +14 -0
- package/transpiled/react/Icons/CozyLock.d.ts +2 -0
- package/transpiled/react/Icons/CozyLock.js +15 -0
- package/transpiled/react/Icons/CozyLogo.d.ts +2 -0
- package/transpiled/react/Icons/CozyLogo.js +19 -0
- package/transpiled/react/Icons/CozyRelease.d.ts +2 -0
- package/transpiled/react/Icons/CozyRelease.js +20 -0
- package/transpiled/react/Icons/CozyText.d.ts +2 -0
- package/transpiled/react/Icons/CozyText.js +13 -0
- package/transpiled/react/Icons/CozyUpgrade.d.ts +2 -0
- package/transpiled/react/Icons/CozyUpgrade.js +45 -0
- package/transpiled/react/Icons/Credit.d.ts +2 -0
- package/transpiled/react/Icons/Credit.js +18 -0
- package/transpiled/react/Icons/CreditCard.d.ts +2 -0
- package/transpiled/react/Icons/CreditCard.js +13 -0
- package/transpiled/react/Icons/CreditCardAdd.d.ts +2 -0
- package/transpiled/react/Icons/CreditCardAdd.js +13 -0
- package/transpiled/react/Icons/CreditCardLarge.d.ts +2 -0
- package/transpiled/react/Icons/CreditCardLarge.js +13 -0
- package/transpiled/react/Icons/Crop.d.ts +2 -0
- package/transpiled/react/Icons/Crop.js +13 -0
- package/transpiled/react/Icons/Cross.d.ts +2 -0
- package/transpiled/react/Icons/Cross.js +13 -0
- package/transpiled/react/Icons/CrossCircle.d.ts +2 -0
- package/transpiled/react/Icons/CrossCircle.js +14 -0
- package/transpiled/react/Icons/CrossCircleOutline.d.ts +2 -0
- package/transpiled/react/Icons/CrossCircleOutline.js +15 -0
- package/transpiled/react/Icons/CrossMedium.d.ts +2 -0
- package/transpiled/react/Icons/CrossMedium.js +13 -0
- package/transpiled/react/Icons/CrossSmall.d.ts +2 -0
- package/transpiled/react/Icons/CrossSmall.js +13 -0
- package/transpiled/react/Icons/CrossWhite.d.ts +2 -0
- package/transpiled/react/Icons/CrossWhite.js +15 -0
- package/transpiled/react/Icons/Cube.d.ts +5 -0
- package/transpiled/react/Icons/Cube.js +20 -0
- package/transpiled/react/Icons/Dash.d.ts +2 -0
- package/transpiled/react/Icons/Dash.js +13 -0
- package/transpiled/react/Icons/DashWhite.d.ts +2 -0
- package/transpiled/react/Icons/DashWhite.js +15 -0
- package/transpiled/react/Icons/Dashboard.d.ts +2 -0
- package/transpiled/react/Icons/Dashboard.js +13 -0
- package/transpiled/react/Icons/DataControl.d.ts +2 -0
- package/transpiled/react/Icons/DataControl.js +17 -0
- package/transpiled/react/Icons/Debit.d.ts +2 -0
- package/transpiled/react/Icons/Debit.js +13 -0
- package/transpiled/react/Icons/DesktopDownload.d.ts +2 -0
- package/transpiled/react/Icons/DesktopDownload.js +15 -0
- package/transpiled/react/Icons/DeviceBrowser.d.ts +2 -0
- package/transpiled/react/Icons/DeviceBrowser.js +13 -0
- package/transpiled/react/Icons/DeviceLaptop.d.ts +2 -0
- package/transpiled/react/Icons/DeviceLaptop.js +13 -0
- package/transpiled/react/Icons/DevicePhone.d.ts +2 -0
- package/transpiled/react/Icons/DevicePhone.js +13 -0
- package/transpiled/react/Icons/DeviceTablet.d.ts +2 -0
- package/transpiled/react/Icons/DeviceTablet.js +13 -0
- package/transpiled/react/Icons/Devices.d.ts +2 -0
- package/transpiled/react/Icons/Devices.js +13 -0
- package/transpiled/react/Icons/Discuss.d.ts +2 -0
- package/transpiled/react/Icons/Discuss.js +15 -0
- package/transpiled/react/Icons/Dots.d.ts +2 -0
- package/transpiled/react/Icons/Dots.js +13 -0
- package/transpiled/react/Icons/DotsWhite.d.ts +2 -0
- package/transpiled/react/Icons/DotsWhite.js +15 -0
- package/transpiled/react/Icons/Down.d.ts +2 -0
- package/transpiled/react/Icons/Down.js +13 -0
- package/transpiled/react/Icons/Download.d.ts +2 -0
- package/transpiled/react/Icons/Download.js +13 -0
- package/transpiled/react/Icons/DrawingArrowUp.d.ts +2 -0
- package/transpiled/react/Icons/DrawingArrowUp.js +13 -0
- package/transpiled/react/Icons/Drive.d.ts +2 -0
- package/transpiled/react/Icons/Drive.js +72 -0
- package/transpiled/react/Icons/DriveText.d.ts +2 -0
- package/transpiled/react/Icons/DriveText.js +87 -0
- package/transpiled/react/Icons/Dropdown.d.ts +2 -0
- package/transpiled/react/Icons/Dropdown.js +13 -0
- package/transpiled/react/Icons/DropdownClose.d.ts +2 -0
- package/transpiled/react/Icons/DropdownClose.js +13 -0
- package/transpiled/react/Icons/DropdownOpen.d.ts +2 -0
- package/transpiled/react/Icons/DropdownOpen.js +13 -0
- package/transpiled/react/Icons/Dropup.d.ts +2 -0
- package/transpiled/react/Icons/Dropup.js +13 -0
- package/transpiled/react/Icons/Ecolyo.d.ts +2 -0
- package/transpiled/react/Icons/Ecolyo.js +27 -0
- package/transpiled/react/Icons/ElectricBike.d.ts +2 -0
- package/transpiled/react/Icons/ElectricBike.js +13 -0
- package/transpiled/react/Icons/ElectricCar.d.ts +2 -0
- package/transpiled/react/Icons/ElectricCar.js +15 -0
- package/transpiled/react/Icons/ElectricScooter.d.ts +2 -0
- package/transpiled/react/Icons/ElectricScooter.js +15 -0
- package/transpiled/react/Icons/Email.d.ts +2 -0
- package/transpiled/react/Icons/Email.js +13 -0
- package/transpiled/react/Icons/EmailNotification.d.ts +2 -0
- package/transpiled/react/Icons/EmailNotification.js +13 -0
- package/transpiled/react/Icons/EmailOpen.d.ts +2 -0
- package/transpiled/react/Icons/EmailOpen.js +53 -0
- package/transpiled/react/Icons/Energy.d.ts +2 -0
- package/transpiled/react/Icons/Energy.js +13 -0
- package/transpiled/react/Icons/Energybreakdown.d.ts +2 -0
- package/transpiled/react/Icons/Energybreakdown.js +13 -0
- package/transpiled/react/Icons/Eu.d.ts +2 -0
- package/transpiled/react/Icons/Eu.js +14 -0
- package/transpiled/react/Icons/Euro.d.ts +2 -0
- package/transpiled/react/Icons/Euro.js +13 -0
- package/transpiled/react/Icons/Exchange.d.ts +2 -0
- package/transpiled/react/Icons/Exchange.js +13 -0
- package/transpiled/react/Icons/Eye.d.ts +2 -0
- package/transpiled/react/Icons/Eye.js +13 -0
- package/transpiled/react/Icons/EyeClosed.d.ts +2 -0
- package/transpiled/react/Icons/EyeClosed.js +13 -0
- package/transpiled/react/Icons/FaceId.d.ts +2 -0
- package/transpiled/react/Icons/FaceId.js +13 -0
- package/transpiled/react/Icons/Fallback.d.ts +2 -0
- package/transpiled/react/Icons/Fallback.js +18 -0
- package/transpiled/react/Icons/Family.d.ts +2 -0
- package/transpiled/react/Icons/Family.js +13 -0
- package/transpiled/react/Icons/File.d.ts +2 -0
- package/transpiled/react/Icons/File.js +13 -0
- package/transpiled/react/Icons/FileAdd.d.ts +2 -0
- package/transpiled/react/Icons/FileAdd.js +13 -0
- package/transpiled/react/Icons/FileDuotone.d.ts +2 -0
- package/transpiled/react/Icons/FileDuotone.js +29 -0
- package/transpiled/react/Icons/FileNew.d.ts +2 -0
- package/transpiled/react/Icons/FileNew.js +13 -0
- package/transpiled/react/Icons/FileNone.d.ts +2 -0
- package/transpiled/react/Icons/FileNone.js +17 -0
- package/transpiled/react/Icons/FileOutline.d.ts +2 -0
- package/transpiled/react/Icons/FileOutline.js +13 -0
- package/transpiled/react/Icons/FileTypeAudio.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeAudio.js +19 -0
- package/transpiled/react/Icons/FileTypeBankingAccount.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeBankingAccount.js +24 -0
- package/transpiled/react/Icons/FileTypeBin.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeBin.js +19 -0
- package/transpiled/react/Icons/FileTypeCode.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeCode.js +19 -0
- package/transpiled/react/Icons/FileTypeFiles.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeFiles.js +24 -0
- package/transpiled/react/Icons/FileTypeFolder.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeFolder.js +36 -0
- package/transpiled/react/Icons/FileTypeImage.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeImage.js +27 -0
- package/transpiled/react/Icons/FileTypeNote.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeNote.js +19 -0
- package/transpiled/react/Icons/FileTypePdf.d.ts +2 -0
- package/transpiled/react/Icons/FileTypePdf.js +19 -0
- package/transpiled/react/Icons/FileTypeServer.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeServer.js +60 -0
- package/transpiled/react/Icons/FileTypeSheet.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeSheet.js +24 -0
- package/transpiled/react/Icons/FileTypeSlide.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeSlide.js +24 -0
- package/transpiled/react/Icons/FileTypeText.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeText.js +19 -0
- package/transpiled/react/Icons/FileTypeVideo.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeVideo.js +19 -0
- package/transpiled/react/Icons/FileTypeZip.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeZip.js +19 -0
- package/transpiled/react/Icons/Files.d.ts +2 -0
- package/transpiled/react/Icons/Files.js +44 -0
- package/transpiled/react/Icons/FilesPen.d.ts +2 -0
- package/transpiled/react/Icons/FilesPen.js +19 -0
- package/transpiled/react/Icons/FilesVersions.d.ts +2 -0
- package/transpiled/react/Icons/FilesVersions.js +19 -0
- package/transpiled/react/Icons/Filter.d.ts +2 -0
- package/transpiled/react/Icons/Filter.js +15 -0
- package/transpiled/react/Icons/Fingerprint.d.ts +2 -0
- package/transpiled/react/Icons/Fingerprint.js +13 -0
- package/transpiled/react/Icons/Fitness.d.ts +2 -0
- package/transpiled/react/Icons/Fitness.js +13 -0
- package/transpiled/react/Icons/Flag.d.ts +2 -0
- package/transpiled/react/Icons/Flag.js +13 -0
- package/transpiled/react/Icons/FlagOutlined.d.ts +2 -0
- package/transpiled/react/Icons/FlagOutlined.js +13 -0
- package/transpiled/react/Icons/FlashAuto.d.ts +2 -0
- package/transpiled/react/Icons/FlashAuto.js +13 -0
- package/transpiled/react/Icons/Flashlight.d.ts +2 -0
- package/transpiled/react/Icons/Flashlight.js +15 -0
- package/transpiled/react/Icons/Folder.d.ts +2 -0
- package/transpiled/react/Icons/Folder.js +13 -0
- package/transpiled/react/Icons/FolderAdd.d.ts +2 -0
- package/transpiled/react/Icons/FolderAdd.js +13 -0
- package/transpiled/react/Icons/FolderMoveto.d.ts +2 -0
- package/transpiled/react/Icons/FolderMoveto.js +13 -0
- package/transpiled/react/Icons/FolderOpen.d.ts +2 -0
- package/transpiled/react/Icons/FolderOpen.js +13 -0
- package/transpiled/react/Icons/Forbidden.d.ts +2 -0
- package/transpiled/react/Icons/Forbidden.js +13 -0
- package/transpiled/react/Icons/ForbiddenSign.d.ts +2 -0
- package/transpiled/react/Icons/ForbiddenSign.js +61 -0
- package/transpiled/react/Icons/FromUser.d.ts +2 -0
- package/transpiled/react/Icons/FromUser.js +15 -0
- package/transpiled/react/Icons/Gear.d.ts +2 -0
- package/transpiled/react/Icons/Gear.js +13 -0
- package/transpiled/react/Icons/Globe.d.ts +2 -0
- package/transpiled/react/Icons/Globe.js +13 -0
- package/transpiled/react/Icons/Google.d.ts +2 -0
- package/transpiled/react/Icons/Google.js +26 -0
- package/transpiled/react/Icons/Gouv.d.ts +2 -0
- package/transpiled/react/Icons/Gouv.js +27 -0
- package/transpiled/react/Icons/GraphCircle.d.ts +2 -0
- package/transpiled/react/Icons/GraphCircle.js +13 -0
- package/transpiled/react/Icons/Grid.d.ts +2 -0
- package/transpiled/react/Icons/Grid.js +13 -0
- package/transpiled/react/Icons/GroupList.d.ts +2 -0
- package/transpiled/react/Icons/GroupList.js +13 -0
- package/transpiled/react/Icons/Groups.d.ts +2 -0
- package/transpiled/react/Icons/Groups.js +13 -0
- package/transpiled/react/Icons/Growth.d.ts +2 -0
- package/transpiled/react/Icons/Growth.js +13 -0
- package/transpiled/react/Icons/Hand.d.ts +2 -0
- package/transpiled/react/Icons/Hand.js +13 -0
- package/transpiled/react/Icons/Heart.d.ts +2 -0
- package/transpiled/react/Icons/Heart.js +13 -0
- package/transpiled/react/Icons/Help.d.ts +2 -0
- package/transpiled/react/Icons/Help.js +13 -0
- package/transpiled/react/Icons/HelpOutlined.d.ts +2 -0
- package/transpiled/react/Icons/HelpOutlined.js +13 -0
- package/transpiled/react/Icons/History.d.ts +2 -0
- package/transpiled/react/Icons/History.js +13 -0
- package/transpiled/react/Icons/Home.d.ts +2 -0
- package/transpiled/react/Icons/Home.js +13 -0
- package/transpiled/react/Icons/HomePermissions.d.ts +2 -0
- package/transpiled/react/Icons/HomePermissions.js +15 -0
- package/transpiled/react/Icons/Hourglass.d.ts +2 -0
- package/transpiled/react/Icons/Hourglass.js +13 -0
- package/transpiled/react/Icons/IconCheckAnimated.d.ts +2 -0
- package/transpiled/react/Icons/IconCheckAnimated.js +24 -0
- package/transpiled/react/Icons/IconCrossAnimated.d.ts +2 -0
- package/transpiled/react/Icons/IconCrossAnimated.js +38 -0
- package/transpiled/react/Icons/Identities.d.ts +2 -0
- package/transpiled/react/Icons/Identities.js +13 -0
- package/transpiled/react/Icons/Image.d.ts +2 -0
- package/transpiled/react/Icons/Image.js +13 -0
- package/transpiled/react/Icons/Info.d.ts +2 -0
- package/transpiled/react/Icons/Info.js +13 -0
- package/transpiled/react/Icons/InfoOutlined.d.ts +2 -0
- package/transpiled/react/Icons/InfoOutlined.js +13 -0
- package/transpiled/react/Icons/Justice.d.ts +2 -0
- package/transpiled/react/Icons/Justice.js +13 -0
- package/transpiled/react/Icons/Key.d.ts +2 -0
- package/transpiled/react/Icons/Key.js +13 -0
- package/transpiled/react/Icons/Key2.d.ts +2 -0
- package/transpiled/react/Icons/Key2.js +21 -0
- package/transpiled/react/Icons/Keychain.d.ts +2 -0
- package/transpiled/react/Icons/Keychain.js +13 -0
- package/transpiled/react/Icons/Konnectors.d.ts +2 -0
- package/transpiled/react/Icons/Konnectors.js +13 -0
- package/transpiled/react/Icons/KonnectorsResult.d.ts +2 -0
- package/transpiled/react/Icons/KonnectorsResult.js +13 -0
- package/transpiled/react/Icons/Label.d.ts +2 -0
- package/transpiled/react/Icons/Label.js +13 -0
- package/transpiled/react/Icons/LabelOutlined.d.ts +2 -0
- package/transpiled/react/Icons/LabelOutlined.js +13 -0
- package/transpiled/react/Icons/Laptop.d.ts +2 -0
- package/transpiled/react/Icons/Laptop.js +13 -0
- package/transpiled/react/Icons/Laudry.d.ts +2 -0
- package/transpiled/react/Icons/Laudry.js +15 -0
- package/transpiled/react/Icons/Left.d.ts +2 -0
- package/transpiled/react/Icons/Left.js +13 -0
- package/transpiled/react/Icons/Library.d.ts +2 -0
- package/transpiled/react/Icons/Library.js +15 -0
- package/transpiled/react/Icons/Lightbulb.d.ts +2 -0
- package/transpiled/react/Icons/Lightbulb.js +13 -0
- package/transpiled/react/Icons/Lightning.d.ts +2 -0
- package/transpiled/react/Icons/Lightning.js +13 -0
- package/transpiled/react/Icons/Link.d.ts +2 -0
- package/transpiled/react/Icons/Link.js +13 -0
- package/transpiled/react/Icons/LinkOut.d.ts +2 -0
- package/transpiled/react/Icons/LinkOut.js +13 -0
- package/transpiled/react/Icons/List.d.ts +2 -0
- package/transpiled/react/Icons/List.js +13 -0
- package/transpiled/react/Icons/ListMin.d.ts +2 -0
- package/transpiled/react/Icons/ListMin.js +13 -0
- package/transpiled/react/Icons/Location.d.ts +2 -0
- package/transpiled/react/Icons/Location.js +15 -0
- package/transpiled/react/Icons/LocationPermissions.d.ts +2 -0
- package/transpiled/react/Icons/LocationPermissions.js +13 -0
- package/transpiled/react/Icons/Lock.d.ts +2 -0
- package/transpiled/react/Icons/Lock.js +13 -0
- package/transpiled/react/Icons/LockScreen.d.ts +2 -0
- package/transpiled/react/Icons/LockScreen.js +13 -0
- package/transpiled/react/Icons/Logout.d.ts +2 -0
- package/transpiled/react/Icons/Logout.js +13 -0
- package/transpiled/react/Icons/LogoutLarge.d.ts +2 -0
- package/transpiled/react/Icons/LogoutLarge.js +13 -0
- package/transpiled/react/Icons/MagicTrick.d.ts +2 -0
- package/transpiled/react/Icons/MagicTrick.js +13 -0
- package/transpiled/react/Icons/Magnet.d.ts +2 -0
- package/transpiled/react/Icons/Magnet.js +14 -0
- package/transpiled/react/Icons/Magnifier.d.ts +2 -0
- package/transpiled/react/Icons/Magnifier.js +13 -0
- package/transpiled/react/Icons/Mail.d.ts +2 -0
- package/transpiled/react/Icons/Mail.js +67 -0
- package/transpiled/react/Icons/MailText.d.ts +2 -0
- package/transpiled/react/Icons/MailText.js +72 -0
- package/transpiled/react/Icons/Matrix.d.ts +2 -0
- package/transpiled/react/Icons/Matrix.js +13 -0
- package/transpiled/react/Icons/Merge.d.ts +2 -0
- package/transpiled/react/Icons/Merge.js +13 -0
- package/transpiled/react/Icons/Moped.d.ts +2 -0
- package/transpiled/react/Icons/Moped.js +15 -0
- package/transpiled/react/Icons/Mosaic.d.ts +2 -0
- package/transpiled/react/Icons/Mosaic.js +15 -0
- package/transpiled/react/Icons/MosaicMin.d.ts +2 -0
- package/transpiled/react/Icons/MosaicMin.js +13 -0
- package/transpiled/react/Icons/Motorcycle.d.ts +2 -0
- package/transpiled/react/Icons/Motorcycle.js +13 -0
- package/transpiled/react/Icons/Mountain.d.ts +2 -0
- package/transpiled/react/Icons/Mountain.js +13 -0
- package/transpiled/react/Icons/Movement.d.ts +2 -0
- package/transpiled/react/Icons/Movement.js +13 -0
- package/transpiled/react/Icons/MovementIn.d.ts +2 -0
- package/transpiled/react/Icons/MovementIn.js +13 -0
- package/transpiled/react/Icons/MovementOut.d.ts +2 -0
- package/transpiled/react/Icons/MovementOut.js +13 -0
- package/transpiled/react/Icons/Moveto.d.ts +2 -0
- package/transpiled/react/Icons/Moveto.js +13 -0
- package/transpiled/react/Icons/MultiFiles.d.ts +2 -0
- package/transpiled/react/Icons/MultiFiles.js +13 -0
- package/transpiled/react/Icons/Music.d.ts +2 -0
- package/transpiled/react/Icons/Music.js +13 -0
- package/transpiled/react/Icons/New.d.ts +2 -0
- package/transpiled/react/Icons/New.js +13 -0
- package/transpiled/react/Icons/Next.d.ts +2 -0
- package/transpiled/react/Icons/Next.js +13 -0
- package/transpiled/react/Icons/Note.d.ts +2 -0
- package/transpiled/react/Icons/Note.js +15 -0
- package/transpiled/react/Icons/Notes.d.ts +2 -0
- package/transpiled/react/Icons/Notes.js +70 -0
- package/transpiled/react/Icons/NotesText.d.ts +2 -0
- package/transpiled/react/Icons/NotesText.js +87 -0
- package/transpiled/react/Icons/NotificationEmail.d.ts +2 -0
- package/transpiled/react/Icons/NotificationEmail.js +13 -0
- package/transpiled/react/Icons/Notifications.d.ts +2 -0
- package/transpiled/react/Icons/Notifications.js +13 -0
- package/transpiled/react/Icons/Number.d.ts +2 -0
- package/transpiled/react/Icons/Number.js +13 -0
- package/transpiled/react/Icons/Offline.d.ts +2 -0
- package/transpiled/react/Icons/Offline.js +13 -0
- package/transpiled/react/Icons/Online.d.ts +2 -0
- package/transpiled/react/Icons/Online.js +13 -0
- package/transpiled/react/Icons/OnlyOffice.d.ts +2 -0
- package/transpiled/react/Icons/OnlyOffice.js +67 -0
- package/transpiled/react/Icons/Openapp.d.ts +2 -0
- package/transpiled/react/Icons/Openapp.js +13 -0
- package/transpiled/react/Icons/Openwith.d.ts +2 -0
- package/transpiled/react/Icons/Openwith.js +13 -0
- package/transpiled/react/Icons/Opinions.d.ts +2 -0
- package/transpiled/react/Icons/Opinions.js +13 -0
- package/transpiled/react/Icons/Palette.d.ts +2 -0
- package/transpiled/react/Icons/Palette.js +15 -0
- package/transpiled/react/Icons/Paper.d.ts +2 -0
- package/transpiled/react/Icons/Paper.js +17 -0
- package/transpiled/react/Icons/Paperplane.d.ts +2 -0
- package/transpiled/react/Icons/Paperplane.js +13 -0
- package/transpiled/react/Icons/Papers.d.ts +2 -0
- package/transpiled/react/Icons/Papers.js +72 -0
- package/transpiled/react/Icons/Pass.d.ts +2 -0
- package/transpiled/react/Icons/Pass.js +66 -0
- package/transpiled/react/Icons/PassText.d.ts +2 -0
- package/transpiled/react/Icons/PassText.js +15 -0
- package/transpiled/react/Icons/Password.d.ts +2 -0
- package/transpiled/react/Icons/Password.js +13 -0
- package/transpiled/react/Icons/Passwords.d.ts +2 -0
- package/transpiled/react/Icons/Passwords.js +13 -0
- package/transpiled/react/Icons/Pen.d.ts +2 -0
- package/transpiled/react/Icons/Pen.js +13 -0
- package/transpiled/react/Icons/People.d.ts +2 -0
- package/transpiled/react/Icons/People.js +13 -0
- package/transpiled/react/Icons/Peoples.d.ts +2 -0
- package/transpiled/react/Icons/Peoples.js +13 -0
- package/transpiled/react/Icons/Percent.d.ts +2 -0
- package/transpiled/react/Icons/Percent.js +13 -0
- package/transpiled/react/Icons/PercentCircle.d.ts +2 -0
- package/transpiled/react/Icons/PercentCircle.js +13 -0
- package/transpiled/react/Icons/Permissions.d.ts +2 -0
- package/transpiled/react/Icons/Permissions.js +13 -0
- package/transpiled/react/Icons/PersonAdd.d.ts +2 -0
- package/transpiled/react/Icons/PersonAdd.js +13 -0
- package/transpiled/react/Icons/PersonalData.d.ts +2 -0
- package/transpiled/react/Icons/PersonalData.js +13 -0
- package/transpiled/react/Icons/Phone.d.ts +2 -0
- package/transpiled/react/Icons/Phone.js +13 -0
- package/transpiled/react/Icons/PhoneDownload.d.ts +2 -0
- package/transpiled/react/Icons/PhoneDownload.js +15 -0
- package/transpiled/react/Icons/PhoneUpload.d.ts +2 -0
- package/transpiled/react/Icons/PhoneUpload.js +13 -0
- package/transpiled/react/Icons/Photos.d.ts +2 -0
- package/transpiled/react/Icons/Photos.js +112 -0
- package/transpiled/react/Icons/PhotosAlbum.d.ts +2 -0
- package/transpiled/react/Icons/PhotosAlbum.js +13 -0
- package/transpiled/react/Icons/PhotosSettings.d.ts +2 -0
- package/transpiled/react/Icons/PhotosSettings.js +15 -0
- package/transpiled/react/Icons/PhotosText.d.ts +2 -0
- package/transpiled/react/Icons/PhotosText.js +108 -0
- package/transpiled/react/Icons/PieChart.d.ts +2 -0
- package/transpiled/react/Icons/PieChart.js +13 -0
- package/transpiled/react/Icons/Pin.d.ts +2 -0
- package/transpiled/react/Icons/Pin.js +13 -0
- package/transpiled/react/Icons/Plane.d.ts +2 -0
- package/transpiled/react/Icons/Plane.js +13 -0
- package/transpiled/react/Icons/Plus.d.ts +2 -0
- package/transpiled/react/Icons/Plus.js +13 -0
- package/transpiled/react/Icons/PlusSmall.d.ts +2 -0
- package/transpiled/react/Icons/PlusSmall.js +13 -0
- package/transpiled/react/Icons/PopInside.d.ts +2 -0
- package/transpiled/react/Icons/PopInside.js +13 -0
- package/transpiled/react/Icons/Previous.d.ts +2 -0
- package/transpiled/react/Icons/Previous.js +13 -0
- package/transpiled/react/Icons/Printer.d.ts +2 -0
- package/transpiled/react/Icons/Printer.js +15 -0
- package/transpiled/react/Icons/Profile.d.ts +2 -0
- package/transpiled/react/Icons/Profile.js +15 -0
- package/transpiled/react/Icons/Qualify.d.ts +2 -0
- package/transpiled/react/Icons/Qualify.js +13 -0
- package/transpiled/react/Icons/RadioChecked.d.ts +2 -0
- package/transpiled/react/Icons/RadioChecked.js +15 -0
- package/transpiled/react/Icons/RadioUnchecked.d.ts +2 -0
- package/transpiled/react/Icons/RadioUnchecked.js +13 -0
- package/transpiled/react/Icons/Refresh.d.ts +2 -0
- package/transpiled/react/Icons/Refresh.js +13 -0
- package/transpiled/react/Icons/Relationship.d.ts +2 -0
- package/transpiled/react/Icons/Relationship.js +17 -0
- package/transpiled/react/Icons/Remboursement.d.ts +2 -0
- package/transpiled/react/Icons/Remboursement.js +13 -0
- package/transpiled/react/Icons/Rename.d.ts +2 -0
- package/transpiled/react/Icons/Rename.js +13 -0
- package/transpiled/react/Icons/Repare.d.ts +2 -0
- package/transpiled/react/Icons/Repare.js +13 -0
- package/transpiled/react/Icons/Reply.d.ts +2 -0
- package/transpiled/react/Icons/Reply.js +13 -0
- package/transpiled/react/Icons/Restaurant.d.ts +2 -0
- package/transpiled/react/Icons/Restaurant.js +13 -0
- package/transpiled/react/Icons/Restore.d.ts +2 -0
- package/transpiled/react/Icons/Restore.js +13 -0
- package/transpiled/react/Icons/RestoreStraight.d.ts +2 -0
- package/transpiled/react/Icons/RestoreStraight.js +13 -0
- package/transpiled/react/Icons/Right.d.ts +2 -0
- package/transpiled/react/Icons/Right.js +13 -0
- package/transpiled/react/Icons/Rise.d.ts +2 -0
- package/transpiled/react/Icons/Rise.js +13 -0
- package/transpiled/react/Icons/RotateLeft.d.ts +2 -0
- package/transpiled/react/Icons/RotateLeft.js +13 -0
- package/transpiled/react/Icons/RotateRight.d.ts +2 -0
- package/transpiled/react/Icons/RotateRight.js +13 -0
- package/transpiled/react/Icons/SadCozy.d.ts +2 -0
- package/transpiled/react/Icons/SadCozy.js +14 -0
- package/transpiled/react/Icons/Safe.d.ts +2 -0
- package/transpiled/react/Icons/Safe.js +13 -0
- package/transpiled/react/Icons/SafePermissions.d.ts +2 -0
- package/transpiled/react/Icons/SafePermissions.js +15 -0
- package/transpiled/react/Icons/School.d.ts +2 -0
- package/transpiled/react/Icons/School.js +13 -0
- package/transpiled/react/Icons/Scooter.d.ts +2 -0
- package/transpiled/react/Icons/Scooter.js +15 -0
- package/transpiled/react/Icons/Security.d.ts +2 -0
- package/transpiled/react/Icons/Security.js +13 -0
- package/transpiled/react/Icons/SelectAll.d.ts +2 -0
- package/transpiled/react/Icons/SelectAll.js +13 -0
- package/transpiled/react/Icons/Server.d.ts +2 -0
- package/transpiled/react/Icons/Server.js +13 -0
- package/transpiled/react/Icons/Setting.d.ts +2 -0
- package/transpiled/react/Icons/Setting.js +13 -0
- package/transpiled/react/Icons/Settings.d.ts +2 -0
- package/transpiled/react/Icons/Settings.js +15 -0
- package/transpiled/react/Icons/Share.d.ts +2 -0
- package/transpiled/react/Icons/Share.js +13 -0
- package/transpiled/react/Icons/ShareCircle.d.ts +2 -0
- package/transpiled/react/Icons/ShareCircle.js +14 -0
- package/transpiled/react/Icons/ShareGrey08.d.ts +2 -0
- package/transpiled/react/Icons/ShareGrey08.js +18 -0
- package/transpiled/react/Icons/ShareIos.d.ts +2 -0
- package/transpiled/react/Icons/ShareIos.js +14 -0
- package/transpiled/react/Icons/Sharings.d.ts +2 -0
- package/transpiled/react/Icons/Sharings.js +13 -0
- package/transpiled/react/Icons/Shield.d.ts +2 -0
- package/transpiled/react/Icons/Shield.js +13 -0
- package/transpiled/react/Icons/Shop.d.ts +2 -0
- package/transpiled/react/Icons/Shop.js +13 -0
- package/transpiled/react/Icons/Sinister.d.ts +2 -0
- package/transpiled/react/Icons/Sinister.js +13 -0
- package/transpiled/react/Icons/Sound.d.ts +2 -0
- package/transpiled/react/Icons/Sound.js +13 -0
- package/transpiled/react/Icons/Spinner.d.ts +2 -0
- package/transpiled/react/Icons/Spinner.js +16 -0
- package/transpiled/react/Icons/SportBag.d.ts +2 -0
- package/transpiled/react/Icons/SportBag.js +15 -0
- package/transpiled/react/Icons/Stack.d.ts +2 -0
- package/transpiled/react/Icons/Stack.js +13 -0
- package/transpiled/react/Icons/Star.d.ts +2 -0
- package/transpiled/react/Icons/Star.js +13 -0
- package/transpiled/react/Icons/StarOutline.d.ts +2 -0
- package/transpiled/react/Icons/StarOutline.js +13 -0
- package/transpiled/react/Icons/Stats.d.ts +2 -0
- package/transpiled/react/Icons/Stats.js +13 -0
- package/transpiled/react/Icons/Stop.d.ts +2 -0
- package/transpiled/react/Icons/Stop.js +13 -0
- package/transpiled/react/Icons/Store.d.ts +2 -0
- package/transpiled/react/Icons/Store.js +68 -0
- package/transpiled/react/Icons/StoreText.d.ts +2 -0
- package/transpiled/react/Icons/StoreText.js +92 -0
- package/transpiled/react/Icons/Subway.d.ts +2 -0
- package/transpiled/react/Icons/Subway.js +13 -0
- package/transpiled/react/Icons/Support.d.ts +2 -0
- package/transpiled/react/Icons/Support.js +13 -0
- package/transpiled/react/Icons/Swap.d.ts +2 -0
- package/transpiled/react/Icons/Swap.js +13 -0
- package/transpiled/react/Icons/Sync.d.ts +2 -0
- package/transpiled/react/Icons/Sync.js +13 -0
- package/transpiled/react/Icons/SyncCozy.d.ts +2 -0
- package/transpiled/react/Icons/SyncCozy.js +15 -0
- package/transpiled/react/Icons/Tab.d.ts +2 -0
- package/transpiled/react/Icons/Tab.js +13 -0
- package/transpiled/react/Icons/Tag.d.ts +2 -0
- package/transpiled/react/Icons/Tag.js +15 -0
- package/transpiled/react/Icons/Tags.d.ts +2 -0
- package/transpiled/react/Icons/Tags.js +17 -0
- package/transpiled/react/Icons/Target.d.ts +2 -0
- package/transpiled/react/Icons/Target.js +13 -0
- package/transpiled/react/Icons/Task.d.ts +2 -0
- package/transpiled/react/Icons/Task.js +13 -0
- package/transpiled/react/Icons/TaskToEffectuate.d.ts +2 -0
- package/transpiled/react/Icons/TaskToEffectuate.js +17 -0
- package/transpiled/react/Icons/Team.d.ts +2 -0
- package/transpiled/react/Icons/Team.js +15 -0
- package/transpiled/react/Icons/Telecom.d.ts +2 -0
- package/transpiled/react/Icons/Telecom.js +15 -0
- package/transpiled/react/Icons/Telephone.d.ts +2 -0
- package/transpiled/react/Icons/Telephone.js +13 -0
- package/transpiled/react/Icons/Text.d.ts +2 -0
- package/transpiled/react/Icons/Text.js +13 -0
- package/transpiled/react/Icons/TextInfo.d.ts +2 -0
- package/transpiled/react/Icons/TextInfo.js +13 -0
- package/transpiled/react/Icons/ToTheCloud.d.ts +2 -0
- package/transpiled/react/Icons/ToTheCloud.js +13 -0
- package/transpiled/react/Icons/Top.d.ts +2 -0
- package/transpiled/react/Icons/Top.js +13 -0
- package/transpiled/react/Icons/TopSelect.d.ts +2 -0
- package/transpiled/react/Icons/TopSelect.js +13 -0
- package/transpiled/react/Icons/Train.d.ts +2 -0
- package/transpiled/react/Icons/Train.js +15 -0
- package/transpiled/react/Icons/Tram.d.ts +2 -0
- package/transpiled/react/Icons/Tram.js +13 -0
- package/transpiled/react/Icons/Trash.d.ts +2 -0
- package/transpiled/react/Icons/Trash.js +13 -0
- package/transpiled/react/Icons/TrashDuotone.d.ts +2 -0
- package/transpiled/react/Icons/TrashDuotone.js +13 -0
- package/transpiled/react/Icons/Triggers.d.ts +2 -0
- package/transpiled/react/Icons/Triggers.js +13 -0
- package/transpiled/react/Icons/Trophy.d.ts +2 -0
- package/transpiled/react/Icons/Trophy.js +13 -0
- package/transpiled/react/Icons/TwakeText.d.ts +2 -0
- package/transpiled/react/Icons/TwakeText.js +18 -0
- package/transpiled/react/Icons/TwakeWorkplace.d.ts +2 -0
- package/transpiled/react/Icons/TwakeWorkplace.js +79 -0
- package/transpiled/react/Icons/Uncloud.d.ts +2 -0
- package/transpiled/react/Icons/Uncloud.js +13 -0
- package/transpiled/react/Icons/Unknow.d.ts +2 -0
- package/transpiled/react/Icons/Unknow.js +13 -0
- package/transpiled/react/Icons/Unlink.d.ts +2 -0
- package/transpiled/react/Icons/Unlink.js +13 -0
- package/transpiled/react/Icons/Unlock.d.ts +2 -0
- package/transpiled/react/Icons/Unlock.js +13 -0
- package/transpiled/react/Icons/Up.d.ts +2 -0
- package/transpiled/react/Icons/Up.js +13 -0
- package/transpiled/react/Icons/Upload.d.ts +2 -0
- package/transpiled/react/Icons/Upload.js +13 -0
- package/transpiled/react/Icons/Versioning.d.ts +2 -0
- package/transpiled/react/Icons/Versioning.js +13 -0
- package/transpiled/react/Icons/Videos.d.ts +2 -0
- package/transpiled/react/Icons/Videos.js +13 -0
- package/transpiled/react/Icons/Walk.d.ts +2 -0
- package/transpiled/react/Icons/Walk.js +13 -0
- package/transpiled/react/Icons/Wallet.d.ts +2 -0
- package/transpiled/react/Icons/Wallet.js +13 -0
- package/transpiled/react/Icons/WalletAdd.d.ts +2 -0
- package/transpiled/react/Icons/WalletAdd.js +14 -0
- package/transpiled/react/Icons/WalletNew.d.ts +2 -0
- package/transpiled/react/Icons/WalletNew.js +14 -0
- package/transpiled/react/Icons/Warn.d.ts +2 -0
- package/transpiled/react/Icons/Warn.js +15 -0
- package/transpiled/react/Icons/Warning.d.ts +2 -0
- package/transpiled/react/Icons/Warning.js +13 -0
- package/transpiled/react/Icons/WarningCircle.d.ts +2 -0
- package/transpiled/react/Icons/WarningCircle.js +13 -0
- package/transpiled/react/Icons/Water.d.ts +2 -0
- package/transpiled/react/Icons/Water.js +13 -0
- package/transpiled/react/Icons/Work.d.ts +2 -0
- package/transpiled/react/Icons/Work.js +13 -0
- package/transpiled/react/Icons/WorkplaceText.d.ts +2 -0
- package/transpiled/react/Icons/WorkplaceText.js +15 -0
- package/transpiled/react/Icons/WrenchCircle.d.ts +2 -0
- package/transpiled/react/Icons/WrenchCircle.js +19 -0
- package/transpiled/react/InfosBadge/index.d.ts +5 -0
- package/transpiled/react/InfosBadge/index.js +36 -0
- package/transpiled/react/Input/index.d.ts +2 -0
- package/transpiled/react/Input/index.js +2 -0
- package/transpiled/react/InputAdornment/index.d.ts +2 -0
- package/transpiled/react/InputAdornment/index.js +2 -0
- package/transpiled/react/InputBase/index.d.ts +2 -0
- package/transpiled/react/InputBase/index.js +2 -0
- package/transpiled/react/InputGroup/index.d.ts +30 -0
- package/transpiled/react/InputGroup/index.js +107 -0
- package/transpiled/react/InputLabel/index.d.ts +2 -0
- package/transpiled/react/InputLabel/index.js +2 -0
- package/transpiled/react/IntentDialogOpener/IntentDialogOpener.d.ts +32 -0
- package/transpiled/react/IntentDialogOpener/IntentDialogOpener.js +120 -0
- package/transpiled/react/IntentDialogOpener/index.d.ts +1 -0
- package/transpiled/react/IntentDialogOpener/index.js +1 -0
- package/transpiled/react/IntentHeader/index.d.ts +23 -0
- package/transpiled/react/IntentHeader/index.js +33 -0
- package/transpiled/react/IntentIframe/IntentIframe.d.ts +8 -0
- package/transpiled/react/IntentIframe/IntentIframe.js +159 -0
- package/transpiled/react/IntentIframe/index.d.ts +1 -0
- package/transpiled/react/IntentIframe/index.js +1 -0
- package/transpiled/react/IntentWrapper/index.d.ts +20 -0
- package/transpiled/react/IntentWrapper/index.js +38 -0
- package/transpiled/react/Label/index.d.ts +20 -0
- package/transpiled/react/Label/index.js +42 -0
- package/transpiled/react/Labs/CollectionField/index.d.ts +23 -0
- package/transpiled/react/Labs/CollectionField/index.js +142 -0
- package/transpiled/react/Labs/ExperimentalDialog/index.d.ts +4 -0
- package/transpiled/react/Labs/ExperimentalDialog/index.js +19 -0
- package/transpiled/react/Labs/IconGrid/index.d.ts +4 -0
- package/transpiled/react/Labs/IconGrid/index.js +13 -0
- package/transpiled/react/Labs/PasswordInput/helpers.d.ts +4 -0
- package/transpiled/react/Labs/PasswordInput/helpers.js +75 -0
- package/transpiled/react/Labs/PasswordInput/helpers.spec.d.ts +1 -0
- package/transpiled/react/Labs/PasswordInput/index.d.ts +15 -0
- package/transpiled/react/Labs/PasswordInput/index.js +93 -0
- package/transpiled/react/Labs/index.d.ts +0 -0
- package/transpiled/react/Labs/index.js +0 -0
- package/transpiled/react/Layout/Layout.d.ts +6 -0
- package/transpiled/react/Layout/Layout.js +110 -0
- package/transpiled/react/Layout/index.d.ts +1 -0
- package/transpiled/react/Layout/index.js +1 -0
- package/transpiled/react/LinearProgress/index.d.ts +2 -0
- package/transpiled/react/LinearProgress/index.js +2 -0
- package/transpiled/react/Link/index.d.ts +2 -0
- package/transpiled/react/Link/index.js +2 -0
- package/transpiled/react/List/index.d.ts +9 -0
- package/transpiled/react/List/index.js +8 -0
- package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.d.ts +14 -0
- package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.js +45 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.d.ts +43 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.js +215 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.spec.d.ts +1 -0
- package/transpiled/react/ListItem/ExpandedAttributes/index.d.ts +2 -0
- package/transpiled/react/ListItem/ExpandedAttributes/index.js +66 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.js +35 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.js +292 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.js +59 -0
- package/transpiled/react/ListItem/ListItemBase/index.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemBase/index.js +122 -0
- package/transpiled/react/ListItem/ListItemByDoc/index.d.ts +46 -0
- package/transpiled/react/ListItem/ListItemByDoc/index.js +95 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.js +29 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.spec.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemContact/index.d.ts +35 -0
- package/transpiled/react/ListItem/ListItemContact/index.js +68 -0
- package/transpiled/react/ListItem/ListItemContact/useActions.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemContact/useActions.js +18 -0
- package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.js +37 -0
- package/transpiled/react/ListItem/ListItemFile/ItemIcon.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/ItemIcon.js +42 -0
- package/transpiled/react/ListItem/ListItemFile/PrimaryText.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/PrimaryText.js +33 -0
- package/transpiled/react/ListItem/ListItemFile/SecondaryText.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/SecondaryText.js +27 -0
- package/transpiled/react/ListItem/ListItemFile/index.d.ts +37 -0
- package/transpiled/react/ListItem/ListItemFile/index.js +78 -0
- package/transpiled/react/ListItem/hoc/withListItemLocales.d.ts +12 -0
- package/transpiled/react/ListItem/hoc/withListItemLocales.js +308 -0
- package/transpiled/react/ListItem/index.d.ts +10 -0
- package/transpiled/react/ListItem/index.js +140 -0
- package/transpiled/react/ListItemAvatar/index.d.ts +2 -0
- package/transpiled/react/ListItemAvatar/index.js +2 -0
- package/transpiled/react/ListItemIcon/index.d.ts +8 -0
- package/transpiled/react/ListItemIcon/index.js +25 -0
- package/transpiled/react/ListItemSecondaryAction/index.d.ts +2 -0
- package/transpiled/react/ListItemSecondaryAction/index.js +2 -0
- package/transpiled/react/ListItemText/index.d.ts +5 -0
- package/transpiled/react/ListItemText/index.js +71 -0
- package/transpiled/react/ListSubheader/index.d.ts +3 -0
- package/transpiled/react/ListSubheader/index.js +43 -0
- package/transpiled/react/LoadMore/index.d.ts +12 -0
- package/transpiled/react/LoadMore/index.js +81 -0
- package/transpiled/react/Markdown/index.d.ts +4 -0
- package/transpiled/react/Markdown/index.js +39 -0
- package/transpiled/react/Menu/index.d.ts +2 -0
- package/transpiled/react/Menu/index.js +2 -0
- package/transpiled/react/MenuItem/index.d.ts +3 -0
- package/transpiled/react/MenuItem/index.js +20 -0
- package/transpiled/react/MenuList/index.d.ts +2 -0
- package/transpiled/react/MenuList/index.js +2 -0
- package/transpiled/react/MidEllipsis/index.d.ts +3 -0
- package/transpiled/react/MidEllipsis/index.js +41 -0
- package/transpiled/react/MobileStepper/index.d.ts +2 -0
- package/transpiled/react/MobileStepper/index.js +2 -0
- package/transpiled/react/Modal/index.d.ts +2 -0
- package/transpiled/react/Modal/index.js +2 -0
- package/transpiled/react/MuiCozyTheme/Divider/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/Divider/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/List/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/List/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItem/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItem/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItemIcon/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItemIcon/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/helpers.d.ts +138 -0
- package/transpiled/react/MuiCozyTheme/helpers.js +179 -0
- package/transpiled/react/MuiCozyTheme/index.d.ts +19 -0
- package/transpiled/react/MuiCozyTheme/index.js +24 -0
- package/transpiled/react/MuiCozyTheme/makePalette.d.ts +1 -0
- package/transpiled/react/MuiCozyTheme/makePalette.js +170 -0
- package/transpiled/react/MuiCozyTheme/makeTheme.d.ts +15 -0
- package/transpiled/react/MuiCozyTheme/makeTheme.js +71 -0
- package/transpiled/react/MuiCozyTheme/makeTypography.d.ts +78 -0
- package/transpiled/react/MuiCozyTheme/makeTypography.js +80 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1794 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +4 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1743 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +4 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1794 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +61 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1743 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1200 -0
- package/transpiled/react/MuiCozyTheme/theme.d.ts +61 -0
- package/transpiled/react/MuiCozyTheme/theme.js +27 -0
- package/transpiled/react/MuiTabs/index.d.ts +11 -0
- package/transpiled/react/MuiTabs/index.js +22 -0
- package/transpiled/react/NativeSelect/index.d.ts +2 -0
- package/transpiled/react/NativeSelect/index.js +2 -0
- package/transpiled/react/Nav/index.d.ts +40 -0
- package/transpiled/react/Nav/index.js +189 -0
- package/transpiled/react/Nav/locales/withNavLocales.d.ts +12 -0
- package/transpiled/react/Nav/locales/withNavLocales.js +32 -0
- package/transpiled/react/NavigationList/index.d.ts +12 -0
- package/transpiled/react/NavigationList/index.js +59 -0
- package/transpiled/react/NestedSelect/BottomSheet.d.ts +2 -0
- package/transpiled/react/NestedSelect/BottomSheet.js +46 -0
- package/transpiled/react/NestedSelect/ItemRow.d.ts +22 -0
- package/transpiled/react/NestedSelect/ItemRow.js +83 -0
- package/transpiled/react/NestedSelect/Modal.d.ts +2 -0
- package/transpiled/react/NestedSelect/Modal.js +65 -0
- package/transpiled/react/NestedSelect/NestedSelect.d.ts +82 -0
- package/transpiled/react/NestedSelect/NestedSelect.js +287 -0
- package/transpiled/react/NestedSelect/NestedSelect.spec.d.ts +1 -0
- package/transpiled/react/NestedSelect/NestedSelectResponsive.d.ts +2 -0
- package/transpiled/react/NestedSelect/NestedSelectResponsive.js +14 -0
- package/transpiled/react/NestedSelect/helpers.d.ts +1 -0
- package/transpiled/react/NestedSelect/helpers.js +44 -0
- package/transpiled/react/NestedSelect/helpers.spec.d.ts +1 -0
- package/transpiled/react/NestedSelect/index.d.ts +4 -0
- package/transpiled/react/NestedSelect/index.js +4 -0
- package/transpiled/react/NestedSelect/testing.d.ts +1 -0
- package/transpiled/react/NestedSelect/testing.js +4 -0
- package/transpiled/react/NoSsr/index.d.ts +2 -0
- package/transpiled/react/NoSsr/index.js +2 -0
- package/transpiled/react/OrderedList/index.d.ts +2 -0
- package/transpiled/react/OrderedList/index.js +28 -0
- package/transpiled/react/OutlinedInput/index.d.ts +2 -0
- package/transpiled/react/OutlinedInput/index.js +2 -0
- package/transpiled/react/Page/index.d.ts +14 -0
- package/transpiled/react/Page/index.js +116 -0
- package/transpiled/react/Page/keyboard.d.ts +31 -0
- package/transpiled/react/Page/keyboard.js +94 -0
- package/transpiled/react/Panel/index.d.ts +21 -0
- package/transpiled/react/Panel/index.js +20 -0
- package/transpiled/react/Paper/index.d.ts +2 -0
- package/transpiled/react/Paper/index.js +2 -0
- package/transpiled/react/PasswordExample/index.d.ts +7 -0
- package/transpiled/react/PasswordExample/index.js +83 -0
- package/transpiled/react/PasswordField/index.d.ts +12 -0
- package/transpiled/react/PasswordField/index.js +82 -0
- package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.js +33 -0
- package/transpiled/react/Paywall/MaxAccountsPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxAccountsPaywall.js +28 -0
- package/transpiled/react/Paywall/MaxDaysToCapturePaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxDaysToCapturePaywall.js +28 -0
- package/transpiled/react/Paywall/MaxPapersPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxPapersPaywall.js +29 -0
- package/transpiled/react/Paywall/OnlyOfficePaywall.d.ts +16 -0
- package/transpiled/react/Paywall/OnlyOfficePaywall.js +29 -0
- package/transpiled/react/Paywall/PasswordSharingPaywall.d.ts +10 -0
- package/transpiled/react/Paywall/PasswordSharingPaywall.js +22 -0
- package/transpiled/react/Paywall/Paywall.d.ts +2 -0
- package/transpiled/react/Paywall/Paywall.js +167 -0
- package/transpiled/react/Paywall/Paywall.spec.d.ts +1 -0
- package/transpiled/react/Paywall/QuotaPaywall.d.ts +13 -0
- package/transpiled/react/Paywall/QuotaPaywall.js +20 -0
- package/transpiled/react/Paywall/helpers.d.ts +1 -0
- package/transpiled/react/Paywall/helpers.js +22 -0
- package/transpiled/react/Paywall/index.d.ts +7 -0
- package/transpiled/react/Paywall/index.js +7 -0
- package/transpiled/react/Paywall/locales/withPaywallLocales.d.ts +2 -0
- package/transpiled/react/Paywall/locales/withPaywallLocales.js +388 -0
- package/transpiled/react/PieChart/index.d.ts +30 -0
- package/transpiled/react/PieChart/index.js +164 -0
- package/transpiled/react/PieChart/index.spec.d.ts +1 -0
- package/transpiled/react/PointerAlert/index.d.ts +3 -0
- package/transpiled/react/PointerAlert/index.js +154 -0
- package/transpiled/react/Popover/index.d.ts +2 -0
- package/transpiled/react/Popover/index.js +2 -0
- package/transpiled/react/Popper/index.d.ts +2 -0
- package/transpiled/react/Popper/index.js +2 -0
- package/transpiled/react/Popper/testing.d.ts +1 -0
- package/transpiled/react/Popper/testing.js +21 -0
- package/transpiled/react/Popup/index.d.ts +60 -0
- package/transpiled/react/Popup/index.js +195 -0
- package/transpiled/react/Popup/index.spec.d.ts +1 -0
- package/transpiled/react/PopupOpener/index.d.ts +20 -0
- package/transpiled/react/PopupOpener/index.js +50 -0
- package/transpiled/react/Portal/index.d.ts +5 -0
- package/transpiled/react/Portal/index.js +10 -0
- package/transpiled/react/Progress/index.d.ts +2 -0
- package/transpiled/react/Progress/index.js +2 -0
- package/transpiled/react/ProgressionBanner/index.d.ts +9 -0
- package/transpiled/react/ProgressionBanner/index.js +64 -0
- package/transpiled/react/QualificationGrid/helpers.d.ts +1 -0
- package/transpiled/react/QualificationGrid/helpers.js +7 -0
- package/transpiled/react/QualificationGrid/index.d.ts +2 -0
- package/transpiled/react/QualificationGrid/index.js +97 -0
- package/transpiled/react/QualificationGrid/locales/withLocales.d.ts +12 -0
- package/transpiled/react/QualificationGrid/locales/withLocales.js +68 -0
- package/transpiled/react/QualificationIcon/index.d.ts +13 -0
- package/transpiled/react/QualificationIcon/index.js +108 -0
- package/transpiled/react/QualificationItem/index.d.ts +17 -0
- package/transpiled/react/QualificationItem/index.js +63 -0
- package/transpiled/react/QualificationModal/helpers.d.ts +14 -0
- package/transpiled/react/QualificationModal/helpers.js +70 -0
- package/transpiled/react/QualificationModal/helpers.spec.d.ts +1 -0
- package/transpiled/react/QualificationModal/index.d.ts +16 -0
- package/transpiled/react/QualificationModal/index.js +98 -0
- package/transpiled/react/QualificationModal/locales/index.d.ts +10 -0
- package/transpiled/react/QualificationModal/locales/index.js +30 -0
- package/transpiled/react/RadioGroup/index.d.ts +2 -0
- package/transpiled/react/RadioGroup/index.js +2 -0
- package/transpiled/react/Radios/index.d.ts +7 -0
- package/transpiled/react/Radios/index.js +22 -0
- package/transpiled/react/RootRef/index.d.ts +2 -0
- package/transpiled/react/RootRef/index.js +2 -0
- package/transpiled/react/ScopedCssBaseline/index.d.ts +2 -0
- package/transpiled/react/ScopedCssBaseline/index.js +2 -0
- package/transpiled/react/SearchBar/index.d.ts +3 -0
- package/transpiled/react/SearchBar/index.js +304 -0
- package/transpiled/react/SearchBar/locales/withOnlyLocales.d.ts +12 -0
- package/transpiled/react/SearchBar/locales/withOnlyLocales.js +28 -0
- package/transpiled/react/Select/index.d.ts +2 -0
- package/transpiled/react/Select/index.js +2 -0
- package/transpiled/react/SelectBox/ControlDefault.d.ts +14 -0
- package/transpiled/react/SelectBox/ControlDefault.js +34 -0
- package/transpiled/react/SelectBox/SelectBox.d.ts +108 -0
- package/transpiled/react/SelectBox/SelectBox.js +386 -0
- package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.d.ts +8 -0
- package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.js +82 -0
- package/transpiled/react/SelectBox/index.d.ts +3 -0
- package/transpiled/react/SelectBox/index.js +4 -0
- package/transpiled/react/SelectionBar/SelectionBarAction.d.ts +14 -0
- package/transpiled/react/SelectionBar/SelectionBarAction.js +76 -0
- package/transpiled/react/SelectionBar/SelectionBarMore.d.ts +14 -0
- package/transpiled/react/SelectionBar/SelectionBarMore.js +86 -0
- package/transpiled/react/SelectionBar/helpers.d.ts +7 -0
- package/transpiled/react/SelectionBar/helpers.js +23 -0
- package/transpiled/react/SelectionBar/helpers.spec.d.ts +1 -0
- package/transpiled/react/SelectionBar/index.d.ts +25 -0
- package/transpiled/react/SelectionBar/index.js +152 -0
- package/transpiled/react/SelectionBar/useMaxActions.d.ts +7 -0
- package/transpiled/react/SelectionBar/useMaxActions.js +43 -0
- package/transpiled/react/ShortcutTile/index.d.ts +15 -0
- package/transpiled/react/ShortcutTile/index.js +51 -0
- package/transpiled/react/Sidebar/index.d.ts +13 -0
- package/transpiled/react/Sidebar/index.js +41 -0
- package/transpiled/react/Skeleton/index.d.ts +2 -0
- package/transpiled/react/Skeleton/index.js +2 -0
- package/transpiled/react/Skeletons/ListItemSkeleton.d.ts +14 -0
- package/transpiled/react/Skeletons/ListItemSkeleton.js +40 -0
- package/transpiled/react/Skeletons/ListSkeleton.d.ts +19 -0
- package/transpiled/react/Skeletons/ListSkeleton.js +37 -0
- package/transpiled/react/Skeletons/index.d.ts +2 -0
- package/transpiled/react/Skeletons/index.js +2 -0
- package/transpiled/react/Slide/index.d.ts +2 -0
- package/transpiled/react/Slide/index.js +2 -0
- package/transpiled/react/Slider/index.d.ts +2 -0
- package/transpiled/react/Slider/index.js +2 -0
- package/transpiled/react/Snackbar/index.d.ts +3 -0
- package/transpiled/react/Snackbar/index.js +22 -0
- package/transpiled/react/SnackbarContent/index.d.ts +2 -0
- package/transpiled/react/SnackbarContent/index.js +2 -0
- package/transpiled/react/Spinner/index.d.ts +37 -0
- package/transpiled/react/Spinner/index.js +64 -0
- package/transpiled/react/SquareAppIcon/SquareAppIcon.spec.d.ts +1 -0
- package/transpiled/react/SquareAppIcon/index.d.ts +26 -0
- package/transpiled/react/SquareAppIcon/index.js +222 -0
- package/transpiled/react/Stack/index.d.ts +17 -0
- package/transpiled/react/Stack/index.js +34 -0
- package/transpiled/react/Step/index.d.ts +2 -0
- package/transpiled/react/Step/index.js +2 -0
- package/transpiled/react/StepButton/index.d.ts +2 -0
- package/transpiled/react/StepButton/index.js +2 -0
- package/transpiled/react/StepConnector/index.d.ts +2 -0
- package/transpiled/react/StepConnector/index.js +2 -0
- package/transpiled/react/StepContent/index.d.ts +2 -0
- package/transpiled/react/StepContent/index.js +2 -0
- package/transpiled/react/StepIcon/index.d.ts +2 -0
- package/transpiled/react/StepIcon/index.js +2 -0
- package/transpiled/react/StepLabel/index.d.ts +2 -0
- package/transpiled/react/StepLabel/index.js +2 -0
- package/transpiled/react/Stepper/index.d.ts +4 -0
- package/transpiled/react/Stepper/index.js +4 -0
- package/transpiled/react/Stepper/testing.d.ts +1 -0
- package/transpiled/react/Stepper/testing.js +37 -0
- package/transpiled/react/Storage/StorageButton.d.ts +4 -0
- package/transpiled/react/Storage/StorageButton.js +36 -0
- package/transpiled/react/Storage/StorageProgress.d.ts +5 -0
- package/transpiled/react/Storage/StorageProgress.js +50 -0
- package/transpiled/react/Storage/index.d.ts +14 -0
- package/transpiled/react/Storage/index.js +32 -0
- package/transpiled/react/Storage/locales/index.d.ts +10 -0
- package/transpiled/react/Storage/locales/index.js +34 -0
- package/transpiled/react/SvgIcon/index.d.ts +2 -0
- package/transpiled/react/SvgIcon/index.js +2 -0
- package/transpiled/react/SwipeableDrawer/index.d.ts +2 -0
- package/transpiled/react/SwipeableDrawer/index.js +2 -0
- package/transpiled/react/Switch/index.d.ts +5 -0
- package/transpiled/react/Switch/index.js +28 -0
- package/transpiled/react/Tab/index.d.ts +2 -0
- package/transpiled/react/Tab/index.js +2 -0
- package/transpiled/react/Table/Virtualized/Cell.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/Cell.js +86 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.js +47 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.d.ts +6 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.js +34 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
- package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.d.ts +2 -0
- package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.js +55 -0
- package/transpiled/react/Table/Virtualized/Dnd/TableRow.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/Dnd/TableRow.js +137 -0
- package/transpiled/react/Table/Virtualized/Dnd/index.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/Dnd/index.js +47 -0
- package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.d.ts +14 -0
- package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.js +37 -0
- package/transpiled/react/Table/Virtualized/FixedHeaderContent.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/FixedHeaderContent.js +60 -0
- package/transpiled/react/Table/Virtualized/HeadCell.d.ts +8 -0
- package/transpiled/react/Table/Virtualized/HeadCell.js +44 -0
- package/transpiled/react/Table/Virtualized/RowContent.d.ts +12 -0
- package/transpiled/react/Table/Virtualized/RowContent.js +45 -0
- package/transpiled/react/Table/Virtualized/TableRow.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/TableRow.js +24 -0
- package/transpiled/react/Table/Virtualized/helpers.d.ts +2 -0
- package/transpiled/react/Table/Virtualized/helpers.js +66 -0
- package/transpiled/react/Table/Virtualized/helpers.spec.d.ts +1 -0
- package/transpiled/react/Table/Virtualized/index.d.ts +3 -0
- package/transpiled/react/Table/Virtualized/index.js +172 -0
- package/transpiled/react/Table/Virtualized/virtuosoComponents.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/virtuosoComponents.js +70 -0
- package/transpiled/react/Table/index.d.ts +2 -0
- package/transpiled/react/Table/index.js +2 -0
- package/transpiled/react/TableBody/index.d.ts +2 -0
- package/transpiled/react/TableBody/index.js +2 -0
- package/transpiled/react/TableCell/index.d.ts +2 -0
- package/transpiled/react/TableCell/index.js +2 -0
- package/transpiled/react/TableContainer/index.d.ts +3 -0
- package/transpiled/react/TableContainer/index.js +22 -0
- package/transpiled/react/TableFooter/index.d.ts +2 -0
- package/transpiled/react/TableFooter/index.js +2 -0
- package/transpiled/react/TableHead/index.d.ts +2 -0
- package/transpiled/react/TableHead/index.js +2 -0
- package/transpiled/react/TablePagination/index.d.ts +2 -0
- package/transpiled/react/TablePagination/index.js +2 -0
- package/transpiled/react/TableRow/index.d.ts +3 -0
- package/transpiled/react/TableRow/index.js +21 -0
- package/transpiled/react/TableSortLabel/index.d.ts +2 -0
- package/transpiled/react/TableSortLabel/index.js +2 -0
- package/transpiled/react/Tabs/index.d.ts +3 -0
- package/transpiled/react/Tabs/index.js +49 -0
- package/transpiled/react/TextField/MobileSelect.d.ts +3 -0
- package/transpiled/react/TextField/MobileSelect.js +150 -0
- package/transpiled/react/TextField/helpers.d.ts +2 -0
- package/transpiled/react/TextField/helpers.js +30 -0
- package/transpiled/react/TextField/index.d.ts +3 -0
- package/transpiled/react/TextField/index.js +54 -0
- package/transpiled/react/Textarea/index.d.ts +3 -0
- package/transpiled/react/Textarea/index.js +51 -0
- package/transpiled/react/TextareaAutosize/index.d.ts +2 -0
- package/transpiled/react/TextareaAutosize/index.js +2 -0
- package/transpiled/react/Thumbnail/index.d.ts +22 -0
- package/transpiled/react/Thumbnail/index.js +41 -0
- package/transpiled/react/Tile/index.d.ts +68 -0
- package/transpiled/react/Tile/index.js +94 -0
- package/transpiled/react/Timeline/index.d.ts +2 -0
- package/transpiled/react/Timeline/index.js +2 -0
- package/transpiled/react/TimelineConnector/index.d.ts +2 -0
- package/transpiled/react/TimelineConnector/index.js +2 -0
- package/transpiled/react/TimelineContent/index.d.ts +2 -0
- package/transpiled/react/TimelineContent/index.js +2 -0
- package/transpiled/react/TimelineDot/index.d.ts +2 -0
- package/transpiled/react/TimelineDot/index.js +2 -0
- package/transpiled/react/TimelineItem/index.d.ts +2 -0
- package/transpiled/react/TimelineItem/index.js +2 -0
- package/transpiled/react/TimelineOppositeContent/index.d.ts +2 -0
- package/transpiled/react/TimelineOppositeContent/index.js +2 -0
- package/transpiled/react/TimelineSeparator/index.d.ts +2 -0
- package/transpiled/react/TimelineSeparator/index.js +2 -0
- package/transpiled/react/Toggle/index.d.ts +18 -0
- package/transpiled/react/Toggle/index.js +80 -0
- package/transpiled/react/ToggleButton/index.d.ts +3 -0
- package/transpiled/react/ToggleButton/index.js +27 -0
- package/transpiled/react/ToggleButtonGroup/index.d.ts +2 -0
- package/transpiled/react/ToggleButtonGroup/index.js +2 -0
- package/transpiled/react/Toolbar/index.d.ts +2 -0
- package/transpiled/react/Toolbar/index.js +2 -0
- package/transpiled/react/Tooltip/index.d.ts +2 -0
- package/transpiled/react/Tooltip/index.js +5 -0
- package/transpiled/react/Typography/index.d.ts +38 -0
- package/transpiled/react/Typography/index.js +30 -0
- package/transpiled/react/UnorderedList/index.d.ts +2 -0
- package/transpiled/react/UnorderedList/index.js +28 -0
- package/transpiled/react/UploadQueue/FileUploadProgress.d.ts +4 -0
- package/transpiled/react/UploadQueue/FileUploadProgress.js +66 -0
- package/transpiled/react/UploadQueue/Item.d.ts +3 -0
- package/transpiled/react/UploadQueue/Item.js +106 -0
- package/transpiled/react/UploadQueue/Pending.d.ts +3 -0
- package/transpiled/react/UploadQueue/Pending.js +10 -0
- package/transpiled/react/UploadQueue/RemainingTime.d.ts +4 -0
- package/transpiled/react/UploadQueue/RemainingTime.js +43 -0
- package/transpiled/react/UploadQueue/helpers.d.ts +1 -0
- package/transpiled/react/UploadQueue/helpers.js +4 -0
- package/transpiled/react/UploadQueue/index.d.ts +42 -0
- package/transpiled/react/UploadQueue/index.js +241 -0
- package/transpiled/react/UploadQueue/index.spec.d.ts +1 -0
- package/transpiled/react/UploadQueue/useStatusIcon.d.ts +1 -0
- package/transpiled/react/UploadQueue/useStatusIcon.js +42 -0
- package/transpiled/react/Wizard/index.d.ts +75 -0
- package/transpiled/react/Wizard/index.js +202 -0
- package/transpiled/react/Zoom/index.d.ts +2 -0
- package/transpiled/react/Zoom/index.js +2 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.js +38 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.d.ts +11 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.js +21 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.d.ts +23 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.js +44 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.d.ts +32 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.js +63 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.js +15 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.d.ts +7 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.js +30 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.d.ts +12 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.js +38 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.d.ts +18 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.js +49 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/call.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/call.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.d.ts +3 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.js +51 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.spec.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/hr.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/hr.js +9 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/index.d.ts +7 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/index.js +7 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.d.ts +12 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.js +40 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/modify.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/modify.js +39 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.js +39 -0
- package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.d.ts +9 -0
- package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.js +58 -0
- package/transpiled/react/deprecated/ActionMenu/index.d.ts +48 -0
- package/transpiled/react/deprecated/ActionMenu/index.js +104 -0
- package/transpiled/react/deprecated/Alerter/Alert.d.ts +39 -0
- package/transpiled/react/deprecated/Alerter/Alert.js +168 -0
- package/transpiled/react/deprecated/Alerter/index.d.ts +50 -0
- package/transpiled/react/deprecated/Alerter/index.js +217 -0
- package/transpiled/react/deprecated/BottomDrawer/index.d.ts +31 -0
- package/transpiled/react/deprecated/BottomDrawer/index.js +203 -0
- package/transpiled/react/deprecated/Button/index.d.ts +41 -0
- package/transpiled/react/deprecated/Button/index.js +212 -0
- package/transpiled/react/deprecated/ButtonAction/index.d.ts +21 -0
- package/transpiled/react/deprecated/ButtonAction/index.js +69 -0
- package/transpiled/react/deprecated/Chip/index.d.ts +26 -0
- package/transpiled/react/deprecated/Chip/index.js +129 -0
- package/transpiled/react/deprecated/CompositeRow/index.d.ts +34 -0
- package/transpiled/react/deprecated/CompositeRow/index.js +93 -0
- package/transpiled/react/deprecated/GridItem/index.d.ts +12 -0
- package/transpiled/react/deprecated/GridItem/index.js +27 -0
- package/transpiled/react/deprecated/Infos/index.d.ts +26 -0
- package/transpiled/react/deprecated/Infos/index.js +103 -0
- package/transpiled/react/deprecated/InfosCarrousel/index.d.ts +24 -0
- package/transpiled/react/deprecated/InfosCarrousel/index.js +120 -0
- package/transpiled/react/deprecated/InlineCard/index.d.ts +16 -0
- package/transpiled/react/deprecated/InlineCard/index.js +53 -0
- package/transpiled/react/deprecated/IntentModal/IntentModal.d.ts +23 -0
- package/transpiled/react/deprecated/IntentModal/IntentModal.js +126 -0
- package/transpiled/react/deprecated/IntentModal/index.d.ts +1 -0
- package/transpiled/react/deprecated/IntentModal/index.js +1 -0
- package/transpiled/react/deprecated/IntentOpener/IntentOpener.d.ts +25 -0
- package/transpiled/react/deprecated/IntentOpener/IntentOpener.js +105 -0
- package/transpiled/react/deprecated/IntentOpener/index.d.ts +1 -0
- package/transpiled/react/deprecated/IntentOpener/index.js +1 -0
- package/transpiled/react/deprecated/Media/Media.d.ts +24 -0
- package/transpiled/react/deprecated/Media/Media.js +55 -0
- package/transpiled/react/deprecated/Media/index.d.ts +1 -0
- package/transpiled/react/deprecated/Media/index.js +1 -0
- package/transpiled/react/deprecated/Menus/index.d.ts +24 -0
- package/transpiled/react/deprecated/Menus/index.js +154 -0
- package/transpiled/react/deprecated/Modal/AnimatedContentHeader.d.ts +6 -0
- package/transpiled/react/deprecated/Modal/AnimatedContentHeader.js +34 -0
- package/transpiled/react/deprecated/Modal/ModalBackButton.d.ts +2 -0
- package/transpiled/react/deprecated/Modal/ModalBackButton.js +67 -0
- package/transpiled/react/deprecated/Modal/ModalButtons.d.ts +17 -0
- package/transpiled/react/deprecated/Modal/ModalButtons.js +68 -0
- package/transpiled/react/deprecated/Modal/ModalContent.d.ts +20 -0
- package/transpiled/react/deprecated/Modal/ModalContent.js +177 -0
- package/transpiled/react/deprecated/Modal/ModalCross.d.ts +7 -0
- package/transpiled/react/deprecated/Modal/ModalCross.js +68 -0
- package/transpiled/react/deprecated/Modal/ModalEffects.d.ts +1 -0
- package/transpiled/react/deprecated/Modal/ModalEffects.js +50 -0
- package/transpiled/react/deprecated/Modal/ModalFooter.d.ts +5 -0
- package/transpiled/react/deprecated/Modal/ModalFooter.js +47 -0
- package/transpiled/react/deprecated/Modal/ModalHeader.d.ts +17 -0
- package/transpiled/react/deprecated/Modal/ModalHeader.js +87 -0
- package/transpiled/react/deprecated/Modal/ModalSection.d.ts +5 -0
- package/transpiled/react/deprecated/Modal/ModalSection.js +47 -0
- package/transpiled/react/deprecated/Modal/index.d.ts +14 -0
- package/transpiled/react/deprecated/Modal/index.js +345 -0
- package/transpiled/react/deprecated/NarrowContent/index.d.ts +2 -0
- package/transpiled/react/deprecated/NarrowContent/index.js +19 -0
- package/transpiled/react/deprecated/Overlay/index.d.ts +3 -0
- package/transpiled/react/deprecated/Overlay/index.js +115 -0
- package/transpiled/react/deprecated/PercentageBar/index.d.ts +2 -0
- package/transpiled/react/deprecated/PercentageBar/index.js +27 -0
- package/transpiled/react/deprecated/PercentageLine/index.d.ts +18 -0
- package/transpiled/react/deprecated/PercentageLine/index.js +44 -0
- package/transpiled/react/deprecated/PushClientButton/index.d.ts +16 -0
- package/transpiled/react/deprecated/PushClientButton/index.js +50 -0
- package/transpiled/react/deprecated/PushClientButton/index.spec.d.ts +1 -0
- package/transpiled/react/deprecated/QuotaAlert/index.d.ts +7 -0
- package/transpiled/react/deprecated/QuotaAlert/index.js +17 -0
- package/transpiled/react/deprecated/Radio/index.d.ts +21 -0
- package/transpiled/react/deprecated/Radio/index.js +78 -0
- package/transpiled/react/deprecated/Radio/index.spec.d.ts +1 -0
- package/transpiled/react/deprecated/RaisedList/index.d.ts +2 -0
- package/transpiled/react/deprecated/RaisedList/index.js +15 -0
- package/transpiled/react/deprecated/Table/index.d.ts +7 -0
- package/transpiled/react/deprecated/Table/index.js +97 -0
- package/transpiled/react/deprecated/ViewStack/ModalStack.d.ts +16 -0
- package/transpiled/react/deprecated/ViewStack/ModalStack.js +47 -0
- package/transpiled/react/deprecated/ViewStack/ViewStack.d.ts +13 -0
- package/transpiled/react/deprecated/ViewStack/ViewStack.js +49 -0
- package/transpiled/react/deprecated/ViewStack/context.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/context.js +5 -0
- package/transpiled/react/deprecated/ViewStack/example.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/example.js +66 -0
- package/transpiled/react/deprecated/ViewStack/hooks.d.ts +1 -0
- package/transpiled/react/deprecated/ViewStack/hooks.js +77 -0
- package/transpiled/react/deprecated/ViewStack/index.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/index.js +3 -0
- package/transpiled/react/helpers/acceptedTypes.d.ts +3 -0
- package/transpiled/react/helpers/acceptedTypes.js +42 -0
- package/transpiled/react/helpers/acceptedTypes.spec.d.ts +1 -0
- package/transpiled/react/helpers/appDataset.d.ts +11 -0
- package/transpiled/react/helpers/appDataset.js +44 -0
- package/transpiled/react/helpers/appDataset.spec.d.ts +1 -0
- package/transpiled/react/helpers/breakpoints.d.ts +15 -0
- package/transpiled/react/helpers/breakpoints.js +34 -0
- package/transpiled/react/helpers/createDepreciationLogger.d.ts +2 -0
- package/transpiled/react/helpers/createDepreciationLogger.js +9 -0
- package/transpiled/react/helpers/createDepreciationLogger.spec.d.ts +1 -0
- package/transpiled/react/helpers/getRandomUUID.d.ts +1 -0
- package/transpiled/react/helpers/getRandomUUID.js +30 -0
- package/transpiled/react/helpers/getRandomUUID.spec.d.ts +1 -0
- package/transpiled/react/helpers/getSafeArea.d.ts +10 -0
- package/transpiled/react/helpers/getSafeArea.js +15 -0
- package/transpiled/react/helpers/isTesting.d.ts +2 -0
- package/transpiled/react/helpers/isTesting.js +3 -0
- package/transpiled/react/helpers/migrateProps.d.ts +2 -0
- package/transpiled/react/helpers/migrateProps.js +123 -0
- package/transpiled/react/helpers/ref.d.ts +2 -0
- package/transpiled/react/helpers/ref.js +6 -0
- package/transpiled/react/helpers/ref.spec.d.ts +1 -0
- package/transpiled/react/helpers/useProgression.d.ts +9 -0
- package/transpiled/react/helpers/useProgression.js +36 -0
- package/transpiled/react/helpers/withBreakpoints.d.ts +31 -0
- package/transpiled/react/helpers/withBreakpoints.js +105 -0
- package/transpiled/react/helpers/withOffline.d.ts +68 -0
- package/transpiled/react/helpers/withOffline.js +82 -0
- package/transpiled/react/helpers/withState.d.ts +49 -0
- package/transpiled/react/helpers/withState.js +63 -0
- package/transpiled/react/hooks/useBrowserOffline.d.ts +10 -0
- package/transpiled/react/hooks/useBrowserOffline.js +33 -0
- package/transpiled/react/hooks/useBrowserOffline.spec.d.ts +1 -0
- package/transpiled/react/hooks/useClientErrors.d.ts +29 -0
- package/transpiled/react/hooks/useClientErrors.js +167 -0
- package/transpiled/react/hooks/useClientErrors.spec.d.ts +1 -0
- package/transpiled/react/hooks/useConfirmExit/index.d.ts +41 -0
- package/transpiled/react/hooks/useConfirmExit/index.js +204 -0
- package/transpiled/react/hooks/useConfirmExit/index.spec.d.ts +1 -0
- package/transpiled/react/hooks/useCycle.d.ts +12 -0
- package/transpiled/react/hooks/useCycle.js +38 -0
- package/transpiled/react/hooks/useCycle.spec.d.ts +1 -0
- package/transpiled/react/hooks/useEventListener.d.ts +2 -0
- package/transpiled/react/hooks/useEventListener.js +17 -0
- package/transpiled/react/hooks/useEventListener.spec.d.ts +1 -0
- package/transpiled/react/hooks/useMediaQuery.d.ts +2 -0
- package/transpiled/react/hooks/useMediaQuery.js +15 -0
- package/transpiled/react/hooks/usePeriodicRender.d.ts +7 -0
- package/transpiled/react/hooks/usePeriodicRender.js +27 -0
- package/transpiled/react/hooks/usePeriodicRender.spec.d.ts +1 -0
- package/transpiled/react/hooks/useRealtime.d.ts +2 -0
- package/transpiled/react/hooks/useRealtime.js +108 -0
- package/transpiled/react/hooks/useRealtime.spec.d.ts +1 -0
- package/transpiled/react/hooks/useScroll.d.ts +14 -0
- package/transpiled/react/hooks/useScroll.js +49 -0
- package/transpiled/react/hooks/useScroll.spec.d.ts +1 -0
- package/transpiled/react/hooks/useSetFlagshipUi/helpers.d.ts +17 -0
- package/transpiled/react/hooks/useSetFlagshipUi/helpers.js +143 -0
- package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.d.ts +12 -0
- package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.js +36 -0
- package/transpiled/react/index.d.ts +114 -0
- package/transpiled/react/index.js +114 -0
- package/transpiled/react/jestLib/I18n.d.ts +6 -0
- package/transpiled/react/jestLib/I18n.js +13 -0
- package/transpiled/react/legacy/Avatar/helpers.d.ts +1 -0
- package/transpiled/react/legacy/Avatar/helpers.js +21 -0
- package/transpiled/react/legacy/Avatar/index.d.ts +43 -0
- package/transpiled/react/legacy/Avatar/index.js +83 -0
- package/transpiled/react/legacy/Breadcrumbs/index.d.ts +17 -0
- package/transpiled/react/legacy/Breadcrumbs/index.js +109 -0
- package/transpiled/react/legacy/Input/index.d.ts +3 -0
- package/transpiled/react/legacy/Input/index.js +65 -0
- package/transpiled/react/mocks/apps.d.ts +203 -0
- package/transpiled/react/mocks/apps.js +154 -0
- package/transpiled/react/palette.d.ts +49 -0
- package/transpiled/react/palette.js +49 -0
- package/transpiled/react/proptypes.d.ts +18 -0
- package/transpiled/react/proptypes.js +18 -0
- package/transpiled/react/providers/Alert/helpers.d.ts +1 -0
- package/transpiled/react/providers/Alert/helpers.js +24 -0
- package/transpiled/react/providers/Alert/index.d.ts +21 -0
- package/transpiled/react/providers/Alert/index.js +90 -0
- package/transpiled/react/providers/Breakpoints/index.d.ts +16 -0
- package/transpiled/react/providers/Breakpoints/index.js +62 -0
- package/transpiled/react/providers/Breakpoints/useIframeConnection.d.ts +5 -0
- package/transpiled/react/providers/Breakpoints/useIframeConnection.js +35 -0
- package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.d.ts +3 -0
- package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.js +32 -0
- package/transpiled/react/providers/Breakpoints/useParentBreakpoints.d.ts +5 -0
- package/transpiled/react/providers/Breakpoints/useParentBreakpoints.js +34 -0
- package/transpiled/react/providers/ConfirmDialog/index.d.ts +7 -0
- package/transpiled/react/providers/ConfirmDialog/index.js +73 -0
- package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
- package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.js +25 -0
- package/transpiled/react/providers/CozyTheme/DumbCozyTheme.d.ts +18 -0
- package/transpiled/react/providers/CozyTheme/DumbCozyTheme.js +50 -0
- package/transpiled/react/providers/CozyTheme/index.d.ts +31 -0
- package/transpiled/react/providers/CozyTheme/index.js +53 -0
- package/transpiled/react/providers/CozyTheme/queries.d.ts +8 -0
- package/transpiled/react/providers/CozyTheme/queries.js +13 -0
- package/transpiled/react/providers/DemoProvider.d.ts +7 -0
- package/transpiled/react/providers/DemoProvider.js +48 -0
- package/transpiled/react/providers/Encrypted/index.d.ts +8 -0
- package/transpiled/react/providers/Encrypted/index.js +24 -0
- package/transpiled/react/providers/I18n/createUseI18n.d.ts +6 -0
- package/transpiled/react/providers/I18n/createUseI18n.js +39 -0
- package/transpiled/react/providers/I18n/format.d.ts +3 -0
- package/transpiled/react/providers/I18n/format.js +72 -0
- package/transpiled/react/providers/I18n/format.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/helpers.d.ts +5 -0
- package/transpiled/react/providers/I18n/helpers.js +35 -0
- package/transpiled/react/providers/I18n/index.d.ts +62 -0
- package/transpiled/react/providers/I18n/index.js +132 -0
- package/transpiled/react/providers/I18n/index.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/translate.d.ts +3 -0
- package/transpiled/react/providers/I18n/translate.js +21 -0
- package/transpiled/react/providers/I18n/translation.d.ts +3 -0
- package/transpiled/react/providers/I18n/translation.js +40 -0
- package/transpiled/react/providers/I18n/useExtendI18n.d.ts +7 -0
- package/transpiled/react/providers/I18n/useExtendI18n.js +42 -0
- package/transpiled/react/providers/I18n/withLocales.d.ts +8 -0
- package/transpiled/react/providers/I18n/withLocales.js +69 -0
- package/transpiled/react/providers/I18n/withLocales.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/withOnlyLocales.d.ts +8 -0
- package/transpiled/react/providers/I18n/withOnlyLocales.js +39 -0
- package/transpiled/react/providers/Intent/index.d.ts +9 -0
- package/transpiled/react/providers/Intent/index.js +104 -0
- package/transpiled/react/providers/Selection/index.d.ts +6 -0
- package/transpiled/react/providers/Selection/index.js +94 -0
- package/transpiled/react/styles/index.d.ts +1 -0
- package/transpiled/react/styles/index.js +1 -0
- package/transpiled/react/stylesheet.css +1 -0
- package/transpiled/react/types.d.js +0 -0
- package/transpiled/react/types.js +28 -0
- package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
- package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.js +47 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.d.ts +6 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.js +34 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
- package/transpiled/react/utils/Dnd/DnDConfigWrapper.d.ts +2 -0
- package/transpiled/react/utils/Dnd/DnDConfigWrapper.js +55 -0
- package/transpiled/react/utils/color.d.ts +2 -0
- package/transpiled/react/utils/color.js +28 -0
- package/transpiled/react/utils/color.spec.d.ts +1 -0
- package/transpiled/react/utils/dom.d.ts +1 -0
- package/transpiled/react/utils/dom.js +11 -0
- package/transpiled/react/utils/index.d.ts +1 -0
- package/transpiled/react/utils/index.js +1 -0
- package/transpiled/react/utils/react.d.ts +5 -0
- package/transpiled/react/utils/react.js +47 -0
- package/transpiled/react/utils.d.ts +5 -0
- package/transpiled/react/utils.js +23 -0
- package/react/Icon/icons-sprite.js +0 -178
|
@@ -0,0 +1,2494 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"_id": "013a6414-9727-4a4e-8b35-d3b9946a17c6",
|
|
4
|
+
"_type": "io.cozy.contacts",
|
|
5
|
+
"email": [
|
|
6
|
+
{
|
|
7
|
+
"address": "isabelle.durand@cozycloud.cc",
|
|
8
|
+
"primary": true
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"_id": "013a6413-9726-4a4d-8b34-d3b9946a17c5",
|
|
14
|
+
"_type": "io.cozy.contacts",
|
|
15
|
+
"address": [
|
|
16
|
+
{
|
|
17
|
+
"city": "Greenville",
|
|
18
|
+
"country": "Bolivia, Plurinational State of",
|
|
19
|
+
"postcode": "12198",
|
|
20
|
+
"primary": true,
|
|
21
|
+
"street": "85 Paxton Street"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"birthday": "1981-11-23",
|
|
25
|
+
"email": [
|
|
26
|
+
{
|
|
27
|
+
"address": "alexis.bickers@logico.club",
|
|
28
|
+
"primary": true
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"metadata": {
|
|
32
|
+
"version": 1
|
|
33
|
+
},
|
|
34
|
+
"fullname": "Alexis Bickers",
|
|
35
|
+
"me": true,
|
|
36
|
+
"phone": [
|
|
37
|
+
{
|
|
38
|
+
"number": "+33 (9)7 58 16 92 55",
|
|
39
|
+
"primary": true
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"relationships": {
|
|
43
|
+
"groups": {
|
|
44
|
+
"data": [
|
|
45
|
+
{
|
|
46
|
+
"_id": "group_id_work",
|
|
47
|
+
"_type": "io.cozy.contacts.groups"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"_id": "0409957b-36c1-4a66-b4f7-316e1a06e8b8",
|
|
55
|
+
"_type": "io.cozy.contacts",
|
|
56
|
+
"address": [
|
|
57
|
+
{
|
|
58
|
+
"city": "Fargo",
|
|
59
|
+
"country": "Oman",
|
|
60
|
+
"postcode": "81957",
|
|
61
|
+
"primary": true,
|
|
62
|
+
"street": "54 Willow Avenue"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"birthday": "1965-03-05",
|
|
66
|
+
"email": [
|
|
67
|
+
{
|
|
68
|
+
"address": "alexa.luck@grafixmedia.name",
|
|
69
|
+
"primary": true
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"name": {
|
|
73
|
+
"familyName": "Luck",
|
|
74
|
+
"givenName": "Alexa"
|
|
75
|
+
},
|
|
76
|
+
"phone": [
|
|
77
|
+
{
|
|
78
|
+
"number": "+33 (3)1 80 76 59 62",
|
|
79
|
+
"primary": true
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"_id": "07719549-2087-412e-8da2-e5c0b55fe7b8",
|
|
85
|
+
"_type": "io.cozy.contacts",
|
|
86
|
+
"address": [
|
|
87
|
+
{
|
|
88
|
+
"city": "Norfolk",
|
|
89
|
+
"country": "Tunisia",
|
|
90
|
+
"postcode": "33109",
|
|
91
|
+
"primary": true,
|
|
92
|
+
"street": "24 Blakeley Street"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"birthday": "1970-04-07",
|
|
96
|
+
"email": [
|
|
97
|
+
{
|
|
98
|
+
"address": "rosanne.leath@conixco.name",
|
|
99
|
+
"primary": true
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"metadata": {
|
|
103
|
+
"version": 1
|
|
104
|
+
},
|
|
105
|
+
"name": {
|
|
106
|
+
"familyName": "Leath",
|
|
107
|
+
"givenName": "Rosanne"
|
|
108
|
+
},
|
|
109
|
+
"phone": [
|
|
110
|
+
{
|
|
111
|
+
"number": "+33 (9)4 11 94 93 17",
|
|
112
|
+
"primary": true
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"relationships": {
|
|
116
|
+
"groups": {
|
|
117
|
+
"data": [
|
|
118
|
+
{
|
|
119
|
+
"_id": "group_id_work",
|
|
120
|
+
"_type": "io.cozy.contacts.groups"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"_id": "083bf60c-287b-45e9-b3d6-0e64ee2eee2d",
|
|
128
|
+
"_type": "io.cozy.contacts",
|
|
129
|
+
"address": [
|
|
130
|
+
{
|
|
131
|
+
"city": "Hobart",
|
|
132
|
+
"country": "Liechtenstein",
|
|
133
|
+
"postcode": "42424",
|
|
134
|
+
"primary": true,
|
|
135
|
+
"street": "47 Blakeley Street"
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"birthday": "1974-12-13",
|
|
139
|
+
"email": [
|
|
140
|
+
{
|
|
141
|
+
"address": "rosanne.lenihan@corerobotics.info",
|
|
142
|
+
"primary": true
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"name": {
|
|
146
|
+
"familyName": "Lenihan",
|
|
147
|
+
"givenName": "Rosanne"
|
|
148
|
+
},
|
|
149
|
+
"phone": [
|
|
150
|
+
{
|
|
151
|
+
"number": "+33 (3)3 86 10 59 74",
|
|
152
|
+
"primary": true
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"_id": "0c647009-9785-4d09-b18a-0f22d3bff233",
|
|
158
|
+
"_type": "io.cozy.contacts",
|
|
159
|
+
"address": [
|
|
160
|
+
{
|
|
161
|
+
"city": "Pheonix",
|
|
162
|
+
"country": "French Southern Territories",
|
|
163
|
+
"postcode": "60317",
|
|
164
|
+
"primary": true,
|
|
165
|
+
"street": "89 Haredale Road"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"birthday": "1950-04-28",
|
|
169
|
+
"email": [
|
|
170
|
+
{
|
|
171
|
+
"address": "mitch.woodrum@opticast.org",
|
|
172
|
+
"primary": true
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"address": "liza.bryd@multilingua.club",
|
|
176
|
+
"primary": false
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"metadata": {
|
|
180
|
+
"version": 1
|
|
181
|
+
},
|
|
182
|
+
"name": {
|
|
183
|
+
"familyName": "Woodrum",
|
|
184
|
+
"givenName": "Mitch"
|
|
185
|
+
},
|
|
186
|
+
"phone": [
|
|
187
|
+
{
|
|
188
|
+
"number": "+33 (9)7 70 95 95 36",
|
|
189
|
+
"primary": true
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"number": "+33 (2)0 18 10 93 80",
|
|
193
|
+
"primary": false
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"relationships": {
|
|
197
|
+
"groups": {
|
|
198
|
+
"data": [
|
|
199
|
+
{
|
|
200
|
+
"_id": "group_id_family",
|
|
201
|
+
"_type": "io.cozy.contacts.groups"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"_id": "0ea42f4a-28f1-432e-934a-68f9c50fe38e",
|
|
209
|
+
"_type": "io.cozy.contacts",
|
|
210
|
+
"address": [
|
|
211
|
+
{
|
|
212
|
+
"city": "Youngstown",
|
|
213
|
+
"country": "Chad",
|
|
214
|
+
"postcode": "38300",
|
|
215
|
+
"primary": true,
|
|
216
|
+
"street": "78 Bushey Crescent"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"birthday": "1959-04-20",
|
|
220
|
+
"email": [
|
|
221
|
+
{
|
|
222
|
+
"address": "haydee.tindel@galcom.com",
|
|
223
|
+
"primary": true
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"name": {
|
|
227
|
+
"familyName": "Tindel",
|
|
228
|
+
"givenName": "Haydee"
|
|
229
|
+
},
|
|
230
|
+
"phone": [
|
|
231
|
+
{
|
|
232
|
+
"number": "+33 (8)7 11 08 64 48",
|
|
233
|
+
"primary": true
|
|
234
|
+
}
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"_id": "0ffe83ef-10cf-4be6-bf6c-a189f907e65a",
|
|
239
|
+
"_type": "io.cozy.contacts",
|
|
240
|
+
"address": [
|
|
241
|
+
{
|
|
242
|
+
"city": "Halifax",
|
|
243
|
+
"country": "New Caledonia",
|
|
244
|
+
"postcode": "87206",
|
|
245
|
+
"primary": true,
|
|
246
|
+
"street": "5 Mercer Street"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"birthday": "1956-06-06",
|
|
250
|
+
"email": [
|
|
251
|
+
{
|
|
252
|
+
"address": "shea.brier@logico.club",
|
|
253
|
+
"primary": true
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"metadata": {
|
|
257
|
+
"version": 1
|
|
258
|
+
},
|
|
259
|
+
"name": {
|
|
260
|
+
"familyName": "Brier",
|
|
261
|
+
"givenName": "Shea"
|
|
262
|
+
},
|
|
263
|
+
"phone": [
|
|
264
|
+
{
|
|
265
|
+
"number": "+33 (0)8 43 39 94 21",
|
|
266
|
+
"primary": true
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"relationships": {
|
|
270
|
+
"groups": {
|
|
271
|
+
"data": [
|
|
272
|
+
{
|
|
273
|
+
"_id": "group_id_work",
|
|
274
|
+
"_type": "io.cozy.contacts.groups"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"_id": "155e4c33-f6ad-45ee-816d-5eb0874225f2",
|
|
282
|
+
"_type": "io.cozy.contacts",
|
|
283
|
+
"address": [
|
|
284
|
+
{
|
|
285
|
+
"city": "Greenville",
|
|
286
|
+
"country": "Guadeloupe",
|
|
287
|
+
"postcode": "59663",
|
|
288
|
+
"primary": true,
|
|
289
|
+
"street": "87 Pitman Street"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"email": [
|
|
293
|
+
{
|
|
294
|
+
"address": "neida.backer@hivemind.biz",
|
|
295
|
+
"primary": true
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"metadata": {
|
|
299
|
+
"version": 1
|
|
300
|
+
},
|
|
301
|
+
"name": {
|
|
302
|
+
"givenName": "Hivemind"
|
|
303
|
+
},
|
|
304
|
+
"phone": [
|
|
305
|
+
{
|
|
306
|
+
"number": "+33 (1)6 74 60 61 23",
|
|
307
|
+
"primary": true
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"relationships": {
|
|
311
|
+
"groups": {
|
|
312
|
+
"data": [
|
|
313
|
+
{
|
|
314
|
+
"_id": "group_id_work",
|
|
315
|
+
"_type": "io.cozy.contacts.groups"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"_id": "group_id_family",
|
|
319
|
+
"_type": "io.cozy.contacts.groups"
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"_id": "1816abd3-d371-482c-ae9d-33385fb8780d",
|
|
327
|
+
"_type": "io.cozy.contacts",
|
|
328
|
+
"address": [
|
|
329
|
+
{
|
|
330
|
+
"city": "Northampton",
|
|
331
|
+
"country": "Montenegro",
|
|
332
|
+
"postcode": "65005",
|
|
333
|
+
"primary": true,
|
|
334
|
+
"street": "96 Hinton Road"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"email": [
|
|
338
|
+
{
|
|
339
|
+
"address": "edward.carter@tomiatech.com",
|
|
340
|
+
"primary": true
|
|
341
|
+
}
|
|
342
|
+
],
|
|
343
|
+
"metadata": {
|
|
344
|
+
"version": 1
|
|
345
|
+
},
|
|
346
|
+
"name": {
|
|
347
|
+
"givenName": "Tomiatech"
|
|
348
|
+
},
|
|
349
|
+
"phone": [
|
|
350
|
+
{
|
|
351
|
+
"number": "+33 (4)8 48 86 77 17",
|
|
352
|
+
"primary": true
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
"relationships": {
|
|
356
|
+
"groups": {
|
|
357
|
+
"data": [
|
|
358
|
+
{
|
|
359
|
+
"_id": "group_id_work",
|
|
360
|
+
"_type": "io.cozy.contacts.groups"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"_id": "group_id_family",
|
|
364
|
+
"_type": "io.cozy.contacts.groups"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"_id": "1be291a9-0836-4c94-876b-5269fa901ed4",
|
|
372
|
+
"_type": "io.cozy.contacts",
|
|
373
|
+
"address": [
|
|
374
|
+
{
|
|
375
|
+
"city": "Northampton",
|
|
376
|
+
"country": "Tokelau",
|
|
377
|
+
"postcode": "56285",
|
|
378
|
+
"primary": true,
|
|
379
|
+
"street": "14 Faraday Street"
|
|
380
|
+
}
|
|
381
|
+
],
|
|
382
|
+
"birthday": "1955-09-21",
|
|
383
|
+
"email": [
|
|
384
|
+
{
|
|
385
|
+
"address": "katelin.bourquin@unilogic.biz",
|
|
386
|
+
"primary": true
|
|
387
|
+
}
|
|
388
|
+
],
|
|
389
|
+
"metadata": {
|
|
390
|
+
"version": 1
|
|
391
|
+
},
|
|
392
|
+
"name": {
|
|
393
|
+
"familyName": "Bourquin",
|
|
394
|
+
"givenName": "Katelin"
|
|
395
|
+
},
|
|
396
|
+
"phone": [
|
|
397
|
+
{
|
|
398
|
+
"number": "+33 (9)3 52 45 98 35",
|
|
399
|
+
"primary": true
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"relationships": {
|
|
403
|
+
"groups": {
|
|
404
|
+
"data": [
|
|
405
|
+
{
|
|
406
|
+
"_id": "group_id_work",
|
|
407
|
+
"_type": "io.cozy.contacts.groups"
|
|
408
|
+
}
|
|
409
|
+
]
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"_id": "23d3d724-d869-4def-841f-c85b499aa6a6",
|
|
415
|
+
"_type": "io.cozy.contacts",
|
|
416
|
+
"address": [
|
|
417
|
+
{
|
|
418
|
+
"city": "Waterbury",
|
|
419
|
+
"country": "Iceland",
|
|
420
|
+
"postcode": "69639",
|
|
421
|
+
"primary": true,
|
|
422
|
+
"street": "65 Faraday Street"
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"birthday": "1957-02-23",
|
|
426
|
+
"email": [
|
|
427
|
+
{
|
|
428
|
+
"address": "cory.verde@peersys.xyz",
|
|
429
|
+
"primary": true
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
"metadata": {
|
|
433
|
+
"version": 1
|
|
434
|
+
},
|
|
435
|
+
"name": {
|
|
436
|
+
"familyName": "Verde",
|
|
437
|
+
"givenName": "Cory"
|
|
438
|
+
},
|
|
439
|
+
"phone": [
|
|
440
|
+
{
|
|
441
|
+
"number": "+33 (2)3 15 97 52 48",
|
|
442
|
+
"primary": true
|
|
443
|
+
}
|
|
444
|
+
],
|
|
445
|
+
"relationships": {
|
|
446
|
+
"groups": {
|
|
447
|
+
"data": [
|
|
448
|
+
{
|
|
449
|
+
"_id": "group_id_work",
|
|
450
|
+
"_type": "io.cozy.contacts.groups"
|
|
451
|
+
}
|
|
452
|
+
]
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"_id": "24e83428-df51-46fd-97ed-1f7d94064548",
|
|
458
|
+
"_type": "io.cozy.contacts",
|
|
459
|
+
"address": [
|
|
460
|
+
{
|
|
461
|
+
"city": "Bangor",
|
|
462
|
+
"country": "Lesotho",
|
|
463
|
+
"postcode": "15002",
|
|
464
|
+
"primary": true,
|
|
465
|
+
"street": "93 Alexander Avenue"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"birthday": "1952-12-29",
|
|
469
|
+
"email": [
|
|
470
|
+
{
|
|
471
|
+
"address": "aiden.bryd@citisys.info",
|
|
472
|
+
"primary": true
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"metadata": {
|
|
476
|
+
"version": 1
|
|
477
|
+
},
|
|
478
|
+
"name": {
|
|
479
|
+
"familyName": "Bryd",
|
|
480
|
+
"givenName": "Aiden"
|
|
481
|
+
},
|
|
482
|
+
"phone": [
|
|
483
|
+
{
|
|
484
|
+
"number": "+33 (1)4 80 11 59 28",
|
|
485
|
+
"primary": true
|
|
486
|
+
}
|
|
487
|
+
],
|
|
488
|
+
"relationships": {
|
|
489
|
+
"groups": {
|
|
490
|
+
"data": [
|
|
491
|
+
{
|
|
492
|
+
"_id": "group_id_work",
|
|
493
|
+
"_type": "io.cozy.contacts.groups"
|
|
494
|
+
}
|
|
495
|
+
]
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"_id": "289a814a-0d7d-4c6d-aa6c-be8bd28456dd",
|
|
501
|
+
"_type": "io.cozy.contacts",
|
|
502
|
+
"address": [
|
|
503
|
+
{
|
|
504
|
+
"city": "Charleston",
|
|
505
|
+
"country": "South Georgia and the South Sandwich Islands",
|
|
506
|
+
"postcode": "79336",
|
|
507
|
+
"primary": true,
|
|
508
|
+
"street": "72 Walford Way"
|
|
509
|
+
}
|
|
510
|
+
],
|
|
511
|
+
"birthday": "1988-04-29",
|
|
512
|
+
"email": [
|
|
513
|
+
{
|
|
514
|
+
"address": "maisha.kilmer@nitrosystems.eu",
|
|
515
|
+
"primary": true
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"metadata": {
|
|
519
|
+
"version": 1
|
|
520
|
+
},
|
|
521
|
+
"name": {
|
|
522
|
+
"familyName": "Kilmer",
|
|
523
|
+
"givenName": "Maisha"
|
|
524
|
+
},
|
|
525
|
+
"phone": [
|
|
526
|
+
{
|
|
527
|
+
"number": "+33 (0)5 89 50 15 43",
|
|
528
|
+
"primary": true
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"relationships": {
|
|
532
|
+
"groups": {
|
|
533
|
+
"data": [
|
|
534
|
+
{
|
|
535
|
+
"_id": "group_id_work",
|
|
536
|
+
"_type": "io.cozy.contacts.groups"
|
|
537
|
+
}
|
|
538
|
+
]
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"_id": "29fdda84-d786-4890-9fd6-842fed02d193",
|
|
544
|
+
"_type": "io.cozy.contacts",
|
|
545
|
+
"address": [
|
|
546
|
+
{
|
|
547
|
+
"city": "Melbourne",
|
|
548
|
+
"country": "French Polynesia",
|
|
549
|
+
"postcode": "47415",
|
|
550
|
+
"primary": true,
|
|
551
|
+
"street": "74 Orchard Road"
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"birthday": "1986-10-10",
|
|
555
|
+
"email": [
|
|
556
|
+
{
|
|
557
|
+
"address": "danny.stine@celmax.club",
|
|
558
|
+
"primary": true
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"name": {
|
|
562
|
+
"familyName": "Stine",
|
|
563
|
+
"givenName": "Danny"
|
|
564
|
+
},
|
|
565
|
+
"phone": [
|
|
566
|
+
{
|
|
567
|
+
"number": "+33 (3)8 94 64 96 17",
|
|
568
|
+
"primary": true
|
|
569
|
+
}
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"_id": "2a75a0e5-cc4b-4fdc-be4d-2ac24a802368",
|
|
574
|
+
"_type": "io.cozy.contacts",
|
|
575
|
+
"address": [
|
|
576
|
+
{
|
|
577
|
+
"city": "Charleston",
|
|
578
|
+
"country": "Madagascar",
|
|
579
|
+
"postcode": "18247",
|
|
580
|
+
"primary": true,
|
|
581
|
+
"street": "67 Hunt Street"
|
|
582
|
+
}
|
|
583
|
+
],
|
|
584
|
+
"email": [
|
|
585
|
+
{
|
|
586
|
+
"address": "ivan.bryd@strategyline.eu",
|
|
587
|
+
"primary": true
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"metadata": {
|
|
591
|
+
"version": 1
|
|
592
|
+
},
|
|
593
|
+
"name": {
|
|
594
|
+
"givenName": "StrategyLine"
|
|
595
|
+
},
|
|
596
|
+
"phone": [
|
|
597
|
+
{
|
|
598
|
+
"number": "+33 (3)8 15 32 28 30",
|
|
599
|
+
"primary": true
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"relationships": {
|
|
603
|
+
"groups": {
|
|
604
|
+
"data": [
|
|
605
|
+
{
|
|
606
|
+
"_id": "group_id_work",
|
|
607
|
+
"_type": "io.cozy.contacts.groups"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"_id": "group_id_family",
|
|
611
|
+
"_type": "io.cozy.contacts.groups"
|
|
612
|
+
}
|
|
613
|
+
]
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"_id": "3043b044-072b-464f-b301-46df3ae99aee",
|
|
619
|
+
"_type": "io.cozy.contacts",
|
|
620
|
+
"address": [
|
|
621
|
+
{
|
|
622
|
+
"city": "Albany",
|
|
623
|
+
"country": "Niger",
|
|
624
|
+
"postcode": "60266",
|
|
625
|
+
"primary": true,
|
|
626
|
+
"street": "92 Canal Street"
|
|
627
|
+
}
|
|
628
|
+
],
|
|
629
|
+
"birthday": "1974-05-17",
|
|
630
|
+
"email": [
|
|
631
|
+
{
|
|
632
|
+
"address": "raylene.bourne@tecomix.name",
|
|
633
|
+
"primary": true
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"metadata": {
|
|
637
|
+
"version": 1
|
|
638
|
+
},
|
|
639
|
+
"name": {
|
|
640
|
+
"familyName": "Bourne",
|
|
641
|
+
"givenName": "Raylene"
|
|
642
|
+
},
|
|
643
|
+
"phone": [
|
|
644
|
+
{
|
|
645
|
+
"number": "+33 (3)5 71 20 15 93",
|
|
646
|
+
"primary": true
|
|
647
|
+
}
|
|
648
|
+
],
|
|
649
|
+
"relationships": {
|
|
650
|
+
"groups": {
|
|
651
|
+
"data": [
|
|
652
|
+
{
|
|
653
|
+
"_id": "group_id_work",
|
|
654
|
+
"_type": "io.cozy.contacts.groups"
|
|
655
|
+
}
|
|
656
|
+
]
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"_id": "307c4e16-70b8-4328-af1c-1d762f788e16",
|
|
662
|
+
"_type": "io.cozy.contacts",
|
|
663
|
+
"address": [
|
|
664
|
+
{
|
|
665
|
+
"city": "Tacoma",
|
|
666
|
+
"country": "Bermuda",
|
|
667
|
+
"postcode": "05692",
|
|
668
|
+
"primary": true,
|
|
669
|
+
"street": "69 Elm Street"
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
"birthday": "1994-02-21",
|
|
673
|
+
"email": [
|
|
674
|
+
{
|
|
675
|
+
"address": "max.higgins@maxcast.com",
|
|
676
|
+
"primary": true
|
|
677
|
+
}
|
|
678
|
+
],
|
|
679
|
+
"name": {
|
|
680
|
+
"familyName": "Higgins",
|
|
681
|
+
"givenName": "Max"
|
|
682
|
+
},
|
|
683
|
+
"phone": [
|
|
684
|
+
{
|
|
685
|
+
"number": "+33 (4)5 39 48 09 09",
|
|
686
|
+
"primary": true
|
|
687
|
+
}
|
|
688
|
+
]
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"_id": "309067e3-81a5-45a4-8125-179185dc37da",
|
|
692
|
+
"_type": "io.cozy.contacts",
|
|
693
|
+
"address": [
|
|
694
|
+
{
|
|
695
|
+
"city": "Northampton",
|
|
696
|
+
"country": "India",
|
|
697
|
+
"postcode": "39596",
|
|
698
|
+
"primary": true,
|
|
699
|
+
"street": "49 Blakeley Street"
|
|
700
|
+
}
|
|
701
|
+
],
|
|
702
|
+
"birthday": "1976-02-18",
|
|
703
|
+
"email": [
|
|
704
|
+
{
|
|
705
|
+
"address": "raymond.muldoon@thermolock.info",
|
|
706
|
+
"primary": true
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"address": "jason.hundt@citisys.name",
|
|
710
|
+
"primary": false
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"metadata": {
|
|
714
|
+
"version": 1
|
|
715
|
+
},
|
|
716
|
+
"name": {
|
|
717
|
+
"familyName": "Muldoon",
|
|
718
|
+
"givenName": "Raymond"
|
|
719
|
+
},
|
|
720
|
+
"phone": [
|
|
721
|
+
{
|
|
722
|
+
"number": "+33 (7)2 68 87 05 72",
|
|
723
|
+
"primary": true
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"number": "+33 (4)5 23 05 63 86",
|
|
727
|
+
"primary": false
|
|
728
|
+
}
|
|
729
|
+
],
|
|
730
|
+
"relationships": {
|
|
731
|
+
"groups": {
|
|
732
|
+
"data": [
|
|
733
|
+
{
|
|
734
|
+
"_id": "group_id_family",
|
|
735
|
+
"_type": "io.cozy.contacts.groups"
|
|
736
|
+
}
|
|
737
|
+
]
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"_id": "328b1bb6-8234-4efd-b18f-1aafd58dc83e",
|
|
743
|
+
"_type": "io.cozy.contacts",
|
|
744
|
+
"address": [
|
|
745
|
+
{
|
|
746
|
+
"city": "Walkerville",
|
|
747
|
+
"country": "Nigeria",
|
|
748
|
+
"postcode": "34344",
|
|
749
|
+
"primary": true,
|
|
750
|
+
"street": "92 Berkeley Street"
|
|
751
|
+
}
|
|
752
|
+
],
|
|
753
|
+
"birthday": "1994-02-23",
|
|
754
|
+
"email": [
|
|
755
|
+
{
|
|
756
|
+
"address": "rosanne.stine@infracom.edu",
|
|
757
|
+
"primary": true
|
|
758
|
+
}
|
|
759
|
+
],
|
|
760
|
+
"name": {
|
|
761
|
+
"familyName": "Stine",
|
|
762
|
+
"givenName": "Rosanne"
|
|
763
|
+
},
|
|
764
|
+
"phone": [
|
|
765
|
+
{
|
|
766
|
+
"number": "+33 (9)0 11 98 31 70",
|
|
767
|
+
"primary": true
|
|
768
|
+
}
|
|
769
|
+
]
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"_id": "366f3eec-aaa0-4c82-9f27-80ad305ecec8",
|
|
773
|
+
"_type": "io.cozy.contacts",
|
|
774
|
+
"address": [
|
|
775
|
+
{
|
|
776
|
+
"city": "Oakland",
|
|
777
|
+
"country": "China",
|
|
778
|
+
"postcode": "61059",
|
|
779
|
+
"primary": true,
|
|
780
|
+
"street": "85 Winston Road"
|
|
781
|
+
}
|
|
782
|
+
],
|
|
783
|
+
"birthday": "1991-12-23",
|
|
784
|
+
"email": [
|
|
785
|
+
{
|
|
786
|
+
"address": "andy.keesee@fortyfour.mobi",
|
|
787
|
+
"primary": true
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"name": {
|
|
791
|
+
"familyName": "Keesee",
|
|
792
|
+
"givenName": "Andy"
|
|
793
|
+
},
|
|
794
|
+
"phone": [
|
|
795
|
+
{
|
|
796
|
+
"number": "+33 (0)5 64 21 84 37",
|
|
797
|
+
"primary": true
|
|
798
|
+
}
|
|
799
|
+
]
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"_id": "398e8336-de18-43c8-8b5a-86ab72005c41",
|
|
803
|
+
"_type": "io.cozy.contacts",
|
|
804
|
+
"address": [
|
|
805
|
+
{
|
|
806
|
+
"city": "Frankston",
|
|
807
|
+
"country": "Micronesia, Federated States of",
|
|
808
|
+
"postcode": "15368",
|
|
809
|
+
"primary": true,
|
|
810
|
+
"street": "9 Robinson Street"
|
|
811
|
+
}
|
|
812
|
+
],
|
|
813
|
+
"birthday": "1983-09-13",
|
|
814
|
+
"email": [
|
|
815
|
+
{
|
|
816
|
+
"address": "kirstie.mercer@tomiatech.eu",
|
|
817
|
+
"primary": true
|
|
818
|
+
}
|
|
819
|
+
],
|
|
820
|
+
"name": {
|
|
821
|
+
"familyName": "Mercer",
|
|
822
|
+
"givenName": "Kirstie"
|
|
823
|
+
},
|
|
824
|
+
"phone": [
|
|
825
|
+
{
|
|
826
|
+
"number": "+33 (6)8 99 21 10 92",
|
|
827
|
+
"primary": true
|
|
828
|
+
}
|
|
829
|
+
]
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"_id": "3e540ae7-4605-4f05-82c9-8cb901a0c34d",
|
|
833
|
+
"_type": "io.cozy.contacts",
|
|
834
|
+
"address": [
|
|
835
|
+
{
|
|
836
|
+
"city": "Norfolk",
|
|
837
|
+
"country": "Peru",
|
|
838
|
+
"postcode": "27382",
|
|
839
|
+
"primary": true,
|
|
840
|
+
"street": "32 Foster Walk"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"birthday": "1987-04-29",
|
|
844
|
+
"email": [
|
|
845
|
+
{
|
|
846
|
+
"address": "michelle.jensen@pancast.club",
|
|
847
|
+
"primary": true
|
|
848
|
+
}
|
|
849
|
+
],
|
|
850
|
+
"name": {
|
|
851
|
+
"familyName": "Jensen",
|
|
852
|
+
"givenName": "Michelle"
|
|
853
|
+
},
|
|
854
|
+
"phone": [
|
|
855
|
+
{
|
|
856
|
+
"number": "+33 (9)4 55 02 64 05",
|
|
857
|
+
"primary": true
|
|
858
|
+
}
|
|
859
|
+
]
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"_id": "3f6007f9-9284-4bfd-9350-1cbf294bd39b",
|
|
863
|
+
"_type": "io.cozy.contacts",
|
|
864
|
+
"address": [
|
|
865
|
+
{
|
|
866
|
+
"city": "Greenville",
|
|
867
|
+
"country": "Austria",
|
|
868
|
+
"postcode": "32426",
|
|
869
|
+
"primary": true,
|
|
870
|
+
"street": "77 Fairmont Avenue"
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"birthday": "1981-04-29",
|
|
874
|
+
"metadata": {
|
|
875
|
+
"version": 1
|
|
876
|
+
},
|
|
877
|
+
"name": {
|
|
878
|
+
"familyName": "Okainmayle",
|
|
879
|
+
"givenName": "Jay"
|
|
880
|
+
},
|
|
881
|
+
"phone": [
|
|
882
|
+
{
|
|
883
|
+
"number": "+33 (3)0 31 26 10 64",
|
|
884
|
+
"primary": true
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"relationships": {
|
|
888
|
+
"groups": {
|
|
889
|
+
"data": []
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"_id": "3fe82c80-9da3-4a42-bab5-8274df1316e6",
|
|
895
|
+
"_type": "io.cozy.contacts",
|
|
896
|
+
"address": [
|
|
897
|
+
{
|
|
898
|
+
"city": "Rochester",
|
|
899
|
+
"country": "Uganda",
|
|
900
|
+
"postcode": "27943",
|
|
901
|
+
"primary": true,
|
|
902
|
+
"street": "31 Maple Street"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"birthday": "1983-05-03",
|
|
906
|
+
"email": [
|
|
907
|
+
{
|
|
908
|
+
"address": "chloe.leath@iridimax.org",
|
|
909
|
+
"primary": true
|
|
910
|
+
}
|
|
911
|
+
],
|
|
912
|
+
"metadata": {
|
|
913
|
+
"version": 1
|
|
914
|
+
},
|
|
915
|
+
"name": {
|
|
916
|
+
"familyName": "Leath",
|
|
917
|
+
"givenName": "Chloe"
|
|
918
|
+
},
|
|
919
|
+
"phone": [
|
|
920
|
+
{
|
|
921
|
+
"number": "+33 (3)7 91 15 42 39",
|
|
922
|
+
"primary": true
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"relationships": {
|
|
926
|
+
"groups": {
|
|
927
|
+
"data": [
|
|
928
|
+
{
|
|
929
|
+
"_id": "group_id_work",
|
|
930
|
+
"_type": "io.cozy.contacts.groups"
|
|
931
|
+
}
|
|
932
|
+
]
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"_id": "42a330ca-a30c-489f-8939-4c1b137f84e9",
|
|
938
|
+
"_type": "io.cozy.contacts",
|
|
939
|
+
"address": [
|
|
940
|
+
{
|
|
941
|
+
"city": "Nottingham",
|
|
942
|
+
"country": "Saint Pierre and Miquelon",
|
|
943
|
+
"postcode": "16585",
|
|
944
|
+
"primary": true,
|
|
945
|
+
"street": "21 Berkeley Street"
|
|
946
|
+
}
|
|
947
|
+
],
|
|
948
|
+
"birthday": "1992-11-15",
|
|
949
|
+
"email": [
|
|
950
|
+
{
|
|
951
|
+
"address": "eleanore.hottle@tomiatech.edu",
|
|
952
|
+
"primary": true
|
|
953
|
+
}
|
|
954
|
+
],
|
|
955
|
+
"name": {
|
|
956
|
+
"familyName": "Hottle",
|
|
957
|
+
"givenName": "Eleanore"
|
|
958
|
+
},
|
|
959
|
+
"phone": [
|
|
960
|
+
{
|
|
961
|
+
"number": "+33 (3)6 44 88 19 04",
|
|
962
|
+
"primary": true
|
|
963
|
+
}
|
|
964
|
+
]
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"_id": "44bae7a3-04ed-4cc3-80f8-e15fc9b2399d",
|
|
968
|
+
"_type": "io.cozy.contacts",
|
|
969
|
+
"address": [
|
|
970
|
+
{
|
|
971
|
+
"city": "Redmond",
|
|
972
|
+
"country": "Bosnia and Herzegovina",
|
|
973
|
+
"postcode": "87880",
|
|
974
|
+
"primary": true,
|
|
975
|
+
"street": "24 Seaside Drive"
|
|
976
|
+
}
|
|
977
|
+
],
|
|
978
|
+
"birthday": "1977-08-09",
|
|
979
|
+
"email": [
|
|
980
|
+
{
|
|
981
|
+
"address": "kurt.rohloff@corexts.org",
|
|
982
|
+
"primary": true
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"metadata": {
|
|
986
|
+
"version": 1
|
|
987
|
+
},
|
|
988
|
+
"name": {
|
|
989
|
+
"familyName": "Rohloff",
|
|
990
|
+
"givenName": "Kurt"
|
|
991
|
+
},
|
|
992
|
+
"phone": [
|
|
993
|
+
{
|
|
994
|
+
"number": "+33 (9)8 32 78 45 41",
|
|
995
|
+
"primary": true
|
|
996
|
+
}
|
|
997
|
+
],
|
|
998
|
+
"relationships": {
|
|
999
|
+
"groups": {
|
|
1000
|
+
"data": [
|
|
1001
|
+
{
|
|
1002
|
+
"_id": "group_id_work",
|
|
1003
|
+
"_type": "io.cozy.contacts.groups"
|
|
1004
|
+
}
|
|
1005
|
+
]
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"_id": "4bb1f622-5383-449e-a2d2-fc9e14006903",
|
|
1011
|
+
"_type": "io.cozy.contacts",
|
|
1012
|
+
"address": [
|
|
1013
|
+
{
|
|
1014
|
+
"city": "Sacramento",
|
|
1015
|
+
"country": "Angola",
|
|
1016
|
+
"postcode": "12833",
|
|
1017
|
+
"primary": true,
|
|
1018
|
+
"street": "31 Faraday Street"
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"birthday": "1998-12-10",
|
|
1022
|
+
"email": [
|
|
1023
|
+
{
|
|
1024
|
+
"address": "travis.paquette@zatheon.co",
|
|
1025
|
+
"primary": true
|
|
1026
|
+
}
|
|
1027
|
+
],
|
|
1028
|
+
"name": {
|
|
1029
|
+
"familyName": "Paquette",
|
|
1030
|
+
"givenName": "Travis"
|
|
1031
|
+
},
|
|
1032
|
+
"phone": [
|
|
1033
|
+
{
|
|
1034
|
+
"number": "+33 (2)7 21 10 25 88",
|
|
1035
|
+
"primary": true
|
|
1036
|
+
}
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"_id": "507fcc3d-1423-46da-b5f9-8fbcfd3f3fe4",
|
|
1041
|
+
"_type": "io.cozy.contacts",
|
|
1042
|
+
"address": [
|
|
1043
|
+
{
|
|
1044
|
+
"city": "Christchurch",
|
|
1045
|
+
"country": "Netherlands",
|
|
1046
|
+
"postcode": "21910",
|
|
1047
|
+
"primary": true,
|
|
1048
|
+
"street": "46 Walford Way"
|
|
1049
|
+
}
|
|
1050
|
+
],
|
|
1051
|
+
"birthday": "1978-11-03",
|
|
1052
|
+
"email": [
|
|
1053
|
+
{
|
|
1054
|
+
"address": "lorelei.cadena@dalserve.club",
|
|
1055
|
+
"primary": true
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"address": "juliana.oldman@thermatek.name",
|
|
1059
|
+
"primary": false
|
|
1060
|
+
}
|
|
1061
|
+
],
|
|
1062
|
+
"metadata": {
|
|
1063
|
+
"version": 1
|
|
1064
|
+
},
|
|
1065
|
+
"name": {
|
|
1066
|
+
"familyName": "Cadena",
|
|
1067
|
+
"givenName": "Lorelei"
|
|
1068
|
+
},
|
|
1069
|
+
"phone": [
|
|
1070
|
+
{
|
|
1071
|
+
"number": "+33 (4)4 72 27 49 64",
|
|
1072
|
+
"primary": true
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"number": "+33 (0)3 15 05 94 03",
|
|
1076
|
+
"primary": false
|
|
1077
|
+
}
|
|
1078
|
+
],
|
|
1079
|
+
"relationships": {
|
|
1080
|
+
"groups": {
|
|
1081
|
+
"data": [
|
|
1082
|
+
{
|
|
1083
|
+
"_id": "group_id_family",
|
|
1084
|
+
"_type": "io.cozy.contacts.groups"
|
|
1085
|
+
}
|
|
1086
|
+
]
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"_id": "53c75e29-5c9b-4c4f-b802-e4a152551b23",
|
|
1092
|
+
"_type": "io.cozy.contacts",
|
|
1093
|
+
"address": [
|
|
1094
|
+
{
|
|
1095
|
+
"city": "Southampton",
|
|
1096
|
+
"country": "Afghanistan",
|
|
1097
|
+
"postcode": "72082",
|
|
1098
|
+
"primary": true,
|
|
1099
|
+
"street": "6 Prospect Place"
|
|
1100
|
+
}
|
|
1101
|
+
],
|
|
1102
|
+
"birthday": "1976-03-29",
|
|
1103
|
+
"email": [
|
|
1104
|
+
{
|
|
1105
|
+
"address": "jay.padeutell@noemail.net",
|
|
1106
|
+
"primary": true
|
|
1107
|
+
}
|
|
1108
|
+
],
|
|
1109
|
+
"metadata": {
|
|
1110
|
+
"version": 1
|
|
1111
|
+
},
|
|
1112
|
+
"name": {
|
|
1113
|
+
"familyName": "Padeutell",
|
|
1114
|
+
"givenName": "Jay"
|
|
1115
|
+
},
|
|
1116
|
+
"relationships": {
|
|
1117
|
+
"groups": {
|
|
1118
|
+
"data": []
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"_id": "5c21e9fa-18a5-4999-b704-59b902db8542",
|
|
1124
|
+
"_type": "io.cozy.contacts",
|
|
1125
|
+
"address": [
|
|
1126
|
+
{
|
|
1127
|
+
"city": "Stanford",
|
|
1128
|
+
"country": "Isle of Man",
|
|
1129
|
+
"postcode": "26162",
|
|
1130
|
+
"primary": true,
|
|
1131
|
+
"street": "83 Canal Street"
|
|
1132
|
+
}
|
|
1133
|
+
],
|
|
1134
|
+
"birthday": "1996-08-03",
|
|
1135
|
+
"email": [
|
|
1136
|
+
{
|
|
1137
|
+
"address": "travis.sprowl@vtgrafix.name",
|
|
1138
|
+
"primary": true
|
|
1139
|
+
}
|
|
1140
|
+
],
|
|
1141
|
+
"metadata": {
|
|
1142
|
+
"version": 1
|
|
1143
|
+
},
|
|
1144
|
+
"name": {
|
|
1145
|
+
"familyName": "Sprowl",
|
|
1146
|
+
"givenName": "Travis"
|
|
1147
|
+
},
|
|
1148
|
+
"phone": [
|
|
1149
|
+
{
|
|
1150
|
+
"number": "+33 (8)9 22 15 20 68",
|
|
1151
|
+
"primary": true
|
|
1152
|
+
}
|
|
1153
|
+
],
|
|
1154
|
+
"relationships": {
|
|
1155
|
+
"groups": {
|
|
1156
|
+
"data": [
|
|
1157
|
+
{
|
|
1158
|
+
"_id": "group_id_work",
|
|
1159
|
+
"_type": "io.cozy.contacts.groups"
|
|
1160
|
+
}
|
|
1161
|
+
]
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"_id": "627ba975-1314-4813-8366-cea7ac4734bf",
|
|
1167
|
+
"_type": "io.cozy.contacts",
|
|
1168
|
+
"address": [
|
|
1169
|
+
{
|
|
1170
|
+
"city": "Norfolk",
|
|
1171
|
+
"country": "Trinidad and Tobago",
|
|
1172
|
+
"postcode": "50716",
|
|
1173
|
+
"primary": true,
|
|
1174
|
+
"street": "14 Maple Street"
|
|
1175
|
+
}
|
|
1176
|
+
],
|
|
1177
|
+
"birthday": "1960-11-17",
|
|
1178
|
+
"email": [
|
|
1179
|
+
{
|
|
1180
|
+
"address": "jetta.neal@multiserv.net",
|
|
1181
|
+
"primary": true
|
|
1182
|
+
}
|
|
1183
|
+
],
|
|
1184
|
+
"name": {
|
|
1185
|
+
"familyName": "Neal",
|
|
1186
|
+
"givenName": "Jetta"
|
|
1187
|
+
},
|
|
1188
|
+
"phone": [
|
|
1189
|
+
{
|
|
1190
|
+
"number": "+33 (2)1 88 04 40 79",
|
|
1191
|
+
"primary": true
|
|
1192
|
+
}
|
|
1193
|
+
]
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"_id": "63d70d1a-838b-4eb4-b9ca-c3ea15937d51",
|
|
1197
|
+
"_type": "io.cozy.contacts",
|
|
1198
|
+
"address": [
|
|
1199
|
+
{
|
|
1200
|
+
"city": "Charleston",
|
|
1201
|
+
"country": "Turks and Caicos Islands",
|
|
1202
|
+
"postcode": "74804",
|
|
1203
|
+
"primary": true,
|
|
1204
|
+
"street": "50 Hunt Street"
|
|
1205
|
+
}
|
|
1206
|
+
],
|
|
1207
|
+
"email": [
|
|
1208
|
+
{
|
|
1209
|
+
"address": "selma.keesee@westgate.net",
|
|
1210
|
+
"primary": true
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"metadata": {
|
|
1214
|
+
"version": 1
|
|
1215
|
+
},
|
|
1216
|
+
"name": {
|
|
1217
|
+
"givenName": "WestGate"
|
|
1218
|
+
},
|
|
1219
|
+
"phone": [
|
|
1220
|
+
{
|
|
1221
|
+
"number": "+33 (7)6 39 42 48 60",
|
|
1222
|
+
"primary": true
|
|
1223
|
+
}
|
|
1224
|
+
],
|
|
1225
|
+
"relationships": {
|
|
1226
|
+
"groups": {
|
|
1227
|
+
"data": [
|
|
1228
|
+
{
|
|
1229
|
+
"_id": "group_id_work",
|
|
1230
|
+
"_type": "io.cozy.contacts.groups"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"_id": "group_id_family",
|
|
1234
|
+
"_type": "io.cozy.contacts.groups"
|
|
1235
|
+
}
|
|
1236
|
+
]
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"_id": "6e109549-bbb7-4b23-a95e-794407001cd1",
|
|
1242
|
+
"_type": "io.cozy.contacts",
|
|
1243
|
+
"address": [
|
|
1244
|
+
{
|
|
1245
|
+
"city": "Halifax",
|
|
1246
|
+
"country": "Cook Islands",
|
|
1247
|
+
"postcode": "94609",
|
|
1248
|
+
"primary": true,
|
|
1249
|
+
"street": "93 Stockton Lane"
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"birthday": "1992-06-16",
|
|
1253
|
+
"email": [
|
|
1254
|
+
{
|
|
1255
|
+
"address": "edward.kelsey@hivemind.co",
|
|
1256
|
+
"primary": true
|
|
1257
|
+
}
|
|
1258
|
+
],
|
|
1259
|
+
"metadata": {
|
|
1260
|
+
"version": 1
|
|
1261
|
+
},
|
|
1262
|
+
"name": {
|
|
1263
|
+
"familyName": "Kelsey",
|
|
1264
|
+
"givenName": "Edward"
|
|
1265
|
+
},
|
|
1266
|
+
"phone": [
|
|
1267
|
+
{
|
|
1268
|
+
"number": "+33 (6)6 35 56 75 23",
|
|
1269
|
+
"primary": true
|
|
1270
|
+
}
|
|
1271
|
+
],
|
|
1272
|
+
"relationships": {
|
|
1273
|
+
"groups": {
|
|
1274
|
+
"data": [
|
|
1275
|
+
{
|
|
1276
|
+
"_id": "group_id_work",
|
|
1277
|
+
"_type": "io.cozy.contacts.groups"
|
|
1278
|
+
}
|
|
1279
|
+
]
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"_id": "6ed104be-083e-4991-bacb-78e18f815210",
|
|
1285
|
+
"_type": "io.cozy.contacts",
|
|
1286
|
+
"address": [
|
|
1287
|
+
{
|
|
1288
|
+
"city": "Seattle",
|
|
1289
|
+
"country": "Marshall Islands",
|
|
1290
|
+
"postcode": "79310",
|
|
1291
|
+
"primary": true,
|
|
1292
|
+
"street": "36 Albion Place"
|
|
1293
|
+
}
|
|
1294
|
+
],
|
|
1295
|
+
"birthday": "1951-07-03",
|
|
1296
|
+
"email": [
|
|
1297
|
+
{
|
|
1298
|
+
"address": "madelyn.woodrum@airconix.xyz",
|
|
1299
|
+
"primary": true
|
|
1300
|
+
}
|
|
1301
|
+
],
|
|
1302
|
+
"metadata": {
|
|
1303
|
+
"version": 1
|
|
1304
|
+
},
|
|
1305
|
+
"name": {
|
|
1306
|
+
"familyName": "Woodrum",
|
|
1307
|
+
"givenName": "Madelyn"
|
|
1308
|
+
},
|
|
1309
|
+
"phone": [
|
|
1310
|
+
{
|
|
1311
|
+
"number": "+33 (8)4 54 36 85 66",
|
|
1312
|
+
"primary": true
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"relationships": {
|
|
1316
|
+
"groups": {
|
|
1317
|
+
"data": [
|
|
1318
|
+
{
|
|
1319
|
+
"_id": "group_id_work",
|
|
1320
|
+
"_type": "io.cozy.contacts.groups"
|
|
1321
|
+
}
|
|
1322
|
+
]
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"_id": "6f767688-7118-4837-818f-610d0565ce83",
|
|
1328
|
+
"_type": "io.cozy.contacts",
|
|
1329
|
+
"address": [
|
|
1330
|
+
{
|
|
1331
|
+
"city": "Denver",
|
|
1332
|
+
"country": "Cayman Islands",
|
|
1333
|
+
"postcode": "49200",
|
|
1334
|
+
"primary": true,
|
|
1335
|
+
"street": "20 Winston Road"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"birthday": "1967-06-25",
|
|
1339
|
+
"email": [
|
|
1340
|
+
{
|
|
1341
|
+
"address": "vaughn.friedrich@seelogic.co",
|
|
1342
|
+
"primary": true
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"address": "dannielle.seabury@corptek.name",
|
|
1346
|
+
"primary": false
|
|
1347
|
+
}
|
|
1348
|
+
],
|
|
1349
|
+
"metadata": {
|
|
1350
|
+
"version": 1
|
|
1351
|
+
},
|
|
1352
|
+
"name": {
|
|
1353
|
+
"familyName": "Friedrich",
|
|
1354
|
+
"givenName": "Vaughn"
|
|
1355
|
+
},
|
|
1356
|
+
"phone": [
|
|
1357
|
+
{
|
|
1358
|
+
"number": "+33 (1)8 68 41 49 83",
|
|
1359
|
+
"primary": true
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"number": "+33 (7)5 60 23 43 55",
|
|
1363
|
+
"primary": false
|
|
1364
|
+
}
|
|
1365
|
+
],
|
|
1366
|
+
"relationships": {
|
|
1367
|
+
"groups": {
|
|
1368
|
+
"data": [
|
|
1369
|
+
{
|
|
1370
|
+
"_id": "group_id_family",
|
|
1371
|
+
"_type": "io.cozy.contacts.groups"
|
|
1372
|
+
}
|
|
1373
|
+
]
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"_id": "706364ef-f84c-4d84-896a-f96c1c6a554c",
|
|
1379
|
+
"_type": "io.cozy.contacts",
|
|
1380
|
+
"address": [
|
|
1381
|
+
{
|
|
1382
|
+
"city": "Cardiff",
|
|
1383
|
+
"country": "Ukraine",
|
|
1384
|
+
"postcode": "21604",
|
|
1385
|
+
"primary": true,
|
|
1386
|
+
"street": "43 Berkeley Street"
|
|
1387
|
+
}
|
|
1388
|
+
],
|
|
1389
|
+
"birthday": "1962-07-12",
|
|
1390
|
+
"email": [
|
|
1391
|
+
{
|
|
1392
|
+
"address": "raylene.pullman@viewtopia.me",
|
|
1393
|
+
"primary": true
|
|
1394
|
+
}
|
|
1395
|
+
],
|
|
1396
|
+
"name": {
|
|
1397
|
+
"familyName": "Pullman",
|
|
1398
|
+
"givenName": "Raylene"
|
|
1399
|
+
},
|
|
1400
|
+
"phone": [
|
|
1401
|
+
{
|
|
1402
|
+
"number": "+33 (0)7 90 41 79 27",
|
|
1403
|
+
"primary": true
|
|
1404
|
+
}
|
|
1405
|
+
]
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"_id": "71967809-8e54-4413-aa8e-35b2b945e816",
|
|
1409
|
+
"_type": "io.cozy.contacts",
|
|
1410
|
+
"address": [
|
|
1411
|
+
{
|
|
1412
|
+
"city": "Newark",
|
|
1413
|
+
"country": "Norway",
|
|
1414
|
+
"postcode": "84101",
|
|
1415
|
+
"primary": true,
|
|
1416
|
+
"street": "58 Longford Crescent"
|
|
1417
|
+
}
|
|
1418
|
+
],
|
|
1419
|
+
"email": [
|
|
1420
|
+
{
|
|
1421
|
+
"address": "cecilia.latshaw@xenosys.club",
|
|
1422
|
+
"primary": true
|
|
1423
|
+
}
|
|
1424
|
+
],
|
|
1425
|
+
"metadata": {
|
|
1426
|
+
"version": 1
|
|
1427
|
+
},
|
|
1428
|
+
"name": {
|
|
1429
|
+
"givenName": "Xenosys"
|
|
1430
|
+
},
|
|
1431
|
+
"phone": [
|
|
1432
|
+
{
|
|
1433
|
+
"number": "+33 (3)2 00 61 89 63",
|
|
1434
|
+
"primary": true
|
|
1435
|
+
}
|
|
1436
|
+
],
|
|
1437
|
+
"relationships": {
|
|
1438
|
+
"groups": {
|
|
1439
|
+
"data": [
|
|
1440
|
+
{
|
|
1441
|
+
"_id": "group_id_work",
|
|
1442
|
+
"_type": "io.cozy.contacts.groups"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"_id": "group_id_family",
|
|
1446
|
+
"_type": "io.cozy.contacts.groups"
|
|
1447
|
+
}
|
|
1448
|
+
]
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"_id": "799b0f99-3ad7-4f07-a689-9765b4e239c9",
|
|
1454
|
+
"_type": "io.cozy.contacts",
|
|
1455
|
+
"address": [
|
|
1456
|
+
{
|
|
1457
|
+
"city": "Bradford",
|
|
1458
|
+
"country": "Aruba",
|
|
1459
|
+
"postcode": "69222",
|
|
1460
|
+
"primary": true,
|
|
1461
|
+
"street": "18 Pearl Street"
|
|
1462
|
+
}
|
|
1463
|
+
],
|
|
1464
|
+
"email": [
|
|
1465
|
+
{
|
|
1466
|
+
"address": "tyler.rhymer@baramax.eu",
|
|
1467
|
+
"primary": true
|
|
1468
|
+
}
|
|
1469
|
+
],
|
|
1470
|
+
"metadata": {
|
|
1471
|
+
"version": 1
|
|
1472
|
+
},
|
|
1473
|
+
"name": {
|
|
1474
|
+
"givenName": "Baramax"
|
|
1475
|
+
},
|
|
1476
|
+
"phone": [
|
|
1477
|
+
{
|
|
1478
|
+
"number": "+33 (3)2 38 88 00 99",
|
|
1479
|
+
"primary": true
|
|
1480
|
+
}
|
|
1481
|
+
],
|
|
1482
|
+
"relationships": {
|
|
1483
|
+
"groups": {
|
|
1484
|
+
"data": [
|
|
1485
|
+
{
|
|
1486
|
+
"_id": "group_id_work",
|
|
1487
|
+
"_type": "io.cozy.contacts.groups"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"_id": "group_id_family",
|
|
1491
|
+
"_type": "io.cozy.contacts.groups"
|
|
1492
|
+
}
|
|
1493
|
+
]
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"_id": "7a8b0143-ed8a-4e28-85ec-37c16d1904b6",
|
|
1499
|
+
"_type": "io.cozy.contacts",
|
|
1500
|
+
"address": [
|
|
1501
|
+
{
|
|
1502
|
+
"city": "Rochester",
|
|
1503
|
+
"country": "Colombia",
|
|
1504
|
+
"postcode": "18722",
|
|
1505
|
+
"primary": true,
|
|
1506
|
+
"street": "91 Chestnut Walk"
|
|
1507
|
+
}
|
|
1508
|
+
],
|
|
1509
|
+
"email": [
|
|
1510
|
+
{
|
|
1511
|
+
"address": "vernon.leath@vtgrafix.co",
|
|
1512
|
+
"primary": true
|
|
1513
|
+
}
|
|
1514
|
+
],
|
|
1515
|
+
"metadata": {
|
|
1516
|
+
"version": 1
|
|
1517
|
+
},
|
|
1518
|
+
"name": {
|
|
1519
|
+
"givenName": "VTGrafix"
|
|
1520
|
+
},
|
|
1521
|
+
"phone": [
|
|
1522
|
+
{
|
|
1523
|
+
"number": "+33 (6)7 92 54 15 17",
|
|
1524
|
+
"primary": true
|
|
1525
|
+
}
|
|
1526
|
+
],
|
|
1527
|
+
"relationships": {
|
|
1528
|
+
"groups": {
|
|
1529
|
+
"data": [
|
|
1530
|
+
{
|
|
1531
|
+
"_id": "group_id_work",
|
|
1532
|
+
"_type": "io.cozy.contacts.groups"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"_id": "group_id_family",
|
|
1536
|
+
"_type": "io.cozy.contacts.groups"
|
|
1537
|
+
}
|
|
1538
|
+
]
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"_id": "7acdab81-52cb-46f6-9e81-42032e9843ae",
|
|
1544
|
+
"_type": "io.cozy.contacts",
|
|
1545
|
+
"address": [
|
|
1546
|
+
{
|
|
1547
|
+
"city": "Richmond",
|
|
1548
|
+
"country": "Finland",
|
|
1549
|
+
"postcode": "60992",
|
|
1550
|
+
"primary": true,
|
|
1551
|
+
"street": "90 Crawford Street"
|
|
1552
|
+
}
|
|
1553
|
+
],
|
|
1554
|
+
"birthday": "1969-06-06",
|
|
1555
|
+
"email": [
|
|
1556
|
+
{
|
|
1557
|
+
"address": "francis.flinn@fortyfour.xyz",
|
|
1558
|
+
"primary": true
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"address": "stan.lenihan@hassifix.mobi",
|
|
1562
|
+
"primary": false
|
|
1563
|
+
}
|
|
1564
|
+
],
|
|
1565
|
+
"metadata": {
|
|
1566
|
+
"version": 1
|
|
1567
|
+
},
|
|
1568
|
+
"name": {
|
|
1569
|
+
"familyName": "Flinn",
|
|
1570
|
+
"givenName": "Francis"
|
|
1571
|
+
},
|
|
1572
|
+
"phone": [
|
|
1573
|
+
{
|
|
1574
|
+
"number": "+33 (2)1 24 07 51 43",
|
|
1575
|
+
"primary": true
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"number": "+33 (4)9 32 20 32 87",
|
|
1579
|
+
"primary": false
|
|
1580
|
+
}
|
|
1581
|
+
],
|
|
1582
|
+
"relationships": {
|
|
1583
|
+
"groups": {
|
|
1584
|
+
"data": [
|
|
1585
|
+
{
|
|
1586
|
+
"_id": "group_id_family",
|
|
1587
|
+
"_type": "io.cozy.contacts.groups"
|
|
1588
|
+
}
|
|
1589
|
+
]
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"_id": "7cb3822f-3a2b-4978-9791-a1e19e792828",
|
|
1595
|
+
"_type": "io.cozy.contacts",
|
|
1596
|
+
"address": [
|
|
1597
|
+
{
|
|
1598
|
+
"city": "Albany",
|
|
1599
|
+
"country": "Singapore",
|
|
1600
|
+
"postcode": "21285",
|
|
1601
|
+
"primary": true,
|
|
1602
|
+
"street": "51 Crawford Street"
|
|
1603
|
+
}
|
|
1604
|
+
],
|
|
1605
|
+
"birthday": "1989-10-31",
|
|
1606
|
+
"email": [
|
|
1607
|
+
{
|
|
1608
|
+
"address": "raisa.cappel@zatheon.eu",
|
|
1609
|
+
"primary": true
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"metadata": {
|
|
1613
|
+
"version": 1
|
|
1614
|
+
},
|
|
1615
|
+
"name": {
|
|
1616
|
+
"familyName": "Cappel",
|
|
1617
|
+
"givenName": "Raisa"
|
|
1618
|
+
},
|
|
1619
|
+
"phone": [
|
|
1620
|
+
{
|
|
1621
|
+
"number": "+33 (2)3 69 80 63 05",
|
|
1622
|
+
"primary": true
|
|
1623
|
+
}
|
|
1624
|
+
],
|
|
1625
|
+
"relationships": {
|
|
1626
|
+
"groups": {
|
|
1627
|
+
"data": [
|
|
1628
|
+
{
|
|
1629
|
+
"_id": "group_id_work",
|
|
1630
|
+
"_type": "io.cozy.contacts.groups"
|
|
1631
|
+
}
|
|
1632
|
+
]
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"_id": "814f6f67-bcc0-498f-bb91-cab5ed315a12",
|
|
1638
|
+
"_type": "io.cozy.contacts",
|
|
1639
|
+
"address": [
|
|
1640
|
+
{
|
|
1641
|
+
"city": "Nottingham",
|
|
1642
|
+
"country": "Mauritania",
|
|
1643
|
+
"postcode": "96737",
|
|
1644
|
+
"primary": true,
|
|
1645
|
+
"street": "41 Elton Way"
|
|
1646
|
+
}
|
|
1647
|
+
],
|
|
1648
|
+
"birthday": "1988-03-07",
|
|
1649
|
+
"email": [
|
|
1650
|
+
{
|
|
1651
|
+
"address": "hannah.sager@haltheon.eu",
|
|
1652
|
+
"primary": true
|
|
1653
|
+
}
|
|
1654
|
+
],
|
|
1655
|
+
"name": {
|
|
1656
|
+
"familyName": "Sager",
|
|
1657
|
+
"givenName": "Hannah"
|
|
1658
|
+
},
|
|
1659
|
+
"phone": [
|
|
1660
|
+
{
|
|
1661
|
+
"number": "+33 (0)0 16 15 45 65",
|
|
1662
|
+
"primary": true
|
|
1663
|
+
}
|
|
1664
|
+
]
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"_id": "823d1ca9-4b10-456f-a603-231e3de5a774",
|
|
1668
|
+
"_type": "io.cozy.contacts",
|
|
1669
|
+
"address": [
|
|
1670
|
+
{
|
|
1671
|
+
"city": "Kingston",
|
|
1672
|
+
"country": "Guatemala",
|
|
1673
|
+
"postcode": "44220",
|
|
1674
|
+
"primary": true,
|
|
1675
|
+
"street": "5 Buckley Street"
|
|
1676
|
+
}
|
|
1677
|
+
],
|
|
1678
|
+
"birthday": "1961-02-02",
|
|
1679
|
+
"email": [
|
|
1680
|
+
{
|
|
1681
|
+
"address": "aiden.smit@tomiatech.co",
|
|
1682
|
+
"primary": true
|
|
1683
|
+
}
|
|
1684
|
+
],
|
|
1685
|
+
"name": {
|
|
1686
|
+
"familyName": "Smit",
|
|
1687
|
+
"givenName": "Aiden"
|
|
1688
|
+
},
|
|
1689
|
+
"phone": [
|
|
1690
|
+
{
|
|
1691
|
+
"number": "+33 (6)9 42 00 67 88",
|
|
1692
|
+
"primary": true
|
|
1693
|
+
}
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"_id": "857a0db5-84ff-4efe-a16e-9fa6b6a843eb",
|
|
1698
|
+
"_type": "io.cozy.contacts",
|
|
1699
|
+
"address": [
|
|
1700
|
+
{
|
|
1701
|
+
"city": "Birmingham",
|
|
1702
|
+
"country": "Bouvet Island",
|
|
1703
|
+
"postcode": "41090",
|
|
1704
|
+
"primary": true,
|
|
1705
|
+
"street": "88 Baker Street"
|
|
1706
|
+
}
|
|
1707
|
+
],
|
|
1708
|
+
"birthday": "1999-11-12",
|
|
1709
|
+
"email": [
|
|
1710
|
+
{
|
|
1711
|
+
"address": "jenette.bourne@dynaair.mobi",
|
|
1712
|
+
"primary": true
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
"address": "darrell.zobel@anaplex.name",
|
|
1716
|
+
"primary": false
|
|
1717
|
+
}
|
|
1718
|
+
],
|
|
1719
|
+
"metadata": {
|
|
1720
|
+
"version": 1
|
|
1721
|
+
},
|
|
1722
|
+
"name": {
|
|
1723
|
+
"familyName": "Bourne",
|
|
1724
|
+
"givenName": "Jenette"
|
|
1725
|
+
},
|
|
1726
|
+
"phone": [
|
|
1727
|
+
{
|
|
1728
|
+
"number": "+33 (0)8 05 76 45 70",
|
|
1729
|
+
"primary": true
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"number": "+33 (9)9 35 66 28 54",
|
|
1733
|
+
"primary": false
|
|
1734
|
+
}
|
|
1735
|
+
],
|
|
1736
|
+
"relationships": {
|
|
1737
|
+
"groups": {
|
|
1738
|
+
"data": [
|
|
1739
|
+
{
|
|
1740
|
+
"_id": "group_id_family",
|
|
1741
|
+
"_type": "io.cozy.contacts.groups"
|
|
1742
|
+
}
|
|
1743
|
+
]
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"_id": "8ba82505-25c3-4821-88df-2e11becc21e8",
|
|
1749
|
+
"_type": "io.cozy.contacts",
|
|
1750
|
+
"address": [
|
|
1751
|
+
{
|
|
1752
|
+
"city": "Hartford",
|
|
1753
|
+
"country": "Nepal",
|
|
1754
|
+
"postcode": "73991",
|
|
1755
|
+
"primary": true,
|
|
1756
|
+
"street": "60 Buckley Street"
|
|
1757
|
+
}
|
|
1758
|
+
],
|
|
1759
|
+
"birthday": "1985-12-20",
|
|
1760
|
+
"email": [
|
|
1761
|
+
{
|
|
1762
|
+
"address": "kurt.goudy@amsquare.edu",
|
|
1763
|
+
"primary": true
|
|
1764
|
+
}
|
|
1765
|
+
],
|
|
1766
|
+
"metadata": {
|
|
1767
|
+
"version": 1
|
|
1768
|
+
},
|
|
1769
|
+
"name": {
|
|
1770
|
+
"familyName": "Goudy",
|
|
1771
|
+
"givenName": "Kurt"
|
|
1772
|
+
},
|
|
1773
|
+
"phone": [
|
|
1774
|
+
{
|
|
1775
|
+
"number": "+33 (6)3 54 74 20 62",
|
|
1776
|
+
"primary": true
|
|
1777
|
+
}
|
|
1778
|
+
],
|
|
1779
|
+
"relationships": {
|
|
1780
|
+
"groups": {
|
|
1781
|
+
"data": [
|
|
1782
|
+
{
|
|
1783
|
+
"_id": "group_id_work",
|
|
1784
|
+
"_type": "io.cozy.contacts.groups"
|
|
1785
|
+
}
|
|
1786
|
+
]
|
|
1787
|
+
}
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"_id": "8cbefa6a-41c9-4065-ad33-87618dfee702",
|
|
1792
|
+
"_type": "io.cozy.contacts",
|
|
1793
|
+
"address": [
|
|
1794
|
+
{
|
|
1795
|
+
"city": "York",
|
|
1796
|
+
"country": "Antigua and Barbuda",
|
|
1797
|
+
"postcode": "67153",
|
|
1798
|
+
"primary": true,
|
|
1799
|
+
"street": "91 Grosvenor Square"
|
|
1800
|
+
}
|
|
1801
|
+
],
|
|
1802
|
+
"birthday": "1998-11-21",
|
|
1803
|
+
"email": [
|
|
1804
|
+
{
|
|
1805
|
+
"address": "madeleine.verde@tomiatech.me",
|
|
1806
|
+
"primary": true
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"address": "jenette.hyder@helixicon.edu",
|
|
1810
|
+
"primary": false
|
|
1811
|
+
}
|
|
1812
|
+
],
|
|
1813
|
+
"metadata": {
|
|
1814
|
+
"version": 1
|
|
1815
|
+
},
|
|
1816
|
+
"name": {
|
|
1817
|
+
"familyName": "Verde",
|
|
1818
|
+
"givenName": "Madeleine"
|
|
1819
|
+
},
|
|
1820
|
+
"phone": [
|
|
1821
|
+
{
|
|
1822
|
+
"number": "+33 (4)0 94 18 19 04",
|
|
1823
|
+
"primary": true
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"number": "+33 (7)2 66 13 89 19",
|
|
1827
|
+
"primary": false
|
|
1828
|
+
}
|
|
1829
|
+
],
|
|
1830
|
+
"relationships": {
|
|
1831
|
+
"groups": {
|
|
1832
|
+
"data": [
|
|
1833
|
+
{
|
|
1834
|
+
"_id": "group_id_family",
|
|
1835
|
+
"_type": "io.cozy.contacts.groups"
|
|
1836
|
+
}
|
|
1837
|
+
]
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"_id": "9393e04d-90eb-4f47-b0d1-7cfd88ca9a3f",
|
|
1843
|
+
"_type": "io.cozy.contacts",
|
|
1844
|
+
"address": [
|
|
1845
|
+
{
|
|
1846
|
+
"city": "Frankston",
|
|
1847
|
+
"country": "Martinique",
|
|
1848
|
+
"postcode": "29212",
|
|
1849
|
+
"primary": true,
|
|
1850
|
+
"street": "63 Dunstable Street"
|
|
1851
|
+
}
|
|
1852
|
+
],
|
|
1853
|
+
"birthday": "1976-12-15",
|
|
1854
|
+
"email": [
|
|
1855
|
+
{
|
|
1856
|
+
"address": "madeleine.milling@acousticom.gov",
|
|
1857
|
+
"primary": true
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"address": "cecilia.pullman@polycore.edu",
|
|
1861
|
+
"primary": false
|
|
1862
|
+
}
|
|
1863
|
+
],
|
|
1864
|
+
"metadata": {
|
|
1865
|
+
"version": 1
|
|
1866
|
+
},
|
|
1867
|
+
"name": {
|
|
1868
|
+
"familyName": "Milling",
|
|
1869
|
+
"givenName": "Madeleine"
|
|
1870
|
+
},
|
|
1871
|
+
"phone": [
|
|
1872
|
+
{
|
|
1873
|
+
"number": "+33 (4)0 61 39 16 43",
|
|
1874
|
+
"primary": true
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"number": "+33 (9)7 54 31 00 91",
|
|
1878
|
+
"primary": false
|
|
1879
|
+
}
|
|
1880
|
+
],
|
|
1881
|
+
"relationships": {
|
|
1882
|
+
"groups": {
|
|
1883
|
+
"data": [
|
|
1884
|
+
{
|
|
1885
|
+
"_id": "group_id_family",
|
|
1886
|
+
"_type": "io.cozy.contacts.groups"
|
|
1887
|
+
}
|
|
1888
|
+
]
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"_id": "9b05f823-53fd-48b7-ba50-e2abf7aa20bc",
|
|
1894
|
+
"_type": "io.cozy.contacts",
|
|
1895
|
+
"address": [
|
|
1896
|
+
{
|
|
1897
|
+
"city": "Lancaster",
|
|
1898
|
+
"country": "Viet Nam",
|
|
1899
|
+
"postcode": "32405",
|
|
1900
|
+
"primary": true,
|
|
1901
|
+
"street": "33 Wandle Street"
|
|
1902
|
+
}
|
|
1903
|
+
],
|
|
1904
|
+
"birthday": "1961-08-01",
|
|
1905
|
+
"email": [
|
|
1906
|
+
{
|
|
1907
|
+
"address": "rosanne.chapman@peersys.gov",
|
|
1908
|
+
"primary": true
|
|
1909
|
+
}
|
|
1910
|
+
],
|
|
1911
|
+
"name": {
|
|
1912
|
+
"familyName": "Chapman",
|
|
1913
|
+
"givenName": "Rosanne"
|
|
1914
|
+
},
|
|
1915
|
+
"phone": [
|
|
1916
|
+
{
|
|
1917
|
+
"number": "+33 (8)1 50 82 04 53",
|
|
1918
|
+
"primary": true
|
|
1919
|
+
}
|
|
1920
|
+
]
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"_id": "a68a9b3c-f3f7-4f94-b3f2-f2d0363895a5",
|
|
1924
|
+
"_type": "io.cozy.contacts",
|
|
1925
|
+
"address": [
|
|
1926
|
+
{
|
|
1927
|
+
"city": "Sudbury",
|
|
1928
|
+
"country": "Aruba",
|
|
1929
|
+
"postcode": "34465",
|
|
1930
|
+
"primary": true,
|
|
1931
|
+
"street": "64 Glenn Drive"
|
|
1932
|
+
}
|
|
1933
|
+
],
|
|
1934
|
+
"birthday": "1989-01-26",
|
|
1935
|
+
"email": [
|
|
1936
|
+
{
|
|
1937
|
+
"address": "isabelle.muldoon@fastmart.co",
|
|
1938
|
+
"primary": true
|
|
1939
|
+
}
|
|
1940
|
+
],
|
|
1941
|
+
"metadata": {
|
|
1942
|
+
"version": 1
|
|
1943
|
+
},
|
|
1944
|
+
"name": {
|
|
1945
|
+
"familyName": "Muldoon",
|
|
1946
|
+
"givenName": "Isabelle"
|
|
1947
|
+
},
|
|
1948
|
+
"phone": [
|
|
1949
|
+
{
|
|
1950
|
+
"number": "+33 (4)6 38 04 02 44",
|
|
1951
|
+
"primary": true
|
|
1952
|
+
}
|
|
1953
|
+
],
|
|
1954
|
+
"relationships": {
|
|
1955
|
+
"groups": {
|
|
1956
|
+
"data": [
|
|
1957
|
+
{
|
|
1958
|
+
"_id": "group_id_work",
|
|
1959
|
+
"_type": "io.cozy.contacts.groups"
|
|
1960
|
+
}
|
|
1961
|
+
]
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"_id": "a749ffad-068e-4772-9060-4cb9bd7e8039",
|
|
1967
|
+
"_type": "io.cozy.contacts",
|
|
1968
|
+
"address": [
|
|
1969
|
+
{
|
|
1970
|
+
"city": "Melbourne",
|
|
1971
|
+
"country": "Malawi",
|
|
1972
|
+
"postcode": "16693",
|
|
1973
|
+
"primary": true,
|
|
1974
|
+
"street": "70 Glenn Drive"
|
|
1975
|
+
}
|
|
1976
|
+
],
|
|
1977
|
+
"birthday": "1960-08-28",
|
|
1978
|
+
"email": [
|
|
1979
|
+
{
|
|
1980
|
+
"address": "warren.tindel@fortyfour.info",
|
|
1981
|
+
"primary": true
|
|
1982
|
+
}
|
|
1983
|
+
],
|
|
1984
|
+
"name": {
|
|
1985
|
+
"familyName": "Tindel",
|
|
1986
|
+
"givenName": "Warren"
|
|
1987
|
+
},
|
|
1988
|
+
"phone": [
|
|
1989
|
+
{
|
|
1990
|
+
"number": "+33 (6)7 00 31 47 81",
|
|
1991
|
+
"primary": true
|
|
1992
|
+
}
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"_id": "a83989ca-041d-4615-87e0-7d41f86acc5d",
|
|
1997
|
+
"_type": "io.cozy.contacts",
|
|
1998
|
+
"address": [
|
|
1999
|
+
{
|
|
2000
|
+
"city": "Seattle",
|
|
2001
|
+
"country": "Niue",
|
|
2002
|
+
"postcode": "87611",
|
|
2003
|
+
"primary": true,
|
|
2004
|
+
"street": "42 Brook Street"
|
|
2005
|
+
}
|
|
2006
|
+
],
|
|
2007
|
+
"birthday": "1954-07-26",
|
|
2008
|
+
"email": [
|
|
2009
|
+
{
|
|
2010
|
+
"address": "jamie.paschall@acousticom.me",
|
|
2011
|
+
"primary": true
|
|
2012
|
+
}
|
|
2013
|
+
],
|
|
2014
|
+
"name": {
|
|
2015
|
+
"familyName": "Paschall",
|
|
2016
|
+
"givenName": "Jamie"
|
|
2017
|
+
},
|
|
2018
|
+
"phone": [
|
|
2019
|
+
{
|
|
2020
|
+
"number": "+33 (4)9 34 94 87 29",
|
|
2021
|
+
"primary": true
|
|
2022
|
+
}
|
|
2023
|
+
]
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"_id": "a9d28cf8-43a6-4fff-81a1-4a09048edf71",
|
|
2027
|
+
"_type": "io.cozy.contacts",
|
|
2028
|
+
"address": [
|
|
2029
|
+
{
|
|
2030
|
+
"city": "Vancouver",
|
|
2031
|
+
"country": "Armenia",
|
|
2032
|
+
"postcode": "27393",
|
|
2033
|
+
"primary": true,
|
|
2034
|
+
"street": "62 Marsham Street"
|
|
2035
|
+
}
|
|
2036
|
+
],
|
|
2037
|
+
"birthday": "1955-09-22",
|
|
2038
|
+
"email": [
|
|
2039
|
+
{
|
|
2040
|
+
"address": "rico.bourne@citisys.org",
|
|
2041
|
+
"primary": true
|
|
2042
|
+
}
|
|
2043
|
+
],
|
|
2044
|
+
"metadata": {
|
|
2045
|
+
"version": 1
|
|
2046
|
+
},
|
|
2047
|
+
"name": {
|
|
2048
|
+
"familyName": "Bourne",
|
|
2049
|
+
"givenName": "Rico"
|
|
2050
|
+
},
|
|
2051
|
+
"phone": [
|
|
2052
|
+
{
|
|
2053
|
+
"number": "+33 (1)4 84 34 52 44",
|
|
2054
|
+
"primary": true
|
|
2055
|
+
}
|
|
2056
|
+
],
|
|
2057
|
+
"relationships": {
|
|
2058
|
+
"groups": {
|
|
2059
|
+
"data": [
|
|
2060
|
+
{
|
|
2061
|
+
"_id": "group_id_work",
|
|
2062
|
+
"_type": "io.cozy.contacts.groups"
|
|
2063
|
+
}
|
|
2064
|
+
]
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
"_id": "b21e4b4b-1df9-4992-b39b-cf844df864d5",
|
|
2070
|
+
"_type": "io.cozy.contacts",
|
|
2071
|
+
"address": [
|
|
2072
|
+
{
|
|
2073
|
+
"city": "Cleveland",
|
|
2074
|
+
"country": "United States of America",
|
|
2075
|
+
"postcode": "15748",
|
|
2076
|
+
"primary": true,
|
|
2077
|
+
"street": "85 Grosvenor Square"
|
|
2078
|
+
}
|
|
2079
|
+
],
|
|
2080
|
+
"email": [
|
|
2081
|
+
{
|
|
2082
|
+
"address": "rico.murphy@triosys.info",
|
|
2083
|
+
"primary": true
|
|
2084
|
+
}
|
|
2085
|
+
],
|
|
2086
|
+
"metadata": {
|
|
2087
|
+
"version": 1
|
|
2088
|
+
},
|
|
2089
|
+
"name": {
|
|
2090
|
+
"givenName": "TrioSys"
|
|
2091
|
+
},
|
|
2092
|
+
"phone": [
|
|
2093
|
+
{
|
|
2094
|
+
"number": "+33 (6)3 45 36 56 40",
|
|
2095
|
+
"primary": true
|
|
2096
|
+
}
|
|
2097
|
+
],
|
|
2098
|
+
"relationships": {
|
|
2099
|
+
"groups": {
|
|
2100
|
+
"data": [
|
|
2101
|
+
{
|
|
2102
|
+
"_id": "group_id_work",
|
|
2103
|
+
"_type": "io.cozy.contacts.groups"
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"_id": "group_id_family",
|
|
2107
|
+
"_type": "io.cozy.contacts.groups"
|
|
2108
|
+
}
|
|
2109
|
+
]
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
"_id": "b6f5fc43-4199-4cca-8372-d1fe4e75a168",
|
|
2115
|
+
"_type": "io.cozy.contacts",
|
|
2116
|
+
"address": [
|
|
2117
|
+
{
|
|
2118
|
+
"city": "Boston",
|
|
2119
|
+
"country": "Saint Pierre and Miquelon",
|
|
2120
|
+
"postcode": "23731",
|
|
2121
|
+
"primary": true,
|
|
2122
|
+
"street": "70 Beechmont Parkway"
|
|
2123
|
+
}
|
|
2124
|
+
],
|
|
2125
|
+
"birthday": "1989-08-11",
|
|
2126
|
+
"email": [
|
|
2127
|
+
{
|
|
2128
|
+
"address": "gavin.wallis@infratouch.biz",
|
|
2129
|
+
"primary": true
|
|
2130
|
+
}
|
|
2131
|
+
],
|
|
2132
|
+
"metadata": {
|
|
2133
|
+
"version": 1
|
|
2134
|
+
},
|
|
2135
|
+
"name": {
|
|
2136
|
+
"familyName": "Wallis",
|
|
2137
|
+
"givenName": "Gavin"
|
|
2138
|
+
},
|
|
2139
|
+
"phone": [
|
|
2140
|
+
{
|
|
2141
|
+
"number": "+33 (2)4 15 56 27 30",
|
|
2142
|
+
"primary": true
|
|
2143
|
+
}
|
|
2144
|
+
],
|
|
2145
|
+
"relationships": {
|
|
2146
|
+
"groups": {
|
|
2147
|
+
"data": [
|
|
2148
|
+
{
|
|
2149
|
+
"_id": "group_id_work",
|
|
2150
|
+
"_type": "io.cozy.contacts.groups"
|
|
2151
|
+
}
|
|
2152
|
+
]
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"_id": "c55c831a-9869-4e14-b3aa-d004bced41b0",
|
|
2158
|
+
"_type": "io.cozy.contacts",
|
|
2159
|
+
"address": [
|
|
2160
|
+
{
|
|
2161
|
+
"city": "Cleveland",
|
|
2162
|
+
"country": "Liechtenstein",
|
|
2163
|
+
"postcode": "61719",
|
|
2164
|
+
"primary": true,
|
|
2165
|
+
"street": "50 Green Street"
|
|
2166
|
+
}
|
|
2167
|
+
],
|
|
2168
|
+
"birthday": "1963-10-08",
|
|
2169
|
+
"email": [
|
|
2170
|
+
{
|
|
2171
|
+
"address": "neida.remus@dynalab.club",
|
|
2172
|
+
"primary": true
|
|
2173
|
+
}
|
|
2174
|
+
],
|
|
2175
|
+
"name": {
|
|
2176
|
+
"familyName": "Remus",
|
|
2177
|
+
"givenName": "Neida"
|
|
2178
|
+
},
|
|
2179
|
+
"phone": [
|
|
2180
|
+
{
|
|
2181
|
+
"number": "+33 (5)6 42 50 42 12",
|
|
2182
|
+
"primary": true
|
|
2183
|
+
}
|
|
2184
|
+
]
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"_id": "d0c565de-f440-4d2f-83db-0e3d75f49d23",
|
|
2188
|
+
"_type": "io.cozy.contacts",
|
|
2189
|
+
"address": [
|
|
2190
|
+
{
|
|
2191
|
+
"city": "Waterbury",
|
|
2192
|
+
"country": "British Indian Ocean Territory",
|
|
2193
|
+
"postcode": "29412",
|
|
2194
|
+
"primary": true,
|
|
2195
|
+
"street": "68 Rutland Drive"
|
|
2196
|
+
}
|
|
2197
|
+
],
|
|
2198
|
+
"birthday": "1972-07-31",
|
|
2199
|
+
"email": [
|
|
2200
|
+
{
|
|
2201
|
+
"address": "rosanne.bourne@creatonix.xyz",
|
|
2202
|
+
"primary": true
|
|
2203
|
+
}
|
|
2204
|
+
],
|
|
2205
|
+
"name": {
|
|
2206
|
+
"familyName": "Bourne",
|
|
2207
|
+
"givenName": "Rosanne"
|
|
2208
|
+
},
|
|
2209
|
+
"phone": [
|
|
2210
|
+
{
|
|
2211
|
+
"number": "+33 (1)3 93 75 09 69",
|
|
2212
|
+
"primary": true
|
|
2213
|
+
}
|
|
2214
|
+
]
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"_id": "d2bda580-4df6-473e-89db-2af41364c44e",
|
|
2218
|
+
"_type": "io.cozy.contacts",
|
|
2219
|
+
"address": [
|
|
2220
|
+
{
|
|
2221
|
+
"city": "Hobart",
|
|
2222
|
+
"country": "Romania",
|
|
2223
|
+
"postcode": "79805",
|
|
2224
|
+
"primary": true,
|
|
2225
|
+
"street": "1 Mount Street"
|
|
2226
|
+
}
|
|
2227
|
+
],
|
|
2228
|
+
"email": [
|
|
2229
|
+
{
|
|
2230
|
+
"address": "anton.brandt@westercom.me",
|
|
2231
|
+
"primary": true
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
2234
|
+
"metadata": {
|
|
2235
|
+
"version": 1
|
|
2236
|
+
},
|
|
2237
|
+
"name": {
|
|
2238
|
+
"givenName": "Westercom"
|
|
2239
|
+
},
|
|
2240
|
+
"phone": [
|
|
2241
|
+
{
|
|
2242
|
+
"number": "+33 (2)6 47 62 10 86",
|
|
2243
|
+
"primary": true
|
|
2244
|
+
}
|
|
2245
|
+
],
|
|
2246
|
+
"relationships": {
|
|
2247
|
+
"groups": {
|
|
2248
|
+
"data": [
|
|
2249
|
+
{
|
|
2250
|
+
"_id": "group_id_work",
|
|
2251
|
+
"_type": "io.cozy.contacts.groups"
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"_id": "group_id_family",
|
|
2255
|
+
"_type": "io.cozy.contacts.groups"
|
|
2256
|
+
}
|
|
2257
|
+
]
|
|
2258
|
+
}
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"_id": "d50b7eea-6e71-4348-ad75-fc791d7a82d4",
|
|
2263
|
+
"_type": "io.cozy.contacts",
|
|
2264
|
+
"address": [
|
|
2265
|
+
{
|
|
2266
|
+
"city": "Fargo",
|
|
2267
|
+
"country": "Angola",
|
|
2268
|
+
"postcode": "52889",
|
|
2269
|
+
"primary": true,
|
|
2270
|
+
"street": "34 Paxton Street"
|
|
2271
|
+
}
|
|
2272
|
+
],
|
|
2273
|
+
"birthday": "1979-05-07",
|
|
2274
|
+
"email": [
|
|
2275
|
+
{
|
|
2276
|
+
"address": "rico.magby@freecast.eu",
|
|
2277
|
+
"primary": true
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"address": "myong.brandt@lexiconlabs.org",
|
|
2281
|
+
"primary": false
|
|
2282
|
+
}
|
|
2283
|
+
],
|
|
2284
|
+
"metadata": {
|
|
2285
|
+
"version": 1
|
|
2286
|
+
},
|
|
2287
|
+
"name": {
|
|
2288
|
+
"familyName": "Magby",
|
|
2289
|
+
"givenName": "Rico"
|
|
2290
|
+
},
|
|
2291
|
+
"phone": [
|
|
2292
|
+
{
|
|
2293
|
+
"number": "+33 (3)4 20 14 07 04",
|
|
2294
|
+
"primary": true
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"number": "+33 (9)4 63 79 76 97",
|
|
2298
|
+
"primary": false
|
|
2299
|
+
}
|
|
2300
|
+
],
|
|
2301
|
+
"relationships": {
|
|
2302
|
+
"groups": {
|
|
2303
|
+
"data": [
|
|
2304
|
+
{
|
|
2305
|
+
"_id": "group_id_family",
|
|
2306
|
+
"_type": "io.cozy.contacts.groups"
|
|
2307
|
+
}
|
|
2308
|
+
]
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"_id": "e93c6abd-4819-4873-b7fb-ea46e02816a2",
|
|
2314
|
+
"_type": "io.cozy.contacts",
|
|
2315
|
+
"address": [
|
|
2316
|
+
{
|
|
2317
|
+
"city": "Plymouth",
|
|
2318
|
+
"country": "Mongolia",
|
|
2319
|
+
"postcode": "18222",
|
|
2320
|
+
"primary": true,
|
|
2321
|
+
"street": "66 Orchard Road"
|
|
2322
|
+
}
|
|
2323
|
+
],
|
|
2324
|
+
"birthday": "1978-04-22",
|
|
2325
|
+
"email": [
|
|
2326
|
+
{
|
|
2327
|
+
"address": "raylene.wallis@corerobotics.name",
|
|
2328
|
+
"primary": true
|
|
2329
|
+
}
|
|
2330
|
+
],
|
|
2331
|
+
"metadata": {
|
|
2332
|
+
"version": 1
|
|
2333
|
+
},
|
|
2334
|
+
"name": {
|
|
2335
|
+
"familyName": "Wallis",
|
|
2336
|
+
"givenName": "Raylene"
|
|
2337
|
+
},
|
|
2338
|
+
"phone": [
|
|
2339
|
+
{
|
|
2340
|
+
"number": "+33 (8)2 20 49 87 28",
|
|
2341
|
+
"primary": true
|
|
2342
|
+
}
|
|
2343
|
+
],
|
|
2344
|
+
"relationships": {
|
|
2345
|
+
"groups": {
|
|
2346
|
+
"data": [
|
|
2347
|
+
{
|
|
2348
|
+
"_id": "group_id_work",
|
|
2349
|
+
"_type": "io.cozy.contacts.groups"
|
|
2350
|
+
}
|
|
2351
|
+
]
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"_id": "f330db30-2c2b-4621-b40f-25bb737e2eba",
|
|
2357
|
+
"_type": "io.cozy.contacts",
|
|
2358
|
+
"address": [
|
|
2359
|
+
{
|
|
2360
|
+
"city": "Boston",
|
|
2361
|
+
"country": "Saint Pierre and Miquelon",
|
|
2362
|
+
"postcode": "04284",
|
|
2363
|
+
"primary": true,
|
|
2364
|
+
"street": "19 Mount Street"
|
|
2365
|
+
}
|
|
2366
|
+
],
|
|
2367
|
+
"birthday": "1950-01-18",
|
|
2368
|
+
"email": [
|
|
2369
|
+
{
|
|
2370
|
+
"address": "lyn.hollis@citisys.biz",
|
|
2371
|
+
"primary": true
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"address": "edward.pace@mediadime.net",
|
|
2375
|
+
"primary": false
|
|
2376
|
+
}
|
|
2377
|
+
],
|
|
2378
|
+
"metadata": {
|
|
2379
|
+
"version": 1
|
|
2380
|
+
},
|
|
2381
|
+
"name": {
|
|
2382
|
+
"familyName": "Hollis",
|
|
2383
|
+
"givenName": "Lyn"
|
|
2384
|
+
},
|
|
2385
|
+
"phone": [
|
|
2386
|
+
{
|
|
2387
|
+
"number": "+33 (8)8 32 79 16 61",
|
|
2388
|
+
"primary": true
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"number": "+33 (7)9 69 80 25 08",
|
|
2392
|
+
"primary": false
|
|
2393
|
+
}
|
|
2394
|
+
],
|
|
2395
|
+
"relationships": {
|
|
2396
|
+
"groups": {
|
|
2397
|
+
"data": [
|
|
2398
|
+
{
|
|
2399
|
+
"_id": "group_id_family",
|
|
2400
|
+
"_type": "io.cozy.contacts.groups"
|
|
2401
|
+
}
|
|
2402
|
+
]
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"_id": "f87951a3-f887-498c-b683-efbf59221da0",
|
|
2408
|
+
"_type": "io.cozy.contacts",
|
|
2409
|
+
"address": [
|
|
2410
|
+
{
|
|
2411
|
+
"city": "Pheonix",
|
|
2412
|
+
"country": "Madagascar",
|
|
2413
|
+
"postcode": "83764",
|
|
2414
|
+
"primary": true,
|
|
2415
|
+
"street": "5 Harvard Avenue"
|
|
2416
|
+
}
|
|
2417
|
+
],
|
|
2418
|
+
"birthday": "1975-04-11",
|
|
2419
|
+
"email": [
|
|
2420
|
+
{
|
|
2421
|
+
"address": "marcus.milligan@fortyfour.me",
|
|
2422
|
+
"primary": true
|
|
2423
|
+
}
|
|
2424
|
+
],
|
|
2425
|
+
"metadata": {
|
|
2426
|
+
"version": 1
|
|
2427
|
+
},
|
|
2428
|
+
"name": {
|
|
2429
|
+
"familyName": "Milligan",
|
|
2430
|
+
"givenName": "Marcus"
|
|
2431
|
+
},
|
|
2432
|
+
"phone": [
|
|
2433
|
+
{
|
|
2434
|
+
"number": "+33 (6)8 38 98 96 07",
|
|
2435
|
+
"primary": true
|
|
2436
|
+
}
|
|
2437
|
+
],
|
|
2438
|
+
"relationships": {
|
|
2439
|
+
"groups": {
|
|
2440
|
+
"data": [
|
|
2441
|
+
{
|
|
2442
|
+
"_id": "group_id_work",
|
|
2443
|
+
"_type": "io.cozy.contacts.groups"
|
|
2444
|
+
}
|
|
2445
|
+
]
|
|
2446
|
+
}
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"_id": "fc1f5295-a7e9-431c-a3cb-70259edd81e0",
|
|
2451
|
+
"_type": "io.cozy.contacts",
|
|
2452
|
+
"address": [
|
|
2453
|
+
{
|
|
2454
|
+
"city": "Portsmouth",
|
|
2455
|
+
"country": "Bonaire, Sint Eustatius and Saba",
|
|
2456
|
+
"postcode": "52481",
|
|
2457
|
+
"primary": true,
|
|
2458
|
+
"street": "44 Prospect Place"
|
|
2459
|
+
}
|
|
2460
|
+
],
|
|
2461
|
+
"email": [
|
|
2462
|
+
{
|
|
2463
|
+
"address": "grace.muldoon@coremax.xyz",
|
|
2464
|
+
"primary": true
|
|
2465
|
+
}
|
|
2466
|
+
],
|
|
2467
|
+
"metadata": {
|
|
2468
|
+
"version": 1
|
|
2469
|
+
},
|
|
2470
|
+
"name": {
|
|
2471
|
+
"givenName": "CoreMax"
|
|
2472
|
+
},
|
|
2473
|
+
"phone": [
|
|
2474
|
+
{
|
|
2475
|
+
"number": "+33 (8)1 17 99 91 53",
|
|
2476
|
+
"primary": true
|
|
2477
|
+
}
|
|
2478
|
+
],
|
|
2479
|
+
"relationships": {
|
|
2480
|
+
"groups": {
|
|
2481
|
+
"data": [
|
|
2482
|
+
{
|
|
2483
|
+
"_id": "group_id_work",
|
|
2484
|
+
"_type": "io.cozy.contacts.groups"
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"_id": "group_id_family",
|
|
2488
|
+
"_type": "io.cozy.contacts.groups"
|
|
2489
|
+
}
|
|
2490
|
+
]
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
}
|
|
2494
|
+
]
|