Compare commits

..

13 Commits

Author SHA1 Message Date
Joel Jeremy Marquez
ad0bfb00cc Release notes 2025-02-21 09:26:24 -08:00
Joel Jeremy Marquez
73cd909043 [TypeScript] Make db.select functions generic 2025-02-21 09:26:24 -08:00
Joel Jeremy Marquez
9ca91b15bd Update types 2025-02-21 09:25:58 -08:00
Joel Jeremy Marquez
42217eac3d Release notes 2025-02-21 09:25:58 -08:00
Joel Jeremy Marquez
2e23cccb99 [TypeScript] Make db.all generic 2025-02-21 09:25:58 -08:00
Joel Jeremy Marquez
9a52b461a2 Release notes 2025-02-21 09:25:40 -08:00
Joel Jeremy Marquez
5b8c411134 [TypeScript] Make db.firstSync generic 2025-02-21 09:25:40 -08:00
Joel Jeremy Marquez
553e00b4df Fix strict type 2025-02-21 09:24:37 -08:00
Joel Jeremy Marquez
e06d75a397 Update db.first calls 2025-02-21 08:43:20 -08:00
Joel Jeremy Marquez
19fa629585 Cleanup type 2025-02-21 08:39:10 -08:00
Joel Jeremy Marquez
9137c4f432 Fix typecheck error 2025-02-21 08:39:10 -08:00
Joel Jeremy Marquez
7425d0cbd3 Release notes 2025-02-21 08:39:10 -08:00
Joel Jeremy Marquez
c0fde0d9d0 [TypeScript] Make db.first generic 2025-02-21 08:39:10 -08:00
1396 changed files with 8427 additions and 11426 deletions

View File

