├── .clang-format ├── .github └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── index.html ├── package.json ├── rollup.config.js ├── src ├── icu.wasm.js ├── index.js ├── ubidi_wrapper.c └── ushape_wrapper.c ├── test.js └── vite.config.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | /dist 4 | /node_modules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/icu.wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/src/icu.wasm.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ubidi_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/src/ubidi_wrapper.c -------------------------------------------------------------------------------- /src/ushape_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/src/ushape_wrapper.c -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-rtl-text/HEAD/test.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | envPrefix: 'MAPBOX_' 3 | } --------------------------------------------------------------------------------