├── .appcast.xml ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Find-and-replace.sketchplugin └── Contents │ ├── Resources │ ├── __ressources_index.js │ ├── __ressources_index.js.map │ ├── _webpack_resources │ │ └── ecf45a04271649312539228c3f2bd2a7.html │ └── icon.png │ └── Sketch │ ├── __Find-and-replace.js │ ├── __Find-and-replace.js.map │ └── manifest.json ├── LICENSE ├── README.bck.md ├── README.md ├── Screenshots ├── screenshot.png └── sketch-runner.png ├── Test-doc ├── Test-Find And Replace v53.sketch ├── Test-Find And Replace v54.sketch ├── Test-Find And Replace v59.sketch ├── Test-Find And Replace v62.sketch ├── Test-Find And Replace v63.sketch └── Test-Find And Replace v71.sketch ├── _crea ├── icon.sketch ├── illustration.sketch ├── logo-256.png ├── logo-512.png ├── svg-exp │ ├── document.svg │ ├── page.svg │ └── selection.svg ├── ui-1.sketch ├── ui-layout │ ├── find-and-replace-v2-dark.png │ └── find-and-replace-v2-light.png └── visual-v2.jpg ├── appcast.xml ├── assets └── icon.png ├── package.json ├── ressources ├── components │ ├── ActionBar.js │ ├── App.js │ ├── BtnGroup.js │ ├── BtnInage.js │ ├── BtnText.js │ ├── Button.js │ ├── Colors.js │ ├── GitHubStar.js │ ├── GlobalStyle.js │ ├── Gtag.js │ ├── Help.js │ ├── InfoRowGroup.js │ ├── InfoString.js │ ├── InfoStringIn.js │ ├── Input.js │ ├── InputLabel.js │ ├── Loading.js │ ├── Page.js │ ├── Row.js │ ├── RowGroup.js │ ├── VersionBadge.js │ ├── Warning.js │ └── svg-icons │ │ ├── CaseSensitiveIcon.js │ │ ├── DocumentIcon.js │ │ ├── LoadingIcon.js │ │ ├── PageIcon.js │ │ ├── RegexIcon.js │ │ ├── SelectionIcon.js │ │ └── WholeWordIcon.js ├── index.html └── index.js ├── src ├── Find-and-replace.js └── manifest.json └── webpack.skpm.config.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Resources/__ressources_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Resources/__ressources_index.js -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Resources/__ressources_index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Resources/__ressources_index.js.map -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Resources/_webpack_resources/ecf45a04271649312539228c3f2bd2a7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Resources/_webpack_resources/ecf45a04271649312539228c3f2bd2a7.html -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Sketch/__Find-and-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Sketch/__Find-and-replace.js -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Sketch/__Find-and-replace.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Sketch/__Find-and-replace.js.map -------------------------------------------------------------------------------- /Find-and-replace.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Find-and-replace.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.bck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/README.bck.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Screenshots/screenshot.png -------------------------------------------------------------------------------- /Screenshots/sketch-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Screenshots/sketch-runner.png -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v53.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v53.sketch -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v54.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v54.sketch -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v59.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v59.sketch -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v62.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v62.sketch -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v63.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v63.sketch -------------------------------------------------------------------------------- /Test-doc/Test-Find And Replace v71.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/Test-doc/Test-Find And Replace v71.sketch -------------------------------------------------------------------------------- /_crea/icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/icon.sketch -------------------------------------------------------------------------------- /_crea/illustration.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/illustration.sketch -------------------------------------------------------------------------------- /_crea/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/logo-256.png -------------------------------------------------------------------------------- /_crea/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/logo-512.png -------------------------------------------------------------------------------- /_crea/svg-exp/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/svg-exp/document.svg -------------------------------------------------------------------------------- /_crea/svg-exp/page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/svg-exp/page.svg -------------------------------------------------------------------------------- /_crea/svg-exp/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/svg-exp/selection.svg -------------------------------------------------------------------------------- /_crea/ui-1.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/ui-1.sketch -------------------------------------------------------------------------------- /_crea/ui-layout/find-and-replace-v2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/ui-layout/find-and-replace-v2-dark.png -------------------------------------------------------------------------------- /_crea/ui-layout/find-and-replace-v2-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/ui-layout/find-and-replace-v2-light.png -------------------------------------------------------------------------------- /_crea/visual-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/_crea/visual-v2.jpg -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/appcast.xml -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/package.json -------------------------------------------------------------------------------- /ressources/components/ActionBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/ActionBar.js -------------------------------------------------------------------------------- /ressources/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/App.js -------------------------------------------------------------------------------- /ressources/components/BtnGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/BtnGroup.js -------------------------------------------------------------------------------- /ressources/components/BtnInage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/BtnInage.js -------------------------------------------------------------------------------- /ressources/components/BtnText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/BtnText.js -------------------------------------------------------------------------------- /ressources/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Button.js -------------------------------------------------------------------------------- /ressources/components/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Colors.js -------------------------------------------------------------------------------- /ressources/components/GitHubStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/GitHubStar.js -------------------------------------------------------------------------------- /ressources/components/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/GlobalStyle.js -------------------------------------------------------------------------------- /ressources/components/Gtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Gtag.js -------------------------------------------------------------------------------- /ressources/components/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Help.js -------------------------------------------------------------------------------- /ressources/components/InfoRowGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/InfoRowGroup.js -------------------------------------------------------------------------------- /ressources/components/InfoString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/InfoString.js -------------------------------------------------------------------------------- /ressources/components/InfoStringIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/InfoStringIn.js -------------------------------------------------------------------------------- /ressources/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Input.js -------------------------------------------------------------------------------- /ressources/components/InputLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/InputLabel.js -------------------------------------------------------------------------------- /ressources/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Loading.js -------------------------------------------------------------------------------- /ressources/components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Page.js -------------------------------------------------------------------------------- /ressources/components/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Row.js -------------------------------------------------------------------------------- /ressources/components/RowGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/RowGroup.js -------------------------------------------------------------------------------- /ressources/components/VersionBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/VersionBadge.js -------------------------------------------------------------------------------- /ressources/components/Warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/Warning.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/CaseSensitiveIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/CaseSensitiveIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/DocumentIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/DocumentIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/LoadingIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/LoadingIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/PageIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/PageIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/RegexIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/RegexIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/SelectionIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/SelectionIcon.js -------------------------------------------------------------------------------- /ressources/components/svg-icons/WholeWordIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/components/svg-icons/WholeWordIcon.js -------------------------------------------------------------------------------- /ressources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/index.html -------------------------------------------------------------------------------- /ressources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/ressources/index.js -------------------------------------------------------------------------------- /src/Find-and-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/src/Find-and-replace.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/src/manifest.json -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thierryc/Sketch-Find-And-Replace/HEAD/webpack.skpm.config.js --------------------------------------------------------------------------------