@@ -1,11 +1,7 @@
#!/bin/bash
set -euo pipefail
if [ "$#" -gt 0 ]; then
version="${1#v}"
else
version=""
fi
version="${1#v}"
files_to_bump=(
packages/api/package.json

View File

@@ -24,7 +24,6 @@ env:
IMAGES: |
actualbudget/actual-server
ghcr.io/actualbudget/actual-server
ghcr.io/actualbudget/actual
# Creates the following tags:
# - actual-server:edge
@@ -34,7 +33,6 @@ env:
jobs:
build:
if: ${{ github.event.repository.fork == false }}
name: Build Docker image
runs-on: ubuntu-latest
strategy:

View File

@@ -13,7 +13,6 @@ env:
IMAGES: |
actualbudget/actual-server
ghcr.io/actualbudget/actual-server
ghcr.io/actualbudget/actual
# Creates the following tags:
# - actual-server:latest (see docker/metadata-action flavor inputs, below)

3
.gitignore vendored
View File

@@ -53,6 +53,3 @@ bundle.mobile.js.map
# build output
package.tgz
# Fly.io configuration
fly.toml

View File

@@ -9,7 +9,6 @@ if ! [ -d packages/desktop-client/locale ]; then
git clone https://github.com/actualbudget/translations packages/desktop-client/locale
fi
pushd packages/desktop-client/locale > /dev/null
git checkout .
git pull
popd > /dev/null
packages/desktop-client/bin/remove-untranslated-languages

View File

@@ -42,7 +42,6 @@ if ! [ -d packages/desktop-client/locale ]; then
git clone https://github.com/actualbudget/translations packages/desktop-client/locale
fi
pushd packages/desktop-client/locale > /dev/null
git checkout .
git pull
popd > /dev/null
packages/desktop-client/bin/remove-untranslated-languages

View File

@@ -94,7 +94,6 @@ export default [
'packages/api/@types',
'packages/api/migrations',
'packages/crdt/dist',
'packages/component-library/src/icons/**/*',
'packages/desktop-client/bundle.browser.js',
'packages/desktop-client/build/',
'packages/desktop-client/build-electron/',
@@ -103,6 +102,7 @@ export default [
'packages/desktop-client/public/data/',
'packages/desktop-client/**/node_modules/*',
'packages/desktop-client/node_modules/',
'packages/desktop-client/src/icons/**/*',
'packages/desktop-client/test-results/',
'packages/desktop-client/playwright-report/',
'packages/desktop-electron/client-build/',
@@ -789,6 +789,7 @@ export default [
'packages/desktop-client/src/components/select/DateSelect.tsx',
'packages/desktop-client/src/components/sidebar/Tools.tsx',
'packages/desktop-client/src/components/sort.tsx',
'packages/desktop-client/src/components/spreadsheet/useSheetValue.ts',
],
rules: {

View File

@@ -1,6 +1,6 @@
{
"name": "@actual-app/api",
"version": "25.3.1",
"version": "25.2.1",
"license": "MIT",
"description": "An API for Actual",
"engines": {

View File

@@ -7,20 +7,14 @@
},
"dependencies": {
"@emotion/css": "^11.13.4",
"react-aria-components": "^1.7.0"
"react-aria-components": "^1.4.1"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@types/react": "^18.2.0",
"react": "18.2.0"
},
"exports": {
"./icons/logo": "./src/icons/logo/index.ts",
"./icons/v0": "./src/icons/v0/index.ts",
"./icons/v1": "./src/icons/v1/index.ts",
"./icons/v2": "./src/icons/v2/index.ts",
"./icons/AnimatedLoading": "./src/icons/AnimatedLoading.tsx",
"./icons/Loading": "./src/icons/Loading.tsx",
"./icons/*": "./src/icons/*.tsx",
"./aligned-text": "./src/AlignedText.tsx",
"./block": "./src/Block.tsx",
"./button": "./src/Button.tsx",
@@ -28,12 +22,10 @@
"./form-error": "./src/FormError.tsx",
"./initial-focus": "./src/InitialFocus.ts",
"./inline-field": "./src/InlineField.tsx",
"./input": "./src/Input.tsx",
"./label": "./src/Label.tsx",
"./menu": "./src/Menu.tsx",
"./paragraph": "./src/Paragraph.tsx",
"./popover": "./src/Popover.tsx",
"./select": "./src/Select.tsx",
"./space-between": "./src/SpaceBetween.tsx",
"./stack": "./src/Stack.tsx",
"./styles": "./src/styles.ts",
@@ -44,8 +36,5 @@
"./toggle": "./src/Toggle.tsx",
"./tooltip": "./src/Tooltip.tsx",
"./view": "./src/View.tsx"
},
"scripts": {
"generate:icons": "rm src/icons/*/*.tsx; cd src/icons && svgr --template template.ts --index-template index-template.ts --typescript --expand-props start -d . ."
}
}

View File

@@ -1 +0,0 @@
export { SvgLogo } from './Logo';

View File

@@ -1,9 +0,0 @@
export { SvgAdd } from './Add';
export { SvgDelete } from './Delete';
export { SvgExpandArrow } from './ExpandArrow';
export { SvgLeftArrow2 } from './LeftArrow2';
export { SvgMath } from './Math';
export { SvgRightArrow2 } from './RightArrow2';
export { SvgSubtract } from './Subtract';
export { SvgMerge } from './Merge';
export { SvgSplit } from './Split';

View File

@@ -1,311 +0,0 @@
export { SvgAddOutline } from './AddOutline';
export { SvgAddSolid } from './AddSolid';
export { SvgAdd } from './Add';
export { SvgAdjust } from './Adjust';
export { SvgAirplane } from './Airplane';
export { SvgAlbum } from './Album';
export { SvgAlignCenter } from './AlignCenter';
export { SvgAlignJustified } from './AlignJustified';
export { SvgAlignLeft } from './AlignLeft';
export { SvgAlignRight } from './AlignRight';
export { SvgAnchor } from './Anchor';
export { SvgAnnouncement } from './Announcement';
export { SvgApparel } from './Apparel';
export { SvgArrowDown } from './ArrowDown';
export { SvgArrowLeft } from './ArrowLeft';
export { SvgArrowOutlineDown } from './ArrowOutlineDown';
export { SvgArrowOutlineLeft } from './ArrowOutlineLeft';
export { SvgArrowOutlineRight } from './ArrowOutlineRight';
export { SvgArrowOutlineUp } from './ArrowOutlineUp';
export { SvgArrowRight } from './ArrowRight';
export { SvgArrowThickDown } from './ArrowThickDown';
export { SvgArrowThickLeft } from './ArrowThickLeft';
export { SvgArrowThickRight } from './ArrowThickRight';
export { SvgArrowThickUp } from './ArrowThickUp';
export { SvgArrowThinDown } from './ArrowThinDown';
export { SvgArrowThinLeft } from './ArrowThinLeft';
export { SvgArrowThinRight } from './ArrowThinRight';
export { SvgArrowThinUp } from './ArrowThinUp';
export { SvgArrowUp } from './ArrowUp';
export { SvgArtist } from './Artist';
export { SvgAtSymbol } from './AtSymbol';
export { SvgAttachment } from './Attachment';
export { SvgBackspace } from './Backspace';
export { SvgBackwardStep } from './BackwardStep';
export { SvgBackward } from './Backward';
export { SvgBadge } from './Badge';
export { SvgBatteryFull } from './BatteryFull';
export { SvgBatteryHalf } from './BatteryHalf';
export { SvgBatteryLow } from './BatteryLow';
export { SvgBeverage } from './Beverage';
export { SvgBlock } from './Block';
export { SvgBluetooth } from './Bluetooth';
export { SvgBolt } from './Bolt';
export { SvgBookReference } from './BookReference';
export { SvgBookmarkCopy2 } from './BookmarkCopy2';
export { SvgBookmarkCopy3 } from './BookmarkCopy3';
export { SvgBookmarkOutlineAdd } from './BookmarkOutlineAdd';
export { SvgBookmarkOutline } from './BookmarkOutline';
export { SvgBookmark } from './Bookmark';
export { SvgBorderAll } from './BorderAll';
export { SvgBorderBottom } from './BorderBottom';
export { SvgBorderHorizontal } from './BorderHorizontal';
export { SvgBorderInner } from './BorderInner';
export { SvgBorderLeft } from './BorderLeft';
export { SvgBorderNone } from './BorderNone';
export { SvgBorderOuter } from './BorderOuter';
export { SvgBorderRight } from './BorderRight';
export { SvgBorderTop } from './BorderTop';
export { SvgBorderVertical } from './BorderVertical';
export { SvgBox } from './Box';
export { SvgBrightnessDown } from './BrightnessDown';
export { SvgBrightnessUp } from './BrightnessUp';
export { SvgBrowserWindowNew } from './BrowserWindowNew';
export { SvgBrowserWindowOpen } from './BrowserWindowOpen';
export { SvgBrowserWindow } from './BrowserWindow';
export { SvgBug } from './Bug';
export { SvgBuoy } from './Buoy';
export { SvgCalculator } from './Calculator';
export { SvgCalendar } from './Calendar';
export { SvgCamera } from './Camera';
export { SvgChartArea } from './ChartArea';
export { SvgChartBar } from './ChartBar';
export { SvgChartPie } from './ChartPie';
export { SvgChart } from './Chart';
export { SvgChatBubbleDots } from './ChatBubbleDots';
export { SvgCheckAlternative } from './CheckAlternative';
export { SvgCheckmarkOutline } from './CheckmarkOutline';
export { SvgCheckmark } from './Checkmark';
export { SvgCheveronDown } from './CheveronDown';
export { SvgCheveronLeft } from './CheveronLeft';
export { SvgCheveronOutlineDown } from './CheveronOutlineDown';
export { SvgCheveronOutlineLeft } from './CheveronOutlineLeft';
export { SvgCheveronOutlineRight } from './CheveronOutlineRight';
export { SvgCheveronOutlineUp } from './CheveronOutlineUp';
export { SvgCheveronRight } from './CheveronRight';
export { SvgCheveronUp } from './CheveronUp';
export { SvgClipboard } from './Clipboard';
export { SvgCloseOutline } from './CloseOutline';
export { SvgCloseSolid } from './CloseSolid';
export { SvgClose } from './Close';
export { SvgCloudCheck } from './CloudCheck';
export { SvgCloudDownload } from './CloudDownload';
export { SvgCloudUpload } from './CloudUpload';
export { SvgCloudWarning } from './CloudWarning';
export { SvgCloud } from './Cloud';
export { SvgCode } from './Code';
export { SvgCoffee } from './Coffee';
export { SvgCog } from './Cog';
export { SvgColorPalette } from './ColorPalette';
export { SvgCompose } from './Compose';
export { SvgComputerDesktop } from './ComputerDesktop';
export { SvgComputerLaptop } from './ComputerLaptop';
export { SvgConversation } from './Conversation';
export { SvgCopy } from './Copy';
export { SvgCreditCard } from './CreditCard';
export { SvgCurrencyDollar } from './CurrencyDollar';
export { SvgDashboard } from './Dashboard';
export { SvgDateAdd } from './DateAdd';
export { SvgDialPad } from './DialPad';
export { SvgDirections } from './Directions';
export { SvgDocumentAdd } from './DocumentAdd';
export { SvgDocument } from './Document';
export { SvgDotsHorizontalDouble } from './DotsHorizontalDouble';
export { SvgDotsHorizontalTriple } from './DotsHorizontalTriple';
export { SvgDownload } from './Download';
export { SvgDuplicate } from './Duplicate';
export { SvgEditCopy } from './EditCopy';
export { SvgEditCrop } from './EditCrop';
export { SvgEditCut } from './EditCut';
export { SvgEditPencil } from './EditPencil';
export { SvgEducation } from './Education';
export { SvgEnvelope } from './Envelope';
export { SvgEquals } from './Equals';
export { SvgExclamationOutline } from './ExclamationOutline';
export { SvgExclamationSolid } from './ExclamationSolid';
export { SvgExplore } from './Explore';
export { SvgFactory } from './Factory';
export { SvgFastForward } from './FastForward';
export { SvgFastRewind } from './FastRewind';
export { SvgFileDouble } from './FileDouble';
export { SvgFilm } from './Film';
export { SvgFilter } from './Filter';
export { SvgFlag } from './Flag';
export { SvgFlashlight } from './Flashlight';
export { SvgFolderOutlineAdd } from './FolderOutlineAdd';
export { SvgFolderOutline } from './FolderOutline';
export { SvgFolder } from './Folder';
export { SvgFormatBold } from './FormatBold';
export { SvgFormatFontSize } from './FormatFontSize';
export { SvgFormatItalic } from './FormatItalic';
export { SvgFormatTextSize } from './FormatTextSize';
export { SvgFormatUnderline } from './FormatUnderline';
export { SvgForwardStep } from './ForwardStep';
export { SvgForward } from './Forward';
export { SvgGift } from './Gift';
export { SvgGlobe } from './Globe';
export { SvgHandStop } from './HandStop';
export { SvgHardDrive } from './HardDrive';
export { SvgHeadphones } from './Headphones';
export { SvgHeart } from './Heart';
export { SvgHome } from './Home';
export { SvgHot } from './Hot';
export { SvgHourGlass } from './HourGlass';
export { SvgInboxCheck } from './InboxCheck';
export { SvgInboxDownload } from './InboxDownload';
export { SvgInboxFull } from './InboxFull';
export { SvgInbox } from './Inbox';
export { SvgIndentDecrease } from './IndentDecrease';
export { SvgIndentIncrease } from './IndentIncrease';
export { SvgInformationOutline } from './InformationOutline';
export { SvgInformationSolid } from './InformationSolid';
export { SvgKey } from './Key';
export { SvgKeyboard } from './Keyboard';
export { SvgLayers } from './Layers';
export { SvgLibrary } from './Library';
export { SvgLightBulb } from './LightBulb';
export { SvgLink } from './Link';
export { SvgListAdd } from './ListAdd';
export { SvgListBullet } from './ListBullet';
export { SvgList } from './List';
export { SvgLoadBalancer } from './LoadBalancer';
export { SvgLocationCurrent } from './LocationCurrent';
export { SvgLocationFood } from './LocationFood';
export { SvgLocationGasStation } from './LocationGasStation';
export { SvgLocationHotel } from './LocationHotel';
export { SvgLocationMarina } from './LocationMarina';
export { SvgLocationPark } from './LocationPark';
export { SvgLocationRestroom } from './LocationRestroom';
export { SvgLocationShopping } from './LocationShopping';
export { SvgLocation } from './Location';
export { SvgLockClosed } from './LockClosed';
export { SvgLockOpen } from './LockOpen';
export { SvgMap } from './Map';
export { SvgMenu } from './Menu';
export { SvgMic } from './Mic';
export { SvgMinusOutline } from './MinusOutline';
export { SvgMinusSolid } from './MinusSolid';
export { SvgMobileDevices } from './MobileDevices';
export { SvgMoneyBag } from './MoneyBag';
export { SvgMoodHappyOutline } from './MoodHappyOutline';
export { SvgMoodHappySolid } from './MoodHappySolid';
export { SvgMoodNeutralOutline } from './MoodNeutralOutline';
export { SvgMoodNeutralSolid } from './MoodNeutralSolid';
export { SvgMoodSadOutline } from './MoodSadOutline';
export { SvgMoodSadSolid } from './MoodSadSolid';
export { SvgMouse } from './Mouse';
export { SvgMoveBack } from './MoveBack';
export { SvgMusicAlbum } from './MusicAlbum';
export { SvgMusicArtist } from './MusicArtist';
export { SvgMusicNotes } from './MusicNotes';
export { SvgMusicPlaylist } from './MusicPlaylist';
export { SvgNavigationMore } from './NavigationMore';
export { SvgNetwork } from './Network';
export { SvgNewsPaper } from './NewsPaper';
export { SvgNotification } from './Notification';
export { SvgNotificationsOutline } from './NotificationsOutline';
export { SvgNotifications } from './Notifications';
export { SvgPaste } from './Paste';
export { SvgPauseOutline } from './PauseOutline';
export { SvgPauseSolid } from './PauseSolid';
export { SvgPause } from './Pause';
export { SvgPenTool } from './PenTool';
export { SvgPencilWrite } from './PencilWrite';
export { SvgPhone } from './Phone';
export { SvgPhoto } from './Photo';
export { SvgPhpElephant } from './PhpElephant';
export { SvgPiggyBank } from './PiggyBank';
export { SvgPin } from './Pin';
export { SvgPlayOutline } from './PlayOutline';
export { SvgPlay } from './Play';
export { SvgPlaylist } from './Playlist';
export { SvgPlugin } from './Plugin';
export { SvgPortfolio } from './Portfolio';
export { SvgPrinter } from './Printer';
export { SvgPylon } from './Pylon';
export { SvgQuestion } from './Question';
export { SvgQueue } from './Queue';
export { SvgRadarCopy2 } from './RadarCopy2';
export { SvgRadar } from './Radar';
export { SvgRadio } from './Radio';
export { SvgRefresh } from './Refresh';
export { SvgReload } from './Reload';
export { SvgReplyAll } from './ReplyAll';
export { SvgReply } from './Reply';
export { SvgReports } from './Reports';
export { SvgRepost } from './Repost';
export { SvgSaveDisk } from './SaveDisk';
export { SvgScreenFull } from './ScreenFull';
export { SvgSearch } from './Search';
export { SvgSend } from './Send';
export { SvgServers } from './Servers';
export { SvgShare01 } from './Share01';
export { SvgShareAlt } from './ShareAlt';
export { SvgShare } from './Share';
export { SvgShield } from './Shield';
export { SvgShoppingCart } from './ShoppingCart';
export { SvgShowSidebar } from './ShowSidebar';
export { SvgShuffle } from './Shuffle';
export { SvgStandBy } from './StandBy';
export { SvgStarFull } from './StarFull';
export { SvgStation } from './Station';
export { SvgStepBackward } from './StepBackward';
export { SvgStepForward } from './StepForward';
export { SvgStethoscope } from './Stethoscope';
export { SvgStoreFront } from './StoreFront';
export { SvgStrokeWidth } from './StrokeWidth';
export { SvgSubdirectoryLeft } from './SubdirectoryLeft';
export { SvgSubdirectoryRight } from './SubdirectoryRight';
export { SvgSubtract } from './Subtract';
export { SvgSwap } from './Swap';
export { SvgTablet } from './Tablet';
export { SvgTag } from './Tag';
export { SvgTarget } from './Target';
export { SvgTextBox } from './TextBox';
export { SvgTextDecoration } from './TextDecoration';
export { SvgThermometer } from './Thermometer';
export { SvgThumbsDown } from './ThumbsDown';
export { SvgThumbsUp } from './ThumbsUp';
export { SvgTicket } from './Ticket';
export { SvgTime } from './Time';
export { SvgTimer } from './Timer';
export { SvgToolsCopy } from './ToolsCopy';
export { SvgTranslate } from './Translate';
export { SvgTrash } from './Trash';
export { SvgTravelBus } from './TravelBus';
export { SvgTravelCar } from './TravelCar';
export { SvgTravelCase } from './TravelCase';
export { SvgTravelTaxiCab } from './TravelTaxiCab';
export { SvgTravelTrain } from './TravelTrain';
export { SvgTravelWalk } from './TravelWalk';
export { SvgTravel } from './Travel';
export { SvgTrophy } from './Trophy';
export { SvgTuning } from './Tuning';
export { SvgUpload } from './Upload';
export { SvgUsb } from './Usb';
export { SvgUserAdd } from './UserAdd';
export { SvgUserGroup } from './UserGroup';
export { SvgUserSolidCircle } from './UserSolidCircle';
export { SvgUserSolidSquare } from './UserSolidSquare';
export { SvgUser } from './User';
export { SvgVector } from './Vector';
export { SvgVideoCamera } from './VideoCamera';
export { SvgViewCarousel } from './ViewCarousel';
export { SvgViewColumn } from './ViewColumn';
export { SvgViewHide } from './ViewHide';
export { SvgViewList } from './ViewList';
export { SvgViewShow } from './ViewShow';
export { SvgViewTile } from './ViewTile';
export { SvgVolumeDown } from './VolumeDown';
export { SvgVolumeMute } from './VolumeMute';
export { SvgVolumeOff } from './VolumeOff';
export { SvgVolumeUp } from './VolumeUp';
export { SvgWallet } from './Wallet';
export { SvgWatch } from './Watch';
export { SvgWindowNew } from './WindowNew';
export { SvgWindowOpen } from './WindowOpen';
export { SvgWindow } from './Window';
export { SvgWrench } from './Wrench';
export { SvgYinYang } from './YinYang';
export { SvgZoomIn } from './ZoomIn';
export { SvgZoomOut } from './ZoomOut';

View File

@@ -1,51 +0,0 @@
export { SvgAlertTriangle } from './AlertTriangle';
export { SvgArrowButtonDown1 } from './ArrowButtonDown1';
export { SvgArrowButtonLeft1 } from './ArrowButtonLeft1';
export { SvgArrowButtonRight1 } from './ArrowButtonRight1';
export { SvgArrowButtonUp1 } from './ArrowButtonUp1';
export { SvgArrowsExpand3 } from './ArrowsExpand3';
export { SvgArrowsShrink3 } from './ArrowsShrink3';
export { SvgArrowsSynchronize } from './ArrowsSynchronize';
export { SvgCalendar } from './Calendar';
export { SvgCalendar3 } from './Calendar3';
export { SvgCheck } from './Check';
export { SvgCheckAll } from './CheckAll';
export { SvgCheckCircle1 } from './CheckCircle1';
export { SvgCheckCircleHollow } from './CheckCircleHollow';
export { SvgCloseParenthesis } from './CloseParenthesis';
export { SvgCloudUnknown } from './CloudUnknown';
export { SvgCloudUpload } from './CloudUpload';
export { SvgCustomNotesPaper } from './CustomNotesPaper';
export { SvgDownAndRightArrow } from './DownAndRightArrow';
export { SvgDownloadThickBottom } from './DownloadThickBottom';
export { SvgEditSkull1 } from './EditSkull1';
export { SvgFavoriteStar } from './FavoriteStar';
export { SvgFilter2 } from './Filter2';
export { SvgHelp } from './Help';
export { SvgHyperlink2 } from './Hyperlink2';
export { SvgHyperlink3 } from './Hyperlink3';
export { SvgInformationCircle } from './InformationCircle';
export { SvgKey } from './Key';
export { SvgLockClosed } from './LockClosed';
export { SvgMoonStars } from './MoonStars';
export { SvgNavigationMenu } from './NavigationMenu';
export { SvgNotesPaper } from './NotesPaper';
export { SvgNotesPaperText } from './NotesPaperText';
export { SvgOpenParenthesis } from './OpenParenthesis';
export { SvgPencil1 } from './Pencil1';
export { SvgPencilWriteAlternate } from './PencilWriteAlternate';
export { SvgRefreshArrow } from './RefreshArrow';
export { SvgRemove } from './Remove';
export { SvgRemoveAlternate } from './RemoveAlternate';
export { SvgSearch1 } from './Search1';
export { SvgSearchAlternate } from './SearchAlternate';
export { SvgSettingsSliderAlternate } from './SettingsSliderAlternate';
export { SvgSubtract } from './Subtract';
export { SvgSum } from './Sum';
export { SvgSun } from './Sun';
export { SvgSystem } from './System';
export { SvgUncheckAll } from './UncheckAll';
export { SvgUploadThickBottom } from './UploadThickBottom';
export { SvgValidationCheck } from './ValidationCheck';
export { SvgViewHide } from './ViewHide';
export { SvgViewShow } from './ViewShow';

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Some files were not shown because too many files have changed in this diff Show More