├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── api │ ├── converter-helper.md │ ├── data-role-helper.md │ ├── data-view-object.md │ ├── data-view-objects-parser.md │ └── data-view-objects.md ├── dev │ └── development-workflow.md └── usage │ ├── installation-guide.md │ └── usage-guide.md ├── karma.conf.ts ├── package.json ├── src ├── converterHelper.ts ├── dataRoleHelper.ts ├── dataViewObject.ts ├── dataViewObjects.ts ├── dataViewObjectsParser.ts ├── dataViewTransform.ts ├── dataViewWildcard.ts └── index.ts ├── test ├── converterHelperTests.ts ├── data │ └── someplaintext.txt ├── dataRoleHelperTest.ts ├── dataViewObjectTest.ts ├── dataViewObjectsParserTest.ts ├── dataViewObjectsTest.ts ├── dataViewTransformTest.ts ├── dataViewWildcardTest.ts └── images │ ├── access.bmp │ ├── access.gif │ ├── access.jpg │ ├── access.png │ └── justok.svg ├── tsconfig.json └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .tmp 4 | /coverage 5 | /lib -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/api/converter-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/api/converter-helper.md -------------------------------------------------------------------------------- /docs/api/data-role-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/api/data-role-helper.md -------------------------------------------------------------------------------- /docs/api/data-view-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/api/data-view-object.md -------------------------------------------------------------------------------- /docs/api/data-view-objects-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/api/data-view-objects-parser.md -------------------------------------------------------------------------------- /docs/api/data-view-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/api/data-view-objects.md -------------------------------------------------------------------------------- /docs/dev/development-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/dev/development-workflow.md -------------------------------------------------------------------------------- /docs/usage/installation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/usage/installation-guide.md -------------------------------------------------------------------------------- /docs/usage/usage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/docs/usage/usage-guide.md -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/package.json -------------------------------------------------------------------------------- /src/converterHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/converterHelper.ts -------------------------------------------------------------------------------- /src/dataRoleHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataRoleHelper.ts -------------------------------------------------------------------------------- /src/dataViewObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataViewObject.ts -------------------------------------------------------------------------------- /src/dataViewObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataViewObjects.ts -------------------------------------------------------------------------------- /src/dataViewObjectsParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataViewObjectsParser.ts -------------------------------------------------------------------------------- /src/dataViewTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataViewTransform.ts -------------------------------------------------------------------------------- /src/dataViewWildcard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/dataViewWildcard.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/converterHelperTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/converterHelperTests.ts -------------------------------------------------------------------------------- /test/data/someplaintext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/data/someplaintext.txt -------------------------------------------------------------------------------- /test/dataRoleHelperTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataRoleHelperTest.ts -------------------------------------------------------------------------------- /test/dataViewObjectTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataViewObjectTest.ts -------------------------------------------------------------------------------- /test/dataViewObjectsParserTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataViewObjectsParserTest.ts -------------------------------------------------------------------------------- /test/dataViewObjectsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataViewObjectsTest.ts -------------------------------------------------------------------------------- /test/dataViewTransformTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataViewTransformTest.ts -------------------------------------------------------------------------------- /test/dataViewWildcardTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/dataViewWildcardTest.ts -------------------------------------------------------------------------------- /test/images/access.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/images/access.bmp -------------------------------------------------------------------------------- /test/images/access.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/images/access.gif -------------------------------------------------------------------------------- /test/images/access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/images/access.jpg -------------------------------------------------------------------------------- /test/images/access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/images/access.png -------------------------------------------------------------------------------- /test/images/justok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/test/images/justok.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-utils-dataviewutils/HEAD/webpack.config.js --------------------------------------------------------------------------------