├── .babelrc.js ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets.sketch ├── package.json ├── postcss.config.js ├── src ├── App.jsx ├── ThemeProvider.jsx ├── apps │ ├── b64-encoding │ │ ├── B64Encoding.jsx │ │ └── B64Encoding.styles.less │ ├── color-shades-generator │ │ ├── ColorShadesGenerator.jsx │ │ ├── ColorShadesGenerator.styles.less │ │ ├── ColorShadesList │ │ │ ├── ColorShadesList.jsx │ │ │ └── ColorShadesList.styles.less │ │ └── Settings │ │ │ ├── Settings.jsx │ │ │ └── Settings.styles.less │ ├── css-cursors │ │ ├── CssCursors.jsx │ │ ├── CssCursors.styles.less │ │ ├── CursorControl │ │ │ ├── CursorControl.jsx │ │ │ └── CursorControl.styles.less │ │ └── data.js │ ├── events-keycode │ │ ├── EventInfo │ │ │ ├── EventInfo.jsx │ │ │ └── EventInfo.styles.less │ │ ├── EventsKeycode.jsx │ │ ├── EventsKeycode.styles.less │ │ ├── Header │ │ │ ├── Header.jsx │ │ │ ├── Header.styles.less │ │ │ └── Keycap │ │ │ │ ├── Keycap.jsx │ │ │ │ └── Keycap.styles.less │ │ ├── generate-event-data.js │ │ └── generate-usage.js │ ├── fake-data-generator │ │ ├── FakeDataGenerator.jsx │ │ ├── Output │ │ │ ├── Output.jsx │ │ │ └── Output.styles.less │ │ ├── Settings │ │ │ ├── Settings.jsx │ │ │ └── Settings.styles.less │ │ └── generator.js │ ├── gradient-generator │ │ ├── GradientCode │ │ │ ├── GradientCode.jsx │ │ │ └── GradientCode.styles.less │ │ ├── GradientColors │ │ │ ├── GradientColors.jsx │ │ │ ├── GradientColors.styles.less │ │ │ └── X.jsx │ │ ├── GradientGenerator.jsx │ │ ├── GradientGenerator.styles.less │ │ ├── GradientLine │ │ │ ├── ColorStop │ │ │ │ ├── ColorStop.jsx │ │ │ │ └── ColorStop.styles.less │ │ │ ├── GradientLine.jsx │ │ │ ├── GradientLine.styles.less │ │ │ └── get-random-color.js │ │ ├── GradientPreview │ │ │ ├── GradientPreview.jsx │ │ │ └── GradientPreview.styles.less │ │ ├── GradientSettings │ │ │ ├── GradientSettings.jsx │ │ │ └── GradientSettings.styles.less │ │ ├── GradientsGallery │ │ │ ├── GradientGalleryItem │ │ │ │ ├── GradientGalleryItem.jsx │ │ │ │ └── GradientGalleryItem.styles.less │ │ │ ├── GradientsGallery.jsx │ │ │ ├── GradientsGallery.styles.less │ │ │ └── data.js │ │ └── generate-gradient-value.js │ ├── html-symbols │ │ ├── HtmlSymbols.jsx │ │ ├── HtmlSymbols.styles.less │ │ └── symbols │ │ │ ├── arrows-symbols.js │ │ │ ├── fractions-symbols.js │ │ │ ├── index.js │ │ │ ├── math-symbols.js │ │ │ ├── most-used-symbols.js │ │ │ ├── punctuation-symbols.js │ │ │ └── special-symbols.js │ ├── lorem-ipsum │ │ ├── LoremIpsum.jsx │ │ ├── Preview │ │ │ ├── Preview.jsx │ │ │ └── Preview.styles.less │ │ ├── Settings │ │ │ ├── Settings.jsx │ │ │ └── Settings.styles.less │ │ └── generate-text.js │ ├── page-dividers │ │ ├── Output │ │ │ ├── Output.jsx │ │ │ ├── Output.styles.less │ │ │ └── generate-example.js │ │ ├── PageDividers.jsx │ │ ├── Preview │ │ │ ├── Preview.jsx │ │ │ └── Preview.styles.less │ │ ├── Settings │ │ │ ├── Settings.jsx │ │ │ └── Settings.styles.less │ │ ├── Shape │ │ │ ├── Shape.jsx │ │ │ ├── Tilt.jsx │ │ │ ├── Triangles.jsx │ │ │ ├── Waves.jsx │ │ │ └── WavesOpaque.jsx │ │ └── assets │ │ │ ├── index.js │ │ │ ├── tilt.svg │ │ │ ├── triangles.svg │ │ │ ├── waves-opaque.svg │ │ │ └── waves.svg │ ├── svg-compressor │ │ ├── CompressedResult │ │ │ ├── CompressedResult.jsx │ │ │ └── CompressedResult.styles.less │ │ ├── Output │ │ │ ├── Output.jsx │ │ │ └── Output.styles.less │ │ ├── SvgCompressor.jsx │ │ └── format-file-name.js │ ├── svg-to-jsx │ │ ├── Output │ │ │ ├── Output.jsx │ │ │ └── Output.styles.less │ │ └── SvgToJsx.jsx │ └── triangle-generator │ │ ├── Code │ │ ├── Code.jsx │ │ ├── Code.styles.less │ │ └── generate-example.js │ │ ├── ColorPicker │ │ ├── ColorPicker.jsx │ │ ├── ColorPicker.styles.less │ │ └── Swatch │ │ │ ├── Swatch.jsx │ │ │ └── Swatch.styles.less │ │ ├── DirectionPicker │ │ ├── Chevron.jsx │ │ ├── DirectionPicker.jsx │ │ └── DirectionPicker.styles.less │ │ ├── Settings │ │ ├── Settings.jsx │ │ └── Settings.styles.less │ │ ├── SizePicker │ │ ├── SizePicker.jsx │ │ └── SizePicker.styles.less │ │ ├── Triangle │ │ └── Triangle.jsx │ │ ├── TriangleGenerator.jsx │ │ ├── TriangleGenerator.styles.less │ │ ├── TrianglePreview │ │ ├── ThemeToggle │ │ │ ├── ThemeToggle.jsx │ │ │ └── ThemeToggle.styles.less │ │ ├── TrianglePreview.jsx │ │ └── TrianglePreview.styles.less │ │ ├── directions.js │ │ └── get-triangle-styles.js ├── assets │ ├── app-icons │ │ ├── b64-encoding.svg │ │ ├── color-shades-generator.svg │ │ ├── css-cursors.svg │ │ ├── events-keycode.svg │ │ ├── fake-data-generator.svg │ │ ├── gradient-generator.svg │ │ ├── html-symbols.svg │ │ ├── index.js │ │ ├── lorem-ipsum.svg │ │ ├── page-dividers.svg │ │ ├── svg-compressor.svg │ │ ├── svg-to-jsx.svg │ │ └── triangle-generator.svg │ ├── logo-text-white.svg │ ├── logo-text.svg │ └── logo.svg ├── components │ ├── AppContainer │ │ ├── AppContainer.jsx │ │ └── AppContainer.styles.less │ ├── Background │ │ ├── Background.jsx │ │ └── Background.styles.less │ ├── Button │ │ ├── Button.jsx │ │ └── Button.styles.less │ ├── CopyCodeButton │ │ └── CopyCodeButton.jsx │ ├── DropPlaceholder │ │ ├── DropPlaceholder.jsx │ │ └── DropPlaceholder.styles.less │ ├── Dropzone │ │ ├── Dropzone.jsx │ │ └── Dropzone.styles.less │ ├── GithubButton │ │ ├── GithubButton.jsx │ │ └── GithubButton.styles.less │ ├── HexInput │ │ ├── HexInput.jsx │ │ └── HexInput.styles.less │ ├── Highlight │ │ ├── Highlight.jsx │ │ └── Highlight.styles.less │ ├── Input │ │ ├── Input.jsx │ │ └── Input.styles.less │ ├── Navbar │ │ ├── Navbar.jsx │ │ └── Navbar.styles.less │ ├── NumberInput │ │ └── NumberInput.jsx │ ├── PageBase │ │ ├── Footer │ │ │ ├── Footer.jsx │ │ │ └── Footer.styles.less │ │ ├── Header │ │ │ ├── Header.jsx │ │ │ └── Header.styles.less │ │ ├── PageBase.jsx │ │ └── PageBase.styles.less │ ├── Select │ │ ├── Select.jsx │ │ └── Select.styles.less │ ├── SettingsLabel │ │ ├── SettingsLabel.jsx │ │ └── SettingsLabel.styles.less │ ├── SliderInput │ │ ├── Slider.jsx │ │ ├── Slider.styles.less │ │ ├── SliderInput.jsx │ │ └── SliderInput.styles.less │ ├── SvgInput │ │ ├── SvgInput.jsx │ │ ├── SvgInput.styles.less │ │ └── example.js │ ├── Tabs │ │ ├── Tabs.jsx │ │ └── Tabs.styles.less │ └── ThemeControl │ │ ├── ThemeControl.jsx │ │ ├── ThemeControl.styles.less │ │ └── ThemeIcon.jsx ├── index.jsx ├── pages │ ├── about │ │ ├── About.jsx │ │ ├── About.styles.less │ │ ├── Application.jsx │ │ ├── Contributors │ │ │ ├── Contributors.jsx │ │ │ ├── Contributors.styles.less │ │ │ └── icons │ │ │ │ ├── github-white.svg │ │ │ │ ├── github.svg │ │ │ │ ├── telegram.svg │ │ │ │ └── twitter.svg │ │ └── Credits.jsx │ ├── index │ │ ├── Index.jsx │ │ ├── Index.styles.less │ │ └── ToolCard │ │ │ ├── ToolCard.jsx │ │ │ └── ToolCard.styles.less │ └── not-found │ │ ├── NotFound.jsx │ │ ├── NotFound.styles.less │ │ └── not-found.svg ├── settings.js ├── styles.less ├── utils │ └── process-svg-file.js └── workers │ ├── b64.worker.js │ ├── svg-to-jsx.worker.js │ └── svgo.worker.js ├── webpack.config.js └── yarn.lock /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | dist 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@rtivital/eslint-config/.prettierrc'); 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/README.md -------------------------------------------------------------------------------- /assets.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/assets.sketch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/ThemeProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/ThemeProvider.jsx -------------------------------------------------------------------------------- /src/apps/b64-encoding/B64Encoding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/b64-encoding/B64Encoding.jsx -------------------------------------------------------------------------------- /src/apps/b64-encoding/B64Encoding.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/b64-encoding/B64Encoding.styles.less -------------------------------------------------------------------------------- /src/apps/color-shades-generator/ColorShadesGenerator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/ColorShadesGenerator.jsx -------------------------------------------------------------------------------- /src/apps/color-shades-generator/ColorShadesGenerator.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/ColorShadesGenerator.styles.less -------------------------------------------------------------------------------- /src/apps/color-shades-generator/ColorShadesList/ColorShadesList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/ColorShadesList/ColorShadesList.jsx -------------------------------------------------------------------------------- /src/apps/color-shades-generator/ColorShadesList/ColorShadesList.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/ColorShadesList/ColorShadesList.styles.less -------------------------------------------------------------------------------- /src/apps/color-shades-generator/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/Settings/Settings.jsx -------------------------------------------------------------------------------- /src/apps/color-shades-generator/Settings/Settings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/color-shades-generator/Settings/Settings.styles.less -------------------------------------------------------------------------------- /src/apps/css-cursors/CssCursors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/css-cursors/CssCursors.jsx -------------------------------------------------------------------------------- /src/apps/css-cursors/CssCursors.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/css-cursors/CssCursors.styles.less -------------------------------------------------------------------------------- /src/apps/css-cursors/CursorControl/CursorControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/css-cursors/CursorControl/CursorControl.jsx -------------------------------------------------------------------------------- /src/apps/css-cursors/CursorControl/CursorControl.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/css-cursors/CursorControl/CursorControl.styles.less -------------------------------------------------------------------------------- /src/apps/css-cursors/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/css-cursors/data.js -------------------------------------------------------------------------------- /src/apps/events-keycode/EventInfo/EventInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/EventInfo/EventInfo.jsx -------------------------------------------------------------------------------- /src/apps/events-keycode/EventInfo/EventInfo.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/EventInfo/EventInfo.styles.less -------------------------------------------------------------------------------- /src/apps/events-keycode/EventsKeycode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/EventsKeycode.jsx -------------------------------------------------------------------------------- /src/apps/events-keycode/EventsKeycode.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/EventsKeycode.styles.less -------------------------------------------------------------------------------- /src/apps/events-keycode/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/Header/Header.jsx -------------------------------------------------------------------------------- /src/apps/events-keycode/Header/Header.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/Header/Header.styles.less -------------------------------------------------------------------------------- /src/apps/events-keycode/Header/Keycap/Keycap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/Header/Keycap/Keycap.jsx -------------------------------------------------------------------------------- /src/apps/events-keycode/Header/Keycap/Keycap.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/Header/Keycap/Keycap.styles.less -------------------------------------------------------------------------------- /src/apps/events-keycode/generate-event-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/generate-event-data.js -------------------------------------------------------------------------------- /src/apps/events-keycode/generate-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/events-keycode/generate-usage.js -------------------------------------------------------------------------------- /src/apps/fake-data-generator/FakeDataGenerator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/FakeDataGenerator.jsx -------------------------------------------------------------------------------- /src/apps/fake-data-generator/Output/Output.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/Output/Output.jsx -------------------------------------------------------------------------------- /src/apps/fake-data-generator/Output/Output.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/Output/Output.styles.less -------------------------------------------------------------------------------- /src/apps/fake-data-generator/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/Settings/Settings.jsx -------------------------------------------------------------------------------- /src/apps/fake-data-generator/Settings/Settings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/Settings/Settings.styles.less -------------------------------------------------------------------------------- /src/apps/fake-data-generator/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/fake-data-generator/generator.js -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientCode/GradientCode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientCode/GradientCode.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientCode/GradientCode.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientCode/GradientCode.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientColors/GradientColors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientColors/GradientColors.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientColors/GradientColors.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientColors/GradientColors.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientColors/X.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientColors/X.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientGenerator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientGenerator.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientGenerator.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientGenerator.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientLine/ColorStop/ColorStop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientLine/ColorStop/ColorStop.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientLine/ColorStop/ColorStop.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientLine/ColorStop/ColorStop.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientLine/GradientLine.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientLine/GradientLine.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientLine/GradientLine.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientLine/GradientLine.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientLine/get-random-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientLine/get-random-color.js -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientPreview/GradientPreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientPreview/GradientPreview.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientPreview/GradientPreview.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientPreview/GradientPreview.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientSettings/GradientSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientSettings/GradientSettings.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientSettings/GradientSettings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientSettings/GradientSettings.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientsGallery/GradientGalleryItem/GradientGalleryItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientsGallery/GradientGalleryItem/GradientGalleryItem.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientsGallery/GradientGalleryItem/GradientGalleryItem.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientsGallery/GradientGalleryItem/GradientGalleryItem.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientsGallery/GradientsGallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientsGallery/GradientsGallery.jsx -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientsGallery/GradientsGallery.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientsGallery/GradientsGallery.styles.less -------------------------------------------------------------------------------- /src/apps/gradient-generator/GradientsGallery/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/GradientsGallery/data.js -------------------------------------------------------------------------------- /src/apps/gradient-generator/generate-gradient-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/gradient-generator/generate-gradient-value.js -------------------------------------------------------------------------------- /src/apps/html-symbols/HtmlSymbols.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/HtmlSymbols.jsx -------------------------------------------------------------------------------- /src/apps/html-symbols/HtmlSymbols.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/HtmlSymbols.styles.less -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/arrows-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/arrows-symbols.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/fractions-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/fractions-symbols.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/index.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/math-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/math-symbols.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/most-used-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/most-used-symbols.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/punctuation-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/punctuation-symbols.js -------------------------------------------------------------------------------- /src/apps/html-symbols/symbols/special-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/html-symbols/symbols/special-symbols.js -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/LoremIpsum.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/LoremIpsum.jsx -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/Preview/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/Preview/Preview.jsx -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/Preview/Preview.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/Preview/Preview.styles.less -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/Settings/Settings.jsx -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/Settings/Settings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/Settings/Settings.styles.less -------------------------------------------------------------------------------- /src/apps/lorem-ipsum/generate-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/lorem-ipsum/generate-text.js -------------------------------------------------------------------------------- /src/apps/page-dividers/Output/Output.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Output/Output.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Output/Output.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Output/Output.styles.less -------------------------------------------------------------------------------- /src/apps/page-dividers/Output/generate-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Output/generate-example.js -------------------------------------------------------------------------------- /src/apps/page-dividers/PageDividers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/PageDividers.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Preview/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Preview/Preview.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Preview/Preview.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Preview/Preview.styles.less -------------------------------------------------------------------------------- /src/apps/page-dividers/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Settings/Settings.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Settings/Settings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Settings/Settings.styles.less -------------------------------------------------------------------------------- /src/apps/page-dividers/Shape/Shape.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Shape/Shape.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Shape/Tilt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Shape/Tilt.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Shape/Triangles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Shape/Triangles.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Shape/Waves.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Shape/Waves.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/Shape/WavesOpaque.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/Shape/WavesOpaque.jsx -------------------------------------------------------------------------------- /src/apps/page-dividers/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/assets/index.js -------------------------------------------------------------------------------- /src/apps/page-dividers/assets/tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/assets/tilt.svg -------------------------------------------------------------------------------- /src/apps/page-dividers/assets/triangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/assets/triangles.svg -------------------------------------------------------------------------------- /src/apps/page-dividers/assets/waves-opaque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/assets/waves-opaque.svg -------------------------------------------------------------------------------- /src/apps/page-dividers/assets/waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/page-dividers/assets/waves.svg -------------------------------------------------------------------------------- /src/apps/svg-compressor/CompressedResult/CompressedResult.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/CompressedResult/CompressedResult.jsx -------------------------------------------------------------------------------- /src/apps/svg-compressor/CompressedResult/CompressedResult.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/CompressedResult/CompressedResult.styles.less -------------------------------------------------------------------------------- /src/apps/svg-compressor/Output/Output.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/Output/Output.jsx -------------------------------------------------------------------------------- /src/apps/svg-compressor/Output/Output.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/Output/Output.styles.less -------------------------------------------------------------------------------- /src/apps/svg-compressor/SvgCompressor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/SvgCompressor.jsx -------------------------------------------------------------------------------- /src/apps/svg-compressor/format-file-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-compressor/format-file-name.js -------------------------------------------------------------------------------- /src/apps/svg-to-jsx/Output/Output.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-to-jsx/Output/Output.jsx -------------------------------------------------------------------------------- /src/apps/svg-to-jsx/Output/Output.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-to-jsx/Output/Output.styles.less -------------------------------------------------------------------------------- /src/apps/svg-to-jsx/SvgToJsx.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/svg-to-jsx/SvgToJsx.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/Code/Code.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Code/Code.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/Code/Code.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Code/Code.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/Code/generate-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Code/generate-example.js -------------------------------------------------------------------------------- /src/apps/triangle-generator/ColorPicker/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/ColorPicker/ColorPicker.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/ColorPicker/ColorPicker.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/ColorPicker/ColorPicker.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/ColorPicker/Swatch/Swatch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/ColorPicker/Swatch/Swatch.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/ColorPicker/Swatch/Swatch.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/ColorPicker/Swatch/Swatch.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/DirectionPicker/Chevron.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/DirectionPicker/Chevron.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/DirectionPicker/DirectionPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/DirectionPicker/DirectionPicker.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/DirectionPicker/DirectionPicker.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/DirectionPicker/DirectionPicker.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Settings/Settings.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/Settings/Settings.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Settings/Settings.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/SizePicker/SizePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/SizePicker/SizePicker.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/SizePicker/SizePicker.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/SizePicker/SizePicker.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/Triangle/Triangle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/Triangle/Triangle.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/TriangleGenerator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TriangleGenerator.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/TriangleGenerator.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TriangleGenerator.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/TrianglePreview/ThemeToggle/ThemeToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TrianglePreview/ThemeToggle/ThemeToggle.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/TrianglePreview/ThemeToggle/ThemeToggle.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TrianglePreview/ThemeToggle/ThemeToggle.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/TrianglePreview/TrianglePreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TrianglePreview/TrianglePreview.jsx -------------------------------------------------------------------------------- /src/apps/triangle-generator/TrianglePreview/TrianglePreview.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/TrianglePreview/TrianglePreview.styles.less -------------------------------------------------------------------------------- /src/apps/triangle-generator/directions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/directions.js -------------------------------------------------------------------------------- /src/apps/triangle-generator/get-triangle-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/apps/triangle-generator/get-triangle-styles.js -------------------------------------------------------------------------------- /src/assets/app-icons/b64-encoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/b64-encoding.svg -------------------------------------------------------------------------------- /src/assets/app-icons/color-shades-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/color-shades-generator.svg -------------------------------------------------------------------------------- /src/assets/app-icons/css-cursors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/css-cursors.svg -------------------------------------------------------------------------------- /src/assets/app-icons/events-keycode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/events-keycode.svg -------------------------------------------------------------------------------- /src/assets/app-icons/fake-data-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/fake-data-generator.svg -------------------------------------------------------------------------------- /src/assets/app-icons/gradient-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/gradient-generator.svg -------------------------------------------------------------------------------- /src/assets/app-icons/html-symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/html-symbols.svg -------------------------------------------------------------------------------- /src/assets/app-icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/index.js -------------------------------------------------------------------------------- /src/assets/app-icons/lorem-ipsum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/lorem-ipsum.svg -------------------------------------------------------------------------------- /src/assets/app-icons/page-dividers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/page-dividers.svg -------------------------------------------------------------------------------- /src/assets/app-icons/svg-compressor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/svg-compressor.svg -------------------------------------------------------------------------------- /src/assets/app-icons/svg-to-jsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/svg-to-jsx.svg -------------------------------------------------------------------------------- /src/assets/app-icons/triangle-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/app-icons/triangle-generator.svg -------------------------------------------------------------------------------- /src/assets/logo-text-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/logo-text-white.svg -------------------------------------------------------------------------------- /src/assets/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/logo-text.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/AppContainer/AppContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/AppContainer/AppContainer.jsx -------------------------------------------------------------------------------- /src/components/AppContainer/AppContainer.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/AppContainer/AppContainer.styles.less -------------------------------------------------------------------------------- /src/components/Background/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Background/Background.jsx -------------------------------------------------------------------------------- /src/components/Background/Background.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Background/Background.styles.less -------------------------------------------------------------------------------- /src/components/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Button/Button.jsx -------------------------------------------------------------------------------- /src/components/Button/Button.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Button/Button.styles.less -------------------------------------------------------------------------------- /src/components/CopyCodeButton/CopyCodeButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/CopyCodeButton/CopyCodeButton.jsx -------------------------------------------------------------------------------- /src/components/DropPlaceholder/DropPlaceholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/DropPlaceholder/DropPlaceholder.jsx -------------------------------------------------------------------------------- /src/components/DropPlaceholder/DropPlaceholder.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/DropPlaceholder/DropPlaceholder.styles.less -------------------------------------------------------------------------------- /src/components/Dropzone/Dropzone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Dropzone/Dropzone.jsx -------------------------------------------------------------------------------- /src/components/Dropzone/Dropzone.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Dropzone/Dropzone.styles.less -------------------------------------------------------------------------------- /src/components/GithubButton/GithubButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/GithubButton/GithubButton.jsx -------------------------------------------------------------------------------- /src/components/GithubButton/GithubButton.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/GithubButton/GithubButton.styles.less -------------------------------------------------------------------------------- /src/components/HexInput/HexInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/HexInput/HexInput.jsx -------------------------------------------------------------------------------- /src/components/HexInput/HexInput.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/HexInput/HexInput.styles.less -------------------------------------------------------------------------------- /src/components/Highlight/Highlight.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Highlight/Highlight.jsx -------------------------------------------------------------------------------- /src/components/Highlight/Highlight.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Highlight/Highlight.styles.less -------------------------------------------------------------------------------- /src/components/Input/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Input/Input.jsx -------------------------------------------------------------------------------- /src/components/Input/Input.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Input/Input.styles.less -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Navbar/Navbar.styles.less -------------------------------------------------------------------------------- /src/components/NumberInput/NumberInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/NumberInput/NumberInput.jsx -------------------------------------------------------------------------------- /src/components/PageBase/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/PageBase/Footer/Footer.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/Footer/Footer.styles.less -------------------------------------------------------------------------------- /src/components/PageBase/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/PageBase/Header/Header.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/Header/Header.styles.less -------------------------------------------------------------------------------- /src/components/PageBase/PageBase.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/PageBase.jsx -------------------------------------------------------------------------------- /src/components/PageBase/PageBase.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/PageBase/PageBase.styles.less -------------------------------------------------------------------------------- /src/components/Select/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Select/Select.jsx -------------------------------------------------------------------------------- /src/components/Select/Select.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Select/Select.styles.less -------------------------------------------------------------------------------- /src/components/SettingsLabel/SettingsLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SettingsLabel/SettingsLabel.jsx -------------------------------------------------------------------------------- /src/components/SettingsLabel/SettingsLabel.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SettingsLabel/SettingsLabel.styles.less -------------------------------------------------------------------------------- /src/components/SliderInput/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SliderInput/Slider.jsx -------------------------------------------------------------------------------- /src/components/SliderInput/Slider.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SliderInput/Slider.styles.less -------------------------------------------------------------------------------- /src/components/SliderInput/SliderInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SliderInput/SliderInput.jsx -------------------------------------------------------------------------------- /src/components/SliderInput/SliderInput.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SliderInput/SliderInput.styles.less -------------------------------------------------------------------------------- /src/components/SvgInput/SvgInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SvgInput/SvgInput.jsx -------------------------------------------------------------------------------- /src/components/SvgInput/SvgInput.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SvgInput/SvgInput.styles.less -------------------------------------------------------------------------------- /src/components/SvgInput/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/SvgInput/example.js -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Tabs/Tabs.jsx -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/Tabs/Tabs.styles.less -------------------------------------------------------------------------------- /src/components/ThemeControl/ThemeControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/ThemeControl/ThemeControl.jsx -------------------------------------------------------------------------------- /src/components/ThemeControl/ThemeControl.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/ThemeControl/ThemeControl.styles.less -------------------------------------------------------------------------------- /src/components/ThemeControl/ThemeIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/components/ThemeControl/ThemeIcon.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/pages/about/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/About.jsx -------------------------------------------------------------------------------- /src/pages/about/About.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/About.styles.less -------------------------------------------------------------------------------- /src/pages/about/Application.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Application.jsx -------------------------------------------------------------------------------- /src/pages/about/Contributors/Contributors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/Contributors.jsx -------------------------------------------------------------------------------- /src/pages/about/Contributors/Contributors.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/Contributors.styles.less -------------------------------------------------------------------------------- /src/pages/about/Contributors/icons/github-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/icons/github-white.svg -------------------------------------------------------------------------------- /src/pages/about/Contributors/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/icons/github.svg -------------------------------------------------------------------------------- /src/pages/about/Contributors/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/icons/telegram.svg -------------------------------------------------------------------------------- /src/pages/about/Contributors/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Contributors/icons/twitter.svg -------------------------------------------------------------------------------- /src/pages/about/Credits.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/about/Credits.jsx -------------------------------------------------------------------------------- /src/pages/index/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/index/Index.jsx -------------------------------------------------------------------------------- /src/pages/index/Index.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/index/Index.styles.less -------------------------------------------------------------------------------- /src/pages/index/ToolCard/ToolCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/index/ToolCard/ToolCard.jsx -------------------------------------------------------------------------------- /src/pages/index/ToolCard/ToolCard.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/index/ToolCard/ToolCard.styles.less -------------------------------------------------------------------------------- /src/pages/not-found/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/not-found/NotFound.jsx -------------------------------------------------------------------------------- /src/pages/not-found/NotFound.styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/not-found/NotFound.styles.less -------------------------------------------------------------------------------- /src/pages/not-found/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/pages/not-found/not-found.svg -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/styles.less -------------------------------------------------------------------------------- /src/utils/process-svg-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/utils/process-svg-file.js -------------------------------------------------------------------------------- /src/workers/b64.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/workers/b64.worker.js -------------------------------------------------------------------------------- /src/workers/svg-to-jsx.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/workers/svg-to-jsx.worker.js -------------------------------------------------------------------------------- /src/workers/svgo.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/src/workers/svgo.worker.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtivital/omatsuri/HEAD/yarn.lock --------------------------------------------------------------------------------