├── .gitignore ├── Classes └── Suffle │ └── Snapshot │ ├── Aspects │ └── FusionCachingAspect.php │ ├── Command │ └── SnapshotCommandController.php │ ├── Controller │ ├── ApiController.php │ ├── OverviewController.php │ └── SnapshotController.php │ ├── Diff │ └── DiffOutputBuilder.php │ ├── Fusion │ ├── FusionService.php │ └── FusionView.php │ ├── Package.php │ ├── Resource │ └── Target │ │ └── OverridableFileSystemTarget.php │ ├── Service │ ├── FileStorage.php │ ├── SnapshotService.php │ └── TestingService.php │ └── Traits │ ├── OutputTrait.php │ ├── PackageTrait.php │ └── SimulateContextTrait.php ├── Configuration ├── Caches.yaml ├── Objects.yaml ├── Policy.yaml ├── Routes.yaml └── Settings.yaml ├── LICENSE ├── README.md ├── Resources ├── Private │ ├── App │ │ ├── index.html │ │ └── src │ │ │ ├── Neos │ │ │ ├── Button │ │ │ │ ├── button.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ ├── DropDown │ │ │ │ ├── contents.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── style.css │ │ │ │ └── wrapper.tsx │ │ │ ├── Icon │ │ │ │ ├── icon.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ ├── IconButton │ │ │ │ ├── iconButton.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ ├── ListPreviewElement │ │ │ │ ├── index.js │ │ │ │ ├── listPreviewElement.js │ │ │ │ └── style.css │ │ │ ├── SelectBox │ │ │ │ ├── config.js │ │ │ │ ├── index.js │ │ │ │ ├── selectBox.js │ │ │ │ └── style.css │ │ │ ├── SelectBox_Header │ │ │ │ ├── index.js │ │ │ │ ├── selectBox_Header.js │ │ │ │ └── style.css │ │ │ ├── SelectBox_ListPreview │ │ │ │ ├── index.js │ │ │ │ └── selectBox_ListPreview.js │ │ │ ├── SelectBox_ListPreviewFlat │ │ │ │ ├── index.js │ │ │ │ └── selectBox_ListPreviewFlat.js │ │ │ ├── SelectBox_Option_SingleLine │ │ │ │ ├── index.js │ │ │ │ └── selectBox_Option_SingleLine.js │ │ │ ├── SideBar │ │ │ │ ├── index.ts │ │ │ │ ├── sideBar.tsx │ │ │ │ └── style.css │ │ │ ├── TextInput │ │ │ │ ├── index.ts │ │ │ │ ├── style.css │ │ │ │ └── textInput.tsx │ │ │ ├── _lib │ │ │ │ ├── focusNode.ts │ │ │ │ ├── injectProps.js │ │ │ │ ├── storyUtils.js │ │ │ │ └── testUtils.js │ │ │ ├── enhanceWithClickOutside │ │ │ │ └── index.tsx │ │ │ ├── identifiers.ts │ │ │ ├── reset.css │ │ │ └── types.d.ts │ │ │ ├── actions │ │ │ ├── appState.ts │ │ │ ├── index.ts │ │ │ ├── loadingState.ts │ │ │ ├── packages.ts │ │ │ ├── previewMarkup.ts │ │ │ └── prototype.ts │ │ │ ├── components │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── CodeView │ │ │ │ ├── CodeView.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── CompareView │ │ │ │ ├── CompareView.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── Header │ │ │ │ ├── Header.tsx │ │ │ │ └── index.tsx │ │ │ ├── LoadingScreen │ │ │ │ ├── LoadingScreen.tsx │ │ │ │ └── index.tsx │ │ │ ├── MainContent │ │ │ │ ├── MainContent.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ ├── MarkupRenderer │ │ │ │ ├── MarkupRenderer.tsx │ │ │ │ └── index.tsx │ │ │ ├── PropSetHeader │ │ │ │ ├── PropSetHeader.tsx │ │ │ │ └── index.tsx │ │ │ ├── PropSetList │ │ │ │ ├── PropSetList.tsx │ │ │ │ ├── PropSetListItem.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── propSetListItemStyle.css │ │ │ ├── PropSetView │ │ │ │ ├── PropSetView.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── PrototypeSelectView │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── RenderView │ │ │ │ ├── RenderView.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── SearchBar │ │ │ │ ├── SearchBar.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── SelectList │ │ │ │ ├── DefaultItem.tsx │ │ │ │ ├── SelectList.tsx │ │ │ │ ├── defaultItemStyle.css │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ ├── SideBarLeft │ │ │ │ ├── SideBarLeft.tsx │ │ │ │ └── index.tsx │ │ │ ├── SideBarRight │ │ │ │ ├── SideBarRight.tsx │ │ │ │ └── index.tsx │ │ │ ├── SitePackageDropdown │ │ │ │ ├── SitePackageDropdown.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── SnapshotUi │ │ │ │ ├── SnapshotUi.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ └── TabView │ │ │ │ ├── TabLabel.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── style.css │ │ │ │ └── tabLabel.css │ │ │ ├── config │ │ │ ├── env.ts │ │ │ ├── initialState.ts │ │ │ └── store.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reducers │ │ │ ├── availablePrototypesReducer.ts │ │ │ ├── endpointReducer.ts │ │ │ ├── index.ts │ │ │ ├── loadingStateReducer.ts │ │ │ ├── packagesReducer.ts │ │ │ ├── previewMarkupReducer.ts │ │ │ └── prototypeReducer.ts │ │ │ ├── sagas │ │ │ ├── appState.ts │ │ │ ├── index.ts │ │ │ ├── packages.ts │ │ │ ├── prototype.ts │ │ │ └── selectors.ts │ │ │ ├── serviceWorker.ts │ │ │ ├── type │ │ │ ├── Config.d.ts │ │ │ ├── Prototype.d.ts │ │ │ └── SitePackages.d.ts │ │ │ └── utils │ │ │ └── prettifyXml.ts │ ├── Fusion │ │ └── Root.fusion │ ├── Layouts │ │ └── BackendSubModule.html │ ├── Partials │ │ └── FlashMessages.html │ └── Templates │ │ ├── Overview │ │ └── Index.html │ │ └── Snapshot │ │ └── Index.html └── Public │ ├── css │ └── main.css │ └── js │ └── main.js ├── composer.json ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── styles │ └── styleConstants.js ├── webpack.config.js └── webpackDevServer.config.js ├── package.json ├── scripts ├── build.js ├── start.js └── test.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Aspects/FusionCachingAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Aspects/FusionCachingAspect.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Command/SnapshotCommandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Command/SnapshotCommandController.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Controller/ApiController.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Controller/OverviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Controller/OverviewController.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Controller/SnapshotController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Controller/SnapshotController.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Diff/DiffOutputBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Diff/DiffOutputBuilder.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Fusion/FusionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Fusion/FusionService.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Fusion/FusionView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Fusion/FusionView.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Package.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Resource/Target/OverridableFileSystemTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Resource/Target/OverridableFileSystemTarget.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Service/FileStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Service/FileStorage.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Service/SnapshotService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Service/SnapshotService.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Service/TestingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Service/TestingService.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Traits/OutputTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Traits/OutputTrait.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Traits/PackageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Traits/PackageTrait.php -------------------------------------------------------------------------------- /Classes/Suffle/Snapshot/Traits/SimulateContextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Classes/Suffle/Snapshot/Traits/SimulateContextTrait.php -------------------------------------------------------------------------------- /Configuration/Caches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Configuration/Caches.yaml -------------------------------------------------------------------------------- /Configuration/Objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Configuration/Objects.yaml -------------------------------------------------------------------------------- /Configuration/Policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Configuration/Policy.yaml -------------------------------------------------------------------------------- /Configuration/Routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Configuration/Routes.yaml -------------------------------------------------------------------------------- /Configuration/Settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Configuration/Settings.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Private/App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/index.html -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Button/button.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Button/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Button/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/DropDown/contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/DropDown/contents.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/DropDown/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/DropDown/header.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/DropDown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/DropDown/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/DropDown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/DropDown/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/DropDown/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/DropDown/wrapper.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Icon/icon.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Icon/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/Icon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/Icon/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/IconButton/iconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/IconButton/iconButton.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/IconButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/IconButton/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/IconButton/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/IconButton/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/ListPreviewElement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/ListPreviewElement/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/ListPreviewElement/listPreviewElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/ListPreviewElement/listPreviewElement.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/ListPreviewElement/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/ListPreviewElement/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox/config.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox/selectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox/selectBox.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_Header/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_Header/selectBox_Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_Header/selectBox_Header.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_Header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_Header/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_ListPreview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_ListPreview/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_ListPreview/selectBox_ListPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_ListPreview/selectBox_ListPreview.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_ListPreviewFlat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_ListPreviewFlat/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_ListPreviewFlat/selectBox_ListPreviewFlat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_ListPreviewFlat/selectBox_ListPreviewFlat.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_Option_SingleLine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_Option_SingleLine/index.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SelectBox_Option_SingleLine/selectBox_Option_SingleLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SelectBox_Option_SingleLine/selectBox_Option_SingleLine.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SideBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SideBar/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SideBar/sideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SideBar/sideBar.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/SideBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/SideBar/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/TextInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/TextInput/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/TextInput/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/TextInput/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/TextInput/textInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/TextInput/textInput.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/_lib/focusNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/_lib/focusNode.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/_lib/injectProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/_lib/injectProps.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/_lib/storyUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/_lib/storyUtils.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/_lib/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/_lib/testUtils.js -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/enhanceWithClickOutside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/enhanceWithClickOutside/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/identifiers.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/reset.css -------------------------------------------------------------------------------- /Resources/Private/App/src/Neos/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/Neos/types.d.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/appState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/actions/appState.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/loadingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/actions/loadingState.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/actions/packages.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/previewMarkup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/actions/previewMarkup.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/actions/prototype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/actions/prototype.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/App.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/App.test.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/App.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CodeView/CodeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/CodeView/CodeView.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CodeView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/CodeView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CodeView/style.css: -------------------------------------------------------------------------------- 1 | .diffView { 2 | background-color: #fff; 3 | } -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CompareView/CompareView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/CompareView/CompareView.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CompareView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/CompareView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/CompareView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/CompareView/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/Header/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/LoadingScreen/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/LoadingScreen/LoadingScreen.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/LoadingScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/LoadingScreen/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/MainContent/MainContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/MainContent/MainContent.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/MainContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/MainContent/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/components/MainContent/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/MainContent/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/MarkupRenderer/MarkupRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/MarkupRenderer/MarkupRenderer.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/MarkupRenderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/MarkupRenderer/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetHeader/PropSetHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetHeader/PropSetHeader.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetHeader/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetList/PropSetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetList/PropSetList.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetList/PropSetListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetList/PropSetListItem.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetList/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetList/propSetListItemStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetList/propSetListItemStyle.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetView/PropSetView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetView/PropSetView.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PropSetView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PropSetView/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PrototypeSelectView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PrototypeSelectView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/PrototypeSelectView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/PrototypeSelectView/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/RenderView/RenderView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/RenderView/RenderView.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/RenderView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/RenderView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/RenderView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/RenderView/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SearchBar/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SearchBar/SearchBar.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SearchBar/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SearchBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SearchBar/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SelectList/DefaultItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SelectList/DefaultItem.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SelectList/SelectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SelectList/SelectList.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SelectList/defaultItemStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SelectList/defaultItemStyle.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SelectList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SelectList/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SelectList/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SelectList/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SideBarLeft/SideBarLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SideBarLeft/SideBarLeft.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SideBarLeft/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SideBarLeft/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SideBarRight/SideBarRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SideBarRight/SideBarRight.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SideBarRight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SideBarRight/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SitePackageDropdown/SitePackageDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SitePackageDropdown/SitePackageDropdown.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SitePackageDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SitePackageDropdown/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SitePackageDropdown/style.css: -------------------------------------------------------------------------------- 1 | .sitePackageDropdown { 2 | max-width: 250px; 3 | } -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SnapshotUi/SnapshotUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SnapshotUi/SnapshotUi.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SnapshotUi/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SnapshotUi/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/SnapshotUi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/SnapshotUi/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/TabView/TabLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/TabView/TabLabel.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/TabView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/TabView/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/components/TabView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/TabView/style.css -------------------------------------------------------------------------------- /Resources/Private/App/src/components/TabView/tabLabel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/components/TabView/tabLabel.css -------------------------------------------------------------------------------- /Resources/Private/App/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/config/env.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/config/initialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/config/initialState.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/config/store.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/index.css -------------------------------------------------------------------------------- /Resources/Private/App/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/index.tsx -------------------------------------------------------------------------------- /Resources/Private/App/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/logo.svg -------------------------------------------------------------------------------- /Resources/Private/App/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/availablePrototypesReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/availablePrototypesReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/endpointReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/endpointReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/loadingStateReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/loadingStateReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/packagesReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/packagesReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/previewMarkupReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/previewMarkupReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/reducers/prototypeReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/reducers/prototypeReducer.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/sagas/appState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/sagas/appState.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/sagas/index.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/sagas/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/sagas/packages.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/sagas/prototype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/sagas/prototype.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/sagas/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/sagas/selectors.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/serviceWorker.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/type/Config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/type/Config.d.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/type/Prototype.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/type/Prototype.d.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/type/SitePackages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/type/SitePackages.d.ts -------------------------------------------------------------------------------- /Resources/Private/App/src/utils/prettifyXml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/App/src/utils/prettifyXml.ts -------------------------------------------------------------------------------- /Resources/Private/Fusion/Root.fusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/Fusion/Root.fusion -------------------------------------------------------------------------------- /Resources/Private/Layouts/BackendSubModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/Layouts/BackendSubModule.html -------------------------------------------------------------------------------- /Resources/Private/Partials/FlashMessages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/Partials/FlashMessages.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Overview/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/Templates/Overview/Index.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Snapshot/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Private/Templates/Snapshot/Index.html -------------------------------------------------------------------------------- /Resources/Public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Public/css/main.css -------------------------------------------------------------------------------- /Resources/Public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/Resources/Public/js/main.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/composer.json -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/styles/styleConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/styles/styleConstants.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/scripts/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suffle/Suffle.Snapshot/HEAD/yarn.lock --------------------------------------------------------------------------------